diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 000000000..acd4442ff --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,17 @@ +FROM mcr.microsoft.com/devcontainers/php:1-8.2-bookworm + +# Install MariaDB client +RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ + && apt-get install -y mariadb-client \ + && apt-get clean -y && rm -rf /var/lib/apt/lists/* + +# Install php-mysql driver +RUN docker-php-ext-install mysqli pdo pdo_mysql + +# [Optional] Uncomment this section to install additional OS packages. +# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ +# && apt-get -y install --no-install-recommends + +# [Optional] Uncomment this line to install global node packages. +# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g " 2>&1 + diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 86099c5ad..8bfd4a234 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,38 +1,33 @@ // For format details, see https://aka.ms/devcontainer.json. For config options, see the -// README at: https://github.com/devcontainers/templates/tree/main/src/php +// README at: https://github.com/devcontainers/templates/tree/main/src/php-mariadb { - "name": "PHP", - // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/devcontainers/php:1-8.2", + "name": "PHP & MariaDB", + "dockerComposeFile": "docker-compose.yml", + "service": "app", + "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, - // Configure tool-specific properties. - "customizations": { - // Configure properties specific to VS Code. - "vscode": { - "settings": {}, - "extensions": [ - "streetsidesoftware.code-spell-checker" - ] - } + // For use with PHP or Apache (e.g.php -S localhost:8080 or apache2ctl start) + "forwardPorts": [ + 8080, + 3306 + ], + "features": { + "ghcr.io/devcontainers-contrib/features/gh-cli:1": {} }, - // Use 'forwardPorts' to make a list of ports inside the container available locally. - // "forwardPorts": [8000], + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": "sudo chmod a+x \"$(pwd)\" && sudo rm -rf /var/www/html && sudo ln -s \"$(pwd)\" /var/www/html", - // Use 'portsAttributes' to set default properties for specific forwarded ports. More info: https://code.visualstudio.com/docs/remote/devcontainerjson-reference. - "portsAttributes": { - "8000": { - "label": "Hello Remote World", - "onAutoForward": "notify" + // Configure tool-specific properties. + "customizations": { + "vscode": { + "extensions": ["ikappas.composer"] } } - // Use 'postCreateCommand' to run commands after the container is created. - // "postCreateCommand": "sudo chmod a+x \"$(pwd)\" && sudo rm -rf /var/www/html && sudo ln -s \"$(pwd)\" /var/www/html" - // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root" } diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml new file mode 100644 index 000000000..51df1442c --- /dev/null +++ b/.devcontainer/docker-compose.yml @@ -0,0 +1,36 @@ +version: '3.8' + +services: + app: + build: + context: . + dockerfile: Dockerfile + + volumes: + - ../..:/workspaces:cached + + # Overrides default command so things don't shut down after the process ends. + command: sleep infinity + + # Runs app on the same network as the database container, allows "forwardPorts" in devcontainer.json function. + network_mode: service:db + + # Use "forwardPorts" in **devcontainer.json** to forward an app port locally. + # (Adding the "ports" property to this file will not forward from a Codespace.) + + db: + image: mariadb:10.4 + restart: unless-stopped + volumes: + - mariadb-data:/var/lib/mysql + environment: + MYSQL_ROOT_PASSWORD: mariadb + MYSQL_DATABASE: mariadb + MYSQL_USER: mariadb + MYSQL_PASSWORD: mariadb + + # Add "forwardPorts": ["3306"] to **devcontainer.json** to forward MariaDB locally. + # (Adding the "ports" property to this file will not forward from a Codespace.) + +volumes: + mariadb-data: diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1f79a6f25..f33a02cd1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,12 @@ -# For more details, see https://containers.dev/guide/dependabot +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for more information: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +# https://containers.dev/guide/dependabot + version: 2 updates: - - package-ecosystem: "devcontainers" - directory: "/" - schedule: - interval: weekly \ No newline at end of file + - package-ecosystem: "devcontainers" + directory: "/" + schedule: + interval: weekly diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 000000000..a115e8f68 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,32 @@ +name: Greetings + +on: [pull_request_target, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: > + 🌟 **Xin chào và chào mừng bạn đến với kho lưu trữ của chúng tôi!** 🌟 + + Cảm ơn bạn đã tạo vấn đề này. Đội ngũ của chúng tôi sẽ xem xét và phản hồi sớm nhất có thể. + Trong thời gian chờ đợi, hãy chắc chắn rằng bạn đã kiểm tra tài liệu và các vấn đề đã được báo cáo trước đó để tránh trùng lặp. + + Nếu bạn có bất kỳ câu hỏi nào, đừng ngần ngại hỏi. Chúng tôi rất mong nhận được sự đóng góp của bạn! + + Chúc bạn một ngày tuyệt vời! 🚀 + pr-message: > + 🎉 **Cảm ơn bạn đã gửi yêu cầu Pull!** 🎉 + + Chúng tôi rất vui mừng nhận được sự đóng góp của bạn. Đội ngũ của chúng tôi sẽ xem xét yêu cầu pull của bạn sớm nhất có thể. + Trong thời gian chờ đợi, vui lòng đảm bảo rằng mã của bạn tuân theo hướng dẫn của dự án và đã được kiểm tra đầy đủ. + + Nếu bạn có bất kỳ câu hỏi hoặc nhận xét nào, đừng ngần ngại liên hệ với chúng tôi. Chúng tôi rất mong được hợp tác với bạn! + + Chúc bạn một ngày tuyệt vời! 🚀 diff --git a/LaravelTutorial/.editorconfig b/LaravelTutorial/.editorconfig new file mode 100644 index 000000000..8f0de65c5 --- /dev/null +++ b/LaravelTutorial/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[docker-compose.yml] +indent_size = 4 diff --git a/LaravelTutorial/.env.example b/LaravelTutorial/.env.example new file mode 100644 index 000000000..ea0665b0a --- /dev/null +++ b/LaravelTutorial/.env.example @@ -0,0 +1,59 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=http://localhost + +LOG_CHANNEL=stack +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=laravel +DB_USERNAME=root +DB_PASSWORD= + +BROADCAST_DRIVER=log +CACHE_DRIVER=file +FILESYSTEM_DISK=local +QUEUE_CONNECTION=sync +SESSION_DRIVER=file +SESSION_LIFETIME=120 + +MEMCACHED_HOST=127.0.0.1 + +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=smtp +MAIL_HOST=mailpit +MAIL_PORT=1025 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=null +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= +PUSHER_HOST= +PUSHER_PORT=443 +PUSHER_SCHEME=https +PUSHER_APP_CLUSTER=mt1 + +VITE_APP_NAME="${APP_NAME}" +VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}" +VITE_PUSHER_HOST="${PUSHER_HOST}" +VITE_PUSHER_PORT="${PUSHER_PORT}" +VITE_PUSHER_SCHEME="${PUSHER_SCHEME}" +VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" diff --git a/LaravelTutorial/.gitattributes b/LaravelTutorial/.gitattributes new file mode 100644 index 000000000..fcb21d396 --- /dev/null +++ b/LaravelTutorial/.gitattributes @@ -0,0 +1,11 @@ +* text=auto eol=lf + +*.blade.php diff=html +*.css diff=css +*.html diff=html +*.md diff=markdown +*.php diff=php + +/.github export-ignore +CHANGELOG.md export-ignore +.styleci.yml export-ignore diff --git a/LaravelTutorial/.gitignore b/LaravelTutorial/.gitignore new file mode 100644 index 000000000..7fe978f85 --- /dev/null +++ b/LaravelTutorial/.gitignore @@ -0,0 +1,19 @@ +/.phpunit.cache +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/vendor +.env +.env.backup +.env.production +.phpunit.result.cache +Homestead.json +Homestead.yaml +auth.json +npm-debug.log +yarn-error.log +/.fleet +/.idea +/.vscode diff --git a/LaravelTutorial/README.md b/LaravelTutorial/README.md new file mode 100644 index 000000000..3ed385a7d --- /dev/null +++ b/LaravelTutorial/README.md @@ -0,0 +1,66 @@ +

Laravel Logo

+ +

+Build Status +Total Downloads +Latest Stable Version +License +

+ +## About Laravel + +Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: + +- [Simple, fast routing engine](https://laravel.com/docs/routing). +- [Powerful dependency injection container](https://laravel.com/docs/container). +- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. +- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). +- Database agnostic [schema migrations](https://laravel.com/docs/migrations). +- [Robust background job processing](https://laravel.com/docs/queues). +- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + +Laravel is accessible, powerful, and provides tools required for large, robust applications. + +## Learning Laravel + +Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. + +You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch. + +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 2000 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. + +## Laravel Sponsors + +We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell). + +### Premium Partners + +- **[Vehikl](https://vehikl.com/)** +- **[Tighten Co.](https://tighten.co)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Cubet Techno Labs](https://cubettech.com)** +- **[Cyber-Duck](https://cyber-duck.co.uk)** +- **[Many](https://www.many.co.uk)** +- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)** +- **[DevSquad](https://devsquad.com)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel/)** +- **[OP.GG](https://op.gg)** +- **[WebReinvent](https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors)** +- **[Lendio](https://lendio.com)** + +## Contributing + +Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). + +## Code of Conduct + +In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). + +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. + +## License + +The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/LaravelTutorial/app/Console/Kernel.php b/LaravelTutorial/app/Console/Kernel.php new file mode 100644 index 000000000..e6b9960ec --- /dev/null +++ b/LaravelTutorial/app/Console/Kernel.php @@ -0,0 +1,27 @@ +command('inspire')->hourly(); + } + + /** + * Register the commands for the application. + */ + protected function commands(): void + { + $this->load(__DIR__.'/Commands'); + + require base_path('routes/console.php'); + } +} diff --git a/LaravelTutorial/app/Exceptions/Handler.php b/LaravelTutorial/app/Exceptions/Handler.php new file mode 100644 index 000000000..56af26405 --- /dev/null +++ b/LaravelTutorial/app/Exceptions/Handler.php @@ -0,0 +1,30 @@ + + */ + protected $dontFlash = [ + 'current_password', + 'password', + 'password_confirmation', + ]; + + /** + * Register the exception handling callbacks for the application. + */ + public function register(): void + { + $this->reportable(function (Throwable $e) { + // + }); + } +} diff --git a/LaravelTutorial/app/Http/Controllers/Controller.php b/LaravelTutorial/app/Http/Controllers/Controller.php new file mode 100644 index 000000000..77ec359ab --- /dev/null +++ b/LaravelTutorial/app/Http/Controllers/Controller.php @@ -0,0 +1,12 @@ +logout(); + return redirect()->route('home'); + } + + public function register() + { + return view('register'); + } + + public function API_Login(Request $request) + { + $validator = Validator::make($request->all(), [ + 'username' => 'required|exists:users,username', + 'password' => 'required' + ], [ + 'username.required' => 'Username không được để trống', + 'username.exists' => 'Username không tồn tại', + 'password.required' => 'Password không được để trống', + ]); + + if ($validator->fails()) { + return response()->json([ + 'status' => false, + 'message' => $validator->errors()->first() + ]); + } + + if (Auth::attempt(['username' => strtolower($request->username), 'password' => $request->password])) { + return response()->json([ + 'status' => true, + 'message' => 'Đăng nhập thành công' + ]); + } + + return response()->json([ + 'status' => false, + 'message' => 'Tài khoản hoặc mật khẩu không chính xác' + ]); + } + + public function API_Register(Request $request) + { + $validator = Validator::make($request->all(), [ + 'username' => 'required|unique:users,username', + 'password' => 'required' + ], [ + 'username.required' => 'Username không được để trống', + 'username.unique' => 'Username đã tồn tại', + 'password.required' => 'Password không được để trống', + ]); + + if ($validator->fails()) { + return response()->json([ + 'status' => false, + 'message' => $validator->errors()->first() + ]); + } + + $user = new User(); + $user->username = strtolower($request->username); + $user->password = bcrypt($request->password); + $user->save(); + + return response()->json([ + 'status' => true, + 'message' => 'Đăng ký thành công' + ]); + } +} diff --git a/LaravelTutorial/app/Http/Kernel.php b/LaravelTutorial/app/Http/Kernel.php new file mode 100644 index 000000000..494c0501b --- /dev/null +++ b/LaravelTutorial/app/Http/Kernel.php @@ -0,0 +1,68 @@ + + */ + protected $middleware = [ + // \App\Http\Middleware\TrustHosts::class, + \App\Http\Middleware\TrustProxies::class, + \Illuminate\Http\Middleware\HandleCors::class, + \App\Http\Middleware\PreventRequestsDuringMaintenance::class, + \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class, + \App\Http\Middleware\TrimStrings::class, + \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class, + ]; + + /** + * The application's route middleware groups. + * + * @var array> + */ + protected $middlewareGroups = [ + 'web' => [ + \App\Http\Middleware\EncryptCookies::class, + \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, + \Illuminate\Session\Middleware\StartSession::class, + \Illuminate\View\Middleware\ShareErrorsFromSession::class, + \App\Http\Middleware\VerifyCsrfToken::class, + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + + 'api' => [ + // \Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class, + \Illuminate\Routing\Middleware\ThrottleRequests::class.':api', + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + ]; + + /** + * The application's middleware aliases. + * + * Aliases may be used instead of class names to conveniently assign middleware to routes and groups. + * + * @var array + */ + protected $middlewareAliases = [ + 'auth' => \App\Http\Middleware\Authenticate::class, + 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, + 'auth.session' => \Illuminate\Session\Middleware\AuthenticateSession::class, + 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, + 'can' => \Illuminate\Auth\Middleware\Authorize::class, + 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, + 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'precognitive' => \Illuminate\Foundation\Http\Middleware\HandlePrecognitiveRequests::class, + 'signed' => \App\Http\Middleware\ValidateSignature::class, + 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, + 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, + ]; +} diff --git a/LaravelTutorial/app/Http/Middleware/Authenticate.php b/LaravelTutorial/app/Http/Middleware/Authenticate.php new file mode 100644 index 000000000..d4ef6447a --- /dev/null +++ b/LaravelTutorial/app/Http/Middleware/Authenticate.php @@ -0,0 +1,17 @@ +expectsJson() ? null : route('login'); + } +} diff --git a/LaravelTutorial/app/Http/Middleware/EncryptCookies.php b/LaravelTutorial/app/Http/Middleware/EncryptCookies.php new file mode 100644 index 000000000..867695bdc --- /dev/null +++ b/LaravelTutorial/app/Http/Middleware/EncryptCookies.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/LaravelTutorial/app/Http/Middleware/PreventRequestsDuringMaintenance.php b/LaravelTutorial/app/Http/Middleware/PreventRequestsDuringMaintenance.php new file mode 100644 index 000000000..74cbd9a9e --- /dev/null +++ b/LaravelTutorial/app/Http/Middleware/PreventRequestsDuringMaintenance.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/LaravelTutorial/app/Http/Middleware/RedirectIfAuthenticated.php b/LaravelTutorial/app/Http/Middleware/RedirectIfAuthenticated.php new file mode 100644 index 000000000..afc78c4e5 --- /dev/null +++ b/LaravelTutorial/app/Http/Middleware/RedirectIfAuthenticated.php @@ -0,0 +1,30 @@ +check()) { + return redirect(RouteServiceProvider::HOME); + } + } + + return $next($request); + } +} diff --git a/LaravelTutorial/app/Http/Middleware/TrimStrings.php b/LaravelTutorial/app/Http/Middleware/TrimStrings.php new file mode 100644 index 000000000..88cadcaaf --- /dev/null +++ b/LaravelTutorial/app/Http/Middleware/TrimStrings.php @@ -0,0 +1,19 @@ + + */ + protected $except = [ + 'current_password', + 'password', + 'password_confirmation', + ]; +} diff --git a/LaravelTutorial/app/Http/Middleware/TrustHosts.php b/LaravelTutorial/app/Http/Middleware/TrustHosts.php new file mode 100644 index 000000000..c9c58bddc --- /dev/null +++ b/LaravelTutorial/app/Http/Middleware/TrustHosts.php @@ -0,0 +1,20 @@ + + */ + public function hosts(): array + { + return [ + $this->allSubdomainsOfApplicationUrl(), + ]; + } +} diff --git a/LaravelTutorial/app/Http/Middleware/TrustProxies.php b/LaravelTutorial/app/Http/Middleware/TrustProxies.php new file mode 100644 index 000000000..3391630ec --- /dev/null +++ b/LaravelTutorial/app/Http/Middleware/TrustProxies.php @@ -0,0 +1,28 @@ +|string|null + */ + protected $proxies; + + /** + * The headers that should be used to detect proxies. + * + * @var int + */ + protected $headers = + Request::HEADER_X_FORWARDED_FOR | + Request::HEADER_X_FORWARDED_HOST | + Request::HEADER_X_FORWARDED_PORT | + Request::HEADER_X_FORWARDED_PROTO | + Request::HEADER_X_FORWARDED_AWS_ELB; +} diff --git a/LaravelTutorial/app/Http/Middleware/ValidateSignature.php b/LaravelTutorial/app/Http/Middleware/ValidateSignature.php new file mode 100644 index 000000000..093bf64af --- /dev/null +++ b/LaravelTutorial/app/Http/Middleware/ValidateSignature.php @@ -0,0 +1,22 @@ + + */ + protected $except = [ + // 'fbclid', + // 'utm_campaign', + // 'utm_content', + // 'utm_medium', + // 'utm_source', + // 'utm_term', + ]; +} diff --git a/LaravelTutorial/app/Http/Middleware/VerifyCsrfToken.php b/LaravelTutorial/app/Http/Middleware/VerifyCsrfToken.php new file mode 100644 index 000000000..9e8652172 --- /dev/null +++ b/LaravelTutorial/app/Http/Middleware/VerifyCsrfToken.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/LaravelTutorial/app/Models/User.php b/LaravelTutorial/app/Models/User.php new file mode 100644 index 000000000..b33e80133 --- /dev/null +++ b/LaravelTutorial/app/Models/User.php @@ -0,0 +1,25 @@ + + */ + protected $policies = [ + // + ]; + + /** + * Register any authentication / authorization services. + */ + public function boot(): void + { + // + } +} diff --git a/LaravelTutorial/app/Providers/BroadcastServiceProvider.php b/LaravelTutorial/app/Providers/BroadcastServiceProvider.php new file mode 100644 index 000000000..2be04f5d9 --- /dev/null +++ b/LaravelTutorial/app/Providers/BroadcastServiceProvider.php @@ -0,0 +1,19 @@ +> + */ + protected $listen = [ + Registered::class => [ + SendEmailVerificationNotification::class, + ], + ]; + + /** + * Register any events for your application. + */ + public function boot(): void + { + // + } + + /** + * Determine if events and listeners should be automatically discovered. + */ + public function shouldDiscoverEvents(): bool + { + return false; + } +} diff --git a/LaravelTutorial/app/Providers/RouteServiceProvider.php b/LaravelTutorial/app/Providers/RouteServiceProvider.php new file mode 100644 index 000000000..1cf5f15c2 --- /dev/null +++ b/LaravelTutorial/app/Providers/RouteServiceProvider.php @@ -0,0 +1,40 @@ +by($request->user()?->id ?: $request->ip()); + }); + + $this->routes(function () { + Route::middleware('api') + ->prefix('api') + ->group(base_path('routes/api.php')); + + Route::middleware('web') + ->group(base_path('routes/web.php')); + }); + } +} diff --git a/LaravelTutorial/artisan b/LaravelTutorial/artisan new file mode 100644 index 000000000..67a3329b1 --- /dev/null +++ b/LaravelTutorial/artisan @@ -0,0 +1,53 @@ +#!/usr/bin/env php +make(Illuminate\Contracts\Console\Kernel::class); + +$status = $kernel->handle( + $input = new Symfony\Component\Console\Input\ArgvInput, + new Symfony\Component\Console\Output\ConsoleOutput +); + +/* +|-------------------------------------------------------------------------- +| Shutdown The Application +|-------------------------------------------------------------------------- +| +| Once Artisan has finished running, we will fire off the shutdown events +| so that any final work may be done by the application before we shut +| down the process. This is the last thing to happen to the request. +| +*/ + +$kernel->terminate($input, $status); + +exit($status); diff --git a/LaravelTutorial/bootstrap/app.php b/LaravelTutorial/bootstrap/app.php new file mode 100644 index 000000000..037e17df0 --- /dev/null +++ b/LaravelTutorial/bootstrap/app.php @@ -0,0 +1,55 @@ +singleton( + Illuminate\Contracts\Http\Kernel::class, + App\Http\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Console\Kernel::class, + App\Console\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Debug\ExceptionHandler::class, + App\Exceptions\Handler::class +); + +/* +|-------------------------------------------------------------------------- +| Return The Application +|-------------------------------------------------------------------------- +| +| This script returns the application instance. The instance is given to +| the calling script so we can separate the building of the instances +| from the actual running of the application and sending responses. +| +*/ + +return $app; diff --git a/LaravelTutorial/bootstrap/cache/.gitignore b/LaravelTutorial/bootstrap/cache/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/LaravelTutorial/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/LaravelTutorial/composer.json b/LaravelTutorial/composer.json new file mode 100644 index 000000000..e1fb4493d --- /dev/null +++ b/LaravelTutorial/composer.json @@ -0,0 +1,66 @@ +{ + "name": "laravel/laravel", + "type": "project", + "description": "The skeleton application for the Laravel framework.", + "keywords": ["laravel", "framework"], + "license": "MIT", + "require": { + "php": "^8.1", + "guzzlehttp/guzzle": "^7.2", + "laravel/framework": "^10.10", + "laravel/sanctum": "^3.2", + "laravel/tinker": "^2.8" + }, + "require-dev": { + "fakerphp/faker": "^1.9.1", + "laravel/pint": "^1.0", + "laravel/sail": "^1.18", + "mockery/mockery": "^1.4.4", + "nunomaduro/collision": "^7.0", + "phpunit/phpunit": "^10.1", + "spatie/laravel-ignition": "^2.0" + }, + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Factories\\": "database/factories/", + "Database\\Seeders\\": "database/seeders/" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" + } + }, + "scripts": { + "post-autoload-dump": [ + "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", + "@php artisan package:discover --ansi" + ], + "post-update-cmd": [ + "@php artisan vendor:publish --tag=laravel-assets --ansi --force" + ], + "post-root-package-install": [ + "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" + ], + "post-create-project-cmd": [ + "@php artisan key:generate --ansi" + ] + }, + "extra": { + "laravel": { + "dont-discover": [] + } + }, + "config": { + "optimize-autoloader": true, + "preferred-install": "dist", + "sort-packages": true, + "allow-plugins": { + "pestphp/pest-plugin": true, + "php-http/discovery": true + } + }, + "minimum-stability": "stable", + "prefer-stable": true +} diff --git a/LaravelTutorial/composer.lock b/LaravelTutorial/composer.lock new file mode 100644 index 000000000..6e4541125 --- /dev/null +++ b/LaravelTutorial/composer.lock @@ -0,0 +1,8064 @@ +{ + "_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": "aa322c53454393ed775cfe4807d54a50", + "packages": [ + { + "name": "brick/math", + "version": "0.11.0", + "source": { + "type": "git", + "url": "https://github.com/brick/math.git", + "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", + "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^9.0", + "vimeo/psalm": "5.0.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Brick\\Math\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Arbitrary-precision arithmetic library", + "keywords": [ + "Arbitrary-precision", + "BigInteger", + "BigRational", + "arithmetic", + "bigdecimal", + "bignum", + "brick", + "math" + ], + "support": { + "issues": "https://github.com/brick/math/issues", + "source": "https://github.com/brick/math/tree/0.11.0" + }, + "funding": [ + { + "url": "https://github.com/BenMorel", + "type": "github" + } + ], + "time": "2023-01-15T23:15:59+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.2", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "f41715465d65213d644d3141a6a93081be5d3549" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", + "reference": "f41715465d65213d644d3141a6a93081be5d3549", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" + }, + "time": "2022-10-27T11:44:00+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.8", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff", + "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "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.0.8" + }, + "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": "2023-06-16T13:40:37+00:00" + }, + { + "name": "doctrine/lexer", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "84a527db05647743d50373e0ec53a152f2cde568" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568", + "reference": "84a527db05647743d50373e0ec53a152f2cde568", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^10", + "phpstan/phpstan": "^1.9", + "phpunit/phpunit": "^9.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.0" + }, + "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.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%2Flexer", + "type": "tidelift" + } + ], + "time": "2022-12-15T16:57:16+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.3.3", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-webmozart-assert": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2023-08-10T19:36:49+00:00" + }, + { + "name": "egulias/email-validator", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff", + "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" + }, + "require-dev": { + "phpunit/phpunit": "^9.5.27", + "vimeo/psalm": "^4.30" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2023-01-14T14:17:03+00:00" + }, + { + "name": "fruitcake/php-cors", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/fruitcake/php-cors.git", + "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e", + "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e", + "shasum": "" + }, + "require": { + "php": "^7.4|^8.0", + "symfony/http-foundation": "^4.4|^5.4|^6" + }, + "require-dev": { + "phpstan/phpstan": "^1.4", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Fruitcake\\Cors\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fruitcake", + "homepage": "https://fruitcake.nl" + }, + { + "name": "Barryvdh", + "email": "barryvdh@gmail.com" + } + ], + "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", + "homepage": "https://github.com/fruitcake/php-cors", + "keywords": [ + "cors", + "laravel", + "symfony" + ], + "support": { + "issues": "https://github.com/fruitcake/php-cors/issues", + "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2022-02-20T15:07:15+00:00" + }, + { + "name": "graham-campbell/result-type", + "version": "v1.1.1", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", + "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.1" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" + }, + "type": "library", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2023-02-25T20:23:15+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.8.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9", + "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.5.3 || ^2.0.1", + "guzzlehttp/psr7": "^1.9.1 || ^2.5.1", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.1", + "ext-curl": "*", + "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.29 || ^9.5.23", + "psr/log": "^1.1 || ^2.0 || ^3.0" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.8.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2023-08-27T10:20:53+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "111166291a0f8130081195ac4556a5587d7f1b5d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d", + "reference": "111166291a0f8130081195ac4556a5587d7f1b5d", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.1", + "phpunit/phpunit": "^8.5.29 || ^9.5.23" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.0.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2023-08-03T15:11:55+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.6.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727", + "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.1", + "http-interop/http-factory-tests": "^0.9", + "phpunit/phpunit": "^8.5.29 || ^9.5.23" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.6.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2023-08-27T10:13:57+00:00" + }, + { + "name": "guzzlehttp/uri-template", + "version": "v1.0.2", + "source": { + "type": "git", + "url": "https://github.com/guzzle/uri-template.git", + "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/61bf437fc2197f587f6857d3ff903a24f1731b5d", + "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.17" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.1", + "phpunit/phpunit": "^8.5.19 || ^9.5.8", + "uri-template/tests": "1.0.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "GuzzleHttp\\UriTemplate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + } + ], + "description": "A polyfill class for uri_template of PHP", + "keywords": [ + "guzzlehttp", + "uri-template" + ], + "support": { + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", + "type": "tidelift" + } + ], + "time": "2023-08-27T10:19:19+00:00" + }, + { + "name": "laravel/framework", + "version": "v10.22.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "9234388a895206d4e1df37342b61adc67e5c5d31" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/9234388a895206d4e1df37342b61adc67e5c5d31", + "reference": "9234388a895206d4e1df37342b61adc67e5c5d31", + "shasum": "" + }, + "require": { + "brick/math": "^0.9.3|^0.10.2|^0.11", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.3.2", + "egulias/email-validator": "^3.2.1|^4.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-session": "*", + "ext-tokenizer": "*", + "fruitcake/php-cors": "^1.2", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.1", + "laravel/serializable-closure": "^1.3", + "league/commonmark": "^2.2.1", + "league/flysystem": "^3.8.0", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^2.67", + "nunomaduro/termwind": "^1.13", + "php": "^8.1", + "psr/container": "^1.1.1|^2.0.1", + "psr/log": "^1.0|^2.0|^3.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "ramsey/uuid": "^4.7", + "symfony/console": "^6.2", + "symfony/error-handler": "^6.2", + "symfony/finder": "^6.2", + "symfony/http-foundation": "^6.2", + "symfony/http-kernel": "^6.2", + "symfony/mailer": "^6.2", + "symfony/mime": "^6.2", + "symfony/process": "^6.2", + "symfony/routing": "^6.2", + "symfony/uid": "^6.2", + "symfony/var-dumper": "^6.2", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", + "vlucas/phpdotenv": "^5.4.1", + "voku/portable-ascii": "^2.0" + }, + "conflict": { + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.1|2.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/collections": "self.version", + "illuminate/conditionable": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/log": "self.version", + "illuminate/macroable": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/process": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/testing": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version" + }, + "require-dev": { + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.235.5", + "doctrine/dbal": "^3.5.1", + "ext-gmp": "*", + "fakerphp/faker": "^1.21", + "guzzlehttp/guzzle": "^7.5", + "league/flysystem-aws-s3-v3": "^3.0", + "league/flysystem-ftp": "^3.0", + "league/flysystem-path-prefixing": "^3.3", + "league/flysystem-read-only": "^3.3", + "league/flysystem-sftp-v3": "^3.0", + "mockery/mockery": "^1.5.1", + "orchestra/testbench-core": "^8.4", + "pda/pheanstalk": "^4.0", + "phpstan/phpstan": "^1.4.7", + "phpunit/phpunit": "^10.0.7", + "predis/predis": "^2.0.2", + "symfony/cache": "^6.2", + "symfony/http-client": "^6.2.4" + }, + "suggest": { + "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", + "brianium/paratest": "Required to run tests in parallel (^6.0).", + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).", + "ext-apcu": "Required to use the APC cache driver.", + "ext-fileinfo": "Required to use the Filesystem class.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "ext-memcached": "Required to use the memcache cache driver.", + "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", + "ext-pdo": "Required to use all database features.", + "ext-posix": "Required to use all features of the queue worker.", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", + "league/flysystem-read-only": "Required to use read-only disks (^3.3)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", + "mockery/mockery": "Required to use mocking (^1.5.1).", + "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", + "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).", + "predis/predis": "Required to use the predis connector (^2.0.2).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^6.2).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/", + "src/Illuminate/Conditionable/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2023-09-05T13:20:01+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.1.6", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "b514c5620e1b3b61221b0024dc88def26d9654f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/b514c5620e1b3b61221b0024dc88def26d9654f4", + "reference": "b514c5620e1b3b61221b0024dc88def26d9654f4", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/collections": "^10.0|^11.0", + "php": "^8.1", + "symfony/console": "^6.2" + }, + "require-dev": { + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3", + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-mockery": "^1.1" + }, + "suggest": { + "ext-pcntl": "Required for the spinner to be animated." + }, + "type": "library", + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Laravel\\Prompts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "support": { + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.1.6" + }, + "time": "2023-08-18T13:32:23+00:00" + }, + { + "name": "laravel/sanctum", + "version": "v3.3.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/sanctum.git", + "reference": "95a0181900019e2d79acbd3e2ee7d57e3d0a086b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/95a0181900019e2d79acbd3e2ee7d57e3d0a086b", + "reference": "95a0181900019e2d79acbd3e2ee7d57e3d0a086b", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/console": "^9.21|^10.0", + "illuminate/contracts": "^9.21|^10.0", + "illuminate/database": "^9.21|^10.0", + "illuminate/support": "^9.21|^10.0", + "php": "^8.0.2" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "orchestra/testbench": "^7.28.2|^8.8.3", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Sanctum\\SanctumServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sanctum\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.", + "keywords": [ + "auth", + "laravel", + "sanctum" + ], + "support": { + "issues": "https://github.com/laravel/sanctum/issues", + "source": "https://github.com/laravel/sanctum" + }, + "time": "2023-09-04T14:26:54+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v1.3.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/e5a3057a5591e1cfe8183034b0203921abe2c902", + "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "nesbot/carbon": "^2.61", + "pestphp/pest": "^1.21.3", + "phpstan/phpstan": "^1.8.2", + "symfony/var-dumper": "^5.4.11" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2023-07-14T13:56:28+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.8.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3", + "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3", + "shasum": "" + }, + "require": { + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", + "php": "^7.2.5|^8.0", + "psy/psysh": "^0.10.4|^0.11.1", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.5.8|^9.3.3" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Tinker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v2.8.2" + }, + "time": "2023-08-15T14:27:00+00:00" + }, + { + "name": "league/commonmark", + "version": "2.4.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5", + "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.30.0", + "commonmark/commonmark.js": "0.30.0", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + } + }, + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", + "keywords": [ + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" + ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" + } + ], + "time": "2023-08-30T16:55:00+00:00" + }, + { + "name": "league/config", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2022-12-11T20:36:23+00:00" + }, + { + "name": "league/flysystem", + "version": "3.16.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "4fdf372ca6b63c6e281b1c01a624349ccb757729" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/4fdf372ca6b63c6e281b1c01a624349ccb757729", + "reference": "4fdf372ca6b63c6e281b1c01a624349ccb757729", + "shasum": "" + }, + "require": { + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", + "aws/aws-sdk-php": "3.209.31 || 3.210.0", + "guzzlehttp/guzzle": "<7.0", + "guzzlehttp/ringphp": "<1.1.1", + "phpseclib/phpseclib": "3.0.15", + "symfony/http-client": "<5.2" + }, + "require-dev": { + "async-aws/s3": "^1.5", + "async-aws/simple-s3": "^1.1", + "aws/aws-sdk-php": "^3.220.0", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.5", + "google/cloud-storage": "^1.23", + "microsoft/azure-storage-blob": "^1.1", + "phpseclib/phpseclib": "^3.0.14", + "phpstan/phpstan": "^0.12.26", + "phpunit/phpunit": "^9.5.11|^10.0", + "sabre/dav": "^4.3.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/3.16.0" + }, + "funding": [ + { + "url": "https://ecologi.com/frankdejonge", + "type": "custom" + }, + { + "url": "https://github.com/frankdejonge", + "type": "github" + } + ], + "time": "2023-09-07T19:22:17+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.16.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "ec7383f25642e6fd4bb0c9554fc2311245391781" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/ec7383f25642e6fd4bb0c9554fc2311245391781", + "reference": "ec7383f25642e6fd4bb0c9554fc2311245391781", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem-local/issues", + "source": "https://github.com/thephpleague/flysystem-local/tree/3.16.0" + }, + "funding": [ + { + "url": "https://ecologi.com/frankdejonge", + "type": "custom" + }, + { + "url": "https://github.com/frankdejonge", + "type": "github" + } + ], + "time": "2023-08-30T10:23:59+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.13.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96", + "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2023-08-05T12:09:49+00:00" + }, + { + "name": "monolog/monolog", + "version": "3.4.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "e2392369686d420ca32df3803de28b5d6f76867d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e2392369686d420ca32df3803de28b5d6f76867d", + "reference": "e2392369686d420ca32df3803de28b5d6f76867d", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "3.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2 || ^2.0", + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/psr7": "^2.2", + "mongodb/mongodb": "^1.8", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-strict-rules": "^1.4", + "phpunit/phpunit": "^10.1", + "predis/predis": "^1.1 || ^2", + "ruflin/elastica": "^7", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/3.4.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2023-06-21T08:46:11+00:00" + }, + { + "name": "nesbot/carbon", + "version": "2.70.0", + "source": { + "type": "git", + "url": "https://github.com/briannesbitt/Carbon.git", + "reference": "d3298b38ea8612e5f77d38d1a99438e42f70341d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d3298b38ea8612e5f77d38d1a99438e42f70341d", + "reference": "d3298b38ea8612e5f77d38d1a99438e42f70341d", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^7.1.8 || ^8.0", + "psr/clock": "^1.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16", + "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^2.0 || ^3.1.4", + "doctrine/orm": "^2.7", + "friendsofphp/php-cs-fixer": "^3.0", + "kylekatarnls/multi-tester": "^2.0", + "ondrejmirtes/better-reflection": "*", + "phpmd/phpmd": "^2.9", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12.99 || ^1.7.14", + "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", + "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", + "squizlabs/php_codesniffer": "^3.4" + }, + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev", + "dev-master": "2.x-dev" + }, + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Carbon\\": "src/Carbon/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "https://markido.com" + }, + { + "name": "kylekatarnls", + "homepage": "https://github.com/kylekatarnls" + } + ], + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "https://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ], + "support": { + "docs": "https://carbon.nesbot.com/docs", + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, + "funding": [ + { + "url": "https://github.com/sponsors/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon#sponsor", + "type": "opencollective" + }, + { + "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", + "type": "tidelift" + } + ], + "time": "2023-09-07T16:43:50+00:00" + }, + { + "name": "nette/schema", + "version": "v1.2.4", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/c9ff517a53903b3d4e29ec547fb20feecb05b8ab", + "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab", + "shasum": "" + }, + "require": { + "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", + "php": "7.1 - 8.3" + }, + "require-dev": { + "nette/tester": "^2.3 || ^2.4", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.2.4" + }, + "time": "2023-08-05T18:56:25+00:00" + }, + { + "name": "nette/utils", + "version": "v4.0.1", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "9124157137da01b1f5a5a22d6486cb975f26db7e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/9124157137da01b1f5a5a22d6486cb975f26db7e", + "reference": "9124157137da01b1f5a5a22d6486cb975f26db7e", + "shasum": "" + }, + "require": { + "php": ">=8.0 <8.4" + }, + "conflict": { + "nette/finder": "<3", + "nette/schema": "<1.2.2" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "dev-master", + "nette/tester": "^2.5", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.9" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", + "ext-xml": "to use Strings::length() etc. when mbstring is not available" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v4.0.1" + }, + "time": "2023-07-30T15:42:21+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v4.17.1", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", + "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": ">=7.0" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.9-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/v4.17.1" + }, + "time": "2023-08-13T19:53:39+00:00" + }, + { + "name": "nunomaduro/termwind", + "version": "v1.15.1", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc", + "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.0", + "symfony/console": "^5.3.0|^6.0.0" + }, + "require-dev": { + "ergebnis/phpstan-rules": "^1.0.", + "illuminate/console": "^8.0|^9.0", + "illuminate/support": "^8.0|^9.0", + "laravel/pint": "^1.0.0", + "pestphp/pest": "^1.21.0", + "pestphp/pest-plugin-mock": "^1.0", + "phpstan/phpstan": "^1.4.6", + "phpstan/phpstan-strict-rules": "^1.1.0", + "symfony/var-dumper": "^5.2.7|^6.0.0", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/Functions.php" + ], + "psr-4": { + "Termwind\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Its like Tailwind CSS, but for the console.", + "keywords": [ + "cli", + "console", + "css", + "package", + "php", + "style" + ], + "support": { + "issues": "https://github.com/nunomaduro/termwind/issues", + "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://github.com/xiCO2k", + "type": "github" + } + ], + "time": "2023-02-08T01:06:31+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.1", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e", + "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2023-02-25T19:38:58+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/http-client", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31", + "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client/tree/1.0.2" + }, + "time": "2023-04-10T20:12:12+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "e616d01114759c4c489f93b099585439f795fe35" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", + "reference": "e616d01114759c4c489f93b099585439f795fe35", + "shasum": "" + }, + "require": { + "php": ">=7.0.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory/tree/1.0.2" + }, + "time": "2023-04-10T20:10:41+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", + "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.0" + }, + "time": "2021-07-14T16:46:02+00:00" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "time": "2021-10-29T13:26:27+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.11.20", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "0fa27040553d1d280a67a4393194df5228afea5b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/0fa27040553d1d280a67a4393194df5228afea5b", + "reference": "0fa27040553d1d280a67a4393194df5228afea5b", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^4.0 || ^3.1", + "php": "^8.0 || ^7.0.8", + "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", + "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.11.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.11.20" + }, + "time": "2023-07-31T14:32:22+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/collection", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.28.3", + "fakerphp/faker": "^1.21", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^1.0", + "mockery/mockery": "^1.5", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpcsstandards/phpcsutils": "^1.0.0-rc1", + "phpspec/prophecy-phpunit": "^2.0", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5", + "psalm/plugin-mockery": "^1.1", + "psalm/plugin-phpunit": "^0.18.4", + "ramsey/coding-standard": "^2.0.3", + "ramsey/conventional-commits": "^1.3", + "vimeo/psalm": "^5.4" + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP library for representing and manipulating collections.", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", + "type": "tidelift" + } + ], + "time": "2022-12-31T21:50:55+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.7.4", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "60a4c63ab724854332900504274f6150ff26d286" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286", + "reference": "60a4c63ab724854332900504274f6150ff26d286", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", + "ext-json": "*", + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.8", + "ergebnis/composer-normalize": "^2.15", + "mockery/mockery": "^1.3", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", + "php-mock/php-mock-mockery": "^1.3", + "php-parallel-lint/php-parallel-lint": "^1.1", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^8.5 || ^9", + "ramsey/composer-repl": "^1.4", + "slevomat/coding-standard": "^8.4", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.9" + }, + "suggest": { + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.7.4" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2023-04-15T23:01:58+00:00" + }, + { + "name": "symfony/console", + "version": "v6.3.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/eca495f2ee845130855ddf1cf18460c38966c8b6", + "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^5.4|^6.0" + }, + "conflict": { + "symfony/dependency-injection": "<5.4", + "symfony/dotenv": "<5.4", + "symfony/event-dispatcher": "<5.4", + "symfony/lock": "<5.4", + "symfony/process": "<5.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/event-dispatcher": "^5.4|^6.0", + "symfony/lock": "^5.4|^6.0", + "symfony/process": "^5.4|^6.0", + "symfony/var-dumper": "^5.4|^6.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/v6.3.4" + }, + "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": "2023-08-16T10:10:12+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v6.3.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "883d961421ab1709877c10ac99451632a3d6fa57" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/883d961421ab1709877c10ac99451632a3d6fa57", + "reference": "883d961421ab1709877c10ac99451632a3d6fa57", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v6.3.2" + }, + "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": "2023-07-12T16:00:22+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "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.3.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": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v6.3.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "85fd65ed295c4078367c784e8a5a6cee30348b7a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/85fd65ed295c4078367c784e8a5a6cee30348b7a", + "reference": "85fd65ed295c4078367c784e8a5a6cee30348b7a", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^5.4|^6.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^5.4|^6.0", + "symfony/serializer": "^5.4|^6.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/v6.3.2" + }, + "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": "2023-07-16T17:05:46+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v6.3.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e", + "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<5.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": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/error-handler": "^5.4|^6.0", + "symfony/expression-language": "^5.4|^6.0", + "symfony/http-foundation": "^5.4|^6.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^5.4|^6.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/v6.3.2" + }, + "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": "2023-07-06T06:56:43+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "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.3.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": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/finder", + "version": "v6.3.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "9915db259f67d21eefee768c1abcf1cc61b1fc9e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/9915db259f67d21eefee768c1abcf1cc61b1fc9e", + "reference": "9915db259f67d21eefee768c1abcf1cc61b1fc9e", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "symfony/filesystem": "^6.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/v6.3.3" + }, + "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": "2023-07-31T08:31:44+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v6.3.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "cac1556fdfdf6719668181974104e6fcfa60e844" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cac1556fdfdf6719668181974104e6fcfa60e844", + "reference": "cac1556fdfdf6719668181974104e6fcfa60e844", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "symfony/cache": "<6.2" + }, + "require-dev": { + "doctrine/dbal": "^2.13.1|^3.0", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/expression-language": "^5.4|^6.0", + "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", + "symfony/mime": "^5.4|^6.0", + "symfony/rate-limiter": "^5.2|^6.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/v6.3.4" + }, + "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": "2023-08-22T08:20:46+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v6.3.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "36abb425b4af863ae1fe54d8a8b8b4c76a2bccdb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/36abb425b4af863ae1fe54d8a8b8b4c76a2bccdb", + "reference": "36abb425b4af863ae1fe54d8a8b8b4c76a2bccdb", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.3", + "symfony/event-dispatcher": "^5.4|^6.0", + "symfony/http-foundation": "^6.3.4", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<5.4", + "symfony/cache": "<5.4", + "symfony/config": "<6.1", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<6.3.4", + "symfony/doctrine-bridge": "<5.4", + "symfony/form": "<5.4", + "symfony/http-client": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<5.4", + "symfony/messenger": "<5.4", + "symfony/translation": "<5.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<5.4", + "symfony/validator": "<5.4", + "symfony/var-dumper": "<6.3", + "twig/twig": "<2.13" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^5.4|^6.0", + "symfony/clock": "^6.2", + "symfony/config": "^6.1", + "symfony/console": "^5.4|^6.0", + "symfony/css-selector": "^5.4|^6.0", + "symfony/dependency-injection": "^6.3.4", + "symfony/dom-crawler": "^5.4|^6.0", + "symfony/expression-language": "^5.4|^6.0", + "symfony/finder": "^5.4|^6.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^5.4|^6.0", + "symfony/property-access": "^5.4.5|^6.0.5", + "symfony/routing": "^5.4|^6.0", + "symfony/serializer": "^6.3", + "symfony/stopwatch": "^5.4|^6.0", + "symfony/translation": "^5.4|^6.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^5.4|^6.0", + "symfony/validator": "^6.3", + "symfony/var-exporter": "^6.2", + "twig/twig": "^2.13|^3.0.4" + }, + "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/v6.3.4" + }, + "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": "2023-08-26T13:54:49+00:00" + }, + { + "name": "symfony/mailer", + "version": "v6.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/7b03d9be1dea29bfec0a6c7b603f5072a4c97435", + "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.1", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^5.4|^6.0", + "symfony/mime": "^6.2", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/messenger": "<6.2", + "symfony/mime": "<6.2", + "symfony/twig-bridge": "<6.2.1" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0", + "symfony/http-client": "^5.4|^6.0", + "symfony/messenger": "^6.2", + "symfony/twig-bridge": "^6.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mailer\\": "" + }, + "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 sending emails", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/mailer/tree/v6.3.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": "2023-05-29T12:49:39+00:00" + }, + { + "name": "symfony/mime", + "version": "v6.3.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "9a0cbd52baa5ba5a5b1f0cacc59466f194730f98" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/9a0cbd52baa5ba5a5b1f0cacc59466f194730f98", + "reference": "9a0cbd52baa5ba5a5b1f0cacc59466f194730f98", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<5.4", + "symfony/serializer": "<6.2.13|>=6.3,<6.3.2" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/property-access": "^5.4|^6.0", + "symfony/property-info": "^5.4|^6.0", + "symfony/serializer": "~6.2.13|^6.3.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "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 manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v6.3.3" + }, + "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": "2023-07-31T07:08:24+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.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": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "875e90aeea2777b6f135677f618529449334a612" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", + "reference": "875e90aeea2777b6f135677f618529449334a612", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/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.28.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": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.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": "2023-01-26T09:30:37+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/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.28.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": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "42292d99c55abe617799667f454222c54c60e229" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", + "reference": "42292d99c55abe617799667f454222c54c60e229", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/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.28.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": "2023-07-28T09:04:16+00:00" + }, + { + "name": "symfony/polyfill-php72", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179", + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } + }, + "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 7.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.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": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.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": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-php83", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "symfony/polyfill-php80": "^1.14" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php83\\": "" + }, + "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.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.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": "2023-08-16T06:22:46+00:00" + }, + { + "name": "symfony/polyfill-uuid", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-uuid.git", + "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/9c44518a5aff8da565c8a55dbe85d2769e6f630e", + "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-uuid": "*" + }, + "suggest": { + "ext-uuid": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Uuid\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for uuid functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.28.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": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/process", + "version": "v6.3.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54", + "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "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/v6.3.4" + }, + "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": "2023-08-07T10:39:22+00:00" + }, + { + "name": "symfony/routing", + "version": "v6.3.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "e7243039ab663822ff134fbc46099b5fdfa16f6a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/e7243039ab663822ff134fbc46099b5fdfa16f6a", + "reference": "e7243039ab663822ff134fbc46099b5fdfa16f6a", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "doctrine/annotations": "<1.12", + "symfony/config": "<6.2", + "symfony/dependency-injection": "<5.4", + "symfony/yaml": "<5.4" + }, + "require-dev": { + "doctrine/annotations": "^1.12|^2", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.2", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/expression-language": "^5.4|^6.0", + "symfony/http-foundation": "^5.4|^6.0", + "symfony/yaml": "^5.4|^6.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/v6.3.3" + }, + "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": "2023-07-31T07:08:24+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4", + "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^2.0" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "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.3.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": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/string", + "version": "v6.3.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "53d1a83225002635bca3482fcbf963001313fb68" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/53d1a83225002635bca3482fcbf963001313fb68", + "reference": "53d1a83225002635bca3482fcbf963001313fb68", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/error-handler": "^5.4|^6.0", + "symfony/http-client": "^5.4|^6.0", + "symfony/intl": "^6.2", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^5.4|^6.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/v6.3.2" + }, + "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": "2023-07-05T08:41:27+00:00" + }, + { + "name": "symfony/translation", + "version": "v6.3.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd", + "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "symfony/config": "<5.4", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<5.4", + "symfony/yaml": "<5.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^4.13", + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0", + "symfony/console": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/finder": "^5.4|^6.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^5.4|^6.0", + "symfony/intl": "^5.4|^6.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^5.4|^6.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^5.4|^6.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/v6.3.3" + }, + "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": "2023-07-31T07:08:24+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86", + "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "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.3.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": "2023-05-30T17:17:10+00:00" + }, + { + "name": "symfony/uid", + "version": "v6.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/01b0f20b1351d997711c56f1638f7a8c3061e384", + "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Uid\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to generate and represent UIDs", + "homepage": "https://symfony.com", + "keywords": [ + "UID", + "ulid", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/uid/tree/v6.3.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": "2023-04-08T07:25:02+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v6.3.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "2027be14f8ae8eae999ceadebcda5b4909b81d45" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2027be14f8ae8eae999ceadebcda5b4909b81d45", + "reference": "2027be14f8ae8eae999ceadebcda5b4909b81d45", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<5.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^5.4|^6.0", + "symfony/http-kernel": "^5.4|^6.0", + "symfony/process": "^5.4|^6.0", + "symfony/uid": "^5.4|^6.0", + "twig/twig": "^2.13|^3.0.4" + }, + "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/v6.3.4" + }, + "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": "2023-08-24T14:51:05+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "2.2.6", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c", + "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": "^5.5 || ^7.0 || ^8.0", + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", + "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6" + }, + "time": "2023-01-03T09:29:04+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.5.0", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", + "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.0.2", + "php": "^7.1.3 || ^8.0", + "phpoption/phpoption": "^1.8", + "symfony/polyfill-ctype": "^1.23", + "symfony/polyfill-mbstring": "^1.23.1", + "symfony/polyfill-php80": "^1.23.1" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "ext-filter": "*", + "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "5.5-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2022-10-16T01:01:54+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "b56450eed252f6801410d810c8e1727224ae0743" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", + "reference": "b56450eed252f6801410d810c8e1727224ae0743", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "http://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/2.0.1" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2022-03-08T17:03:00+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], + "packages-dev": [ + { + "name": "fakerphp/faker", + "version": "v1.23.0", + "source": { + "type": "git", + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01", + "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "conflict": { + "fzaninotto/faker": "*" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "doctrine/persistence": "^1.3 || ^2.0", + "ext-intl": "*", + "phpunit/phpunit": "^9.5.26", + "symfony/phpunit-bridge": "^5.4.16" + }, + "suggest": { + "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "v1.21-dev" + } + }, + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0" + }, + "time": "2023-06-12T08:44:38+00:00" + }, + { + "name": "filp/whoops", + "version": "2.15.3", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "c83e88a30524f9360b11f585f71e6b17313b7187" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187", + "reference": "c83e88a30524f9360b11f585f71e6b17313b7187", + "shasum": "" + }, + "require": { + "php": "^5.5.9 || ^7.0 || ^8.0", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "require-dev": { + "mockery/mockery": "^0.9 || ^1.0", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.15.3" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2023-07-13T12:00:00+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, + "time": "2020-07-09T08:09:16+00:00" + }, + { + "name": "laravel/pint", + "version": "v1.13.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "22f204242d68095b3ba7dab5d3ef0240454a4652" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/22f204242d68095b3ba7dab5d3ef0240454a4652", + "reference": "22f204242d68095b3ba7dab5d3ef0240454a4652", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.21.1", + "illuminate/view": "^10.5.1", + "laravel-zero/framework": "^10.1.2", + "mockery/mockery": "^1.5.1", + "nunomaduro/larastan": "^2.5.1", + "nunomaduro/termwind": "^1.15.1", + "pestphp/pest": "^2.4.0" + }, + "bin": [ + "builds/pint" + ], + "type": "project", + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Seeders\\": "database/seeders/", + "Database\\Factories\\": "database/factories/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "An opinionated code formatter for PHP.", + "homepage": "https://laravel.com", + "keywords": [ + "format", + "formatter", + "lint", + "linter", + "php" + ], + "support": { + "issues": "https://github.com/laravel/pint/issues", + "source": "https://github.com/laravel/pint" + }, + "time": "2023-09-06T11:03:34+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.24.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "3a373bb2845623aed2017c672dc61c84ae974890" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/3a373bb2845623aed2017c672dc61c84ae974890", + "reference": "3a373bb2845623aed2017c672dc61c84ae974890", + "shasum": "" + }, + "require": { + "illuminate/console": "^8.0|^9.0|^10.0", + "illuminate/contracts": "^8.0|^9.0|^10.0", + "illuminate/support": "^8.0|^9.0|^10.0", + "php": "^8.0", + "symfony/yaml": "^6.0" + }, + "require-dev": { + "orchestra/testbench": "^6.0|^7.0|^8.0", + "phpstan/phpstan": "^1.10" + }, + "bin": [ + "bin/sail" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Sail\\SailServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Docker files for running a basic Laravel application.", + "keywords": [ + "docker", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/sail/issues", + "source": "https://github.com/laravel/sail" + }, + "time": "2023-09-01T14:05:17+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.6.6", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e", + "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "^2.0.1", + "lib-pcre": ">=7.0", + "php": ">=7.3" + }, + "conflict": { + "phpunit/phpunit": "<8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.6.10", + "psalm/plugin-phpunit": "^0.18.4", + "symplify/easy-coding-standard": "^11.5.0", + "vimeo/psalm": "^4.30" + }, + "type": "library", + "autoload": { + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], + "psr-4": { + "Mockery\\": "library/Mockery" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "https://github.com/padraic", + "role": "Author" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "https://davedevelopment.co.uk", + "role": "Developer" + }, + { + "name": "Nathanael Esayeas", + "email": "nathanael.esayeas@protonmail.com", + "homepage": "https://github.com/ghostwriter", + "role": "Lead Developer" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "support": { + "docs": "https://docs.mockery.io/", + "issues": "https://github.com/mockery/mockery/issues", + "rss": "https://github.com/mockery/mockery/releases.atom", + "security": "https://github.com/mockery/mockery/security/advisories", + "source": "https://github.com/mockery/mockery" + }, + "time": "2023-08-09T00:03:52+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.11.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3,<3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2023-03-08T13:26:56+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v7.8.1", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "61553ad3260845d7e3e49121b7074619233d361b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/61553ad3260845d7e3e49121b7074619233d361b", + "reference": "61553ad3260845d7e3e49121b7074619233d361b", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.15.3", + "nunomaduro/termwind": "^1.15.1", + "php": "^8.1.0", + "symfony/console": "^6.3.2" + }, + "require-dev": { + "brianium/paratest": "^7.2.4", + "laravel/framework": "^10.17.1", + "laravel/pint": "^1.10.5", + "laravel/sail": "^1.23.1", + "laravel/sanctum": "^3.2.5", + "laravel/tinker": "^2.8.1", + "nunomaduro/larastan": "^2.6.4", + "orchestra/testbench-core": "^8.5.9", + "pestphp/pest": "^2.12.1", + "phpunit/phpunit": "^10.3.1", + "sebastian/environment": "^6.0.1", + "spatie/laravel-ignition": "^2.2.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2023-08-07T08:03:21+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "97803eca37d319dfa7826cc2437fc020857acb53" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", + "reference": "97803eca37d319dfa7826cc2437fc020857acb53", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.3" + }, + "time": "2021-07-20T11:28:43+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "10.1.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "cd59bb34756a16ca8253ce9b2909039c227fff71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/cd59bb34756a16ca8253ce9b2909039c227fff71", + "reference": "cd59bb34756a16ca8253ce9b2909039c227fff71", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^4.15", + "php": ">=8.1", + "phpunit/php-file-iterator": "^4.0", + "phpunit/php-text-template": "^3.0", + "sebastian/code-unit-reverse-lookup": "^3.0", + "sebastian/complexity": "^3.0", + "sebastian/environment": "^6.0", + "sebastian/lines-of-code": "^2.0", + "sebastian/version": "^4.0", + "theseer/tokenizer": "^1.2.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.1" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "10.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T14:04:38+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "4.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T06:24:48+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:56:09+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T14:07:24+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:57:52+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "10.3.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "241ed4dd0db1c096984e62d414c4e1ac8d5dbff4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/241ed4dd0db1c096984e62d414c4e1ac8d5dbff4", + "reference": "241ed4dd0db1c096984e62d414c4e1ac8d5dbff4", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.10.1", + "phar-io/manifest": "^2.0.3", + "phar-io/version": "^3.0.2", + "php": ">=8.1", + "phpunit/php-code-coverage": "^10.1.1", + "phpunit/php-file-iterator": "^4.0", + "phpunit/php-invoker": "^4.0", + "phpunit/php-text-template": "^3.0", + "phpunit/php-timer": "^6.0", + "sebastian/cli-parser": "^2.0", + "sebastian/code-unit": "^2.0", + "sebastian/comparator": "^5.0", + "sebastian/diff": "^5.0", + "sebastian/environment": "^6.0", + "sebastian/exporter": "^5.0", + "sebastian/global-state": "^6.0.1", + "sebastian/object-enumerator": "^5.0", + "sebastian/recursion-context": "^5.0", + "sebastian/type": "^4.0", + "sebastian/version": "^4.0" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "10.3-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.3.3" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2023-09-05T04:34:51+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae", + "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:58:15+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:58:43+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:59:15+00:00" + }, + { + "name": "sebastian/comparator", + "version": "5.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "2db5010a484d53ebf536087a70b4a5423c102372" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372", + "reference": "2db5010a484d53ebf536087a70b4a5423c102372", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/diff": "^5.0", + "sebastian/exporter": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-14T13:18:12+00:00" + }, + { + "name": "sebastian/complexity", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "c70b73893e10757af9c6a48929fa6a333b56a97a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/c70b73893e10757af9c6a48929fa6a333b56a97a", + "reference": "c70b73893e10757af9c6a48929fa6a333b56a97a", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.10", + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T09:55:53+00:00" + }, + { + "name": "sebastian/diff", + "version": "5.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b", + "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0", + "symfony/process": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-05-01T07:48:21+00:00" + }, + { + "name": "sebastian/environment", + "version": "6.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951", + "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "https://github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-04-11T05:39:26+00:00" + }, + { + "name": "sebastian/exporter", + "version": "5.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "32ff03d078fed1279c4ec9a407d08c5e9febb480" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/32ff03d078fed1279c4ec9a407d08c5e9febb480", + "reference": "32ff03d078fed1279c4ec9a407d08c5e9febb480", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/5.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-09-08T04:46:58+00:00" + }, + { + "name": "sebastian/global-state", + "version": "6.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/7ea9ead78f6d380d2a667864c132c2f7b83055e4", + "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-07-19T07:19:23+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "649e40d279e243d985aa8fb6e74dd5bb28dc185d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/649e40d279e243d985aa8fb6e74dd5bb28dc185d", + "reference": "649e40d279e243d985aa8fb6e74dd5bb28dc185d", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.10", + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T09:25:50+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:08:32+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:06:18+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:05:40+00:00" + }, + { + "name": "sebastian/type", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:10:45+00:00" + }, + { + "name": "sebastian/version", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-07T11:34:05+00:00" + }, + { + "name": "spatie/backtrace", + "version": "1.5.3", + "source": { + "type": "git", + "url": "https://github.com/spatie/backtrace.git", + "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab", + "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "ext-json": "*", + "phpunit/phpunit": "^9.3", + "spatie/phpunit-snapshot-assertions": "^4.2", + "symfony/var-dumper": "^5.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Backtrace\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van de Herten", + "email": "freek@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "A better backtrace", + "homepage": "https://github.com/spatie/backtrace", + "keywords": [ + "Backtrace", + "spatie" + ], + "support": { + "source": "https://github.com/spatie/backtrace/tree/1.5.3" + }, + "funding": [ + { + "url": "https://github.com/sponsors/spatie", + "type": "github" + }, + { + "url": "https://spatie.be/open-source/support-us", + "type": "other" + } + ], + "time": "2023-06-28T12:59:17+00:00" + }, + { + "name": "spatie/flare-client-php", + "version": "1.4.2", + "source": { + "type": "git", + "url": "https://github.com/spatie/flare-client-php.git", + "reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/5f2c6a7a0d2c1d90c12559dc7828fd942911a544", + "reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544", + "shasum": "" + }, + "require": { + "illuminate/pipeline": "^8.0|^9.0|^10.0", + "nesbot/carbon": "^2.62.1", + "php": "^8.0", + "spatie/backtrace": "^1.5.2", + "symfony/http-foundation": "^5.0|^6.0", + "symfony/mime": "^5.2|^6.0", + "symfony/process": "^5.2|^6.0", + "symfony/var-dumper": "^5.2|^6.0" + }, + "require-dev": { + "dms/phpunit-arraysubset-asserts": "^0.3.0", + "pestphp/pest": "^1.20", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "spatie/phpunit-snapshot-assertions": "^4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.3.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\FlareClient\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Send PHP errors to Flare", + "homepage": "https://github.com/spatie/flare-client-php", + "keywords": [ + "exception", + "flare", + "reporting", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/flare-client-php/issues", + "source": "https://github.com/spatie/flare-client-php/tree/1.4.2" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2023-07-28T08:07:24+00:00" + }, + { + "name": "spatie/ignition", + "version": "1.10.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/ignition.git", + "reference": "d92b9a081e99261179b63a858c7a4b01541e7dd1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/ignition/zipball/d92b9a081e99261179b63a858c7a4b01541e7dd1", + "reference": "d92b9a081e99261179b63a858c7a4b01541e7dd1", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "php": "^8.0", + "spatie/backtrace": "^1.5.3", + "spatie/flare-client-php": "^1.4.0", + "symfony/console": "^5.4|^6.0", + "symfony/var-dumper": "^5.4|^6.0" + }, + "require-dev": { + "illuminate/cache": "^9.52", + "mockery/mockery": "^1.4", + "pestphp/pest": "^1.20", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "psr/simple-cache-implementation": "*", + "symfony/cache": "^6.0", + "symfony/process": "^5.4|^6.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.5.x-dev" + } + }, + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for PHP applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/ignition/issues", + "source": "https://github.com/spatie/ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2023-08-21T15:06:37+00:00" + }, + { + "name": "spatie/laravel-ignition", + "version": "2.3.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-ignition.git", + "reference": "4ed813d16edb5a1ab0d7f4b1d116c37ee8cdf3c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/4ed813d16edb5a1ab0d7f4b1d116c37ee8cdf3c0", + "reference": "4ed813d16edb5a1ab0d7f4b1d116c37ee8cdf3c0", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "illuminate/support": "^10.0", + "php": "^8.1", + "spatie/flare-client-php": "^1.3.5", + "spatie/ignition": "^1.9", + "symfony/console": "^6.2.3", + "symfony/var-dumper": "^6.2.3" + }, + "require-dev": { + "livewire/livewire": "^2.11", + "mockery/mockery": "^1.5.1", + "openai-php/client": "^0.3.4", + "orchestra/testbench": "^8.0", + "pestphp/pest": "^1.22.3", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan-deprecation-rules": "^1.1.1", + "phpstan/phpstan-phpunit": "^1.3.3", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Spatie\\LaravelIgnition\\IgnitionServiceProvider" + ], + "aliases": { + "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare" + } + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\LaravelIgnition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for Laravel applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/laravel-ignition/issues", + "source": "https://github.com/spatie/laravel-ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2023-08-23T06:24:34+00:00" + }, + { + "name": "symfony/yaml", + "version": "v6.3.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add", + "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<5.4" + }, + "require-dev": { + "symfony/console": "^5.4|^6.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/v6.3.3" + }, + "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": "2023-07-31T07:08:24+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", + "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.1" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2021-07-28T10:34:58+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^8.1" + }, + "platform-dev": [], + "plugin-api-version": "2.3.0" +} diff --git a/LaravelTutorial/config/app.php b/LaravelTutorial/config/app.php new file mode 100644 index 000000000..4c231b47d --- /dev/null +++ b/LaravelTutorial/config/app.php @@ -0,0 +1,188 @@ + env('APP_NAME', 'Laravel'), + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. Set this in your ".env" file. + | + */ + + 'env' => env('APP_ENV', 'production'), + + /* + |-------------------------------------------------------------------------- + | Application Debug Mode + |-------------------------------------------------------------------------- + | + | When your application is in debug mode, detailed error messages with + | stack traces will be shown on every error that occurs within your + | application. If disabled, a simple generic error page is shown. + | + */ + + 'debug' => (bool) env('APP_DEBUG', false), + + /* + |-------------------------------------------------------------------------- + | Application URL + |-------------------------------------------------------------------------- + | + | This URL is used by the console to properly generate URLs when using + | the Artisan command line tool. You should set this to the root of + | your application so that it is used when running Artisan tasks. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + 'asset_url' => env('ASSET_URL'), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. We have gone + | ahead and set this to a sensible default for you out of the box. + | + */ + + 'timezone' => 'UTC', + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by the translation service provider. You are free to set this value + | to any of the locales which will be supported by the application. + | + */ + + 'locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Application Fallback Locale + |-------------------------------------------------------------------------- + | + | The fallback locale determines the locale to use when the current one + | is not available. You may change the value to correspond to any of + | the language folders that are provided through your application. + | + */ + + 'fallback_locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Faker Locale + |-------------------------------------------------------------------------- + | + | This locale will be used by the Faker PHP library when generating fake + | data for your database seeds. For example, this will be used to get + | localized telephone numbers, street address information and more. + | + */ + + 'faker_locale' => 'en_US', + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is used by the Illuminate encrypter service and should be set + | to a random, 32 character string, otherwise these encrypted strings + | will not be safe. Please do this before deploying an application! + | + */ + + 'key' => env('APP_KEY'), + + 'cipher' => 'AES-256-CBC', + + /* + |-------------------------------------------------------------------------- + | Maintenance Mode Driver + |-------------------------------------------------------------------------- + | + | These configuration options determine the driver used to determine and + | manage Laravel's "maintenance mode" status. The "cache" driver will + | allow maintenance mode to be controlled across multiple machines. + | + | Supported drivers: "file", "cache" + | + */ + + 'maintenance' => [ + 'driver' => 'file', + // 'store' => 'redis', + ], + + /* + |-------------------------------------------------------------------------- + | Autoloaded Service Providers + |-------------------------------------------------------------------------- + | + | The service providers listed here will be automatically loaded on the + | request to your application. Feel free to add your own services to + | this array to grant expanded functionality to your applications. + | + */ + + 'providers' => ServiceProvider::defaultProviders()->merge([ + /* + * Package Service Providers... + */ + + /* + * Application Service Providers... + */ + App\Providers\AppServiceProvider::class, + App\Providers\AuthServiceProvider::class, + // App\Providers\BroadcastServiceProvider::class, + App\Providers\EventServiceProvider::class, + App\Providers\RouteServiceProvider::class, + ])->toArray(), + + /* + |-------------------------------------------------------------------------- + | Class Aliases + |-------------------------------------------------------------------------- + | + | This array of class aliases will be registered when this application + | is started. However, feel free to register as many as you wish as + | the aliases are "lazy" loaded so they don't hinder performance. + | + */ + + 'aliases' => Facade::defaultAliases()->merge([ + // 'Example' => App\Facades\Example::class, + ])->toArray(), + +]; diff --git a/LaravelTutorial/config/auth.php b/LaravelTutorial/config/auth.php new file mode 100644 index 000000000..9548c15de --- /dev/null +++ b/LaravelTutorial/config/auth.php @@ -0,0 +1,115 @@ + [ + 'guard' => 'web', + 'passwords' => 'users', + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | here which uses session storage and the Eloquent user provider. + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | If you have multiple user tables or models you may configure multiple + | sources which represent each model / table. These sources may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => App\Models\User::class, + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | You may specify multiple password reset configurations if you have more + | than one user table or model in the application and you want to have + | separate password reset settings based on the specific user types. + | + | The expiry time is the number of minutes that each reset token will be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + | The throttle setting is the number of seconds a user must wait before + | generating more password reset tokens. This prevents the user from + | quickly generating a very large amount of password reset tokens. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => 'password_reset_tokens', + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | times out and the user is prompted to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => 10800, + +]; diff --git a/LaravelTutorial/config/broadcasting.php b/LaravelTutorial/config/broadcasting.php new file mode 100644 index 000000000..241048538 --- /dev/null +++ b/LaravelTutorial/config/broadcasting.php @@ -0,0 +1,71 @@ + env('BROADCAST_DRIVER', 'null'), + + /* + |-------------------------------------------------------------------------- + | Broadcast Connections + |-------------------------------------------------------------------------- + | + | Here you may define all of the broadcast connections that will be used + | to broadcast events to other systems or over websockets. Samples of + | each available type of connection are provided inside this array. + | + */ + + 'connections' => [ + + 'pusher' => [ + 'driver' => 'pusher', + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER'), + 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', + 'port' => env('PUSHER_PORT', 443), + 'scheme' => env('PUSHER_SCHEME', 'https'), + 'encrypted' => true, + 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', + ], + 'client_options' => [ + // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html + ], + ], + + 'ably' => [ + 'driver' => 'ably', + 'key' => env('ABLY_KEY'), + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + ], + + 'log' => [ + 'driver' => 'log', + ], + + 'null' => [ + 'driver' => 'null', + ], + + ], + +]; diff --git a/LaravelTutorial/config/cache.php b/LaravelTutorial/config/cache.php new file mode 100644 index 000000000..d4171e221 --- /dev/null +++ b/LaravelTutorial/config/cache.php @@ -0,0 +1,111 @@ + env('CACHE_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + | Supported drivers: "apc", "array", "database", "file", + | "memcached", "redis", "dynamodb", "octane", "null" + | + */ + + 'stores' => [ + + 'apc' => [ + 'driver' => 'apc', + ], + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'cache', + 'connection' => null, + 'lock_connection' => null, + ], + + 'file' => [ + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), + 'lock_path' => storage_path('framework/cache/data'), + ], + + 'memcached' => [ + 'driver' => 'memcached', + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), + 'sasl' => [ + env('MEMCACHED_USERNAME'), + env('MEMCACHED_PASSWORD'), + ], + 'options' => [ + // Memcached::OPT_CONNECT_TIMEOUT => 2000, + ], + 'servers' => [ + [ + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('MEMCACHED_PORT', 11211), + 'weight' => 100, + ], + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'cache', + 'lock_connection' => 'default', + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + 'octane' => [ + 'driver' => 'octane', + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing the APC, database, memcached, Redis, or DynamoDB cache + | stores there might be other applications using the same cache. For + | that reason, you may prefix every cache key to avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), + +]; diff --git a/LaravelTutorial/config/cors.php b/LaravelTutorial/config/cors.php new file mode 100644 index 000000000..8a39e6daa --- /dev/null +++ b/LaravelTutorial/config/cors.php @@ -0,0 +1,34 @@ + ['api/*', 'sanctum/csrf-cookie'], + + 'allowed_methods' => ['*'], + + 'allowed_origins' => ['*'], + + 'allowed_origins_patterns' => [], + + 'allowed_headers' => ['*'], + + 'exposed_headers' => [], + + 'max_age' => 0, + + 'supports_credentials' => false, + +]; diff --git a/LaravelTutorial/config/database.php b/LaravelTutorial/config/database.php new file mode 100644 index 000000000..137ad18ce --- /dev/null +++ b/LaravelTutorial/config/database.php @@ -0,0 +1,151 @@ + env('DB_CONNECTION', 'mysql'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Here are each of the database connections setup for your application. + | Of course, examples of configuring each database platform that is + | supported by Laravel is shown below to make development simple. + | + | + | All database work in Laravel is done through the PHP PDO facilities + | so make sure you have the driver for your particular database of + | choice installed on your machine before you begin development. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DATABASE_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => 'utf8mb4', + 'collation' => 'utf8mb4_unicode_ci', + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + 'search_path' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + // 'encrypt' => env('DB_ENCRYPT', 'yes'), + // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run in the database. + | + */ + + 'migrations' => 'migrations', + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as APC or Memcached. Laravel makes it easy to dig right in. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/LaravelTutorial/config/filesystems.php b/LaravelTutorial/config/filesystems.php new file mode 100644 index 000000000..e9d9dbdbe --- /dev/null +++ b/LaravelTutorial/config/filesystems.php @@ -0,0 +1,76 @@ + env('FILESYSTEM_DISK', 'local'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Here you may configure as many filesystem "disks" as you wish, and you + | may even configure multiple disks of the same driver. Defaults have + | been set up for each driver as an example of the required values. + | + | Supported Drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app'), + 'throw' => false, + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + 'throw' => false, + ], + + 's3' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + 'throw' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure the symbolic links that will be created when the + | `storage:link` Artisan command is executed. The array keys should be + | the locations of the links and the values should be their targets. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], + +]; diff --git a/LaravelTutorial/config/hashing.php b/LaravelTutorial/config/hashing.php new file mode 100644 index 000000000..bcd3be4c2 --- /dev/null +++ b/LaravelTutorial/config/hashing.php @@ -0,0 +1,52 @@ + 'bcrypt', + + /* + |-------------------------------------------------------------------------- + | Bcrypt Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Bcrypt algorithm. This will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'bcrypt' => [ + 'rounds' => env('BCRYPT_ROUNDS', 10), + ], + + /* + |-------------------------------------------------------------------------- + | Argon Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Argon algorithm. These will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'argon' => [ + 'memory' => 65536, + 'threads' => 1, + 'time' => 4, + ], + +]; diff --git a/LaravelTutorial/config/logging.php b/LaravelTutorial/config/logging.php new file mode 100644 index 000000000..c44d27639 --- /dev/null +++ b/LaravelTutorial/config/logging.php @@ -0,0 +1,131 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Deprecations Log Channel + |-------------------------------------------------------------------------- + | + | This option controls the log channel that should be used to log warnings + | regarding deprecated PHP and library features. This allows you to get + | your application ready for upcoming major versions of dependencies. + | + */ + + 'deprecations' => [ + 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), + 'trace' => false, + ], + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Out of + | the box, Laravel uses the Monolog PHP logging library. This gives + | you a variety of powerful log handlers / formatters to utilize. + | + | Available Drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", + | "custom", "stack" + | + */ + + 'channels' => [ + 'stack' => [ + 'driver' => 'stack', + 'channels' => ['single'], + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'days' => 14, + 'replace_placeholders' => true, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => 'Laravel Log', + 'emoji' => ':boom:', + 'level' => env('LOG_LEVEL', 'critical'), + 'replace_placeholders' => true, + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => StreamHandler::class, + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'with' => [ + 'stream' => 'php://stderr', + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => env('LOG_LEVEL', 'debug'), + 'facility' => LOG_USER, + 'replace_placeholders' => true, + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + ], + +]; diff --git a/LaravelTutorial/config/mail.php b/LaravelTutorial/config/mail.php new file mode 100644 index 000000000..e652bd025 --- /dev/null +++ b/LaravelTutorial/config/mail.php @@ -0,0 +1,125 @@ + env('MAIL_MAILER', 'smtp'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers to be used while + | sending an e-mail. You will specify which one you are using for your + | mailers below. You are free to add additional mailers as required. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", + | "postmark", "log", "array", "failover" + | + */ + + 'mailers' => [ + 'smtp' => [ + 'transport' => 'smtp', + 'url' => env('MAIL_URL'), + 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), + 'port' => env('MAIL_PORT', 587), + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN'), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'mailgun' => [ + 'transport' => 'mailgun', + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'postmark' => [ + 'transport' => 'postmark', + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'sendmail' => [ + 'transport' => 'sendmail', + 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + + 'failover' => [ + 'transport' => 'failover', + 'mailers' => [ + 'smtp', + 'log', + ], + ], + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all e-mails sent by your application to be sent from + | the same address. Here, you may specify a name and address that is + | used globally for all e-mails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + + /* + |-------------------------------------------------------------------------- + | Markdown Mail Settings + |-------------------------------------------------------------------------- + | + | If you are using Markdown based email rendering, you may configure your + | theme and component paths here, allowing you to customize the design + | of the emails. Or, you may simply stick with the Laravel defaults! + | + */ + + 'markdown' => [ + 'theme' => 'default', + + 'paths' => [ + resource_path('views/vendor/mail'), + ], + ], + +]; diff --git a/LaravelTutorial/config/queue.php b/LaravelTutorial/config/queue.php new file mode 100644 index 000000000..01c6b054d --- /dev/null +++ b/LaravelTutorial/config/queue.php @@ -0,0 +1,109 @@ + env('QUEUE_CONNECTION', 'sync'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection information for each server that + | is used by your application. A default configuration has been added + | for each back-end shipped with Laravel. You are free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'jobs', + 'queue' => 'default', + 'retry_after' => 90, + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => 'localhost', + 'queue' => 'default', + 'retry_after' => 90, + 'block_for' => 0, + 'after_commit' => false, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'default'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'after_commit' => false, + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => 90, + 'block_for' => null, + 'after_commit' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Job Batching + |-------------------------------------------------------------------------- + | + | The following options configure the database and table that store job + | batching information. These options can be updated to any database + | connection and table which has been defined by your application. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'job_batches', + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control which database and table are used to store the jobs that + | have failed. You may change them to any database / table you wish. + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/LaravelTutorial/config/sanctum.php b/LaravelTutorial/config/sanctum.php new file mode 100644 index 000000000..529cfdc99 --- /dev/null +++ b/LaravelTutorial/config/sanctum.php @@ -0,0 +1,67 @@ + explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( + '%s%s', + 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1', + Sanctum::currentApplicationUrlWithPort() + ))), + + /* + |-------------------------------------------------------------------------- + | Sanctum Guards + |-------------------------------------------------------------------------- + | + | This array contains the authentication guards that will be checked when + | Sanctum is trying to authenticate a request. If none of these guards + | are able to authenticate the request, Sanctum will use the bearer + | token that's present on an incoming request for authentication. + | + */ + + 'guard' => ['web'], + + /* + |-------------------------------------------------------------------------- + | Expiration Minutes + |-------------------------------------------------------------------------- + | + | This value controls the number of minutes until an issued token will be + | considered expired. If this value is null, personal access tokens do + | not expire. This won't tweak the lifetime of first-party sessions. + | + */ + + 'expiration' => null, + + /* + |-------------------------------------------------------------------------- + | Sanctum Middleware + |-------------------------------------------------------------------------- + | + | When authenticating your first-party SPA with Sanctum you may need to + | customize some of the middleware Sanctum uses while processing the + | request. You may change the middleware listed below as required. + | + */ + + 'middleware' => [ + 'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class, + 'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class, + ], + +]; diff --git a/LaravelTutorial/config/services.php b/LaravelTutorial/config/services.php new file mode 100644 index 000000000..0ace530e8 --- /dev/null +++ b/LaravelTutorial/config/services.php @@ -0,0 +1,34 @@ + [ + 'domain' => env('MAILGUN_DOMAIN'), + 'secret' => env('MAILGUN_SECRET'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), + 'scheme' => 'https', + ], + + 'postmark' => [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + +]; diff --git a/LaravelTutorial/config/session.php b/LaravelTutorial/config/session.php new file mode 100644 index 000000000..8fed97c01 --- /dev/null +++ b/LaravelTutorial/config/session.php @@ -0,0 +1,201 @@ + env('SESSION_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to immediately expire on the browser closing, set that option. + | + */ + + 'lifetime' => env('SESSION_LIFETIME', 120), + + 'expire_on_close' => false, + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it is stored. All encryption will be run + | automatically by Laravel and you can use the Session like normal. + | + */ + + 'encrypt' => false, + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When using the native session driver, we need a location where session + | files may be stored. A default has been set for you but a different + | location may be specified. This is only needed for file sessions. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION'), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table we + | should use to manage the sessions. Of course, a sensible default is + | provided for you; however, you are free to change this as needed. + | + */ + + 'table' => 'sessions', + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | While using one of the framework's cache driven session backends you may + | list a cache store that should be used for these sessions. This value + | must match with one of the application's configured cache "stores". + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE'), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the cookie used to identify a session + | instance by ID. The name specified here will get used every time a + | new session cookie is created by the framework for every driver. + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_').'_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application but you are free to change this when necessary. + | + */ + + 'path' => '/', + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | Here you may change the domain of the cookie used to identify a session + | in your application. This will determine which domains the cookie is + | available to in your application. A sensible default has been set. + | + */ + + 'domain' => env('SESSION_DOMAIN'), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you when it can't be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. You are free to modify this option if needed. + | + */ + + 'http_only' => true, + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" since this is a secure default value. + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => 'lax', + +]; diff --git a/LaravelTutorial/config/view.php b/LaravelTutorial/config/view.php new file mode 100644 index 000000000..22b8a18d3 --- /dev/null +++ b/LaravelTutorial/config/view.php @@ -0,0 +1,36 @@ + [ + resource_path('views'), + ], + + /* + |-------------------------------------------------------------------------- + | Compiled View Path + |-------------------------------------------------------------------------- + | + | This option determines where all the compiled Blade templates will be + | stored for your application. Typically, this is within the storage + | directory. However, as usual, you are free to change this value. + | + */ + + 'compiled' => env( + 'VIEW_COMPILED_PATH', + realpath(storage_path('framework/views')) + ), + +]; diff --git a/LaravelTutorial/database/.gitignore b/LaravelTutorial/database/.gitignore new file mode 100644 index 000000000..9b19b93c9 --- /dev/null +++ b/LaravelTutorial/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/LaravelTutorial/database/factories/UserFactory.php b/LaravelTutorial/database/factories/UserFactory.php new file mode 100644 index 000000000..9df84db86 --- /dev/null +++ b/LaravelTutorial/database/factories/UserFactory.php @@ -0,0 +1,20 @@ + + */ +class UserFactory extends Factory +{ + public function definition(): array + { + return [ + 'username' => fake()->unique()->userName(), + 'password' => bcrypt('123456') + ]; + } +} diff --git a/LaravelTutorial/database/migrations/2014_10_12_000000_create_users_table.php b/LaravelTutorial/database/migrations/2014_10_12_000000_create_users_table.php new file mode 100644 index 000000000..ff192b83a --- /dev/null +++ b/LaravelTutorial/database/migrations/2014_10_12_000000_create_users_table.php @@ -0,0 +1,33 @@ +id(); + $table->string('username')->unique(); + $table->string('password'); + $table->string('code')->nullable(); + $table->date('code_created_at')->nullable(); + $table->timestamps(); + // Created_at + // Updated_at + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('users'); + } +}; diff --git a/LaravelTutorial/database/seeders/DatabaseSeeder.php b/LaravelTutorial/database/seeders/DatabaseSeeder.php new file mode 100644 index 000000000..957388c70 --- /dev/null +++ b/LaravelTutorial/database/seeders/DatabaseSeeder.php @@ -0,0 +1,30 @@ +create(); + + // \App\Models\User::factory()->create([ + // 'name' => 'Test User', + // 'email' => 'test@example.com', + // ]); + + User::factory()->create([ + 'username' => 'admin', + ]); + + User::factory(10)->create(); + } +} diff --git a/LaravelTutorial/package.json b/LaravelTutorial/package.json new file mode 100644 index 000000000..0e6480f26 --- /dev/null +++ b/LaravelTutorial/package.json @@ -0,0 +1,13 @@ +{ + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build" + }, + "devDependencies": { + "axios": "^1.1.2", + "laravel-vite-plugin": "^0.8.0", + "vite": "^4.0.0" + } +} diff --git a/LaravelTutorial/phpunit.xml b/LaravelTutorial/phpunit.xml new file mode 100644 index 000000000..f112c0c82 --- /dev/null +++ b/LaravelTutorial/phpunit.xml @@ -0,0 +1,31 @@ + + + + + tests/Unit + + + tests/Feature + + + + + app + + + + + + + + + + + + + + diff --git a/LaravelTutorial/public/.htaccess b/LaravelTutorial/public/.htaccess new file mode 100644 index 000000000..3aec5e27e --- /dev/null +++ b/LaravelTutorial/public/.htaccess @@ -0,0 +1,21 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + diff --git a/LaravelTutorial/public/Js/main.js b/LaravelTutorial/public/Js/main.js new file mode 100644 index 000000000..93466fec4 --- /dev/null +++ b/LaravelTutorial/public/Js/main.js @@ -0,0 +1,58 @@ +$(document).ready(function () { + $('#btn-login').click(function (e) { + e.preventDefault(); + + const username = $('#username').val(); + const password = $('#password').val(); + + // jqajax + $.ajax({ + type: "POST", + url: "/api/login", + headers: { + 'X-CSRF-TOKEN': $('input[name="_token"]').val() + }, + data: { + username: username, + password: password + }, + success: function (response) { + if (response.status) { + window.location.href = '/'; + } + alert(response.message); + } + }); + }); + + $('#btn-register').click(function (e) { + e.preventDefault(); + + const username = $('#username').val(); + const password = $('#password').val(); + const confirm_password = $('#confirm-password').val(); + + if (password != confirm_password) { + alert('Nhập lại mật khẩu không chính xác'); + return; + } + + $.ajax({ + type: "POST", + url: "/api/register", + headers: { + 'X-CSRF-TOKEN': $('input[name="_token"]').val() + }, + data: { + username: username, + password: password, + }, + success: function (response) { + if (response.status) { + window.location.href = '/login'; + } + alert(response.message); + } + }); + }); +}); \ No newline at end of file diff --git a/LaravelTutorial/public/favicon.ico b/LaravelTutorial/public/favicon.ico new file mode 100644 index 000000000..e69de29bb diff --git a/LaravelTutorial/public/index.php b/LaravelTutorial/public/index.php new file mode 100644 index 000000000..1d69f3a28 --- /dev/null +++ b/LaravelTutorial/public/index.php @@ -0,0 +1,55 @@ +make(Kernel::class); + +$response = $kernel->handle( + $request = Request::capture() +)->send(); + +$kernel->terminate($request, $response); diff --git a/LaravelTutorial/public/robots.txt b/LaravelTutorial/public/robots.txt new file mode 100644 index 000000000..eb0536286 --- /dev/null +++ b/LaravelTutorial/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/LaravelTutorial/resources/css/app.css b/LaravelTutorial/resources/css/app.css new file mode 100644 index 000000000..e69de29bb diff --git a/LaravelTutorial/resources/js/app.js b/LaravelTutorial/resources/js/app.js new file mode 100644 index 000000000..e59d6a0ad --- /dev/null +++ b/LaravelTutorial/resources/js/app.js @@ -0,0 +1 @@ +import './bootstrap'; diff --git a/LaravelTutorial/resources/js/bootstrap.js b/LaravelTutorial/resources/js/bootstrap.js new file mode 100644 index 000000000..846d35058 --- /dev/null +++ b/LaravelTutorial/resources/js/bootstrap.js @@ -0,0 +1,32 @@ +/** + * We'll load the axios HTTP library which allows us to easily issue requests + * to our Laravel back-end. This library automatically handles sending the + * CSRF token as a header based on the value of the "XSRF" token cookie. + */ + +import axios from 'axios'; +window.axios = axios; + +window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; + +/** + * Echo exposes an expressive API for subscribing to channels and listening + * for events that are broadcast by Laravel. Echo and event broadcasting + * allows your team to easily build robust real-time web applications. + */ + +// import Echo from 'laravel-echo'; + +// import Pusher from 'pusher-js'; +// window.Pusher = Pusher; + +// window.Echo = new Echo({ +// broadcaster: 'pusher', +// key: import.meta.env.VITE_PUSHER_APP_KEY, +// cluster: import.meta.env.VITE_PUSHER_APP_CLUSTER ?? 'mt1', +// wsHost: import.meta.env.VITE_PUSHER_HOST ? import.meta.env.VITE_PUSHER_HOST : `ws-${import.meta.env.VITE_PUSHER_APP_CLUSTER}.pusher.com`, +// wsPort: import.meta.env.VITE_PUSHER_PORT ?? 80, +// wssPort: import.meta.env.VITE_PUSHER_PORT ?? 443, +// forceTLS: (import.meta.env.VITE_PUSHER_SCHEME ?? 'https') === 'https', +// enabledTransports: ['ws', 'wss'], +// }); diff --git a/LaravelTutorial/resources/views/index.blade.php b/LaravelTutorial/resources/views/index.blade.php new file mode 100644 index 000000000..4c66a1a2b --- /dev/null +++ b/LaravelTutorial/resources/views/index.blade.php @@ -0,0 +1,7 @@ +@if (Auth::check()) + Chào mừng {{ Auth::user()->username }} + Đăng xuất +@else + Đăng nhập + Đăng ký +@endif \ No newline at end of file diff --git a/LaravelTutorial/resources/views/login.blade.php b/LaravelTutorial/resources/views/login.blade.php new file mode 100644 index 000000000..e6b89ec99 --- /dev/null +++ b/LaravelTutorial/resources/views/login.blade.php @@ -0,0 +1,22 @@ + + + + + + Đăng nhập + + + + + + + @csrf +
+ +

+ +

+ +
+ + \ No newline at end of file diff --git a/LaravelTutorial/resources/views/register.blade.php b/LaravelTutorial/resources/views/register.blade.php new file mode 100644 index 000000000..c5b8a7824 --- /dev/null +++ b/LaravelTutorial/resources/views/register.blade.php @@ -0,0 +1,24 @@ + + + + + + Đăng ký + + + + + + + @csrf +
+ +

+ +

+ +

+ +
+ + \ No newline at end of file diff --git a/LaravelTutorial/resources/views/welcome.blade.php b/LaravelTutorial/resources/views/welcome.blade.php new file mode 100644 index 000000000..638ec9606 --- /dev/null +++ b/LaravelTutorial/resources/views/welcome.blade.php @@ -0,0 +1,140 @@ + + + + + + + Laravel + + + + + + + + + + + + diff --git a/LaravelTutorial/routes/api.php b/LaravelTutorial/routes/api.php new file mode 100644 index 000000000..889937e11 --- /dev/null +++ b/LaravelTutorial/routes/api.php @@ -0,0 +1,19 @@ +get('/user', function (Request $request) { + return $request->user(); +}); diff --git a/LaravelTutorial/routes/channels.php b/LaravelTutorial/routes/channels.php new file mode 100644 index 000000000..5d451e1fa --- /dev/null +++ b/LaravelTutorial/routes/channels.php @@ -0,0 +1,18 @@ +id === (int) $id; +}); diff --git a/LaravelTutorial/routes/console.php b/LaravelTutorial/routes/console.php new file mode 100644 index 000000000..e05f4c9a1 --- /dev/null +++ b/LaravelTutorial/routes/console.php @@ -0,0 +1,19 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote'); diff --git a/LaravelTutorial/routes/web.php b/LaravelTutorial/routes/web.php new file mode 100644 index 000000000..710006d79 --- /dev/null +++ b/LaravelTutorial/routes/web.php @@ -0,0 +1,25 @@ +name('home'); + +Route::get('/login', [HomeController::class, 'login'])->name('login'); +Route::post('api/login', [HomeController::class, 'API_Login']); + +Route::get('/logout', [HomeController::class, 'logout'])->name('logout'); + +Route::get('/register', [HomeController::class, 'register'])->name('register'); +Route::post('api/register', [HomeController::class, 'API_Register']); \ No newline at end of file diff --git a/LaravelTutorial/storage/app/.gitignore b/LaravelTutorial/storage/app/.gitignore new file mode 100644 index 000000000..8f4803c05 --- /dev/null +++ b/LaravelTutorial/storage/app/.gitignore @@ -0,0 +1,3 @@ +* +!public/ +!.gitignore diff --git a/LaravelTutorial/storage/app/public/.gitignore b/LaravelTutorial/storage/app/public/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/LaravelTutorial/storage/app/public/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/LaravelTutorial/storage/framework/.gitignore b/LaravelTutorial/storage/framework/.gitignore new file mode 100644 index 000000000..05c4471f2 --- /dev/null +++ b/LaravelTutorial/storage/framework/.gitignore @@ -0,0 +1,9 @@ +compiled.php +config.php +down +events.scanned.php +maintenance.php +routes.php +routes.scanned.php +schedule-* +services.json diff --git a/LaravelTutorial/storage/framework/cache/.gitignore b/LaravelTutorial/storage/framework/cache/.gitignore new file mode 100644 index 000000000..01e4a6cda --- /dev/null +++ b/LaravelTutorial/storage/framework/cache/.gitignore @@ -0,0 +1,3 @@ +* +!data/ +!.gitignore diff --git a/LaravelTutorial/storage/framework/cache/data/.gitignore b/LaravelTutorial/storage/framework/cache/data/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/LaravelTutorial/storage/framework/cache/data/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/LaravelTutorial/storage/framework/sessions/.gitignore b/LaravelTutorial/storage/framework/sessions/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/LaravelTutorial/storage/framework/sessions/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/LaravelTutorial/storage/framework/testing/.gitignore b/LaravelTutorial/storage/framework/testing/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/LaravelTutorial/storage/framework/testing/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/LaravelTutorial/storage/framework/views/.gitignore b/LaravelTutorial/storage/framework/views/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/LaravelTutorial/storage/framework/views/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/LaravelTutorial/storage/logs/.gitignore b/LaravelTutorial/storage/logs/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/LaravelTutorial/storage/logs/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/LaravelTutorial/tests/CreatesApplication.php b/LaravelTutorial/tests/CreatesApplication.php new file mode 100644 index 000000000..cc6830112 --- /dev/null +++ b/LaravelTutorial/tests/CreatesApplication.php @@ -0,0 +1,21 @@ +make(Kernel::class)->bootstrap(); + + return $app; + } +} diff --git a/LaravelTutorial/tests/Feature/ExampleTest.php b/LaravelTutorial/tests/Feature/ExampleTest.php new file mode 100644 index 000000000..8364a84e2 --- /dev/null +++ b/LaravelTutorial/tests/Feature/ExampleTest.php @@ -0,0 +1,19 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/LaravelTutorial/tests/TestCase.php b/LaravelTutorial/tests/TestCase.php new file mode 100644 index 000000000..2932d4a69 --- /dev/null +++ b/LaravelTutorial/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +} diff --git a/LaravelTutorial/vite.config.js b/LaravelTutorial/vite.config.js new file mode 100644 index 000000000..421b56956 --- /dev/null +++ b/LaravelTutorial/vite.config.js @@ -0,0 +1,11 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; + +export default defineConfig({ + plugins: [ + laravel({ + input: ['resources/css/app.css', 'resources/js/app.js'], + refresh: true, + }), + ], +}); diff --git a/Mid-term/.editorconfig b/Mid-term/.editorconfig new file mode 100644 index 000000000..6537ca467 --- /dev/null +++ b/Mid-term/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 diff --git a/Mid-term/.env.example b/Mid-term/.env.example new file mode 100644 index 000000000..ac748637a --- /dev/null +++ b/Mid-term/.env.example @@ -0,0 +1,46 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=http://localhost + +LOG_CHANNEL=stack + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=laravel +DB_USERNAME=root +DB_PASSWORD= + +BROADCAST_DRIVER=log +CACHE_DRIVER=file +QUEUE_CONNECTION=sync +SESSION_DRIVER=file +SESSION_LIFETIME=120 + +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=smtp +MAIL_HOST=smtp.mailtrap.io +MAIL_PORT=2525 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=null +MAIL_FROM_ADDRESS=null +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= +PUSHER_APP_CLUSTER=mt1 + +MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" +MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" diff --git a/Mid-term/.gitattributes b/Mid-term/.gitattributes new file mode 100644 index 000000000..967315dd3 --- /dev/null +++ b/Mid-term/.gitattributes @@ -0,0 +1,5 @@ +* text=auto +*.css linguist-vendored +*.scss linguist-vendored +*.js linguist-vendored +CHANGELOG.md export-ignore diff --git a/Mid-term/.gitignore b/Mid-term/.gitignore new file mode 100644 index 000000000..0f7df0fbe --- /dev/null +++ b/Mid-term/.gitignore @@ -0,0 +1,12 @@ +/node_modules +/public/hot +/public/storage +/storage/*.key +/vendor +.env +.env.backup +.phpunit.result.cache +Homestead.json +Homestead.yaml +npm-debug.log +yarn-error.log diff --git a/Mid-term/.styleci.yml b/Mid-term/.styleci.yml new file mode 100644 index 000000000..1db61d96e --- /dev/null +++ b/Mid-term/.styleci.yml @@ -0,0 +1,13 @@ +php: + preset: laravel + disabled: + - unused_use + finder: + not-name: + - index.php + - server.php +js: + finder: + not-name: + - webpack.mix.js +css: true diff --git a/Mid-term/README.md b/Mid-term/README.md new file mode 100644 index 000000000..f3decb123 --- /dev/null +++ b/Mid-term/README.md @@ -0,0 +1,61 @@ +

+ +

+Build Status +Total Downloads +Latest Stable Version +License +

+ +## About Laravel + +Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: + +- [Simple, fast routing engine](https://laravel.com/docs/routing). +- [Powerful dependency injection container](https://laravel.com/docs/container). +- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. +- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). +- Database agnostic [schema migrations](https://laravel.com/docs/migrations). +- [Robust background job processing](https://laravel.com/docs/queues). +- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + +Laravel is accessible, powerful, and provides tools required for large, robust applications. + +## Learning Laravel + +Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. + +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. + +## Laravel Sponsors + +We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell). + +### Premium Partners + +- **[Vehikl](https://vehikl.com/)** +- **[Tighten Co.](https://tighten.co)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Cubet Techno Labs](https://cubettech.com)** +- **[Cyber-Duck](https://cyber-duck.co.uk)** +- **[Many](https://www.many.co.uk)** +- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)** +- **[DevSquad](https://devsquad.com)** +- **[OP.GG](https://op.gg)** + +## Contributing + +Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). + +## Code of Conduct + +In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). + +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. + +## License + +The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/Mid-term/app/Console/Commands/TotalSubject.php b/Mid-term/app/Console/Commands/TotalSubject.php new file mode 100644 index 000000000..4ec2fafc5 --- /dev/null +++ b/Mid-term/app/Console/Commands/TotalSubject.php @@ -0,0 +1,60 @@ + function ($query) { + $query->select('student_subject.student_id', DB::raw('AVG(student_subject.point) as average_point')) + ->join('subjects as subj', 'student_subject.subject_id', '=', 'subj.id') + ->whereNotNull('student_subject.point') + ->groupBy('student_subject.student_id') + ->havingRaw('COUNT(subj.id) = (SELECT COUNT(*) FROM subjects WHERE faculty_id = (SELECT faculty_id FROM students WHERE id = student_subject.student_id) AND deleted_at IS NULL)'); + }]) + ->when(true != null, function ($query) { + $query->whereHas('subjects', function ($query) { + $query->havingRaw("AVG(student_subject.point) <= 5"); + }); + })->get(); + foreach ($students as $student){ + Student::find($student->id)->delete(); + Mail::to('20010865@st.phenikaa-uni.edu.vn')->send(new \App\Mail\ResultSubject(10)); + } + } +} diff --git a/Mid-term/app/Console/Kernel.php b/Mid-term/app/Console/Kernel.php new file mode 100644 index 000000000..c30982968 --- /dev/null +++ b/Mid-term/app/Console/Kernel.php @@ -0,0 +1,41 @@ +command('total:subject')->everyMinute(); + } + + /** + * Register the commands for the application. + * + * @return void + */ + protected function commands() + { + $this->load(__DIR__.'/Commands'); + + require base_path('routes/console.php'); + } +} diff --git a/Mid-term/app/Enums/Base.php b/Mid-term/app/Enums/Base.php new file mode 100644 index 000000000..35bbac3ad --- /dev/null +++ b/Mid-term/app/Enums/Base.php @@ -0,0 +1,24 @@ + 'Male', + self::FEMALE => 'Female', + self::UNDEFINED => 'Unknown', + ]; + } +} + diff --git a/Mid-term/app/Exceptions/Handler.php b/Mid-term/app/Exceptions/Handler.php new file mode 100644 index 000000000..7e40d7352 --- /dev/null +++ b/Mid-term/app/Exceptions/Handler.php @@ -0,0 +1,37 @@ +getClientOriginalExtension(); + \Illuminate\Support\Facades\Storage::disk('local')->put('public/images/'.$path .'/'. $imageName, file_get_contents($data)); + return $imageName; + } diff --git a/Mid-term/app/Http/Controllers/Auth/ConfirmPasswordController.php b/Mid-term/app/Http/Controllers/Auth/ConfirmPasswordController.php new file mode 100644 index 000000000..138c1f08a --- /dev/null +++ b/Mid-term/app/Http/Controllers/Auth/ConfirmPasswordController.php @@ -0,0 +1,40 @@ +middleware('auth'); + } +} diff --git a/Mid-term/app/Http/Controllers/Auth/ForgotPasswordController.php b/Mid-term/app/Http/Controllers/Auth/ForgotPasswordController.php new file mode 100644 index 000000000..465c39ccf --- /dev/null +++ b/Mid-term/app/Http/Controllers/Auth/ForgotPasswordController.php @@ -0,0 +1,22 @@ +middleware('guest')->except('logout'); + } + public function name() + { + return 'name'; + } +} diff --git a/Mid-term/app/Http/Controllers/Auth/RegisterController.php b/Mid-term/app/Http/Controllers/Auth/RegisterController.php new file mode 100644 index 000000000..ed1a5e073 --- /dev/null +++ b/Mid-term/app/Http/Controllers/Auth/RegisterController.php @@ -0,0 +1,73 @@ +middleware('guest'); + } + + /** + * Get a validator for an incoming registration request. + * + * @param array $data + * @return \Illuminate\Contracts\Validation\Validator + */ + protected function validator(array $data) + { + return Validator::make($data, [ + 'name' => ['required', 'string', 'max:255'], + 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'], + 'password' => ['required', 'string', 'min:8', 'confirmed'], + ]); + } + + /** + * Create a new user instance after a valid registration. + * + * @param array $data + * @return \App\Models\User + */ + protected function create(array $data) + { + return User::create([ + 'name' => $data['name'], + 'email' => $data['email'], + 'password' => Hash::make($data['password']), + ]); + } +} diff --git a/Mid-term/app/Http/Controllers/Auth/ResetPasswordController.php b/Mid-term/app/Http/Controllers/Auth/ResetPasswordController.php new file mode 100644 index 000000000..b1726a364 --- /dev/null +++ b/Mid-term/app/Http/Controllers/Auth/ResetPasswordController.php @@ -0,0 +1,30 @@ +middleware('auth'); + $this->middleware('signed')->only('verify'); + $this->middleware('throttle:6,1')->only('verify', 'resend'); + } +} diff --git a/Mid-term/app/Http/Controllers/Controller.php b/Mid-term/app/Http/Controllers/Controller.php new file mode 100644 index 000000000..a0a2a8a34 --- /dev/null +++ b/Mid-term/app/Http/Controllers/Controller.php @@ -0,0 +1,13 @@ +facultytRepository = $facultyRepository; + } + + public function index() + { + $faculties = $this->facultytRepository->getList(); + return view('faculty.index',compact('faculties')); + + } + + public function create() + { + return view('faculty.form', ['formType' => 'create']); + } + + /** + * Store a newly created resource in storage. + * + * @param \Illuminate\Http\Request $request + * @return \Illuminate\Http\RedirectResponse + */ + public function store(FacultyRequest $request) + { + $this->facultytRepository->create($request->except('_token')); + return redirect()->route('faculties.index')->with('success', 'Add successful faculty'); + } + + /** + * Display the specified resource. + * + * @param int $id + * @return \Illuminate\Http\Response + */ + + /** + * Show the form for editing the specified resource. + * + * @param int $id + * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Http\Response + */ + public function edit($id) + { + $faculty = $this->facultytRepository->findOrFail($id); + return view('faculty.form', ['faculty' => $faculty, 'formType' => 'edit']); + } + + /** + * Update the specified resource in storage. + * + * @param \Illuminate\Http\Request $request + * @param int $id + * @return \Illuminate\Http\RedirectResponse + */ + public function update(FacultyRequest $request, $id): \Illuminate\Http\RedirectResponse + { + $this->facultytRepository->update($id,$request->except(['_token', '_method'])); + return redirect()->route('faculties.index')->with('success', 'Update successful faculty'); + } + + /** + * Remove the specified resource from storage. + * + * @param int $id + * @return \Illuminate\Http\RedirectResponse + */ + public function destroy($id): \Illuminate\Http\RedirectResponse + { + $faculty = $this->facultytRepository->findOrFail($id); + if(count($faculty->students()->get()) > 0){ + return redirect()->back()->with('error', 'Failed to delete faculty, There are already students registered for this faculty'); + } + $this->facultytRepository->delete($id); + return redirect()->back()->with('success', 'Delete successful faculty'); + } +} diff --git a/Mid-term/app/Http/Controllers/HomeController.php b/Mid-term/app/Http/Controllers/HomeController.php new file mode 100644 index 000000000..d214bbc3e --- /dev/null +++ b/Mid-term/app/Http/Controllers/HomeController.php @@ -0,0 +1,16 @@ +back(); + } + public function index(){ + return view('admin.home'); + } +} diff --git a/Mid-term/app/Http/Controllers/StudentController.php b/Mid-term/app/Http/Controllers/StudentController.php new file mode 100644 index 000000000..9cab280b0 --- /dev/null +++ b/Mid-term/app/Http/Controllers/StudentController.php @@ -0,0 +1,135 @@ +facultyRepository = $facultyRepository; + $this->userRepository = $userRepository; + $this->studentRepository = $studentRepository; + $this->roleRepository = $roleRepository; + $this->subjectRepository = $subjectRepository; + } + + public function index(Request $request) + { + $faculties = $this->facultyRepository->getList(); + $students = $this->studentRepository->filter($request); + return view('student.index', compact('students', 'faculties')); + } + + public function home() + { + return view('student.home'); + } + + public function create() + { + $faculties = $this->facultyRepository->getAll(); + return view('student.form', compact('faculties')); + } + + public function store(StudentRequest $request) + { + DB::beginTransaction(); + try { + $password = substr(md5(microtime()), rand(0, 26), 5); + $dataUser = $request->all(); + $dataUser['password'] = $password; + $dataUser['faculty_id'] = $request->faculty; + if ($request->file('avatar')) { + $dataUser['avatar'] = upLoadImage($request->file('avatar'), 'students'); + } + $user = $this->userRepository->create($dataUser); + $dataUser['id'] = $user->id; + $this->studentRepository->create($dataUser); + dispatch(new SendInfoUser($dataUser)); + $user->roles()->attach(2); + DB::commit(); + if ($request->ajax()) { + session()->flash('success', 'Add successful student'); + return response()->json([ + 'status' => true + ]); + } + return redirect()->route('students.index')->with('success', 'Add successful student'); + } catch (\Exception $e) { + DB::rollback(); + if ($request->ajax()) { + session()->flash('error', 'Add failed student'); + return response()->json([ + 'status' => false + ]); + } + return redirect()->route('students.index')->with('error', 'Add failed student'); + } + } + + public function edit($id) + { + $faculties = $this->facultyRepository->getAll(); + $student = $this->studentRepository->findOrFail($id); + return view('student.form', compact('student', 'faculties')); + } + + public function update(StudentRequest $request, $id): \Illuminate\Http\RedirectResponse + { + $data = $request->all(); + if ($request->file('avatar')) { + $data['avatar'] = upLoadImage($request->file('avatar'), 'students'); + } + $data['faculty_id'] = $data['faculty']; + $this->studentRepository->update($id, $data); + $this->userRepository->update($id, $data); + return redirect()->route('students.index')->with('success', 'Update successful student'); + } + + public function destroy($id): \Illuminate\Http\RedirectResponse + { + $this->studentRepository->delete($id); + return redirect()->back()->with('success', 'Delete successful student'); + } + + public function point(UpdatePointRequest $request): \Illuminate\Http\JsonResponse + { + $studentId = $request->student_id; + $subjectId = $request->subject_id; + $newPoint = $request->point; + $student = $this->studentRepository->findOrFail($studentId); + $data = $student->subjects()->where('subject_id', $subjectId)->where('student_id', $studentId)->count(); + if ($data) { + $student = $this->studentRepository->findOrFail($studentId); + $subjectId = $this->subjectRepository->findOrFail($subjectId); + $student->subjects()->updateExistingPivot($subjectId, ['point' => $newPoint]); + session()->flash('success', 'Update successful point'); + return response()->json([ + 'status' => true, + ]); + } else { + return response()->json([ + 'status' => false, + ]); + } + } +} diff --git a/Mid-term/app/Http/Controllers/SubjectController.php b/Mid-term/app/Http/Controllers/SubjectController.php new file mode 100644 index 000000000..2e6ca359b --- /dev/null +++ b/Mid-term/app/Http/Controllers/SubjectController.php @@ -0,0 +1,289 @@ +facultytRepository = $facultyRepository; + $this->subjectRepository = $subjectRepository; + $this->studentRepository = $studentRepository; + } + + public function index() + { + $subjects = $this->subjectRepository->getList(); + foreach ($subjects as $subject){ + $subject['count'] = count($subject->students); + } + return view('subject.index',compact('subjects')); + } + public function create() + { + $faculties = $this->facultytRepository->getAll(); + return view('subject.form',compact('faculties')); + } + + public function store(SubjectRequest $request): \Illuminate\Http\RedirectResponse + { + $this->subjectRepository->create($request->all()); + return redirect()->route('subjects.index')->with('success', 'Add successful subject'); + } + + public function edit($id) + { + $subject = $this->subjectRepository->findOrFail($id); + $faculties = $this->facultytRepository->getAll(); + return view('subject.form', compact('subject','faculties')); + + + } + + public function update(SubjectRequest $request, $id): \Illuminate\Http\RedirectResponse + { + $this->subjectRepository->update($id,$request->all()); + return redirect()->route('subjects.index')->with('success', 'Update successful subject'); + } + + public function destroy($id) + { + $subjects = $this->subjectRepository->findOrFail($id); + if(count($subjects->students()->get()) >0){ + return redirect()->back()->with('error', 'Deletion failed, students already registered for the subject'); + } + $this->subjectRepository->delete($id); + return redirect()->back()->with('success', 'Delete successful subject'); + } + + public function registerSubject(){ + $student = Auth::user()->student; + $allSubject = $this->subjectRepository->subject($student->faculty_id); + $isRegistered = $student->subjects; + $subjectStatus = []; + foreach ($allSubject as $subject) { + $subjectStatus[] = [ + 'subject' => $subject, + 'isRegistered' => $isRegistered->contains('id', $subject->id) + ]; + } + $perPage = Base::page; + $page = request()->get('page', 1); + $offset = ($page - 1) * $perPage; + $subjectStatusChunk = array_slice($subjectStatus, $offset, $perPage); + $subjectStatusChunk = collect($subjectStatusChunk); + $total = count($subjectStatus); + $paginatedSubjectStatus = new LengthAwarePaginator( + $subjectStatusChunk, + $total, + $perPage, + $page + ); + $paginatedSubjectStatus->setPath(URL::current()); + return view('subject.register_subject',compact('paginatedSubjectStatus')); + } + + public function register(ReisterRequest $request): \Illuminate\Http\JsonResponse + { + $student = Auth::user()->student; + $checkedValues = $request->input('checkedValues'); + foreach ($checkedValues as $checkedValue) { + $subject = $this->subjectRepository->findOrFail($checkedValue); + if ($subject->faculty_id != $student->faculty_id) { + return response()->json([ + 'status'=>false, + ]); + } + } + $student->subjects()->syncWithoutDetaching($checkedValues); + session()->flash('success', 'Register successful subject'); + return response()->json([ + 'status'=>true, + ]); + } + + public function result() { + $student = Auth::user()->student; + $this->subjectRepository->subject($student->faculty_id); + return $this->extracted($student); + } + + public function resultAll(){ + $page = request()->get('page', 1); + $perPage = Base::page; + $allStudents = $this->studentRepository->getAll(); + $paginatorInstance = new LengthAwarePaginator( + $allStudents->forPage($page, $perPage)->values(), + $allStudents->count(), + $perPage, + $page, + ['path' => LengthAwarePaginator::resolveCurrentPath()] + ); + $result = []; + foreach ($paginatorInstance as $student) { + $totalSubjects = $this->subjectRepository->subject($student->faculty_id); + $registeredSubjectsCount = count($student->subjects); + $totalSubjectsCount = count($totalSubjects); + $unregisteredSubjectsCount = $totalSubjectsCount - $registeredSubjectsCount; + $result[] = [ + 'student' => $student, + 'reg' => $registeredSubjectsCount, + 'unreg' => $unregisteredSubjectsCount, + ]; + } +// dd($result); + return view('admin.result',compact('result','paginatorInstance')); + } + + public function unSubject($id,Request $request) + { + $student = $this->studentRepository->findOrFail($id); + $totalSubjects = $this->subjectRepository->subject($student->faculty_id); + $regSubjectIds = $student->subjects->pluck('id')->toArray(); + $unregisteredSubjects = $totalSubjects->whereNotIn('id', $regSubjectIds); + if($request->ajax()){ + return response()->json([ + 'data'=> $unregisteredSubjects + ]); + }else{ + return $unregisteredSubjects; + } + } + + public function send($id,Request $request): \Illuminate\Http\RedirectResponse + { + $student = $this->studentRepository->findOrFail($id); + $data = []; + $data['data'] = $this->unSubject($id,$request); + $data['email'] = $student->user->email; + dispatch(new SendMailUnReigster($data)); + return redirect()->route('resultAll')->with('success', 'Send successful email'); + } + + public function point($id){ + $student = $this->studentRepository->findOrFail($id); + return $this->extracted($student); + } + + public function seenPoint($id,Request $request): \Illuminate\Http\JsonResponse + { + $student = $this->studentRepository->findOrFail($request->student_id); + $data = $student->subjects()->where('subject_id', $id)->first()->pivot; + $infoSubject = $this->subjectRepository->findOrFail($id); + return response()->json([ + 'point'=> $data, + 'name' => $infoSubject->name, + ]); + } + + /** + * @param $student + * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View + */ + public function extracted($student) + { + $count = 0; + $faculties = $this->subjectRepository->subject($student->faculty_id); + $sum = 0; + $average = 0; + foreach ($student->subjects as $subject) { + if ($subject->pivot->point == null) { + $count = -1; + break; + } else { + $sum += $subject->pivot->point; + $count++; + } + } + if($count != 0){ + $average = $sum / $count; + } + return view('student.result', compact('student', 'average', 'faculties', 'count')); + } + + public function change($id){ + $this->studentRepository->findOrFail($id); + $student = $this->studentRepository->findOrFail($id); + $subjects = $student->subjects; + return view('subject.update-subjects',compact('subjects','student')); + } + + public function pointSubjects($id): \Illuminate\Http\JsonResponse + { + $student = $this->studentRepository->findOrFail($id); + $subjectsRegister = $student->subjects; + return response()->json([ + 'subjectsRegister' =>$subjectsRegister, + ]); + } + + public function updatePoints(UpdatePointRequest $request): \Illuminate\Http\JsonResponse + { + $student = $this->studentRepository->findOrFail($request->student_id); + $subjectIds = $request->input('subject_id'); + $points = $request->input('point'); + $data = []; + foreach ($subjectIds as $index => $subjectId) { + $point = $points[$index]; + $data[$subjectId] = ['point' => $point]; + } + $student->subjects()->sync($data); + session()->flash('success', 'Update successful point'); + return response()->json([ + 'status' => true + ]); + } + + public function import(ImportPointRequest $request): \Illuminate\Http\RedirectResponse + { + $the_file = $request->file('file_import'); + DB::beginTransaction(); + try { + $spreadsheet = IOFactory::load($the_file->getRealPath()); + $sheet = $spreadsheet->getActiveSheet(); + $row_limit = $sheet->getHighestDataRow(); + $row_range = range(2, $row_limit); + foreach ($row_range as $row) { + $data = [ + 'student_id' => $sheet->getCell('A' . $row)->getValue(), + 'subject_id' => $sheet->getCell('B' . $row)->getValue(), + 'point' => $sheet->getCell('C' . $row)->getValue(), + ]; + if($data['point'] >=0 && $data['point'] <=10){ + $student = $this->studentRepository->findOrFail($data['student_id']); + $student->subjects()->syncWithoutDetaching([ + $data['subject_id'] => ['point' => $data['point']] + ]); + }else{ + throw new \Exception(); + } + } + DB::commit(); + return redirect()->back()->with('success', 'Update success point'); + }catch(\Exception $e){ + DB::rollback(); + return redirect()->back()->with('error', 'Update false point'); + } + + } +} diff --git a/Mid-term/app/Http/Kernel.php b/Mid-term/app/Http/Kernel.php new file mode 100644 index 000000000..616d77242 --- /dev/null +++ b/Mid-term/app/Http/Kernel.php @@ -0,0 +1,68 @@ + [ + \App\Http\Middleware\EncryptCookies::class, + \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, + \Illuminate\Session\Middleware\StartSession::class, + // \Illuminate\Session\Middleware\AuthenticateSession::class, + \Illuminate\View\Middleware\ShareErrorsFromSession::class, + \App\Http\Middleware\VerifyCsrfToken::class, + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + + 'api' => [ + 'throttle:api', + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + ]; + + /** + * The application's route middleware. + * + * These middleware may be assigned to groups or used individually. + * + * @var array + */ + protected $routeMiddleware = [ + 'auth' => \App\Http\Middleware\Authenticate::class, + 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, + 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, + 'can' => \Illuminate\Auth\Middleware\Authorize::class, + 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, + 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class, + 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, + 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, + 'checkAdmin' => \App\Http\Middleware\CheckAdmin::class, + 'checkStudent' => \App\Http\Middleware\CheckStudent::class, + ]; +} diff --git a/Mid-term/app/Http/Middleware/Authenticate.php b/Mid-term/app/Http/Middleware/Authenticate.php new file mode 100644 index 000000000..704089a7f --- /dev/null +++ b/Mid-term/app/Http/Middleware/Authenticate.php @@ -0,0 +1,21 @@ +expectsJson()) { + return route('login'); + } + } +} diff --git a/Mid-term/app/Http/Middleware/CheckAdmin.php b/Mid-term/app/Http/Middleware/CheckAdmin.php new file mode 100644 index 000000000..a8dc55837 --- /dev/null +++ b/Mid-term/app/Http/Middleware/CheckAdmin.php @@ -0,0 +1,23 @@ +roles[0]->name == 'AD') { + return $next($request); + }else if(Auth::user()->roles[0]->name == 'ST'){ + return Redirect::route('student.index'); + }else{ + return Redirect::back(); + } + } +} diff --git a/Mid-term/app/Http/Middleware/CheckLanguage.php b/Mid-term/app/Http/Middleware/CheckLanguage.php new file mode 100644 index 000000000..1d9cf8913 --- /dev/null +++ b/Mid-term/app/Http/Middleware/CheckLanguage.php @@ -0,0 +1,16 @@ + Session::get('language', config('app.locale'))]); + return $next($request); + } +} diff --git a/Mid-term/app/Http/Middleware/CheckStudent.php b/Mid-term/app/Http/Middleware/CheckStudent.php new file mode 100644 index 000000000..47f9915cd --- /dev/null +++ b/Mid-term/app/Http/Middleware/CheckStudent.php @@ -0,0 +1,21 @@ +check()) { + return redirect(RouteServiceProvider::HOME); + } + } + + return $next($request); + } +} diff --git a/Mid-term/app/Http/Middleware/TrimStrings.php b/Mid-term/app/Http/Middleware/TrimStrings.php new file mode 100644 index 000000000..5a50e7b5c --- /dev/null +++ b/Mid-term/app/Http/Middleware/TrimStrings.php @@ -0,0 +1,18 @@ +allSubdomainsOfApplicationUrl(), + ]; + } +} diff --git a/Mid-term/app/Http/Middleware/TrustProxies.php b/Mid-term/app/Http/Middleware/TrustProxies.php new file mode 100644 index 000000000..14befceb0 --- /dev/null +++ b/Mid-term/app/Http/Middleware/TrustProxies.php @@ -0,0 +1,23 @@ +route()->getName(); + $facultyId = $this->route('faculty'); +// dd($routeName); + if ($routeName == 'faculties.update') { + return [ + 'name' => [ + 'required', + 'string', + 'max:255', + Rule::unique('faculties')->ignore($facultyId, 'id') + ], + 'description' => 'required|string|max:255', + ]; + }else { + return [ + 'name' => 'required|string|max:255|unique:faculties', + 'description' => 'required|string|max:255', + ]; + } + + } + + protected function failedValidation(Validator $validator) + { + + throw new HttpResponseException( + redirect()->back() + ->with('error', 'Thêm không thành công') + ->withErrors($validator) + ->withInput() + ); + } +} diff --git a/Mid-term/app/Http/Requests/ImportPointRequest.php b/Mid-term/app/Http/Requests/ImportPointRequest.php new file mode 100644 index 000000000..02c98555f --- /dev/null +++ b/Mid-term/app/Http/Requests/ImportPointRequest.php @@ -0,0 +1,30 @@ + 'required|file|mimes:xls,xlsx' + ]; + } +} diff --git a/Mid-term/app/Http/Requests/ReisterRequest.php b/Mid-term/app/Http/Requests/ReisterRequest.php new file mode 100644 index 000000000..82a1eee1a --- /dev/null +++ b/Mid-term/app/Http/Requests/ReisterRequest.php @@ -0,0 +1,38 @@ +student->faculty_id; + return [ + 'register.*' => [ + 'required', + Rule::exists('subjects', 'id'), + ], + ]; + + } +} diff --git a/Mid-term/app/Http/Requests/StudentRequest.php b/Mid-term/app/Http/Requests/StudentRequest.php new file mode 100644 index 000000000..a81ff25fd --- /dev/null +++ b/Mid-term/app/Http/Requests/StudentRequest.php @@ -0,0 +1,50 @@ +route()->getName(); + $studentId = $this->route('student'); + $rules = [ + 'name' => 'required|string|max:255|unique:users', + 'full_name' => 'required|string|max:255', + 'email' => 'required|email|min:10|max:255|regex:/^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$/|unique:users', + 'gender' => ['required', 'in:' . implode(',', array_keys(\App\Enums\Base::toSelectArray()))], + 'faculty' => ['required', 'exists:faculties,id'], + 'birthday' => 'required|date', + 'address' => 'required|string|max:255', + 'phone' => ['required', 'regex:/^\+?[0-9]{8,}$/'], + 'avatar' => 'nullable|mimes:jpeg,png,jpg,gif|max:2048' + ]; + if ($routeName == 'students.update') { + $rules['name'] = ['required', + 'string', + 'max:255', + Rule::unique('users')->ignore($studentId, 'id')]; + $rules['email'] = ['required', 'email', 'min:10', 'max:255', 'regex:/^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$/', + Rule::unique('users')->ignore($studentId, 'id')]; + } + return $rules; + } +} diff --git a/Mid-term/app/Http/Requests/SubjectRequest.php b/Mid-term/app/Http/Requests/SubjectRequest.php new file mode 100644 index 000000000..c15020d61 --- /dev/null +++ b/Mid-term/app/Http/Requests/SubjectRequest.php @@ -0,0 +1,58 @@ +route()->getName(); + $subjectId = $this->route('subject'); + if($routeName == 'subjects.update'){ + return [ + 'name' => [ + 'required', + 'string', + 'max:255', + Rule::unique('subjects')->ignore($subjectId, 'id')->where(function ($query) { + return $query->where('faculty_id', $this->faculty_id); + }), + ], + 'faculty_id' => ['required', 'exists:faculties,id'], + 'description' => 'required|string|max:255', + ]; + }else{ + return [ + 'name' => [ + 'required', + 'string', + 'max:255', + Rule::unique('subjects')->where(function ($query) use ($subjectId) { + return $query->where('faculty_id', $this->faculty_id) + ->where('id', '<>', $subjectId); + }), + ], + 'faculty_id' => ['required', 'exists:faculties,id'], + 'description' => 'required|string|max:255', + ]; + } + } +} diff --git a/Mid-term/app/Http/Requests/UpdatePointRequest.php b/Mid-term/app/Http/Requests/UpdatePointRequest.php new file mode 100644 index 000000000..e74feddf7 --- /dev/null +++ b/Mid-term/app/Http/Requests/UpdatePointRequest.php @@ -0,0 +1,57 @@ +route()->getName(); + if($routeName == 'points.update'){ + return [ + 'student_id' => 'required|exists:students,id', + 'subject_id' => ['required', 'array', Rule::exists('subjects', 'id')], + 'subject_id.*' => Rule::exists('subjects', 'id'), + 'point' => ['required', 'array', 'min:' . count($this->input('subject_id')), 'max:' . count($this->input('subject_id'))], + 'point.*' => 'required|numeric|min:0|max:10', + ]; + } + return [ + 'student_id' => 'required|exists:student_subject,student_id', + 'subject_id' => 'required|exists:student_subject,subject_id', + 'point' => 'required|numeric|between:0,10', + ]; + } + protected function failedValidation(Validator $validator) + { + if ($this->expectsJson()) { + throw new HttpResponseException( + Response::json([ + 'errors' => $validator->errors(), + ]) + ); + } + } +} diff --git a/Mid-term/app/Jobs/SendInfoUser.php b/Mid-term/app/Jobs/SendInfoUser.php new file mode 100644 index 000000000..e796863b4 --- /dev/null +++ b/Mid-term/app/Jobs/SendInfoUser.php @@ -0,0 +1,37 @@ +infoUser = $infoUser; + } + + /** + * Execute the job. + * + * @return void + */ + public function handle() + { + Mail::to($this->infoUser['email'])->send(new MailSendInfoUser($this->infoUser)); + } +} diff --git a/Mid-term/app/Jobs/SendMailUnReigster.php b/Mid-term/app/Jobs/SendMailUnReigster.php new file mode 100644 index 000000000..8940de48f --- /dev/null +++ b/Mid-term/app/Jobs/SendMailUnReigster.php @@ -0,0 +1,39 @@ +subjectUnReg = $subjectUnReg; + } + + /** + * Execute the job. + * + * @return void + */ + public function handle() + { + Mail::to($this->subjectUnReg['email'])->send(new ListUnregisterMail($this->subjectUnReg)); + + } +} diff --git a/Mid-term/app/Mail/ListUnregisterMail.php b/Mid-term/app/Mail/ListUnregisterMail.php new file mode 100644 index 000000000..0d304a33b --- /dev/null +++ b/Mid-term/app/Mail/ListUnregisterMail.php @@ -0,0 +1,34 @@ +infoSubject = $infoSubject; + } + + /** + * Build the message. + * + * @return $this + */ + public function build() + { + return $this->subject('Cảnh báo đăng ký học phần')->view('emails.subject_unregister')->with(['infoSubject' => $this->infoSubject]); + + } +} diff --git a/Mid-term/app/Mail/MailSendInfoUser.php b/Mid-term/app/Mail/MailSendInfoUser.php new file mode 100644 index 000000000..5a1f9a88c --- /dev/null +++ b/Mid-term/app/Mail/MailSendInfoUser.php @@ -0,0 +1,33 @@ +infoUser = $infoUser; + } + + /** + * Build the message. + * + * @return $this + */ + public function build() + { + return $this->subject('Thông tin tài khoản')->view('emails.info_user')->with(['infoUser' => $this->infoUser]); + } +} diff --git a/Mid-term/app/Mail/ResultSubject.php b/Mid-term/app/Mail/ResultSubject.php new file mode 100644 index 000000000..30349ec6f --- /dev/null +++ b/Mid-term/app/Mail/ResultSubject.php @@ -0,0 +1,35 @@ +data = $data; + } + + /** + * Build the message. + * + * @return $this + */ + public function build() + { + return $this->view('emails.result') + ->with(['data' => $this->data]); + } +} diff --git a/Mid-term/app/Models/Faculty.php b/Mid-term/app/Models/Faculty.php new file mode 100644 index 000000000..3822218d1 --- /dev/null +++ b/Mid-term/app/Models/Faculty.php @@ -0,0 +1,25 @@ +belongsTo(Student::class, 'id', 'faculty_id'); + } + + +} diff --git a/Mid-term/app/Models/Role.php b/Mid-term/app/Models/Role.php new file mode 100644 index 000000000..c718f540d --- /dev/null +++ b/Mid-term/app/Models/Role.php @@ -0,0 +1,17 @@ +belongsToMany(User::class, 'user_role', 'role_id', 'id'); + } +} diff --git a/Mid-term/app/Models/Student.php b/Mid-term/app/Models/Student.php new file mode 100644 index 000000000..97ad5d29d --- /dev/null +++ b/Mid-term/app/Models/Student.php @@ -0,0 +1,41 @@ +belongsTo(User::class, 'id', 'id'); + } + + public function faculty(){ + return $this->belongsTo(Faculty::class, 'faculty_id', 'id'); + } + + public function subjects() + { + return $this->belongsToMany(Subject::class, 'student_subject')->withPivot('point'); + } + public function getAgeAttribute() + { + return now()->diffInYears($this->attributes['birthday']); + } + +} diff --git a/Mid-term/app/Models/Subject.php b/Mid-term/app/Models/Subject.php new file mode 100644 index 000000000..10c3eecaf --- /dev/null +++ b/Mid-term/app/Models/Subject.php @@ -0,0 +1,25 @@ +belongsTo(Faculty::class, 'faculty_id', 'id'); + } + public function students() + { + return $this->belongsToMany(Student::class, 'student_subject')->withPivot('point'); + } +} diff --git a/Mid-term/app/Models/User.php b/Mid-term/app/Models/User.php new file mode 100644 index 000000000..d50d24e76 --- /dev/null +++ b/Mid-term/app/Models/User.php @@ -0,0 +1,60 @@ + 'datetime', + ]; + + public function roles(): \Illuminate\Database\Eloquent\Relations\BelongsToMany + { + return $this->belongsToMany(Role::class, 'user_role'); + } + + public function student(): \Illuminate\Database\Eloquent\Relations\BelongsTo + { + return $this->belongsTo(Student::class, 'id', 'id'); + } + + public function setPasswordAttribute($value) + { + if ($value = !null) { + $this->attributes['password'] = Hash::make($value); + } + } + + +} diff --git a/Mid-term/app/Providers/AppServiceProvider.php b/Mid-term/app/Providers/AppServiceProvider.php new file mode 100644 index 000000000..ee8ca5bcd --- /dev/null +++ b/Mid-term/app/Providers/AppServiceProvider.php @@ -0,0 +1,28 @@ + 'App\Policies\ModelPolicy', + ]; + + /** + * Register any authentication / authorization services. + * + * @return void + */ + public function boot() + { + $this->registerPolicies(); + + // + } +} diff --git a/Mid-term/app/Providers/BroadcastServiceProvider.php b/Mid-term/app/Providers/BroadcastServiceProvider.php new file mode 100644 index 000000000..395c518bc --- /dev/null +++ b/Mid-term/app/Providers/BroadcastServiceProvider.php @@ -0,0 +1,21 @@ + [ + SendEmailVerificationNotification::class, + ], + ]; + + /** + * Register any events for your application. + * + * @return void + */ + public function boot() + { + // + } +} diff --git a/Mid-term/app/Providers/RouteServiceProvider.php b/Mid-term/app/Providers/RouteServiceProvider.php new file mode 100644 index 000000000..39b3a7f1d --- /dev/null +++ b/Mid-term/app/Providers/RouteServiceProvider.php @@ -0,0 +1,52 @@ +configureRateLimiting(); + + $this->routes(function () { + Route::middleware('web') + ->group(base_path('routes/web.php')); + + Route::prefix('api') + ->middleware('api') + ->group(base_path('routes/api.php')); + }); + } + + /** + * Configure the rate limiters for the application. + * + * @return void + */ + protected function configureRateLimiting() + { + RateLimiter::for('api', function (Request $request) { + return Limit::perMinute(60); + }); + } +} diff --git a/Mid-term/app/Repositories/BaseRepository.php b/Mid-term/app/Repositories/BaseRepository.php new file mode 100644 index 000000000..8e3696623 --- /dev/null +++ b/Mid-term/app/Repositories/BaseRepository.php @@ -0,0 +1,39 @@ +model = $model; + } + public function getList(){ + return $this->model->paginate(Base::page); + } + public function getAll(){ + return $this->model->all(); + } + public function create(array $data){ + return $this->model->create($data); + } + public function delete($data){ + return $this->model->findOrFail($data)->delete(); + } + + public function findOrFail($id) + { + return $this->model->findOrFail($id); + } + + public function update($id, $attributes = []) + { + return $this->findOrFail($id)->update($attributes); + } +} + + diff --git a/Mid-term/app/Repositories/Faculty/FacultyRepository.php b/Mid-term/app/Repositories/Faculty/FacultyRepository.php new file mode 100644 index 000000000..3e77b1dd3 --- /dev/null +++ b/Mid-term/app/Repositories/Faculty/FacultyRepository.php @@ -0,0 +1,16 @@ +avg_from; + $avgTo = $data->avg_to; + $minAge = $data->min_age; + $maxAge = $data->max_age; + + return $this->model->with(['user','faculty','subjects' => function ($query) { + $query->select('student_subject.student_id') + ->selectRaw('AVG(student_subject.point) as average_point') + ->join('subjects as subj', 'student_subject.subject_id', '=', 'subj.id') + ->whereNotNull('student_subject.point') + ->groupBy('student_subject.student_id') + ->havingRaw('COUNT(subj.id) = (SELECT COUNT(*) FROM subjects WHERE faculty_id = (SELECT faculty_id FROM students WHERE id = student_subject.student_id) AND deleted_at IS NULL)'); + }]) + ->when($avgFrom != null, function ($query) use ($avgFrom) { + $query->whereHas('subjects', function ($query) use ($avgFrom) { + $query->havingRaw("AVG(student_subject.point) >= $avgFrom"); + }); + }) + ->when($avgTo != null, function ($query) use ($avgTo) { + $query->whereHas('subjects', function ($query) use ($avgTo) { + $query->havingRaw("AVG(student_subject.point) <= $avgTo"); + }); + }) + ->when($minAge != null, function ($query) use ($minAge) { + $maxDate = now()->subYears($minAge)->toDateString(); + $query->where('birthday', '<=', $maxDate); + }) + ->when($maxAge != null, function ($query) use ($maxAge) { + $minDate = now()->subYears(intval($maxAge) + 1)->toDateString(); + $query->where('birthday', '>=', $minDate); + }) + ->paginate(Base::page)->withQueryString(); + } +} diff --git a/Mid-term/app/Repositories/Subject/SubjectRepository.php b/Mid-term/app/Repositories/Subject/SubjectRepository.php new file mode 100644 index 000000000..c23597c04 --- /dev/null +++ b/Mid-term/app/Repositories/Subject/SubjectRepository.php @@ -0,0 +1,23 @@ +model->where('faculty_id',$id)->get(); + } + + +} diff --git a/Mid-term/app/Repositories/User/UserRepository.php b/Mid-term/app/Repositories/User/UserRepository.php new file mode 100644 index 000000000..df6d3ef9e --- /dev/null +++ b/Mid-term/app/Repositories/User/UserRepository.php @@ -0,0 +1,16 @@ +student->faculty_id; + $exists = DB::table('subjects') + ->where('id', $value) + ->where('faculty_id', $facultyId) + ->exists(); + } + dd($exists); +// return true; + } + + + /** + * Get the validation error message. + * + * @return string + */ + public function message() + { + return 'The validation error message.'; + } +} diff --git a/Mid-term/artisan b/Mid-term/artisan new file mode 100644 index 000000000..5c23e2e24 --- /dev/null +++ b/Mid-term/artisan @@ -0,0 +1,53 @@ +#!/usr/bin/env php +make(Illuminate\Contracts\Console\Kernel::class); + +$status = $kernel->handle( + $input = new Symfony\Component\Console\Input\ArgvInput, + new Symfony\Component\Console\Output\ConsoleOutput +); + +/* +|-------------------------------------------------------------------------- +| Shutdown The Application +|-------------------------------------------------------------------------- +| +| Once Artisan has finished running, we will fire off the shutdown events +| so that any final work may be done by the application before we shut +| down the process. This is the last thing to happen to the request. +| +*/ + +$kernel->terminate($input, $status); + +exit($status); diff --git a/Mid-term/bootstrap/app.php b/Mid-term/bootstrap/app.php new file mode 100644 index 000000000..037e17df0 --- /dev/null +++ b/Mid-term/bootstrap/app.php @@ -0,0 +1,55 @@ +singleton( + Illuminate\Contracts\Http\Kernel::class, + App\Http\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Console\Kernel::class, + App\Console\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Debug\ExceptionHandler::class, + App\Exceptions\Handler::class +); + +/* +|-------------------------------------------------------------------------- +| Return The Application +|-------------------------------------------------------------------------- +| +| This script returns the application instance. The instance is given to +| the calling script so we can separate the building of the instances +| from the actual running of the application and sending responses. +| +*/ + +return $app; diff --git a/Mid-term/bootstrap/cache/.gitignore b/Mid-term/bootstrap/cache/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/Mid-term/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/Mid-term/composer.json b/Mid-term/composer.json new file mode 100644 index 000000000..0e1ad1e77 --- /dev/null +++ b/Mid-term/composer.json @@ -0,0 +1,68 @@ +{ + "name": "laravel/laravel", + "type": "project", + "description": "The Laravel Framework.", + "keywords": [ + "framework", + "laravel" + ], + "license": "MIT", + "require": { + "php": "^7.3", + "barryvdh/laravel-debugbar": "^3.7", + "fideloper/proxy": "^4.2", + "fruitcake/laravel-cors": "^2.0", + "guzzlehttp/guzzle": "^7.0.1", + "laravel/framework": "^8.0", + "laravel/tinker": "^2.0", + "laravel/ui": "^3.4", + "laravelcollective/html": "^6.4", + "phpoffice/phpspreadsheet": "^1.12" + }, + "require-dev": { + "facade/ignition": "^2.3.6", + "fzaninotto/faker": "^1.9.1", + "mockery/mockery": "^1.3.1", + "nunomaduro/collision": "^5.0", + "phpunit/phpunit": "^9.3" + }, + "config": { + "optimize-autoloader": true, + "preferred-install": "dist", + "sort-packages": true + }, + "extra": { + "laravel": { + "dont-discover": [] + } + }, + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Factories\\": "database/factories/", + "Database\\Seeders\\": "database/seeders/" + }, + "files": [ + "app/Helpers/Helper.php" + ] + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" + } + }, + "minimum-stability": "dev", + "prefer-stable": true, + "scripts": { + "post-autoload-dump": [ + "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", + "@php artisan package:discover --ansi" + ], + "post-root-package-install": [ + "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" + ], + "post-create-project-cmd": [ + "@php artisan key:generate --ansi" + ] + } +} diff --git a/Mid-term/composer.lock b/Mid-term/composer.lock new file mode 100644 index 000000000..be6197693 --- /dev/null +++ b/Mid-term/composer.lock @@ -0,0 +1,8211 @@ +{ + "_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": "e5c36486e4fa111df08181bb455b78c0", + "packages": [ + { + "name": "asm89/stack-cors", + "version": "v2.1.1", + "source": { + "type": "git", + "url": "https://github.com/asm89/stack-cors.git", + "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a", + "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "symfony/http-foundation": "^4|^5|^6", + "symfony/http-kernel": "^4|^5|^6" + }, + "require-dev": { + "phpunit/phpunit": "^7|^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "psr-4": { + "Asm89\\Stack\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alexander", + "email": "iam.asm89@gmail.com" + } + ], + "description": "Cross-origin resource sharing library and stack middleware", + "homepage": "https://github.com/asm89/stack-cors", + "keywords": [ + "cors", + "stack" + ], + "support": { + "issues": "https://github.com/asm89/stack-cors/issues", + "source": "https://github.com/asm89/stack-cors/tree/v2.1.1" + }, + "time": "2022-01-18T09:12:03+00:00" + }, + { + "name": "barryvdh/laravel-debugbar", + "version": "v3.7.0", + "source": { + "type": "git", + "url": "https://github.com/barryvdh/laravel-debugbar.git", + "reference": "3372ed65e6d2039d663ed19aa699956f9d346271" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/3372ed65e6d2039d663ed19aa699956f9d346271", + "reference": "3372ed65e6d2039d663ed19aa699956f9d346271", + "shasum": "" + }, + "require": { + "illuminate/routing": "^7|^8|^9", + "illuminate/session": "^7|^8|^9", + "illuminate/support": "^7|^8|^9", + "maximebf/debugbar": "^1.17.2", + "php": ">=7.2.5", + "symfony/finder": "^5|^6" + }, + "require-dev": { + "mockery/mockery": "^1.3.3", + "orchestra/testbench-dusk": "^5|^6|^7", + "phpunit/phpunit": "^8.5|^9.0", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.6-dev" + }, + "laravel": { + "providers": [ + "Barryvdh\\Debugbar\\ServiceProvider" + ], + "aliases": { + "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar" + } + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Barryvdh\\Debugbar\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Barry vd. Heuvel", + "email": "barryvdh@gmail.com" + } + ], + "description": "PHP Debugbar integration for Laravel", + "keywords": [ + "debug", + "debugbar", + "laravel", + "profiler", + "webprofiler" + ], + "support": { + "issues": "https://github.com/barryvdh/laravel-debugbar/issues", + "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.7.0" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2022-07-11T09:26:42+00:00" + }, + { + "name": "brick/math", + "version": "0.9.3", + "source": { + "type": "git", + "url": "https://github.com/brick/math.git", + "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae", + "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0", + "vimeo/psalm": "4.9.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Brick\\Math\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Arbitrary-precision arithmetic library", + "keywords": [ + "Arbitrary-precision", + "BigInteger", + "BigRational", + "arithmetic", + "bigdecimal", + "bignum", + "brick", + "math" + ], + "support": { + "issues": "https://github.com/brick/math/issues", + "source": "https://github.com/brick/math/tree/0.9.3" + }, + "funding": [ + { + "url": "https://github.com/BenMorel", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/brick/math", + "type": "tidelift" + } + ], + "time": "2021-08-15T20:50:18+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.2", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "f41715465d65213d644d3141a6a93081be5d3549" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", + "reference": "f41715465d65213d644d3141a6a93081be5d3549", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" + }, + "time": "2022-10-27T11:44:00+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.8", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff", + "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "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.0.8" + }, + "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": "2023-06-16T13:40:37+00:00" + }, + { + "name": "doctrine/lexer", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229", + "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9.0", + "phpstan/phpstan": "^1.3", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "vimeo/psalm": "^4.11" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + } + }, + "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/1.2.3" + }, + "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": "2022-02-28T11:07:21+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.3.3", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-webmozart-assert": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2023-08-10T19:36:49+00:00" + }, + { + "name": "egulias/email-validator", + "version": "2.1.25", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4", + "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^1.0.1", + "php": ">=5.5", + "symfony/polyfill-intl-idn": "^1.10" + }, + "require-dev": { + "dominicsayers/isemail": "^3.0.7", + "phpunit/phpunit": "^4.8.36|^7.5.15", + "satooshi/php-coveralls": "^1.0.1" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/2.1.25" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2020-12-29T14:50:06+00:00" + }, + { + "name": "fideloper/proxy", + "version": "4.4.2", + "source": { + "type": "git", + "url": "https://github.com/fideloper/TrustedProxy.git", + "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750", + "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750", + "shasum": "" + }, + "require": { + "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0", + "php": ">=5.4.0" + }, + "require-dev": { + "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0", + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^8.5.8|^9.3.3" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Fideloper\\Proxy\\TrustedProxyServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Fideloper\\Proxy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Fidao", + "email": "fideloper@gmail.com" + } + ], + "description": "Set trusted proxies for Laravel", + "keywords": [ + "load balancing", + "proxy", + "trusted proxy" + ], + "support": { + "issues": "https://github.com/fideloper/TrustedProxy/issues", + "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2" + }, + "time": "2022-02-09T13:33:34+00:00" + }, + { + "name": "fruitcake/laravel-cors", + "version": "v2.2.0", + "source": { + "type": "git", + "url": "https://github.com/fruitcake/laravel-cors.git", + "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534", + "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534", + "shasum": "" + }, + "require": { + "asm89/stack-cors": "^2.0.1", + "illuminate/contracts": "^6|^7|^8|^9", + "illuminate/support": "^6|^7|^8|^9", + "php": ">=7.2" + }, + "require-dev": { + "laravel/framework": "^6|^7.24|^8", + "orchestra/testbench-dusk": "^4|^5|^6|^7", + "phpunit/phpunit": "^6|^7|^8|^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + }, + "laravel": { + "providers": [ + "Fruitcake\\Cors\\CorsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Fruitcake\\Cors\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fruitcake", + "homepage": "https://fruitcake.nl" + }, + { + "name": "Barry vd. Heuvel", + "email": "barryvdh@gmail.com" + } + ], + "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application", + "keywords": [ + "api", + "cors", + "crossdomain", + "laravel" + ], + "support": { + "issues": "https://github.com/fruitcake/laravel-cors/issues", + "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "abandoned": true, + "time": "2022-02-23T14:25:13+00:00" + }, + { + "name": "graham-campbell/result-type", + "version": "v1.1.1", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", + "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.1" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" + }, + "type": "library", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2023-02-25T20:23:15+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.7.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/fb7566caccf22d74d1ab270de3551f72a58399f5", + "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.5.3 || ^2.0", + "guzzlehttp/psr7": "^1.9.1 || ^2.4.5", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.1", + "ext-curl": "*", + "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.29 || ^9.5.23", + "psr/log": "^1.1 || ^2.0 || ^3.0" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.7.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2023-05-21T14:04:53+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "111166291a0f8130081195ac4556a5587d7f1b5d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d", + "reference": "111166291a0f8130081195ac4556a5587d7f1b5d", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.1", + "phpunit/phpunit": "^8.5.29 || ^9.5.23" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.0.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2023-08-03T15:11:55+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.6.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "8bd7c33a0734ae1c5d074360512beb716bef3f77" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/8bd7c33a0734ae1c5d074360512beb716bef3f77", + "reference": "8bd7c33a0734ae1c5d074360512beb716bef3f77", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.1", + "http-interop/http-factory-tests": "^0.9", + "phpunit/phpunit": "^8.5.29 || ^9.5.23" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.6.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2023-08-03T15:06:02+00:00" + }, + { + "name": "laravel/framework", + "version": "v8.83.27", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49", + "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49", + "shasum": "" + }, + "require": { + "doctrine/inflector": "^1.4|^2.0", + "dragonmantank/cron-expression": "^3.0.2", + "egulias/email-validator": "^2.1.10", + "ext-json": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "laravel/serializable-closure": "^1.0", + "league/commonmark": "^1.3|^2.0.2", + "league/flysystem": "^1.1", + "monolog/monolog": "^2.0", + "nesbot/carbon": "^2.53.1", + "opis/closure": "^3.6", + "php": "^7.3|^8.0", + "psr/container": "^1.0", + "psr/log": "^1.0|^2.0", + "psr/simple-cache": "^1.0", + "ramsey/uuid": "^4.2.2", + "swiftmailer/swiftmailer": "^6.3", + "symfony/console": "^5.4", + "symfony/error-handler": "^5.4", + "symfony/finder": "^5.4", + "symfony/http-foundation": "^5.4", + "symfony/http-kernel": "^5.4", + "symfony/mime": "^5.4", + "symfony/process": "^5.4", + "symfony/routing": "^5.4", + "symfony/var-dumper": "^5.4", + "tijsverkoyen/css-to-inline-styles": "^2.2.2", + "vlucas/phpdotenv": "^5.4.1", + "voku/portable-ascii": "^1.6.1" + }, + "conflict": { + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.0", + "psr/simple-cache-implementation": "1.0" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/collections": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/log": "self.version", + "illuminate/macroable": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/testing": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.198.1", + "doctrine/dbal": "^2.13.3|^3.1.4", + "filp/whoops": "^2.14.3", + "guzzlehttp/guzzle": "^6.5.5|^7.0.1", + "league/flysystem-cached-adapter": "^1.0", + "mockery/mockery": "^1.4.4", + "orchestra/testbench-core": "^6.27", + "pda/pheanstalk": "^4.0", + "phpunit/phpunit": "^8.5.19|^9.5.8", + "predis/predis": "^1.1.9", + "symfony/cache": "^5.4" + }, + "suggest": { + "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).", + "brianium/paratest": "Required to run tests in parallel (^6.0).", + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).", + "ext-bcmath": "Required to use the multiple_of validation rule.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "ext-memcached": "Required to use the memcache cache driver.", + "ext-pcntl": "Required to use all features of the queue worker.", + "ext-posix": "Required to use all features of the queue worker.", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).", + "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).", + "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).", + "mockery/mockery": "Required to use mocking (^1.4.4).", + "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", + "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).", + "predis/predis": "Required to use the predis connector (^1.1.9).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^5.4).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).", + "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "8.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2022-12-08T15:28:55+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v1.3.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/e5a3057a5591e1cfe8183034b0203921abe2c902", + "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "nesbot/carbon": "^2.61", + "pestphp/pest": "^1.21.3", + "phpstan/phpstan": "^1.8.2", + "symfony/var-dumper": "^5.4.11" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2023-07-14T13:56:28+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.8.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", + "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", + "shasum": "" + }, + "require": { + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", + "php": "^7.2.5|^8.0", + "psy/psysh": "^0.10.4|^0.11.1", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpunit/phpunit": "^8.5.8|^9.3.3" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Tinker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v2.8.1" + }, + "time": "2023-02-15T16:40:09+00:00" + }, + { + "name": "laravel/ui", + "version": "v3.4.6", + "source": { + "type": "git", + "url": "https://github.com/laravel/ui.git", + "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/ui/zipball/65ec5c03f7fee2c8ecae785795b829a15be48c2c", + "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c", + "shasum": "" + }, + "require": { + "illuminate/console": "^8.42|^9.0", + "illuminate/filesystem": "^8.42|^9.0", + "illuminate/support": "^8.82|^9.0", + "illuminate/validation": "^8.42|^9.0", + "php": "^7.3|^8.0" + }, + "require-dev": { + "orchestra/testbench": "^6.23|^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Ui\\UiServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Ui\\": "src/", + "Illuminate\\Foundation\\Auth\\": "auth-backend/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel UI utilities and presets.", + "keywords": [ + "laravel", + "ui" + ], + "support": { + "source": "https://github.com/laravel/ui/tree/v3.4.6" + }, + "time": "2022-05-20T13:38:08+00:00" + }, + { + "name": "laravelcollective/html", + "version": "v6.4.1", + "source": { + "type": "git", + "url": "https://github.com/LaravelCollective/html.git", + "reference": "64ddfdcaeeb8d332bd98bef442bef81e39c3910b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/LaravelCollective/html/zipball/64ddfdcaeeb8d332bd98bef442bef81e39c3910b", + "reference": "64ddfdcaeeb8d332bd98bef442bef81e39c3910b", + "shasum": "" + }, + "require": { + "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/session": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/view": "^6.0|^7.0|^8.0|^9.0|^10.0", + "php": ">=7.2.5" + }, + "require-dev": { + "illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0", + "mockery/mockery": "~1.0", + "phpunit/phpunit": "~8.5|^9.5.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.x-dev" + }, + "laravel": { + "providers": [ + "Collective\\Html\\HtmlServiceProvider" + ], + "aliases": { + "Form": "Collective\\Html\\FormFacade", + "Html": "Collective\\Html\\HtmlFacade" + } + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Collective\\Html\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Adam Engebretson", + "email": "adam@laravelcollective.com" + }, + { + "name": "Taylor Otwell", + "email": "taylorotwell@gmail.com" + } + ], + "description": "HTML and Form Builders for the Laravel Framework", + "homepage": "https://laravelcollective.com", + "support": { + "issues": "https://github.com/LaravelCollective/html/issues", + "source": "https://github.com/LaravelCollective/html" + }, + "abandoned": "spatie/laravel-html", + "time": "2023-04-25T02:46:11+00:00" + }, + { + "name": "league/commonmark", + "version": "2.4.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048", + "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.30.0", + "commonmark/commonmark.js": "0.30.0", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + } + }, + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", + "keywords": [ + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" + ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" + } + ], + "time": "2023-03-24T15:16:10+00:00" + }, + { + "name": "league/config", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2022-12-11T20:36:23+00:00" + }, + { + "name": "league/flysystem", + "version": "1.1.10", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1", + "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/mime-type-detection": "^1.3", + "php": "^7.2.5 || ^8.0" + }, + "conflict": { + "league/flysystem-sftp": "<1.0.6" + }, + "require-dev": { + "phpspec/prophecy": "^1.11.1", + "phpunit/phpunit": "^8.5.8" + }, + "suggest": { + "ext-ftp": "Allows you to use FTP server storage", + "ext-openssl": "Allows you to use FTPS server storage", + "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", + "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", + "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", + "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", + "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", + "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", + "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", + "league/flysystem-webdav": "Allows you to use WebDAV storage", + "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter", + "spatie/flysystem-dropbox": "Allows you to use Dropbox storage", + "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frenky.net" + } + ], + "description": "Filesystem abstraction: Many filesystems, one API.", + "keywords": [ + "Cloud Files", + "WebDAV", + "abstraction", + "aws", + "cloud", + "copy.com", + "dropbox", + "file systems", + "files", + "filesystem", + "filesystems", + "ftp", + "rackspace", + "remote", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/1.1.10" + }, + "funding": [ + { + "url": "https://offset.earth/frankdejonge", + "type": "other" + } + ], + "time": "2022-10-04T09:16:37+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.13.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96", + "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2023-08-05T12:09:49+00:00" + }, + { + "name": "markbaker/complex", + "version": "1.5.0", + "source": { + "type": "git", + "url": "https://github.com/MarkBaker/PHPComplex.git", + "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2", + "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2", + "shasum": "" + }, + "require": { + "php": "^5.6.0|^7.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0", + "phpcompatibility/php-compatibility": "^9.0", + "phpdocumentor/phpdocumentor": "2.*", + "phploc/phploc": "^4.0|^5.0|^6.0|^7.0", + "phpmd/phpmd": "2.*", + "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0", + "sebastian/phpcpd": "2.*", + "squizlabs/php_codesniffer": "^3.4.0" + }, + "type": "library", + "autoload": { + "files": [ + "classes/src/functions/abs.php", + "classes/src/functions/acos.php", + "classes/src/functions/acosh.php", + "classes/src/functions/acot.php", + "classes/src/functions/acoth.php", + "classes/src/functions/acsc.php", + "classes/src/functions/acsch.php", + "classes/src/functions/argument.php", + "classes/src/functions/asec.php", + "classes/src/functions/asech.php", + "classes/src/functions/asin.php", + "classes/src/functions/asinh.php", + "classes/src/functions/atan.php", + "classes/src/functions/atanh.php", + "classes/src/functions/conjugate.php", + "classes/src/functions/cos.php", + "classes/src/functions/cosh.php", + "classes/src/functions/cot.php", + "classes/src/functions/coth.php", + "classes/src/functions/csc.php", + "classes/src/functions/csch.php", + "classes/src/functions/exp.php", + "classes/src/functions/inverse.php", + "classes/src/functions/ln.php", + "classes/src/functions/log2.php", + "classes/src/functions/log10.php", + "classes/src/functions/negative.php", + "classes/src/functions/pow.php", + "classes/src/functions/rho.php", + "classes/src/functions/sec.php", + "classes/src/functions/sech.php", + "classes/src/functions/sin.php", + "classes/src/functions/sinh.php", + "classes/src/functions/sqrt.php", + "classes/src/functions/tan.php", + "classes/src/functions/tanh.php", + "classes/src/functions/theta.php", + "classes/src/operations/add.php", + "classes/src/operations/subtract.php", + "classes/src/operations/multiply.php", + "classes/src/operations/divideby.php", + "classes/src/operations/divideinto.php" + ], + "psr-4": { + "Complex\\": "classes/src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mark Baker", + "email": "mark@lange.demon.co.uk" + } + ], + "description": "PHP Class for working with complex numbers", + "homepage": "https://github.com/MarkBaker/PHPComplex", + "keywords": [ + "complex", + "mathematics" + ], + "support": { + "issues": "https://github.com/MarkBaker/PHPComplex/issues", + "source": "https://github.com/MarkBaker/PHPComplex/tree/1.5.0" + }, + "time": "2020-08-26T19:47:57+00:00" + }, + { + "name": "markbaker/matrix", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/MarkBaker/PHPMatrix.git", + "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/44bb1ab01811116f01fe216ab37d921dccc6c10d", + "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d", + "shasum": "" + }, + "require": { + "php": "^5.6.0|^7.0.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-master", + "phpcompatibility/php-compatibility": "dev-master", + "phploc/phploc": "^4", + "phpmd/phpmd": "dev-master", + "phpunit/phpunit": "^5.7|^6.0|7.0", + "sebastian/phpcpd": "^3.0", + "squizlabs/php_codesniffer": "^3.0@dev" + }, + "type": "library", + "autoload": { + "files": [ + "classes/src/Functions/adjoint.php", + "classes/src/Functions/antidiagonal.php", + "classes/src/Functions/cofactors.php", + "classes/src/Functions/determinant.php", + "classes/src/Functions/diagonal.php", + "classes/src/Functions/identity.php", + "classes/src/Functions/inverse.php", + "classes/src/Functions/minors.php", + "classes/src/Functions/trace.php", + "classes/src/Functions/transpose.php", + "classes/src/Operations/add.php", + "classes/src/Operations/directsum.php", + "classes/src/Operations/subtract.php", + "classes/src/Operations/multiply.php", + "classes/src/Operations/divideby.php", + "classes/src/Operations/divideinto.php" + ], + "psr-4": { + "Matrix\\": "classes/src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mark Baker", + "email": "mark@lange.demon.co.uk" + } + ], + "description": "PHP Class for working with matrices", + "homepage": "https://github.com/MarkBaker/PHPMatrix", + "keywords": [ + "mathematics", + "matrix", + "vector" + ], + "support": { + "issues": "https://github.com/MarkBaker/PHPMatrix/issues", + "source": "https://github.com/MarkBaker/PHPMatrix/tree/1.2.3" + }, + "time": "2021-01-26T14:36:01+00:00" + }, + { + "name": "maximebf/debugbar", + "version": "v1.18.2", + "source": { + "type": "git", + "url": "https://github.com/maximebf/php-debugbar.git", + "reference": "17dcf3f6ed112bb85a37cf13538fd8de49f5c274" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/17dcf3f6ed112bb85a37cf13538fd8de49f5c274", + "reference": "17dcf3f6ed112bb85a37cf13538fd8de49f5c274", + "shasum": "" + }, + "require": { + "php": "^7.1|^8", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^4|^5|^6" + }, + "require-dev": { + "phpunit/phpunit": ">=7.5.20 <10.0", + "twig/twig": "^1.38|^2.7|^3.0" + }, + "suggest": { + "kriswallsmith/assetic": "The best way to manage assets", + "monolog/monolog": "Log using Monolog", + "predis/predis": "Redis storage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.18-dev" + } + }, + "autoload": { + "psr-4": { + "DebugBar\\": "src/DebugBar/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Maxime Bouroumeau-Fuseau", + "email": "maxime.bouroumeau@gmail.com", + "homepage": "http://maximebf.com" + }, + { + "name": "Barry vd. Heuvel", + "email": "barryvdh@gmail.com" + } + ], + "description": "Debug bar in the browser for php application", + "homepage": "https://github.com/maximebf/php-debugbar", + "keywords": [ + "debug", + "debugbar" + ], + "support": { + "issues": "https://github.com/maximebf/php-debugbar/issues", + "source": "https://github.com/maximebf/php-debugbar/tree/v1.18.2" + }, + "time": "2023-02-04T15:27:00+00:00" + }, + { + "name": "monolog/monolog", + "version": "2.9.1", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1", + "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^2.4.9 || ^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2 || ^2@dev", + "guzzlehttp/guzzle": "^7.4", + "guzzlehttp/psr7": "^2.2", + "mongodb/mongodb": "^1.8", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "phpspec/prophecy": "^1.15", + "phpstan/phpstan": "^0.12.91", + "phpunit/phpunit": "^8.5.14", + "predis/predis": "^1.1 || ^2.0", + "rollbar/rollbar": "^1.3 || ^2 || ^3", + "ruflin/elastica": "^7", + "swiftmailer/swiftmailer": "^5.3|^6.0", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/2.9.1" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2023-02-06T13:44:46+00:00" + }, + { + "name": "nesbot/carbon", + "version": "2.68.1", + "source": { + "type": "git", + "url": "https://github.com/briannesbitt/Carbon.git", + "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4f991ed2a403c85efbc4f23eb4030063fdbe01da", + "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^7.1.8 || ^8.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16", + "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" + }, + "require-dev": { + "doctrine/dbal": "^2.0 || ^3.1.4", + "doctrine/orm": "^2.7", + "friendsofphp/php-cs-fixer": "^3.0", + "kylekatarnls/multi-tester": "^2.0", + "ondrejmirtes/better-reflection": "*", + "phpmd/phpmd": "^2.9", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12.99 || ^1.7.14", + "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", + "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", + "squizlabs/php_codesniffer": "^3.4" + }, + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev", + "dev-master": "2.x-dev" + }, + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Carbon\\": "src/Carbon/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "https://markido.com" + }, + { + "name": "kylekatarnls", + "homepage": "https://github.com/kylekatarnls" + } + ], + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "https://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ], + "support": { + "docs": "https://carbon.nesbot.com/docs", + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, + "funding": [ + { + "url": "https://github.com/sponsors/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon#sponsor", + "type": "opencollective" + }, + { + "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", + "type": "tidelift" + } + ], + "time": "2023-06-20T18:29:04+00:00" + }, + { + "name": "nette/schema", + "version": "v1.2.4", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/c9ff517a53903b3d4e29ec547fb20feecb05b8ab", + "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab", + "shasum": "" + }, + "require": { + "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", + "php": "7.1 - 8.3" + }, + "require-dev": { + "nette/tester": "^2.3 || ^2.4", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.2.4" + }, + "time": "2023-08-05T18:56:25+00:00" + }, + { + "name": "nette/utils", + "version": "v3.2.10", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2", + "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2", + "shasum": "" + }, + "require": { + "php": ">=7.2 <8.4" + }, + "conflict": { + "nette/di": "<3.0.6" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "dev-master", + "nette/tester": "~2.0", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.3" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", + "ext-xml": "to use Strings::length() etc. when mbstring is not available" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v3.2.10" + }, + "time": "2023-07-30T15:38:18+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v4.16.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "19526a33fb561ef417e822e85f08a00db4059c17" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17", + "reference": "19526a33fb561ef417e822e85f08a00db4059c17", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": ">=7.0" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.9-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/v4.16.0" + }, + "time": "2023-06-25T14:52:30+00:00" + }, + { + "name": "opis/closure", + "version": "3.6.3", + "source": { + "type": "git", + "url": "https://github.com/opis/closure.git", + "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad", + "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad", + "shasum": "" + }, + "require": { + "php": "^5.4 || ^7.0 || ^8.0" + }, + "require-dev": { + "jeremeamia/superclosure": "^2.0", + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.6.x-dev" + } + }, + "autoload": { + "files": [ + "functions.php" + ], + "psr-4": { + "Opis\\Closure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marius Sarca", + "email": "marius.sarca@gmail.com" + }, + { + "name": "Sorin Sarca", + "email": "sarca_sorin@hotmail.com" + } + ], + "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.", + "homepage": "https://opis.io/closure", + "keywords": [ + "anonymous functions", + "closure", + "function", + "serializable", + "serialization", + "serialize" + ], + "support": { + "issues": "https://github.com/opis/closure/issues", + "source": "https://github.com/opis/closure/tree/3.6.3" + }, + "time": "2022-01-27T09:35:39+00:00" + }, + { + "name": "phpoffice/phpspreadsheet", + "version": "1.12.0", + "source": { + "type": "git", + "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", + "reference": "f79611d6dc1f6b7e8e30b738fc371b392001dbfd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/f79611d6dc1f6b7e8e30b738fc371b392001dbfd", + "reference": "f79611d6dc1f6b7e8e30b738fc371b392001dbfd", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-dom": "*", + "ext-fileinfo": "*", + "ext-gd": "*", + "ext-iconv": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-simplexml": "*", + "ext-xml": "*", + "ext-xmlreader": "*", + "ext-xmlwriter": "*", + "ext-zip": "*", + "ext-zlib": "*", + "markbaker/complex": "^1.4", + "markbaker/matrix": "^1.2", + "php": "^7.1", + "psr/simple-cache": "^1.0" + }, + "require-dev": { + "dompdf/dompdf": "^0.8.3", + "friendsofphp/php-cs-fixer": "^2.16", + "jpgraph/jpgraph": "^4.0", + "mpdf/mpdf": "^8.0", + "phpcompatibility/php-compatibility": "^9.3", + "phpunit/phpunit": "^7.5", + "squizlabs/php_codesniffer": "^3.5", + "tecnickcom/tcpdf": "^6.3" + }, + "suggest": { + "dompdf/dompdf": "Option for rendering PDF with PDF Writer", + "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers", + "mpdf/mpdf": "Option for rendering PDF with PDF Writer", + "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer" + }, + "type": "library", + "autoload": { + "psr-4": { + "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Maarten Balliauw", + "homepage": "https://blog.maartenballiauw.be" + }, + { + "name": "Mark Baker", + "homepage": "https://markbakeruk.net" + }, + { + "name": "Franck Lefevre", + "homepage": "https://rootslabs.net" + }, + { + "name": "Erik Tilt" + }, + { + "name": "Adrien Crivelli" + } + ], + "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", + "homepage": "https://github.com/PHPOffice/PhpSpreadsheet", + "keywords": [ + "OpenXML", + "excel", + "gnumeric", + "ods", + "php", + "spreadsheet", + "xls", + "xlsx" + ], + "support": { + "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.12.0" + }, + "time": "2020-04-27T08:12:48+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.1", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e", + "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2023-02-25T19:38:58+00:00" + }, + { + "name": "psr/container", + "version": "1.1.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "513e0666f7216c7459170d56df27dfcefe1689ea" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea", + "reference": "513e0666f7216c7459170d56df27dfcefe1689ea", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "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/1.1.2" + }, + "time": "2021-11-05T16:50:12+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/http-client", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31", + "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client/tree/1.0.2" + }, + "time": "2023-04-10T20:12:12+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "e616d01114759c4c489f93b099585439f795fe35" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", + "reference": "e616d01114759c4c489f93b099585439f795fe35", + "shasum": "" + }, + "require": { + "php": ">=7.0.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory/tree/1.0.2" + }, + "time": "2023-04-10T20:10:41+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "1.1.4", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } + }, + "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/1.1.4" + }, + "time": "2021-05-03T11:20:27+00:00" + }, + { + "name": "psr/simple-cache", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/master" + }, + "time": "2017-10-23T01:57:42+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.11.20", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "0fa27040553d1d280a67a4393194df5228afea5b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/0fa27040553d1d280a67a4393194df5228afea5b", + "reference": "0fa27040553d1d280a67a4393194df5228afea5b", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^4.0 || ^3.1", + "php": "^8.0 || ^7.0.8", + "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", + "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.11.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.11.20" + }, + "time": "2023-07-31T14:32:22+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/collection", + "version": "1.3.0", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4", + "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "symfony/polyfill-php81": "^1.23" + }, + "require-dev": { + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.28.3", + "fakerphp/faker": "^1.21", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^1.0", + "mockery/mockery": "^1.5", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpcsstandards/phpcsutils": "^1.0.0-rc1", + "phpspec/prophecy-phpunit": "^2.0", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5", + "psalm/plugin-mockery": "^1.1", + "psalm/plugin-phpunit": "^0.18.4", + "ramsey/coding-standard": "^2.0.3", + "ramsey/conventional-commits": "^1.3", + "vimeo/psalm": "^5.4" + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP library for representing and manipulating collections.", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/1.3.0" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", + "type": "tidelift" + } + ], + "time": "2022-12-27T19:12:24+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.2.3", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df", + "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df", + "shasum": "" + }, + "require": { + "brick/math": "^0.8 || ^0.9", + "ext-json": "*", + "php": "^7.2 || ^8.0", + "ramsey/collection": "^1.0", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-php80": "^1.14" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.8", + "ergebnis/composer-normalize": "^2.15", + "mockery/mockery": "^1.3", + "moontoast/math": "^1.1", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", + "php-mock/php-mock-mockery": "^1.3", + "php-parallel-lint/php-parallel-lint": "^1.1", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-mockery": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpunit/phpunit": "^8.5 || ^9", + "slevomat/coding-standard": "^7.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.9" + }, + "suggest": { + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-ctype": "Enables faster processing of character classification using ctype functions.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.x-dev" + }, + "captainhook": { + "force-install": true + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.2.3" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2021-09-25T23:10:38+00:00" + }, + { + "name": "swiftmailer/swiftmailer", + "version": "v6.3.0", + "source": { + "type": "git", + "url": "https://github.com/swiftmailer/swiftmailer.git", + "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c", + "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.0|^3.1", + "php": ">=7.0.0", + "symfony/polyfill-iconv": "^1.0", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "symfony/phpunit-bridge": "^4.4|^5.4" + }, + "suggest": { + "ext-intl": "Needed to support internationalized email addresses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.2-dev" + } + }, + "autoload": { + "files": [ + "lib/swift_required.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Corbyn" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "Swiftmailer, free feature-rich PHP mailer", + "homepage": "https://swiftmailer.symfony.com", + "keywords": [ + "email", + "mail", + "mailer" + ], + "support": { + "issues": "https://github.com/swiftmailer/swiftmailer/issues", + "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0" + }, + "funding": [ + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer", + "type": "tidelift" + } + ], + "abandoned": "symfony/mailer", + "time": "2021-10-18T15:26:12+00:00" + }, + { + "name": "symfony/console", + "version": "v5.4.26", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "b504a3d266ad2bb632f196c0936ef2af5ff6e273" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/b504a3d266ad2bb632f196c0936ef2af5ff6e273", + "reference": "b504a3d266ad2bb632f196c0936ef2af5ff6e273", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php73": "^1.9", + "symfony/polyfill-php80": "^1.16", + "symfony/service-contracts": "^1.1|^2|^3", + "symfony/string": "^5.1|^6.0" + }, + "conflict": { + "psr/log": ">=3", + "symfony/dependency-injection": "<4.4", + "symfony/dotenv": "<5.1", + "symfony/event-dispatcher": "<4.4", + "symfony/lock": "<4.4", + "symfony/process": "<4.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0" + }, + "require-dev": { + "psr/log": "^1|^2", + "symfony/config": "^4.4|^5.0|^6.0", + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/event-dispatcher": "^4.4|^5.0|^6.0", + "symfony/lock": "^4.4|^5.0|^6.0", + "symfony/process": "^4.4|^5.0|^6.0", + "symfony/var-dumper": "^4.4|^5.0|^6.0" + }, + "suggest": { + "psr/log": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" + }, + "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/v5.4.26" + }, + "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": "2023-07-19T20:11:33+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v5.4.26", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a", + "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.16" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v5.4.26" + }, + "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": "2023-07-07T06:10:25+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v2.5.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66", + "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "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/v2.5.2" + }, + "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": "2022-01-02T09:53:40+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v5.4.26", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "b26719213a39c9ba57520cbc5e52bfcc5e8d92f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/b26719213a39c9ba57520cbc5e52bfcc5e8d92f9", + "reference": "b26719213a39c9ba57520cbc5e52bfcc5e8d92f9", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^4.4|^5.0|^6.0" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/http-kernel": "^4.4|^5.0|^6.0", + "symfony/serializer": "^4.4|^5.0|^6.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/v5.4.26" + }, + "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": "2023-07-16T16:48:57+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v5.4.26", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "5dcc00e03413f05c1e7900090927bb7247cb0aac" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/5dcc00e03413f05c1e7900090927bb7247cb0aac", + "reference": "5dcc00e03413f05c1e7900090927bb7247cb0aac", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/event-dispatcher-contracts": "^2|^3", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "symfony/dependency-injection": "<4.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^4.4|^5.0|^6.0", + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/error-handler": "^4.4|^5.0|^6.0", + "symfony/expression-language": "^4.4|^5.0|^6.0", + "symfony/http-foundation": "^4.4|^5.0|^6.0", + "symfony/service-contracts": "^1.1|^2|^3", + "symfony/stopwatch": "^4.4|^5.0|^6.0" + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" + }, + "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/v5.4.26" + }, + "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": "2023-07-06T06:34:20+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v2.5.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1", + "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "psr/event-dispatcher": "^1" + }, + "suggest": { + "symfony/event-dispatcher-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "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/v2.5.2" + }, + "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": "2022-01-02T09:53:40+00:00" + }, + { + "name": "symfony/finder", + "version": "v5.4.27", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d", + "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-php80": "^1.16" + }, + "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/v5.4.27" + }, + "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": "2023-07-31T08:02:31+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v5.4.26", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "e7793151e99dc2ac1352ff3735d100fb3b3bfc08" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793151e99dc2ac1352ff3735d100fb3b3bfc08", + "reference": "e7793151e99dc2ac1352ff3735d100fb3b3bfc08", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "predis/predis": "~1.0", + "symfony/cache": "^4.4|^5.0|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/expression-language": "^4.4|^5.0|^6.0", + "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", + "symfony/mime": "^4.4|^5.0|^6.0", + "symfony/rate-limiter": "^5.2|^6.0" + }, + "suggest": { + "symfony/mime": "To use the file extension guesser" + }, + "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/v5.4.26" + }, + "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": "2023-07-21T11:30:15+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v5.4.27", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "9f5624816c0b8d92f85666ac7ed2825a18fcd899" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f5624816c0b8d92f85666ac7ed2825a18fcd899", + "reference": "9f5624816c0b8d92f85666ac7ed2825a18fcd899", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "psr/log": "^1|^2", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/error-handler": "^4.4|^5.0|^6.0", + "symfony/event-dispatcher": "^5.0|^6.0", + "symfony/http-foundation": "^5.4.21|^6.2.7", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-php73": "^1.9", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "symfony/browser-kit": "<5.4", + "symfony/cache": "<5.0", + "symfony/config": "<5.0", + "symfony/console": "<4.4", + "symfony/dependency-injection": "<5.3", + "symfony/doctrine-bridge": "<5.0", + "symfony/form": "<5.0", + "symfony/http-client": "<5.0", + "symfony/mailer": "<5.0", + "symfony/messenger": "<5.0", + "symfony/translation": "<5.0", + "symfony/twig-bridge": "<5.0", + "symfony/validator": "<5.0", + "twig/twig": "<2.13" + }, + "provide": { + "psr/log-implementation": "1.0|2.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^5.4|^6.0", + "symfony/config": "^5.0|^6.0", + "symfony/console": "^4.4|^5.0|^6.0", + "symfony/css-selector": "^4.4|^5.0|^6.0", + "symfony/dependency-injection": "^5.3|^6.0", + "symfony/dom-crawler": "^4.4|^5.0|^6.0", + "symfony/expression-language": "^4.4|^5.0|^6.0", + "symfony/finder": "^4.4|^5.0|^6.0", + "symfony/http-client-contracts": "^1.1|^2|^3", + "symfony/process": "^4.4|^5.0|^6.0", + "symfony/routing": "^4.4|^5.0|^6.0", + "symfony/stopwatch": "^4.4|^5.0|^6.0", + "symfony/translation": "^4.4|^5.0|^6.0", + "symfony/translation-contracts": "^1.1|^2|^3", + "twig/twig": "^2.13|^3.0.4" + }, + "suggest": { + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", + "symfony/dependency-injection": "" + }, + "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/v5.4.27" + }, + "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": "2023-07-31T10:18:38+00:00" + }, + { + "name": "symfony/mime", + "version": "v5.4.26", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2", + "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<4.4", + "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/property-access": "^4.4|^5.1|^6.0", + "symfony/property-info": "^4.4|^5.1|^6.0", + "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "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 manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v5.4.26" + }, + "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": "2023-07-27T06:29:31+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.27.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.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": "2022-11-03T14:55:06+00:00" + }, + { + "name": "symfony/polyfill-iconv", + "version": "v1.27.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-iconv.git", + "reference": "927013f3aac555983a5059aada98e1907d842695" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695", + "reference": "927013f3aac555983a5059aada98e1907d842695", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-iconv": "*" + }, + "suggest": { + "ext-iconv": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Iconv\\": "" + } + }, + "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 Iconv extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "iconv", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.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": "2022-11-03T14:55:06+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.27.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "511a08c03c1960e08a883f4cffcacd219b758354" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354", + "reference": "511a08c03c1960e08a883f4cffcacd219b758354", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/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.27.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": "2022-11-03T14:55:06+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.27.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "639084e360537a19f9ee352433b84ce831f3d2da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", + "reference": "639084e360537a19f9ee352433b84ce831f3d2da", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.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": "2022-11-03T14:55:06+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.27.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", + "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/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.27.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": "2022-11-03T14:55:06+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.27.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", + "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/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.27.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": "2022-11-03T14:55:06+00:00" + }, + { + "name": "symfony/polyfill-php72", + "version": "v1.27.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "869329b1e9894268a8a61dabb69153029b7a8c97" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", + "reference": "869329b1e9894268a8a61dabb69153029b7a8c97", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } + }, + "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 7.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.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": "2022-11-03T14:55:06+00:00" + }, + { + "name": "symfony/polyfill-php73", + "version": "v1.27.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9", + "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php73\\": "" + }, + "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 7.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.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": "2022-11-03T14:55:06+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.27.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", + "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.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": "2022-11-03T14:55:06+00:00" + }, + { + "name": "symfony/polyfill-php81", + "version": "v1.27.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php81.git", + "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a", + "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php81\\": "" + }, + "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.1+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.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": "2022-11-03T14:55:06+00:00" + }, + { + "name": "symfony/process", + "version": "v5.4.26", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "1a44dc377ec86a50fab40d066cd061e28a6b482f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/1a44dc377ec86a50fab40d066cd061e28a6b482f", + "reference": "1a44dc377ec86a50fab40d066cd061e28a6b482f", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.16" + }, + "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/v5.4.26" + }, + "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": "2023-07-12T15:44:31+00:00" + }, + { + "name": "symfony/routing", + "version": "v5.4.26", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "853fc7df96befc468692de0a48831b38f04d2cb2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/853fc7df96befc468692de0a48831b38f04d2cb2", + "reference": "853fc7df96befc468692de0a48831b38f04d2cb2", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "doctrine/annotations": "<1.12", + "symfony/config": "<5.3", + "symfony/dependency-injection": "<4.4", + "symfony/yaml": "<4.4" + }, + "require-dev": { + "doctrine/annotations": "^1.12|^2", + "psr/log": "^1|^2|^3", + "symfony/config": "^5.3|^6.0", + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/expression-language": "^4.4|^5.0|^6.0", + "symfony/http-foundation": "^4.4|^5.0|^6.0", + "symfony/yaml": "^4.4|^5.0|^6.0" + }, + "suggest": { + "symfony/config": "For using the all-in-one router or any loader", + "symfony/expression-language": "For using expression matching", + "symfony/http-foundation": "For using a Symfony Request object", + "symfony/yaml": "For using the YAML loader" + }, + "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/v5.4.26" + }, + "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": "2023-07-24T13:28:37+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v2.5.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c", + "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "psr/container": "^1.1", + "symfony/deprecation-contracts": "^2.1|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "suggest": { + "symfony/service-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + } + }, + "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/v2.5.2" + }, + "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": "2022-05-30T19:17:29+00:00" + }, + { + "name": "symfony/string", + "version": "v5.4.26", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "1181fe9270e373537475e826873b5867b863883c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/1181fe9270e373537475e826873b5867b863883c", + "reference": "1181fe9270e373537475e826873b5867b863883c", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "~1.15" + }, + "conflict": { + "symfony/translation-contracts": ">=3.0" + }, + "require-dev": { + "symfony/error-handler": "^4.4|^5.0|^6.0", + "symfony/http-client": "^4.4|^5.0|^6.0", + "symfony/translation-contracts": "^1.1|^2", + "symfony/var-exporter": "^4.4|^5.0|^6.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/v5.4.26" + }, + "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": "2023-06-28T12:46:07+00:00" + }, + { + "name": "symfony/translation", + "version": "v5.4.24", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "de237e59c5833422342be67402d487fbf50334ff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/de237e59c5833422342be67402d487fbf50334ff", + "reference": "de237e59c5833422342be67402d487fbf50334ff", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "^1.16", + "symfony/translation-contracts": "^2.3" + }, + "conflict": { + "symfony/config": "<4.4", + "symfony/console": "<5.3", + "symfony/dependency-injection": "<5.0", + "symfony/http-kernel": "<5.0", + "symfony/twig-bundle": "<5.0", + "symfony/yaml": "<4.4" + }, + "provide": { + "symfony/translation-implementation": "2.3" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^4.4|^5.0|^6.0", + "symfony/console": "^5.4|^6.0", + "symfony/dependency-injection": "^5.0|^6.0", + "symfony/finder": "^4.4|^5.0|^6.0", + "symfony/http-client-contracts": "^1.1|^2.0|^3.0", + "symfony/http-kernel": "^5.0|^6.0", + "symfony/intl": "^4.4|^5.0|^6.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/service-contracts": "^1.1.2|^2|^3", + "symfony/yaml": "^4.4|^5.0|^6.0" + }, + "suggest": { + "psr/log-implementation": "To use logging capability in translator", + "symfony/config": "", + "symfony/yaml": "" + }, + "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/v5.4.24" + }, + "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": "2023-05-19T12:34:17+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v2.5.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe", + "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe", + "shasum": "" + }, + "require": { + "php": ">=7.2.5" + }, + "suggest": { + "symfony/translation-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + } + }, + "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/v2.5.2" + }, + "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": "2022-06-27T16:58:25+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v5.4.26", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "e706c99b4a6f4d9383b52b80dd8c74880501e314" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e706c99b4a6f4d9383b52b80dd8c74880501e314", + "reference": "e706c99b4a6f4d9383b52b80dd8c74880501e314", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "symfony/console": "<4.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^4.4|^5.0|^6.0", + "symfony/http-kernel": "^4.4|^5.0|^6.0", + "symfony/process": "^4.4|^5.0|^6.0", + "symfony/uid": "^5.1|^6.0", + "twig/twig": "^2.13|^3.0.4" + }, + "suggest": { + "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", + "ext-intl": "To show region name in time zone dump", + "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" + }, + "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/v5.4.26" + }, + "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": "2023-07-13T07:32:46+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "2.2.6", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c", + "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": "^5.5 || ^7.0 || ^8.0", + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", + "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6" + }, + "time": "2023-01-03T09:29:04+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.5.0", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", + "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.0.2", + "php": "^7.1.3 || ^8.0", + "phpoption/phpoption": "^1.8", + "symfony/polyfill-ctype": "^1.23", + "symfony/polyfill-mbstring": "^1.23.1", + "symfony/polyfill-php80": "^1.23.1" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "ext-filter": "*", + "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "5.5-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2022-10-16T01:01:54+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "1.6.1", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a", + "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "http://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/1.6.1" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2022-01-24T18:55:24+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], + "packages-dev": [ + { + "name": "doctrine/instantiator", + "version": "1.5.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b", + "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9 || ^11", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^0.16 || ^1", + "phpstan/phpstan": "^1.4", + "phpstan/phpstan-phpunit": "^1", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "vimeo/psalm": "^4.30 || ^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/1.5.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:15:36+00:00" + }, + { + "name": "facade/flare-client-php", + "version": "1.10.0", + "source": { + "type": "git", + "url": "https://github.com/facade/flare-client-php.git", + "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8", + "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8", + "shasum": "" + }, + "require": { + "facade/ignition-contracts": "~1.0", + "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0", + "php": "^7.1|^8.0", + "symfony/http-foundation": "^3.3|^4.1|^5.0", + "symfony/mime": "^3.4|^4.0|^5.1", + "symfony/var-dumper": "^3.4|^4.0|^5.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.14", + "phpunit/phpunit": "^7.5", + "spatie/phpunit-snapshot-assertions": "^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Facade\\FlareClient\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Send PHP errors to Flare", + "homepage": "https://github.com/facade/flare-client-php", + "keywords": [ + "exception", + "facade", + "flare", + "reporting" + ], + "support": { + "issues": "https://github.com/facade/flare-client-php/issues", + "source": "https://github.com/facade/flare-client-php/tree/1.10.0" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2022-08-09T11:23:57+00:00" + }, + { + "name": "facade/ignition", + "version": "2.17.7", + "source": { + "type": "git", + "url": "https://github.com/facade/ignition.git", + "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9", + "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "facade/flare-client-php": "^1.9.1", + "facade/ignition-contracts": "^1.0.2", + "illuminate/support": "^7.0|^8.0", + "monolog/monolog": "^2.0", + "php": "^7.2.5|^8.0", + "symfony/console": "^5.0", + "symfony/var-dumper": "^5.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.14", + "livewire/livewire": "^2.4", + "mockery/mockery": "^1.3", + "orchestra/testbench": "^5.0|^6.0", + "psalm/plugin-laravel": "^1.2" + }, + "suggest": { + "laravel/telescope": "^3.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + }, + "laravel": { + "providers": [ + "Facade\\Ignition\\IgnitionServiceProvider" + ], + "aliases": { + "Flare": "Facade\\Ignition\\Facades\\Flare" + } + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Facade\\Ignition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A beautiful error page for Laravel applications.", + "homepage": "https://github.com/facade/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/facade/ignition/issues", + "source": "https://github.com/facade/ignition" + }, + "time": "2023-01-26T12:34:59+00:00" + }, + { + "name": "facade/ignition-contracts", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/facade/ignition-contracts.git", + "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267", + "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^v2.15.8", + "phpunit/phpunit": "^9.3.11", + "vimeo/psalm": "^3.17.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Facade\\IgnitionContracts\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "homepage": "https://flareapp.io", + "role": "Developer" + } + ], + "description": "Solution contracts for Ignition", + "homepage": "https://github.com/facade/ignition-contracts", + "keywords": [ + "contracts", + "flare", + "ignition" + ], + "support": { + "issues": "https://github.com/facade/ignition-contracts/issues", + "source": "https://github.com/facade/ignition-contracts/tree/1.0.2" + }, + "time": "2020-10-16T08:27:54+00:00" + }, + { + "name": "filp/whoops", + "version": "2.15.3", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "c83e88a30524f9360b11f585f71e6b17313b7187" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187", + "reference": "c83e88a30524f9360b11f585f71e6b17313b7187", + "shasum": "" + }, + "require": { + "php": "^5.5.9 || ^7.0 || ^8.0", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "require-dev": { + "mockery/mockery": "^0.9 || ^1.0", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.15.3" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2023-07-13T12:00:00+00:00" + }, + { + "name": "fzaninotto/faker", + "version": "v1.9.2", + "source": { + "type": "git", + "url": "https://github.com/fzaninotto/Faker.git", + "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e", + "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0" + }, + "require-dev": { + "ext-intl": "*", + "phpunit/phpunit": "^4.8.35 || ^5.7", + "squizlabs/php_codesniffer": "^2.9.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/fzaninotto/Faker/issues", + "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2" + }, + "abandoned": true, + "time": "2020-12-11T09:56:16+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, + "time": "2020-07-09T08:09:16+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.6.6", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e", + "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "^2.0.1", + "lib-pcre": ">=7.0", + "php": ">=7.3" + }, + "conflict": { + "phpunit/phpunit": "<8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.6.10", + "psalm/plugin-phpunit": "^0.18.4", + "symplify/easy-coding-standard": "^11.5.0", + "vimeo/psalm": "^4.30" + }, + "type": "library", + "autoload": { + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], + "psr-4": { + "Mockery\\": "library/Mockery" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "https://github.com/padraic", + "role": "Author" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "https://davedevelopment.co.uk", + "role": "Developer" + }, + { + "name": "Nathanael Esayeas", + "email": "nathanael.esayeas@protonmail.com", + "homepage": "https://github.com/ghostwriter", + "role": "Lead Developer" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "support": { + "docs": "https://docs.mockery.io/", + "issues": "https://github.com/mockery/mockery/issues", + "rss": "https://github.com/mockery/mockery/releases.atom", + "security": "https://github.com/mockery/mockery/security/advisories", + "source": "https://github.com/mockery/mockery" + }, + "time": "2023-08-09T00:03:52+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.11.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3,<3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2023-03-08T13:26:56+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v5.11.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461", + "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461", + "shasum": "" + }, + "require": { + "facade/ignition-contracts": "^1.0", + "filp/whoops": "^2.14.3", + "php": "^7.3 || ^8.0", + "symfony/console": "^5.0" + }, + "require-dev": { + "brianium/paratest": "^6.1", + "fideloper/proxy": "^4.4.1", + "fruitcake/laravel-cors": "^2.0.3", + "laravel/framework": "8.x-dev", + "nunomaduro/larastan": "^0.6.2", + "nunomaduro/mock-final-classes": "^1.0", + "orchestra/testbench": "^6.0", + "phpstan/phpstan": "^0.12.64", + "phpunit/phpunit": "^9.5.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2022-01-10T16:22:52+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "97803eca37d319dfa7826cc2437fc020857acb53" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", + "reference": "97803eca37d319dfa7826cc2437fc020857acb53", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.3" + }, + "time": "2021-07-20T11:28:43+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "9.2.27", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "b0a88255cb70d52653d80c890bd7f38740ea50d1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/b0a88255cb70d52653d80c890bd7f38740ea50d1", + "reference": "b0a88255cb70d52653d80c890bd7f38740ea50d1", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^4.15", + "php": ">=7.3", + "phpunit/php-file-iterator": "^3.0.3", + "phpunit/php-text-template": "^2.0.2", + "sebastian/code-unit-reverse-lookup": "^2.0.2", + "sebastian/complexity": "^2.0", + "sebastian/environment": "^5.1.2", + "sebastian/lines-of-code": "^1.0.3", + "sebastian/version": "^3.0.1", + "theseer/tokenizer": "^1.2.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "9.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.27" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-07-26T13:44:30+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "3.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2021-12-02T12:48:52+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:58:55+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T05:33:50+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "5.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:16:10+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "9.6.10", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "a6d351645c3fe5a30f5e86be6577d946af65a328" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a6d351645c3fe5a30f5e86be6577d946af65a328", + "reference": "a6d351645c3fe5a30f5e86be6577d946af65a328", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.3.1 || ^2", + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.10.1", + "phar-io/manifest": "^2.0.3", + "phar-io/version": "^3.0.2", + "php": ">=7.3", + "phpunit/php-code-coverage": "^9.2.13", + "phpunit/php-file-iterator": "^3.0.5", + "phpunit/php-invoker": "^3.1.1", + "phpunit/php-text-template": "^2.0.3", + "phpunit/php-timer": "^5.0.2", + "sebastian/cli-parser": "^1.0.1", + "sebastian/code-unit": "^1.0.6", + "sebastian/comparator": "^4.0.8", + "sebastian/diff": "^4.0.3", + "sebastian/environment": "^5.1.3", + "sebastian/exporter": "^4.0.5", + "sebastian/global-state": "^5.0.1", + "sebastian/object-enumerator": "^4.0.3", + "sebastian/resource-operations": "^3.0.3", + "sebastian/type": "^3.2", + "sebastian/version": "^3.0.2" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "9.6-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.10" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2023-07-10T04:04:23+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:08:49+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "1.0.8", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:08:54+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:30:19+00:00" + }, + { + "name": "sebastian/comparator", + "version": "4.0.8", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "fa0f136dd2334583309d32b62544682ee972b51a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", + "reference": "fa0f136dd2334583309d32b62544682ee972b51a", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/diff": "^4.0", + "sebastian/exporter": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2022-09-14T12:41:17+00:00" + }, + { + "name": "sebastian/complexity", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", + "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.7", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T15:52:27+00:00" + }, + { + "name": "sebastian/diff", + "version": "4.0.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3", + "symfony/process": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-05-07T05:35:17+00:00" + }, + { + "name": "sebastian/environment", + "version": "5.1.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:03:51+00:00" + }, + { + "name": "sebastian/exporter", + "version": "4.0.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2022-09-14T06:03:37+00:00" + }, + { + "name": "sebastian/global-state", + "version": "5.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "bde739e7565280bda77be70044ac1047bc007e34" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34", + "reference": "bde739e7565280bda77be70044ac1047bc007e34", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-02T09:26:13+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.6", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-28T06:42:11+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:12:34+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:14:26+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "4.0.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:07:39+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "support": { + "issues": "https://github.com/sebastianbergmann/resource-operations/issues", + "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:45:17+00:00" + }, + { + "name": "sebastian/type", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:13:03+00:00" + }, + { + "name": "sebastian/version", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c6c1022351a901512170118436c764e473f6de8c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", + "reference": "c6c1022351a901512170118436c764e473f6de8c", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:39:44+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", + "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.1" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2021-07-28T10:34:58+00:00" + } + ], + "aliases": [], + "minimum-stability": "dev", + "stability-flags": [], + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^7.3" + }, + "platform-dev": [], + "plugin-api-version": "2.3.0" +} diff --git a/Mid-term/config/app.php b/Mid-term/config/app.php new file mode 100644 index 000000000..2baeec8d4 --- /dev/null +++ b/Mid-term/config/app.php @@ -0,0 +1,234 @@ + env('APP_NAME', 'Laravel'), + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. Set this in your ".env" file. + | + */ + + 'env' => env('APP_ENV', 'production'), + + /* + |-------------------------------------------------------------------------- + | Application Debug Mode + |-------------------------------------------------------------------------- + | + | When your application is in debug mode, detailed error messages with + | stack traces will be shown on every error that occurs within your + | application. If disabled, a simple generic error page is shown. + | + */ + + 'debug' => (bool) env('APP_DEBUG', false), + + /* + |-------------------------------------------------------------------------- + | Application URL + |-------------------------------------------------------------------------- + | + | This URL is used by the console to properly generate URLs when using + | the Artisan command line tool. You should set this to the root of + | your application so that it is used when running Artisan tasks. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + 'asset_url' => env('ASSET_URL', null), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. We have gone + | ahead and set this to a sensible default for you out of the box. + | + */ + + 'timezone' => 'UTC', + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by the translation service provider. You are free to set this value + | to any of the locales which will be supported by the application. + | + */ + + 'locale' => 'vi', + + /* + |-------------------------------------------------------------------------- + | Application Fallback Locale + |-------------------------------------------------------------------------- + | + | The fallback locale determines the locale to use when the current one + | is not available. You may change the value to correspond to any of + | the language folders that are provided through your application. + | + */ + + 'fallback_locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Faker Locale + |-------------------------------------------------------------------------- + | + | This locale will be used by the Faker PHP library when generating fake + | data for your database seeds. For example, this will be used to get + | localized telephone numbers, street address information and more. + | + */ + + 'faker_locale' => 'en_US', + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is used by the Illuminate encrypter service and should be set + | to a random, 32 character string, otherwise these encrypted strings + | will not be safe. Please do this before deploying an application! + | + */ + + 'key' => env('APP_KEY'), + + 'cipher' => 'AES-256-CBC', + + /* + |-------------------------------------------------------------------------- + | Autoloaded Service Providers + |-------------------------------------------------------------------------- + | + | The service providers listed here will be automatically loaded on the + | request to your application. Feel free to add your own services to + | this array to grant expanded functionality to your applications. + | + */ + + 'providers' => [ + + /* + * Laravel Framework Service Providers... + */ + Illuminate\Auth\AuthServiceProvider::class, + Illuminate\Broadcasting\BroadcastServiceProvider::class, + Illuminate\Bus\BusServiceProvider::class, + Illuminate\Cache\CacheServiceProvider::class, + Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, + Illuminate\Cookie\CookieServiceProvider::class, + Illuminate\Database\DatabaseServiceProvider::class, + Illuminate\Encryption\EncryptionServiceProvider::class, + Illuminate\Filesystem\FilesystemServiceProvider::class, + Illuminate\Foundation\Providers\FoundationServiceProvider::class, + Illuminate\Hashing\HashServiceProvider::class, + Illuminate\Mail\MailServiceProvider::class, + Illuminate\Notifications\NotificationServiceProvider::class, + Illuminate\Pagination\PaginationServiceProvider::class, + Illuminate\Pipeline\PipelineServiceProvider::class, + Illuminate\Queue\QueueServiceProvider::class, + Illuminate\Redis\RedisServiceProvider::class, + Illuminate\Auth\Passwords\PasswordResetServiceProvider::class, + Illuminate\Session\SessionServiceProvider::class, + Illuminate\Translation\TranslationServiceProvider::class, + Illuminate\Validation\ValidationServiceProvider::class, + Illuminate\View\ViewServiceProvider::class, + + + /* + * Package Service Providers... + */ + + /* + * Application Service Providers... + */ + App\Providers\AppServiceProvider::class, + App\Providers\AuthServiceProvider::class, + // App\Providers\BroadcastServiceProvider::class, + App\Providers\EventServiceProvider::class, + App\Providers\RouteServiceProvider::class, + + + ], + + /* + |-------------------------------------------------------------------------- + | Class Aliases + |-------------------------------------------------------------------------- + | + | This array of class aliases will be registered when this application + | is started. However, feel free to register as many as you wish as + | the aliases are "lazy" loaded so they don't hinder performance. + | + */ + + 'aliases' => [ + + 'App' => Illuminate\Support\Facades\App::class, + 'Arr' => Illuminate\Support\Arr::class, + 'Artisan' => Illuminate\Support\Facades\Artisan::class, + 'Auth' => Illuminate\Support\Facades\Auth::class, + 'Blade' => Illuminate\Support\Facades\Blade::class, + 'Broadcast' => Illuminate\Support\Facades\Broadcast::class, + 'Bus' => Illuminate\Support\Facades\Bus::class, + 'Cache' => Illuminate\Support\Facades\Cache::class, + 'Config' => Illuminate\Support\Facades\Config::class, + 'Cookie' => Illuminate\Support\Facades\Cookie::class, + 'Crypt' => Illuminate\Support\Facades\Crypt::class, + 'DB' => Illuminate\Support\Facades\DB::class, + 'Eloquent' => Illuminate\Database\Eloquent\Model::class, + 'Event' => Illuminate\Support\Facades\Event::class, + 'File' => Illuminate\Support\Facades\File::class, + 'Gate' => Illuminate\Support\Facades\Gate::class, + 'Hash' => Illuminate\Support\Facades\Hash::class, + 'Http' => Illuminate\Support\Facades\Http::class, + 'Lang' => Illuminate\Support\Facades\Lang::class, + 'Log' => Illuminate\Support\Facades\Log::class, + 'Mail' => Illuminate\Support\Facades\Mail::class, + 'Notification' => Illuminate\Support\Facades\Notification::class, + 'Password' => Illuminate\Support\Facades\Password::class, + 'Queue' => Illuminate\Support\Facades\Queue::class, + 'Redirect' => Illuminate\Support\Facades\Redirect::class, + 'Redis' => Illuminate\Support\Facades\Redis::class, + 'Request' => Illuminate\Support\Facades\Request::class, + 'Response' => Illuminate\Support\Facades\Response::class, + 'Route' => Illuminate\Support\Facades\Route::class, + 'Schema' => Illuminate\Support\Facades\Schema::class, + 'Session' => Illuminate\Support\Facades\Session::class, + 'Storage' => Illuminate\Support\Facades\Storage::class, + 'Str' => Illuminate\Support\Str::class, + 'URL' => Illuminate\Support\Facades\URL::class, + 'Validator' => Illuminate\Support\Facades\Validator::class, + 'View' => Illuminate\Support\Facades\View::class, + + ], + +]; diff --git a/Mid-term/config/auth.php b/Mid-term/config/auth.php new file mode 100644 index 000000000..ba1a4d8cb --- /dev/null +++ b/Mid-term/config/auth.php @@ -0,0 +1,117 @@ + [ + 'guard' => 'web', + 'passwords' => 'users', + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | here which uses session storage and the Eloquent user provider. + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | Supported: "session", "token" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + + 'api' => [ + 'driver' => 'token', + 'provider' => 'users', + 'hash' => false, + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | If you have multiple user tables or models you may configure multiple + | sources which represent each model / table. These sources may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => App\Models\User::class, + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | You may specify multiple password reset configurations if you have more + | than one user table or model in the application and you want to have + | separate password reset settings based on the specific user types. + | + | The expire time is the number of minutes that the reset token should be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => 'password_resets', + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | times out and the user is prompted to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => 10800, + +]; diff --git a/Mid-term/config/broadcasting.php b/Mid-term/config/broadcasting.php new file mode 100644 index 000000000..3bba1103e --- /dev/null +++ b/Mid-term/config/broadcasting.php @@ -0,0 +1,59 @@ + env('BROADCAST_DRIVER', 'null'), + + /* + |-------------------------------------------------------------------------- + | Broadcast Connections + |-------------------------------------------------------------------------- + | + | Here you may define all of the broadcast connections that will be used + | to broadcast events to other systems or over websockets. Samples of + | each available type of connection are provided inside this array. + | + */ + + 'connections' => [ + + 'pusher' => [ + 'driver' => 'pusher', + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER'), + 'useTLS' => true, + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + ], + + 'log' => [ + 'driver' => 'log', + ], + + 'null' => [ + 'driver' => 'null', + ], + + ], + +]; diff --git a/Mid-term/config/cache.php b/Mid-term/config/cache.php new file mode 100644 index 000000000..4f41fdf96 --- /dev/null +++ b/Mid-term/config/cache.php @@ -0,0 +1,104 @@ + env('CACHE_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + */ + + 'stores' => [ + + 'apc' => [ + 'driver' => 'apc', + ], + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'cache', + 'connection' => null, + ], + + 'file' => [ + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), + ], + + 'memcached' => [ + 'driver' => 'memcached', + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), + 'sasl' => [ + env('MEMCACHED_USERNAME'), + env('MEMCACHED_PASSWORD'), + ], + 'options' => [ + // Memcached::OPT_CONNECT_TIMEOUT => 2000, + ], + 'servers' => [ + [ + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('MEMCACHED_PORT', 11211), + 'weight' => 100, + ], + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'cache', + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing a RAM based store such as APC or Memcached, there might + | be other applications utilizing the same cache. So, we'll specify a + | value to get prefixed to all our keys so we can avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'), + +]; diff --git a/Mid-term/config/cors.php b/Mid-term/config/cors.php new file mode 100644 index 000000000..558369dca --- /dev/null +++ b/Mid-term/config/cors.php @@ -0,0 +1,34 @@ + ['api/*'], + + 'allowed_methods' => ['*'], + + 'allowed_origins' => ['*'], + + 'allowed_origins_patterns' => [], + + 'allowed_headers' => ['*'], + + 'exposed_headers' => [], + + 'max_age' => 0, + + 'supports_credentials' => false, + +]; diff --git a/Mid-term/config/database.php b/Mid-term/config/database.php new file mode 100644 index 000000000..aeabec6fb --- /dev/null +++ b/Mid-term/config/database.php @@ -0,0 +1,147 @@ + env('DB_CONNECTION', 'mysql'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Here are each of the database connections setup for your application. + | Of course, examples of configuring each database platform that is + | supported by Laravel is shown below to make development simple. + | + | + | All database work in Laravel is done through the PHP PDO facilities + | so make sure you have the driver for your particular database of + | choice installed on your machine before you begin development. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DATABASE_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => 'utf8mb4', + 'collation' => 'utf8mb4_unicode_ci', + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => false, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + 'schema' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run in the database. + | + */ + + 'migrations' => 'migrations', + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as APC or Memcached. Laravel makes it easy to dig right in. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'password' => env('REDIS_PASSWORD', null), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'password' => env('REDIS_PASSWORD', null), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/Mid-term/config/filesystems.php b/Mid-term/config/filesystems.php new file mode 100644 index 000000000..94c81126b --- /dev/null +++ b/Mid-term/config/filesystems.php @@ -0,0 +1,85 @@ + env('FILESYSTEM_DRIVER', 'local'), + + /* + |-------------------------------------------------------------------------- + | Default Cloud Filesystem Disk + |-------------------------------------------------------------------------- + | + | Many applications store files both locally and in the cloud. For this + | reason, you may specify a default "cloud" driver here. This driver + | will be bound as the Cloud disk implementation in the container. + | + */ + + 'cloud' => env('FILESYSTEM_CLOUD', 's3'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Here you may configure as many filesystem "disks" as you wish, and you + | may even configure multiple disks of the same driver. Defaults have + | been setup for each driver as an example of the required options. + | + | Supported Drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app'), + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + ], + + 's3' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure the symbolic links that will be created when the + | `storage:link` Artisan command is executed. The array keys should be + | the locations of the links and the values should be their targets. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], + +]; diff --git a/Mid-term/config/hashing.php b/Mid-term/config/hashing.php new file mode 100644 index 000000000..842577087 --- /dev/null +++ b/Mid-term/config/hashing.php @@ -0,0 +1,52 @@ + 'bcrypt', + + /* + |-------------------------------------------------------------------------- + | Bcrypt Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Bcrypt algorithm. This will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'bcrypt' => [ + 'rounds' => env('BCRYPT_ROUNDS', 10), + ], + + /* + |-------------------------------------------------------------------------- + | Argon Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Argon algorithm. These will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'argon' => [ + 'memory' => 1024, + 'threads' => 2, + 'time' => 2, + ], + +]; diff --git a/Mid-term/config/logging.php b/Mid-term/config/logging.php new file mode 100644 index 000000000..088c204e2 --- /dev/null +++ b/Mid-term/config/logging.php @@ -0,0 +1,104 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Out of + | the box, Laravel uses the Monolog PHP logging library. This gives + | you a variety of powerful log handlers / formatters to utilize. + | + | Available Drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", + | "custom", "stack" + | + */ + + 'channels' => [ + 'stack' => [ + 'driver' => 'stack', + 'channels' => ['single'], + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => 'debug', + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => 'debug', + 'days' => 14, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => 'Laravel Log', + 'emoji' => ':boom:', + 'level' => 'critical', + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => 'debug', + 'handler' => SyslogUdpHandler::class, + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + ], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'handler' => StreamHandler::class, + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'with' => [ + 'stream' => 'php://stderr', + ], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => 'debug', + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => 'debug', + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + ], + +]; diff --git a/Mid-term/config/mail.php b/Mid-term/config/mail.php new file mode 100644 index 000000000..54299aabf --- /dev/null +++ b/Mid-term/config/mail.php @@ -0,0 +1,110 @@ + env('MAIL_MAILER', 'smtp'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers to be used while + | sending an e-mail. You will specify which one you are using for your + | mailers below. You are free to add additional mailers as required. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", + | "postmark", "log", "array" + | + */ + + 'mailers' => [ + 'smtp' => [ + 'transport' => 'smtp', + 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), + 'port' => env('MAIL_PORT', 587), + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'auth_mode' => null, + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'mailgun' => [ + 'transport' => 'mailgun', + ], + + 'postmark' => [ + 'transport' => 'postmark', + ], + + 'sendmail' => [ + 'transport' => 'sendmail', + 'path' => '/usr/sbin/sendmail -bs', + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all e-mails sent by your application to be sent from + | the same address. Here, you may specify a name and address that is + | used globally for all e-mails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + + /* + |-------------------------------------------------------------------------- + | Markdown Mail Settings + |-------------------------------------------------------------------------- + | + | If you are using Markdown based email rendering, you may configure your + | theme and component paths here, allowing you to customize the design + | of the emails. Or, you may simply stick with the Laravel defaults! + | + */ + + 'markdown' => [ + 'theme' => 'default', + + 'paths' => [ + resource_path('views/vendor/mail'), + ], + ], + +]; diff --git a/Mid-term/config/queue.php b/Mid-term/config/queue.php new file mode 100644 index 000000000..6b568b6b5 --- /dev/null +++ b/Mid-term/config/queue.php @@ -0,0 +1,90 @@ + env('QUEUE_CONNECTION', 'sync'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection information for each server that + | is used by your application. A default configuration has been added + | for each back-end shipped with Laravel. You are free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'jobs', + 'queue' => 'default', + 'retry_after' => 90, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => 'localhost', + 'queue' => 'default', + 'retry_after' => 90, + 'block_for' => 0, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'your-queue-name'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => 90, + 'block_for' => null, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control which database and table are used to store the jobs that + | have failed. You may change them to any database / table you wish. + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'failed_jobs', + ], + + +]; diff --git a/Mid-term/config/services.php b/Mid-term/config/services.php new file mode 100644 index 000000000..2a1d616c7 --- /dev/null +++ b/Mid-term/config/services.php @@ -0,0 +1,33 @@ + [ + 'domain' => env('MAILGUN_DOMAIN'), + 'secret' => env('MAILGUN_SECRET'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), + ], + + 'postmark' => [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + +]; diff --git a/Mid-term/config/session.php b/Mid-term/config/session.php new file mode 100644 index 000000000..4e0f66cda --- /dev/null +++ b/Mid-term/config/session.php @@ -0,0 +1,201 @@ + env('SESSION_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to immediately expire on the browser closing, set that option. + | + */ + + 'lifetime' => env('SESSION_LIFETIME', 120), + + 'expire_on_close' => false, + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it is stored. All encryption will be run + | automatically by Laravel and you can use the Session like normal. + | + */ + + 'encrypt' => false, + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When using the native session driver, we need a location where session + | files may be stored. A default has been set for you but a different + | location may be specified. This is only needed for file sessions. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION', null), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table we + | should use to manage the sessions. Of course, a sensible default is + | provided for you; however, you are free to change this as needed. + | + */ + + 'table' => 'sessions', + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | While using one of the framework's cache driven session backends you may + | list a cache store that should be used for these sessions. This value + | must match with one of the application's configured cache "stores". + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE', null), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the cookie used to identify a session + | instance by ID. The name specified here will get used every time a + | new session cookie is created by the framework for every driver. + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_').'_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application but you are free to change this when necessary. + | + */ + + 'path' => '/', + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | Here you may change the domain of the cookie used to identify a session + | in your application. This will determine which domains the cookie is + | available to in your application. A sensible default has been set. + | + */ + + 'domain' => env('SESSION_DOMAIN', null), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you if it can not be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. You are free to modify this option if needed. + | + */ + + 'http_only' => true, + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" since this is a secure default value. + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => 'lax', + +]; diff --git a/Mid-term/config/view.php b/Mid-term/config/view.php new file mode 100644 index 000000000..22b8a18d3 --- /dev/null +++ b/Mid-term/config/view.php @@ -0,0 +1,36 @@ + [ + resource_path('views'), + ], + + /* + |-------------------------------------------------------------------------- + | Compiled View Path + |-------------------------------------------------------------------------- + | + | This option determines where all the compiled Blade templates will be + | stored for your application. Typically, this is within the storage + | directory. However, as usual, you are free to change this value. + | + */ + + 'compiled' => env( + 'VIEW_COMPILED_PATH', + realpath(storage_path('framework/views')) + ), + +]; diff --git a/Mid-term/database/.gitignore b/Mid-term/database/.gitignore new file mode 100644 index 000000000..97fc97677 --- /dev/null +++ b/Mid-term/database/.gitignore @@ -0,0 +1,2 @@ +*.sqlite +*.sqlite-journal diff --git a/Mid-term/database/factories/UserFactory.php b/Mid-term/database/factories/UserFactory.php new file mode 100644 index 000000000..bdea1a32d --- /dev/null +++ b/Mid-term/database/factories/UserFactory.php @@ -0,0 +1,33 @@ + $this->faker->name, + 'email' => $this->faker->unique()->safeEmail, + 'email_verified_at' => now(), + 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password + 'remember_token' => Str::random(10), + ]; + } +} diff --git a/Mid-term/database/migrations/2023_08_13_074545_create_jobs_table.php b/Mid-term/database/migrations/2023_08_13_074545_create_jobs_table.php new file mode 100644 index 000000000..c42f36829 --- /dev/null +++ b/Mid-term/database/migrations/2023_08_13_074545_create_jobs_table.php @@ -0,0 +1,24 @@ +id(); + $table->unsignedBigInteger('user_id'); + $table->unsignedBigInteger('role_id'); + $table->timestamps(); + $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); + $table->foreign('role_id')->references('id')->on('roles')->onDelete('cascade'); + }); + } + + public function down() + { + Schema::dropIfExists('user_role'); + } +} diff --git a/Mid-term/database/migrations/2023_08_14_042647_create_user_role_tablee.php b/Mid-term/database/migrations/2023_08_14_042647_create_user_role_tablee.php new file mode 100644 index 000000000..ff9e53598 --- /dev/null +++ b/Mid-term/database/migrations/2023_08_14_042647_create_user_role_tablee.php @@ -0,0 +1,34 @@ +id(); + $table->unsignedBigInteger('user_id'); + $table->unsignedBigInteger('role_id'); + $table->timestamps(); + $table->foreign('user_id')->references('id')->on('users'); + $table->foreign('role_id')->references('id')->on('roles'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + } +} diff --git a/Mid-term/database/seeders/DatabaseSeeder.php b/Mid-term/database/seeders/DatabaseSeeder.php new file mode 100644 index 000000000..12d803af2 --- /dev/null +++ b/Mid-term/database/seeders/DatabaseSeeder.php @@ -0,0 +1,18 @@ +create(); + } +} diff --git a/Mid-term/package-lock.json b/Mid-term/package-lock.json new file mode 100644 index 000000000..c7e505f8b --- /dev/null +++ b/Mid-term/package-lock.json @@ -0,0 +1,14330 @@ +{ + "name": "example-app", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "devDependencies": { + "@popperjs/core": "^2.10.2", + "axios": "^0.19", + "bootstrap": "^5.1.3", + "cross-env": "^7.0", + "laravel-mix": "^5.0.1", + "lodash": "^4.17.19", + "resolve-url-loader": "^3.1.2", + "sass": "^1.32.11", + "sass-loader": "^11.0.1", + "vue": "^2.6.12", + "vue-template-compiler": "^2.6.12" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz", + "integrity": "sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.22.10", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", + "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz", + "integrity": "sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helpers": "^7.22.10", + "@babel/parser": "^7.22.10", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.10", + "@babel/types": "^7.22.10", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@babel/core/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/@babel/generator": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz", + "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.10", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz", + "integrity": "sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.10" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz", + "integrity": "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz", + "integrity": "sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz", + "integrity": "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz", + "integrity": "sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", + "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz", + "integrity": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz", + "integrity": "sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-wrap-function": "^7.22.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz", + "integrity": "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.10.tgz", + "integrity": "sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.10" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.10.tgz", + "integrity": "sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.10", + "@babel/types": "^7.22.10" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz", + "integrity": "sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz", + "integrity": "sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", + "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", + "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", + "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", + "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", + "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.10.tgz", + "integrity": "sha512-eueE8lvKVzq5wIObKK/7dvoeKJ+xc6TvRn6aysIjS6pSCeLy7S/eVi7pEQknZqyqvzaNKdDtem8nUNTBgDVR2g==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", + "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", + "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.10.tgz", + "integrity": "sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", + "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz", + "integrity": "sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz", + "integrity": "sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", + "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.10.tgz", + "integrity": "sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", + "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", + "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz", + "integrity": "sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", + "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz", + "integrity": "sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", + "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", + "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz", + "integrity": "sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", + "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz", + "integrity": "sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", + "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", + "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", + "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", + "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", + "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", + "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz", + "integrity": "sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz", + "integrity": "sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz", + "integrity": "sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", + "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz", + "integrity": "sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.10.tgz", + "integrity": "sha512-MMkQqZAZ+MGj+jGTG3OTuhKeBpNcO+0oCEbrGNEaOmiEn+1MzRyQlYsruGiU8RTK3zV6XwrVJTmwiDOyYK6J9g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", + "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", + "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz", + "integrity": "sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", + "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz", + "integrity": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", + "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.10.tgz", + "integrity": "sha512-RchI7HePu1eu0CYNKHHHQdfenZcM4nz8rew5B1VWqeRKdcwW5aQ5HeG9eTUbWiAS1UrmHVLmoxTWHt3iLD/NhA==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.5", + "babel-plugin-polyfill-corejs3": "^0.8.3", + "babel-plugin-polyfill-regenerator": "^0.5.2", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", + "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", + "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", + "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", + "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", + "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz", + "integrity": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", + "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", + "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", + "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.10.tgz", + "integrity": "sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.22.5", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.22.5", + "@babel/plugin-transform-async-generator-functions": "^7.22.10", + "@babel/plugin-transform-async-to-generator": "^7.22.5", + "@babel/plugin-transform-block-scoped-functions": "^7.22.5", + "@babel/plugin-transform-block-scoping": "^7.22.10", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-class-static-block": "^7.22.5", + "@babel/plugin-transform-classes": "^7.22.6", + "@babel/plugin-transform-computed-properties": "^7.22.5", + "@babel/plugin-transform-destructuring": "^7.22.10", + "@babel/plugin-transform-dotall-regex": "^7.22.5", + "@babel/plugin-transform-duplicate-keys": "^7.22.5", + "@babel/plugin-transform-dynamic-import": "^7.22.5", + "@babel/plugin-transform-exponentiation-operator": "^7.22.5", + "@babel/plugin-transform-export-namespace-from": "^7.22.5", + "@babel/plugin-transform-for-of": "^7.22.5", + "@babel/plugin-transform-function-name": "^7.22.5", + "@babel/plugin-transform-json-strings": "^7.22.5", + "@babel/plugin-transform-literals": "^7.22.5", + "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", + "@babel/plugin-transform-member-expression-literals": "^7.22.5", + "@babel/plugin-transform-modules-amd": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-modules-systemjs": "^7.22.5", + "@babel/plugin-transform-modules-umd": "^7.22.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.22.5", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", + "@babel/plugin-transform-numeric-separator": "^7.22.5", + "@babel/plugin-transform-object-rest-spread": "^7.22.5", + "@babel/plugin-transform-object-super": "^7.22.5", + "@babel/plugin-transform-optional-catch-binding": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.10", + "@babel/plugin-transform-parameters": "^7.22.5", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.5", + "@babel/plugin-transform-property-literals": "^7.22.5", + "@babel/plugin-transform-regenerator": "^7.22.10", + "@babel/plugin-transform-reserved-words": "^7.22.5", + "@babel/plugin-transform-shorthand-properties": "^7.22.5", + "@babel/plugin-transform-spread": "^7.22.5", + "@babel/plugin-transform-sticky-regex": "^7.22.5", + "@babel/plugin-transform-template-literals": "^7.22.5", + "@babel/plugin-transform-typeof-symbol": "^7.22.5", + "@babel/plugin-transform-unicode-escapes": "^7.22.10", + "@babel/plugin-transform-unicode-property-regex": "^7.22.5", + "@babel/plugin-transform-unicode-regex": "^7.22.5", + "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "@babel/types": "^7.22.10", + "babel-plugin-polyfill-corejs2": "^0.4.5", + "babel-plugin-polyfill-corejs3": "^0.8.3", + "babel-plugin-polyfill-regenerator": "^0.5.2", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "node_modules/@babel/runtime": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz", + "integrity": "sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz", + "integrity": "sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.10", + "@babel/types": "^7.22.10", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@babel/traverse/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/@babel/types": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz", + "integrity": "sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "dev": true, + "dependencies": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@types/eslint": { + "version": "8.44.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.2.tgz", + "integrity": "sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==", + "dev": true, + "peer": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dev": true, + "peer": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "dev": true, + "peer": true + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.4.9", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.9.tgz", + "integrity": "sha512-8e2HYcg7ohnTUbHk8focoklEQYvemQmu9M/f43DZVx43kHn0tE3BY/6gSDxS7k0SprtS0NHvj+L80cGLnoOUcQ==", + "dev": true + }, + "node_modules/@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==", + "dev": true + }, + "node_modules/@vue/compiler-sfc": { + "version": "2.7.14", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.14.tgz", + "integrity": "sha512-aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.18.4", + "postcss": "^8.4.14", + "source-map": "^0.6.1" + } + }, + "node_modules/@vue/compiler-sfc/node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/@vue/compiler-sfc/node_modules/postcss": { + "version": "8.4.27", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz", + "integrity": "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/@vue/component-compiler-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz", + "integrity": "sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==", + "dev": true, + "dependencies": { + "consolidate": "^0.15.1", + "hash-sum": "^1.0.2", + "lru-cache": "^4.1.2", + "merge-source-map": "^1.1.0", + "postcss": "^7.0.36", + "postcss-selector-parser": "^6.0.2", + "source-map": "~0.6.1", + "vue-template-es2015-compiler": "^1.9.0" + }, + "optionalDependencies": { + "prettier": "^1.18.2 || ^2.0.0" + } + }, + "node_modules/@vue/component-compiler-utils/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/@vue/component-compiler-utils/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dev": true, + "dependencies": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-code-frame/node_modules/@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-code-frame/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-code-frame/node_modules/@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-module-context/node_modules/@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-module-context/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "peer": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "peer": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/wast-parser/node_modules/@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wast-parser/node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", + "dev": true + }, + "node_modules/@webassemblyjs/wast-parser/node_modules/@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "dev": true + }, + "node_modules/@webassemblyjs/wast-parser/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "dev": true + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, + "peer": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz", + "integrity": "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true, + "peerDependencies": { + "ajv": ">=5.0.0" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==", + "dev": true + }, + "node_modules/ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/arity-n": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", + "integrity": "sha512-fExL2kFDC1Q2DUOx3whE/9KoN66IzkY4b4zUHUBFM1ojEYjZZYDcUW3bek/ufGionX9giIKDC5redH2IlGqcQQ==", + "dev": true + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz", + "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz", + "integrity": "sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "dependencies": { + "object-assign": "^4.1.1", + "util": "0.10.3" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", + "dev": true + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==", + "dev": true, + "dependencies": { + "inherits": "2.0.1" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ast-types": { + "version": "0.9.6", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz", + "integrity": "sha512-qEdtR2UH78yyHX/AUNfXmJTlM48XoFZKBdwi1nzkI1mJL21cmbu0cvjxjpkXJ5NENMq42H+hNs8VLJcqXLerBQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ] + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/autoprefixer": { + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "dev": true, + "dependencies": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axios": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz", + "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==", + "deprecated": "Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410", + "dev": true, + "dependencies": { + "follow-redirects": "1.5.10" + } + }, + "node_modules/babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==", + "dev": true, + "dependencies": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + } + }, + "node_modules/babel-code-frame/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dev": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==", + "dev": true + }, + "node_modules/babel-code-frame/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-merge": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/babel-merge/-/babel-merge-2.0.1.tgz", + "integrity": "sha512-puTQQxuzS+0JlMyVdfsTVaCgzqjBXKPMv7oUANpYcHFY+7IptWZ4PZDYX+qBxrRMtrriuBA44LkKpS99EJzqVA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.0.0-beta.49", + "deepmerge": "^2.1.0", + "object.omit": "^3.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz", + "integrity": "sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.4.2", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz", + "integrity": "sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.2", + "core-js-compat": "^3.31.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz", + "integrity": "sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "dev": true + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", + "dev": true, + "dependencies": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/bootstrap": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.1.tgz", + "integrity": "sha512-jzwza3Yagduci2x0rr9MeFSORjcHpt0lRZukZPZQJT1Dth5qzV7XcgGqYzi39KGAVYR8QEDVoO0ubFKOxzMG+g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "peerDependencies": { + "@popperjs/core": "^2.11.8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", + "dev": true + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dev": true, + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "dependencies": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "node_modules/browserify-sign/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/browserify-sign/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserslist": { + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", + "dev": true + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", + "dev": true + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz", + "integrity": "sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==", + "dev": true, + "dependencies": { + "chownr": "^1.1.2", + "figgy-pudding": "^3.5.1", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.2", + "infer-owner": "^1.0.4", + "lru-cache": "^5.1.1", + "minipass": "^3.0.0", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "p-map": "^3.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^2.7.1", + "ssri": "^7.0.0", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-me-maybe": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", + "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", + "dev": true + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "dev": true, + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", + "dev": true, + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001519", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001519.tgz", + "integrity": "sha512-0QHgqR+Jv4bxHMp8kZ1Kn8CH55OikjKJ6JmKkZYP1F3D7w+lnFXF70nG5eNfsZS89jadi5Ywy5UCSKLAglIRkg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dev": true, + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/collect.js": { + "version": "4.36.1", + "resolved": "https://registry.npmjs.org/collect.js/-/collect.js-4.36.1.tgz", + "integrity": "sha512-jd97xWPKgHn6uvK31V6zcyPd40lUJd7gpYxbN2VOVxGWO4tyvS9Li4EpsFjXepGTo2tYcOTC4a8YsbQXMJ4XUw==", + "dev": true + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dev": true, + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "node_modules/compose-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz", + "integrity": "sha512-xzhzTJ5eC+gmIzvZq+C3kCJHsp9os6tJkrigDRZclyGtOKINbZtE8n1Tzmeh32jW+BUDPbvZpibwvJHBLGMVwg==", + "dev": true, + "dependencies": { + "arity-n": "^1.0.4" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/concat": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/concat/-/concat-1.0.3.tgz", + "integrity": "sha512-f/ZaH1aLe64qHgTILdldbvyfGiGF4uzeo9IuXUloIOLQzFmIPloy9QbZadNsuVv0j5qbKQvQb/H/UYf2UsKTpw==", + "dev": true, + "dependencies": { + "commander": "^2.9.0" + }, + "bin": { + "concat": "bin/concat" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, + "node_modules/consolidate": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz", + "integrity": "sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==", + "deprecated": "Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog", + "dev": true, + "dependencies": { + "bluebird": "^3.1.1" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "dev": true + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-disposition/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dev": true, + "dependencies": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/core-js-compat": { + "version": "3.32.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.0.tgz", + "integrity": "sha512-7a9a3D1k4UCVKnLhrgALyFcP7YCsLOQIxPd0dKjf/6GuPcgyiGP70ewWdCGrSK7evyhymi0qO4EqCmSJofDeYw==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.9" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "bin": { + "cross-env": "src/bin/cross-env.js", + "cross-env-shell": "src/bin/cross-env-shell.js" + }, + "engines": { + "node": ">=10.14", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/css": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", + "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + } + }, + "node_modules/css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "engines": { + "node": ">4" + } + }, + "node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "dev": true + }, + "node_modules/css-selector-tokenizer": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz", + "integrity": "sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "fastparse": "^1.1.2" + } + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz", + "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", + "dev": true, + "dependencies": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", + "dev": true + }, + "node_modules/cyclist": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.2.tgz", + "integrity": "sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==", + "dev": true + }, + "node_modules/d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "dev": true, + "dependencies": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "node_modules/de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", + "dev": true + }, + "node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deepmerge": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-2.2.1.tgz", + "integrity": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dev": true, + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/des.js": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/dir-glob": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz", + "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", + "dev": true, + "dependencies": { + "arrify": "^1.0.1", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "node_modules/dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", + "dev": true, + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/dom-serializer/node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true, + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-6.2.0.tgz", + "integrity": "sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/dotenv-expand": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-4.2.0.tgz", + "integrity": "sha512-pHWVt6L/YkqbBCMb1hG6e7oO0WdMhlapDIibl+BZ9PncVE3i+G77uvNr8GUxW2ItSituOK8QOYC9oOJjwWD94A==", + "dev": true + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.490", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz", + "integrity": "sha512-6s7NVJz+sATdYnIwhdshx/N/9O6rvMxmhVoDSDFdj6iA45gHR8EQje70+RYsF4GeB+k0IeNSBnP7yG9ZXJFr7A==", + "dev": true + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dev": true, + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dev": true, + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz", + "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.1", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.1", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "safe-array-concat": "^1.0.0", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true + }, + "node_modules/es-module-lexer": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", + "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", + "dev": true, + "peer": true + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es5-ext": { + "version": "0.10.62", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", + "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dev": true, + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "dev": true, + "dependencies": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "node_modules/es6-templates": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/es6-templates/-/es6-templates-0.2.3.tgz", + "integrity": "sha512-sziUVwcvQ+lOsrTyUY0Q11ilAPj+dy7AQ1E1MgSaHTaaAFTffaa08QSlGNU61iyVaroyb6nYdBV6oD7nzn6i8w==", + "dev": true, + "dependencies": { + "recast": "~0.11.12", + "through": "~2.3.6" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "peer": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", + "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", + "dev": true, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/execa/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dev": true, + "dependencies": { + "type": "^2.7.2" + } + }, + "node_modules/ext/node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "dev": true + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "dev": true, + "dependencies": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fastparse": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz", + "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==", + "dev": true + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "dev": true + }, + "node_modules/file-type": { + "version": "10.11.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", + "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/follow-redirects": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", + "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", + "dev": true, + "dependencies": { + "debug": "=3.1.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==", + "dev": true + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", + "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", + "dev": true, + "dependencies": { + "array-union": "^1.0.1", + "dir-glob": "2.0.0", + "fast-glob": "^2.0.2", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/globby/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==", + "dev": true + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash-base/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hash-base/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", + "dev": true + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "dev": true + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "dev": true, + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==", + "dev": true + }, + "node_modules/hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==", + "dev": true + }, + "node_modules/html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "node_modules/html-loader": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/html-loader/-/html-loader-0.5.5.tgz", + "integrity": "sha512-7hIW7YinOYUpo//kSYcPB6dCKoceKLmOwjEMmhIobHuWGDVl0Nwe4l68mdG/Ru0wcUxQjVMEoZpkalZ/SE7zog==", + "dev": true, + "dependencies": { + "es6-templates": "^0.2.3", + "fastparse": "^1.1.1", + "html-minifier": "^3.5.8", + "loader-utils": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "node_modules/html-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/html-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/html-minifier": { + "version": "3.5.21", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", + "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", + "dev": true, + "dependencies": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "bin": { + "html-minifier": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/html-minifier/node_modules/commander": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", + "dev": true + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "dependencies": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "dev": true + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-replace-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", + "integrity": "sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==", + "dev": true + }, + "node_modules/icss-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz", + "integrity": "sha512-bsVoyn/1V4R1kYYjLcWLedozAM4FClZUdjE9nIr8uWY7xs78y9DATgwz2wGU7M+7z55KenmmTkN2DVJ7bqzjAA==", + "dev": true, + "dependencies": { + "postcss": "^6.0.1" + } + }, + "node_modules/icss-utils/node_modules/postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==", + "dev": true + }, + "node_modules/ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "dev": true + }, + "node_modules/imagemin": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-6.1.0.tgz", + "integrity": "sha512-8ryJBL1CN5uSHpiBMX0rJw79C9F9aJqMnjGnrd/1CafegpNuA81RBAAru/jQQEOWlOJJlpRnlcVFF6wq+Ist0A==", + "dev": true, + "dependencies": { + "file-type": "^10.7.0", + "globby": "^8.0.1", + "make-dir": "^1.0.0", + "p-pipe": "^1.1.0", + "pify": "^4.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/imagemin/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/imagemin/node_modules/make-dir/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/img-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/img-loader/-/img-loader-3.0.2.tgz", + "integrity": "sha512-rSriLKgvi85Km7ppSF+AEAM3nU4fxpvCkaXtC/IoCEU7jfks55bEANFs0bB9YXYkxY9JurZQIZFtXh5Gue3upw==", + "dev": true, + "dependencies": { + "loader-utils": "^1.1.0" + }, + "peerDependencies": { + "imagemin": "^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/img-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/img-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/immutable": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.2.tgz", + "integrity": "sha512-oGXzbEDem9OOpDWZu88jGiYCvIsLHMvGw+8OXlpsvTFvIQplQbjg1B1cvKg8f7Hoch6+NGjpPsH1Fr+Mc2D1aA==", + "dev": true + }, + "node_modules/import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==", + "dev": true, + "dependencies": { + "import-from": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "dev": true, + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==", + "dev": true, + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/import-local/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/import-local/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/import-local/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/import-local/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==", + "dev": true + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "dev": true + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==", + "dev": true, + "dependencies": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-descriptor/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-worker": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.5.0.tgz", + "integrity": "sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==", + "dev": true, + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "peer": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/laravel-mix": { + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/laravel-mix/-/laravel-mix-5.0.9.tgz", + "integrity": "sha512-1WCJiHimTRW3KlxcabRTco0q+bo4uKPaFTkc6cJ/bLEq4JT1aPkojoauUK7+PyiIlDJncw0Nt2MtDrv5C6j5IQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.2.0", + "@babel/plugin-proposal-object-rest-spread": "^7.2.0", + "@babel/plugin-syntax-dynamic-import": "^7.2.0", + "@babel/plugin-transform-runtime": "^7.2.0", + "@babel/preset-env": "^7.2.0", + "@babel/runtime": "^7.2.0", + "autoprefixer": "^9.4.2", + "babel-loader": "^8.0.4", + "babel-merge": "^2.0.1", + "chokidar": "^2.0.3", + "clean-css": "^4.1.3", + "collect.js": "^4.12.8", + "concat": "^1.0.3", + "css-loader": "^1.0.1", + "dotenv": "^6.2.0", + "dotenv-expand": "^4.2.0", + "extract-text-webpack-plugin": "v4.0.0-beta.0", + "file-loader": "^2.0.0", + "friendly-errors-webpack-plugin": "^1.6.1", + "fs-extra": "^7.0.1", + "glob": "^7.1.2", + "html-loader": "^0.5.5", + "imagemin": "^6.0.0", + "img-loader": "^3.0.0", + "lodash": "^4.17.15", + "md5": "^2.2.1", + "optimize-css-assets-webpack-plugin": "^5.0.1", + "postcss-loader": "^3.0.0", + "style-loader": "^0.23.1", + "terser": "^3.11.0", + "terser-webpack-plugin": "^2.2.3", + "vue-loader": "^15.4.2", + "webpack": "^4.36.1", + "webpack-cli": "^3.1.2", + "webpack-dev-server": "^3.1.14", + "webpack-merge": "^4.1.0", + "webpack-notifier": "^1.5.1", + "yargs": "^15.4.1" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "dev": true + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", + "dev": true + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "dev": true + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", + "dev": true + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/laravel-mix/node_modules/@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/laravel-mix/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/laravel-mix/node_modules/ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/laravel-mix/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/laravel-mix/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "optional": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/laravel-mix/node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/laravel-mix/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "optional": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/laravel-mix/node_modules/cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dev": true, + "dependencies": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "node_modules/laravel-mix/node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/laravel-mix/node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/cliui/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/laravel-mix/node_modules/css-loader": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-1.0.1.tgz", + "integrity": "sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==", + "dev": true, + "dependencies": { + "babel-code-frame": "^6.26.0", + "css-selector-tokenizer": "^0.7.0", + "icss-utils": "^2.1.0", + "loader-utils": "^1.0.2", + "lodash": "^4.17.11", + "postcss": "^6.0.23", + "postcss-modules-extract-imports": "^1.2.0", + "postcss-modules-local-by-default": "^1.2.0", + "postcss-modules-scope": "^1.1.0", + "postcss-modules-values": "^1.3.0", + "postcss-value-parser": "^3.3.0", + "source-list-map": "^2.0.0" + }, + "engines": { + "node": ">= 6.9.0 <7.0.0 || >= 8.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/laravel-mix/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "node_modules/laravel-mix/node_modules/enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/laravel-mix/node_modules/enhanced-resolve/node_modules/memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/laravel-mix/node_modules/eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/laravel-mix/node_modules/extract-text-webpack-plugin": { + "version": "4.0.0-beta.0", + "resolved": "https://registry.npmjs.org/extract-text-webpack-plugin/-/extract-text-webpack-plugin-4.0.0-beta.0.tgz", + "integrity": "sha512-Hypkn9jUTnFr0DpekNam53X47tXn3ucY08BQumv7kdGgeVUBLq3DJHJTi6HNxv4jl9W+Skxjz9+RnK0sJyqqjA==", + "dev": true, + "dependencies": { + "async": "^2.4.1", + "loader-utils": "^1.1.0", + "schema-utils": "^0.4.5", + "webpack-sources": "^1.1.0" + }, + "engines": { + "node": ">= 6.9.0 || >= 8.9.0" + }, + "peerDependencies": { + "webpack": "^3.0.0 || ^4.0.0" + } + }, + "node_modules/laravel-mix/node_modules/file-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-2.0.0.tgz", + "integrity": "sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ==", + "dev": true, + "dependencies": { + "loader-utils": "^1.0.2", + "schema-utils": "^1.0.0" + }, + "engines": { + "node": ">= 6.9.0 < 7.0.0 || >= 8.9.0" + }, + "peerDependencies": { + "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0" + } + }, + "node_modules/laravel-mix/node_modules/file-loader/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/laravel-mix/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "optional": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/laravel-mix/node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/friendly-errors-webpack-plugin": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.7.0.tgz", + "integrity": "sha512-K27M3VK30wVoOarP651zDmb93R9zF28usW4ocaK3mfQeIEI5BPht/EzZs5E8QLLwbLRJQMwscAjDxYPb1FuNiw==", + "dev": true, + "dependencies": { + "chalk": "^1.1.3", + "error-stack-parser": "^2.0.0", + "string-width": "^2.0.0" + }, + "peerDependencies": { + "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0" + } + }, + "node_modules/laravel-mix/node_modules/friendly-errors-webpack-plugin/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dev": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/laravel-mix/node_modules/friendly-errors-webpack-plugin/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/laravel-mix/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/laravel-mix/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "optional": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/laravel-mix/node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "optional": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/laravel-mix/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/laravel-mix/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/laravel-mix/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/laravel-mix/node_modules/loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "dev": true, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/laravel-mix/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/laravel-mix/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/optimize-css-assets-webpack-plugin": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.8.tgz", + "integrity": "sha512-mgFS1JdOtEGzD8l+EuISqL57cKO+We9GcoiQEmdCWRqqck+FGNmYJtx9qfAPzEz+lRrlThWMuGDaRkI/yWNx/Q==", + "dev": true, + "dependencies": { + "cssnano": "^4.1.10", + "last-call-webpack-plugin": "^3.0.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/laravel-mix/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/laravel-mix/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/laravel-mix/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/laravel-mix/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/laravel-mix/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "optional": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/laravel-mix/node_modules/schema-utils": { + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", + "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/laravel-mix/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/laravel-mix/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/laravel-mix/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/laravel-mix/node_modules/ssri": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "dev": true, + "dependencies": { + "figgy-pudding": "^3.5.1" + } + }, + "node_modules/laravel-mix/node_modules/string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/laravel-mix/node_modules/string-width/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/laravel-mix/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "optional": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/laravel-mix/node_modules/vue-loader": { + "version": "15.10.1", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.10.1.tgz", + "integrity": "sha512-SaPHK1A01VrNthlix6h1hq4uJu7S/z0kdLUb6klubo738NeQoLbS6V9/d8Pv19tU0XdQKju3D1HSKuI8wJ5wMA==", + "dev": true, + "dependencies": { + "@vue/component-compiler-utils": "^3.1.0", + "hash-sum": "^1.0.2", + "loader-utils": "^1.1.0", + "vue-hot-reload-api": "^2.3.0", + "vue-style-loader": "^4.1.0" + }, + "peerDependencies": { + "css-loader": "*", + "webpack": "^3.0.0 || ^4.1.0 || ^5.0.0-0" + }, + "peerDependenciesMeta": { + "cache-loader": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/laravel-mix/node_modules/watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0" + }, + "optionalDependencies": { + "chokidar": "^3.4.1", + "watchpack-chokidar2": "^2.0.1" + } + }, + "node_modules/laravel-mix/node_modules/watchpack/node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "optional": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/laravel-mix/node_modules/webpack": { + "version": "4.46.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz", + "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + }, + "webpack-command": { + "optional": true + } + } + }, + "node_modules/laravel-mix/node_modules/webpack-cli": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz", + "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", + "dev": true, + "dependencies": { + "chalk": "^2.4.2", + "cross-spawn": "^6.0.5", + "enhanced-resolve": "^4.1.1", + "findup-sync": "^3.0.0", + "global-modules": "^2.0.0", + "import-local": "^2.0.0", + "interpret": "^1.4.0", + "loader-utils": "^1.4.0", + "supports-color": "^6.1.0", + "v8-compile-cache": "^2.1.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "peerDependencies": { + "webpack": "4.x.x" + } + }, + "node_modules/laravel-mix/node_modules/webpack-cli/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/webpack-cli/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/webpack-cli/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/webpack-cli/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/webpack-cli/node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/laravel-mix/node_modules/webpack/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/laravel-mix/node_modules/webpack/node_modules/terser": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "dev": true, + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/laravel-mix/node_modules/webpack/node_modules/terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dev": true, + "dependencies": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/laravel-mix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/laravel-mix/node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/laravel-mix/node_modules/wrap-ansi/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/laravel-mix/node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/last-call-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "dev": true, + "dependencies": { + "lodash": "^4.17.5", + "webpack-sources": "^1.1.0" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/loglevel": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.1.tgz", + "integrity": "sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "dev": true, + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "dev": true + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", + "dev": true, + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", + "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", + "dev": true, + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dev": true, + "dependencies": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", + "dev": true, + "dependencies": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", + "dev": true + }, + "node_modules/nan": { + "version": "2.17.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", + "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", + "dev": true, + "optional": true + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dev": true, + "dependencies": { + "lower-case": "^1.1.1" + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node_modules/node-libs-browser/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + }, + "node_modules/node-notifier": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-9.0.1.tgz", + "integrity": "sha512-fPNFIp2hF/Dq7qLDzSg4vZ0J4e9v60gJR+Qx7RbjbWqzPDdEqeVpEx5CFeDAELIl+A/woaaNn1fQ5nEVerMxJg==", + "dev": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + } + }, + "node_modules/node-notifier/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/node-notifier/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-notifier/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-notifier/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dev": true, + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==", + "dev": true + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz", + "integrity": "sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==", + "dev": true, + "dependencies": { + "array.prototype.reduce": "^1.0.5", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.21.2", + "safe-array-concat": "^1.0.0" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.omit": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-3.0.0.tgz", + "integrity": "sha512-EO+BCv6LJfu+gBIF3ggLicFebFLN5zqzz/WWJlMFfkMyGth+oBkhxzDl0wx2W4GkLzuQs/FsSkXZb2IMWQqmBQ==", + "dev": true, + "dependencies": { + "is-extendable": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.omit/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "dev": true + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-map": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", + "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-pipe": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-1.2.0.tgz", + "integrity": "sha512-IA8SqjIGA8l9qOksXJvsvkeQ+VGb0TAzNCzvKvz9wt5wWLqfWbV6fXy43gpR2L4Te8sOq3S+Ql9biAaMKPdbtw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "dependencies": { + "retry": "^0.12.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "node_modules/parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dev": true, + "dependencies": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "node_modules/param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-type/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dev": true, + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "dev": true, + "dependencies": { + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/portfinder/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "node_modules/postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-colormin/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-convert-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "dev": true, + "dependencies": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "dev": true, + "dependencies": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/postcss-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-loader/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "dev": true, + "dependencies": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "dev": true, + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "dev": true, + "dependencies": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-params/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "dev": true, + "dependencies": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz", + "integrity": "sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==", + "dev": true, + "dependencies": { + "postcss": "^6.0.1" + } + }, + "node_modules/postcss-modules-extract-imports/node_modules/postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz", + "integrity": "sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==", + "dev": true, + "dependencies": { + "css-selector-tokenizer": "^0.7.0", + "postcss": "^6.0.1" + } + }, + "node_modules/postcss-modules-local-by-default/node_modules/postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz", + "integrity": "sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==", + "dev": true, + "dependencies": { + "css-selector-tokenizer": "^0.7.0", + "postcss": "^6.0.1" + } + }, + "node_modules/postcss-modules-scope/node_modules/postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz", + "integrity": "sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==", + "dev": true, + "dependencies": { + "icss-replace-symbols": "^1.1.0", + "postcss": "^6.0.1" + } + }, + "node_modules/postcss-modules-values/node_modules/postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "dev": true, + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "dev": true, + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-positions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "dev": true, + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "dev": true, + "dependencies": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "dev": true, + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "dev": true, + "dependencies": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-url/node_modules/is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "dev": true, + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-ordered-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "dev": true, + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", + "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-svgo/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "dev": true, + "dependencies": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "optional": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/private": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", + "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "dev": true, + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/recast": { + "version": "0.11.23", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz", + "integrity": "sha512-+nixG+3NugceyR8O1bLU45qs84JgI3+8EauyRZafLgC9XbdAOIVgwV1Pe2da0YzGo62KzWoZwUpVEQf6qNAXWA==", + "dev": true, + "dependencies": { + "ast-types": "0.9.6", + "esprima": "~3.1.0", + "private": "~0.1.5", + "source-map": "~0.5.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/recast/node_modules/esprima": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", + "integrity": "sha512-AWwVMNxwhN8+NIPQzAQZCm7RkLC4RbM3B1OobMuyp3i+w73X57KCKaVIxaRZb+DYCojq7rspo+fmuQfAboyhFg==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/recast/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", + "dev": true + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dev": true, + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "dev": true + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", + "dev": true, + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true + }, + "node_modules/resolve-url-loader": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.5.tgz", + "integrity": "sha512-mgFMCmrV/tA4738EsFmPFE5/MaqSgUMe8LK971kVEKA/RrNVb7+VqFsg/qmKyythf34eyq476qIobP/gfFBGSQ==", + "dev": true, + "dependencies": { + "adjust-sourcemap-loader": "3.0.0", + "camelcase": "5.3.1", + "compose-function": "3.0.3", + "convert-source-map": "1.7.0", + "es6-iterator": "2.0.3", + "loader-utils": "^1.2.3", + "postcss": "7.0.36", + "rework": "1.0.1", + "rework-visit": "1.0.0", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/resolve-url-loader/node_modules/convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/resolve-url-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/resolve-url-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "dependencies": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/resolve-url-loader/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/rework": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", + "integrity": "sha512-eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw==", + "dev": true, + "dependencies": { + "convert-source-map": "^0.3.3", + "css": "^2.0.0" + } + }, + "node_modules/rework-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", + "integrity": "sha512-W6V2fix7nCLUYX1v6eGPrBOZlc03/faqzP4sUxMAJMBMOPYhfV/RyLegTufn5gJKaOITyi+gvf0LXDZ9NzkHnQ==", + "dev": true + }, + "node_modules/rework/node_modules/convert-source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", + "integrity": "sha512-+4nRk0k3oEpwUB7/CalD7xE2z4VmtEnnq0GO2IPTkrooTrAhEsWvuLF5iWP1dXrwluki/azwXV1ve7gtYuPldg==", + "dev": true + }, + "node_modules/rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==", + "dev": true + }, + "node_modules/rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==", + "dev": true + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", + "dev": true, + "dependencies": { + "aproba": "^1.1.1" + } + }, + "node_modules/safe-array-concat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz", + "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/sass": { + "version": "1.65.1", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.65.1.tgz", + "integrity": "sha512-9DINwtHmA41SEd36eVPQ9BJKpn7eKDQmUHmpI0y5Zv2Rcorrh0zS+cFrt050hdNbmmCNKTW3hV5mWfuegNRsEA==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-loader": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-11.1.1.tgz", + "integrity": "sha512-fOCp/zLmj1V1WHDZbUbPgrZhA7HKXHEqkslzB+05U5K9SbSbcmH91C7QLW31AsXikxUMaxXRhhcqWZAxUMLDyA==", + "dev": true, + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0", + "sass": "^1.3.0", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/sass/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/sass/node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/sass/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sass/node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/sass/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sass/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/sass/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/sass/node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sass/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/sass/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/sass/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "node_modules/selfsigned": { + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", + "dev": true, + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "dev": true + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true + }, + "node_modules/slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs-client": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", + "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "eventsource": "^2.0.2", + "faye-websocket": "^0.11.4", + "inherits": "^2.0.4", + "url-parse": "^1.5.10" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://tidelift.com/funding/github/npm/sockjs-client" + } + }, + "node_modules/sockjs-client/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/sockjs-client/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dev": true, + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "dev": true + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/spdy-transport/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/spdy-transport/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/spdy/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/spdy/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/ssri": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-7.1.1.tgz", + "integrity": "sha512-w+daCzXN89PseTL99MkA+fxJEcU3wfaE/ah0i0lnOlpG1CYLJ2ZjzEry68YBKfLs4JfoTShrTEsJkAZuNZ/stw==", + "dev": true, + "dependencies": { + "figgy-pudding": "^3.5.1", + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", + "dev": true + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "dev": true + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dev": true, + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/style-loader": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz", + "integrity": "sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==", + "dev": true, + "dependencies": { + "loader-utils": "^1.1.0", + "schema-utils": "^1.0.0" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/style-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/style-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/style-loader/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/stylehacks/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "3.17.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-3.17.0.tgz", + "integrity": "sha512-/FQzzPJmCpjAH9Xvk2paiWrFq+5M6aVOf+2KRbwhByISDX/EujxsK+BAvrhb6H+2rtrLCHK9N01wO014vrIwVQ==", + "dev": true, + "dependencies": { + "commander": "^2.19.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.10" + }, + "bin": { + "terser": "bin/uglifyjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz", + "integrity": "sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w==", + "dev": true, + "dependencies": { + "cacache": "^13.0.1", + "find-cache-dir": "^3.3.1", + "jest-worker": "^25.4.0", + "p-limit": "^2.3.0", + "schema-utils": "^2.6.6", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.6.12", + "webpack-sources": "^1.4.3" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "dev": true, + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dev": true, + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==", + "dev": true + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==", + "dev": true + }, + "node_modules/type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", + "dev": true + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "node_modules/uglify-js": { + "version": "3.4.10", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", + "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", + "dev": true, + "dependencies": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/uglify-js/node_modules/commander": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", + "dev": true + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==", + "dev": true + }, + "node_modules/uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==", + "dev": true + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==", + "dev": true + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dev": true, + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true, + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/update-browserslist-db/node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", + "dev": true + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true + }, + "node_modules/url": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.1.tgz", + "integrity": "sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==", + "dev": true, + "dependencies": { + "punycode": "^1.4.1", + "qs": "^6.11.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true + }, + "node_modules/vue": { + "version": "2.7.14", + "resolved": "https://registry.npmjs.org/vue/-/vue-2.7.14.tgz", + "integrity": "sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ==", + "dev": true, + "dependencies": { + "@vue/compiler-sfc": "2.7.14", + "csstype": "^3.1.0" + } + }, + "node_modules/vue-hot-reload-api": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", + "integrity": "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==", + "dev": true + }, + "node_modules/vue-style-loader": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz", + "integrity": "sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==", + "dev": true, + "dependencies": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + } + }, + "node_modules/vue-style-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/vue-style-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/vue-template-compiler": { + "version": "2.7.14", + "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz", + "integrity": "sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==", + "dev": true, + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "node_modules/vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz", + "integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==", + "dev": true + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "peer": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "dev": true, + "optional": true, + "dependencies": { + "chokidar": "^2.1.8" + } + }, + "node_modules/watchpack/node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true, + "peer": true + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webpack": { + "version": "5.88.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", + "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", + "dev": true, + "peer": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, + "dependencies": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", + "dev": true, + "dependencies": { + "ansi-html-community": "0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 6.11.5" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "node_modules/webpack-dev-server/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/webpack-dev-server/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/webpack-dev-server/node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "dependencies": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-log/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/webpack-merge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz", + "integrity": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==", + "dev": true, + "dependencies": { + "lodash": "^4.17.15" + } + }, + "node_modules/webpack-notifier": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/webpack-notifier/-/webpack-notifier-1.15.0.tgz", + "integrity": "sha512-N2V8UMgRB5komdXQRavBsRpw0hPhJq2/SWNOGuhrXpIgRhcMexzkGQysUyGStHLV5hkUlgpRiF7IUXoBqyMmzQ==", + "dev": true, + "dependencies": { + "node-notifier": "^9.0.0", + "strip-ansi": "^6.0.0" + }, + "peerDependencies": { + "@types/webpack": ">4.41.31" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + } + } + }, + "node_modules/webpack-notifier/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-notifier/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack/node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true, + "peer": true + }, + "node_modules/webpack/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "peer": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "peer": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack/node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dev": true, + "peer": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/webpack/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/webpack/node_modules/terser": { + "version": "5.19.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.2.tgz", + "integrity": "sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/webpack/node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/webpack/node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "peer": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "dev": true + }, + "node_modules/which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dev": true, + "dependencies": { + "errno": "~0.1.7" + } + }, + "node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + } + } +} diff --git a/Mid-term/package.json b/Mid-term/package.json new file mode 100644 index 000000000..3197e5bdb --- /dev/null +++ b/Mid-term/package.json @@ -0,0 +1,25 @@ +{ + "private": true, + "scripts": { + "dev": "npm run development", + "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", + "watch": "npm run development -- --watch", + "watch-poll": "npm run watch -- --watch-poll", + "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --disable-host-check --config=node_modules/laravel-mix/setup/webpack.config.js", + "prod": "npm run production", + "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" + }, + "devDependencies": { + "@popperjs/core": "^2.10.2", + "axios": "^0.19", + "bootstrap": "^5.1.3", + "cross-env": "^7.0", + "laravel-mix": "^5.0.1", + "lodash": "^4.17.19", + "resolve-url-loader": "^3.1.2", + "sass": "^1.32.11", + "sass-loader": "^11.0.1", + "vue": "^2.6.12", + "vue-template-compiler": "^2.6.12" + } +} diff --git a/Mid-term/phpunit.xml b/Mid-term/phpunit.xml new file mode 100644 index 000000000..4ae4d979d --- /dev/null +++ b/Mid-term/phpunit.xml @@ -0,0 +1,31 @@ + + + + + ./tests/Unit + + + ./tests/Feature + + + + + ./app + + + + + + + + + + + + + + diff --git a/Mid-term/public/.htaccess b/Mid-term/public/.htaccess new file mode 100644 index 000000000..3aec5e27e --- /dev/null +++ b/Mid-term/public/.htaccess @@ -0,0 +1,21 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + diff --git a/Mid-term/public/assets/css/style.bundle.css b/Mid-term/public/assets/css/style.bundle.css new file mode 100644 index 000000000..651bd3c56 --- /dev/null +++ b/Mid-term/public/assets/css/style.bundle.css @@ -0,0 +1,54482 @@ +@charset "UTF-8"; + +:root { + --bs-blue: #009ef6; + --bs-indigo: #6610f2; + --bs-purple: #6f42c1; + --bs-pink: #d63384; + --bs-red: #dc3545; + --bs-orange: #fd7e14; + --bs-yellow: #ffc107; + --bs-green: #198754; + --bs-teal: #20c997; + --bs-cyan: #0dcaf0; + --bs-gray: #7E8299; + --bs-gray-dark: #3F4254; + --bs-gray-100: #F5F8FA; + --bs-gray-200: #EFF2F5; + --bs-gray-300: #E4E6EF; + --bs-gray-400: #B5B5C3; + --bs-gray-500: #A1A5B7; + --bs-gray-600: #7E8299; + --bs-gray-700: #5E6278; + --bs-gray-800: #3F4254; + --bs-gray-900: #181C32; + --bs-white: #ffffff; + --bs-light: #F5F8FA; + --bs-primary: #009EF7; + --bs-secondary: #E4E6EF; + --bs-success: #50CD89; + --bs-info: #7239EA; + --bs-warning: #FFC700; + --bs-danger: #F1416C; + --bs-dark: #181C32; + --bs-white-rgb: 255, 255, 255; + --bs-light-rgb: 245, 248, 250; + --bs-primary-rgb: 0, 158, 247; + --bs-secondary-rgb: 228, 230, 239; + --bs-success-rgb: 80, 205, 137; + --bs-info-rgb: 114, 57, 234; + --bs-warning-rgb: 255, 199, 0; + --bs-danger-rgb: 241, 65, 108; + --bs-dark-rgb: 24, 28, 50; + --bs-white-rgb: 255, 255, 255; + --bs-black-rgb: 0, 0, 0; + --bs-body-color-rgb: 24, 28, 50; + --bs-body-bg-rgb: 255, 255, 255; + --bs-font-sans-serif: Poppins, Helvetica, "sans-serif"; + --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); + --bs-body-font-family: var(--bs-font-sans-serif); + --bs-body-font-size: 1rem; + --bs-body-font-weight: 400; + --bs-body-line-height: 1.5; + --bs-body-color: #181C32; + --bs-body-bg: #ffffff +} + +*, +::after, +::before { + box-sizing: border-box +} + +body { + margin: 0; + font-family: var(--bs-body-font-family); + font-size: var(--bs-body-font-size); + font-weight: var(--bs-body-font-weight); + line-height: var(--bs-body-line-height); + color: var(--bs-body-color); + text-align: var(--bs-body-text-align); + background-color: var(--bs-body-bg); + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: transparent +} + +hr { + margin: 1rem 0; + color: inherit; + background-color: currentColor; + border: 0; + opacity: .25 +} + +hr:not([size]) { + height: 1px +} + +.h1, +.h2, +.h3, +.h4, +.h5, +.h6, +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 0; + margin-bottom: .5rem; + font-weight: 600; + line-height: 1.2; + color: #181c32 +} + +.h1, +h1 { + font-size: calc(1.3rem + .6vw) +} + +@media (min-width:1200px) { + + .h1, + h1 { + font-size: 1.75rem + } +} + +.h2, +h2 { + font-size: calc(1.275rem + .3vw) +} + +@media (min-width:1200px) { + + .h2, + h2 { + font-size: 1.5rem + } +} + +.h3, +h3 { + font-size: calc(1.26rem + .12vw) +} + +@media (min-width:1200px) { + + .h3, + h3 { + font-size: 1.35rem + } +} + +.h4, +h4 { + font-size: 1.25rem +} + +.h5, +h5 { + font-size: 1.15rem +} + +.h6, +h6 { + font-size: 1.075rem +} + +p { + margin-top: 0; + margin-bottom: 1rem +} + +abbr[data-bs-original-title], +abbr[title] { + text-decoration: underline dotted; + cursor: help; + text-decoration-skip-ink: none +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit +} + +ol, +ul { + padding-left: 2rem +} + +dl, +ol, +ul { + margin-top: 0; + margin-bottom: 1rem +} + +ol ol, +ol ul, +ul ol, +ul ul { + margin-bottom: 0 +} + +dt { + font-weight: 500 +} + +dd { + margin-bottom: .5rem; + margin-left: 0 +} + +blockquote { + margin: 0 0 1rem +} + +b, +strong { + font-weight: 600 +} + +.small, +small { + font-size: .875em +} + +.mark, +mark { + padding: .2em; + background-color: #fcf8e3 +} + +sub, +sup { + position: relative; + font-size: .75em; + line-height: 0; + vertical-align: baseline +} + +sub { + bottom: -.25em +} + +sup { + top: -.5em +} + +a { + color: #009ef7; + text-decoration: none +} + +a:hover { + color: #006dab; + text-decoration: underline +} + +a:not([href]):not([class]), +a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none +} + +code, +kbd, +pre, +samp { + font-family: var(--bs-font-monospace); + font-size: 1em; + direction: ltr; + unicode-bidi: bidi-override +} + +pre { + display: block; + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + font-size: .875em +} + +pre code { + font-size: inherit; + color: inherit; + word-break: normal +} + +code { + font-size: .875em; + color: #b93993; + word-wrap: break-word +} + +a>code { + color: inherit +} + +kbd { + padding: .2rem .4rem; + font-size: .875em; + color: #fff; + background-color: #181c32; + border-radius: .325rem +} + +kbd kbd { + padding: 0; + font-size: 1em; + font-weight: 500 +} + +figure { + margin: 0 0 1rem +} + +img, +svg { + vertical-align: middle +} + +table { + caption-side: bottom; + border-collapse: collapse +} + +caption { + padding-top: .75rem; + padding-bottom: .75rem; + color: #a1a5b7; + text-align: left +} + +th { + text-align: inherit; + text-align: -webkit-match-parent +} + +tbody, +td, +tfoot, +th, +thead, +tr { + border-color: inherit; + border-style: solid; + border-width: 0 +} + +label { + display: inline-block +} + +button { + border-radius: 0 +} + +button:focus:not(:focus-visible) { + outline: 0 +} + +button, +input, +optgroup, +select, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit +} + +button, +select { + text-transform: none +} + +[role=button] { + cursor: pointer +} + +select { + word-wrap: normal +} + +select:disabled { + opacity: 1 +} + +[list]::-webkit-calendar-picker-indicator { + display: none +} + +[type=button], +[type=reset], +[type=submit], +button { + -webkit-appearance: button +} + +[type=button]:not(:disabled), +[type=reset]:not(:disabled), +[type=submit]:not(:disabled), +button:not(:disabled) { + cursor: pointer +} + +::-moz-focus-inner { + padding: 0; + border-style: none +} + +textarea { + resize: vertical +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0 +} + +legend { + float: left; + width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: calc(1.275rem + .3vw); + line-height: inherit +} + +@media (min-width:1200px) { + legend { + font-size: 1.5rem + } +} + +legend+* { + clear: left +} + +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-fields-wrapper, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-minute, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-text, +::-webkit-datetime-edit-year-field { + padding: 0 +} + +::-webkit-inner-spin-button { + height: auto +} + +[type=search] { + outline-offset: -2px; + -webkit-appearance: textfield +} + +::-webkit-search-decoration { + -webkit-appearance: none +} + +::-webkit-color-swatch-wrapper { + padding: 0 +} + +::file-selector-button { + font: inherit +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button +} + +output { + display: inline-block +} + +iframe { + border: 0 +} + +summary { + display: list-item; + cursor: pointer +} + +progress { + vertical-align: baseline +} + +[hidden] { + display: none !important +} + +.lead { + font-size: 1.25rem; + font-weight: 300 +} + +.display-1 { + font-size: calc(1.625rem + 4.5vw); + font-weight: 600; + line-height: 1.2 +} + +@media (min-width:1200px) { + .display-1 { + font-size: 5rem + } +} + +.display-2 { + font-size: calc(1.575rem + 3.9vw); + font-weight: 600; + line-height: 1.2 +} + +@media (min-width:1200px) { + .display-2 { + font-size: 4.5rem + } +} + +.display-3 { + font-size: calc(1.525rem + 3.3vw); + font-weight: 600; + line-height: 1.2 +} + +@media (min-width:1200px) { + .display-3 { + font-size: 4rem + } +} + +.display-4 { + font-size: calc(1.475rem + 2.7vw); + font-weight: 600; + line-height: 1.2 +} + +@media (min-width:1200px) { + .display-4 { + font-size: 3.5rem + } +} + +.display-5 { + font-size: calc(1.425rem + 2.1vw); + font-weight: 600; + line-height: 1.2 +} + +@media (min-width:1200px) { + .display-5 { + font-size: 3rem + } +} + +.display-6 { + font-size: calc(1.375rem + 1.5vw); + font-weight: 600; + line-height: 1.2 +} + +@media (min-width:1200px) { + .display-6 { + font-size: 2.5rem + } +} + +.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: .875em; + text-transform: uppercase +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem +} + +.blockquote>:last-child { + margin-bottom: 0 +} + +.blockquote-footer { + margin-top: -1rem; + margin-bottom: 1rem; + font-size: .875em; + color: #7e8299 +} + +.blockquote-footer::before { + content: "— " +} + +.img-fluid { + max-width: 100%; + height: auto +} + +.img-thumbnail { + padding: .25rem; + background-color: #fff; + border: 1px solid #e4e6ef; + border-radius: .475rem; + box-shadow: 0 .1rem 1rem .25rem rgba(0, 0, 0, .05); + max-width: 100%; + height: auto +} + +.figure { + display: inline-block +} + +.figure-img { + margin-bottom: .5rem; + line-height: 1 +} + +.figure-caption { + font-size: .875em; + color: #7e8299 +} + +.container, +.container-fluid, +.container-lg, +.container-md, +.container-sm, +.container-xl, +.container-xxl { + width: 100%; + padding-right: var(--bs-gutter-x, 1.5rem); + padding-left: var(--bs-gutter-x, 1.5rem); + margin-right: auto; + margin-left: auto +} + +@media (min-width:576px) { + + .container, + .container-sm { + max-width: 540px + } +} + +@media (min-width:768px) { + + .container, + .container-md, + .container-sm { + max-width: 720px + } +} + +@media (min-width:992px) { + + .container, + .container-lg, + .container-md, + .container-sm { + max-width: 960px + } +} + +@media (min-width:1200px) { + + .container, + .container-lg, + .container-md, + .container-sm, + .container-xl { + max-width: 1140px + } +} + +@media (min-width:1400px) { + + .container, + .container-lg, + .container-md, + .container-sm, + .container-xl, + .container-xxl { + max-width: 1320px + } +} + +.row { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-right: calc(-.5 * var(--bs-gutter-x)); + margin-left: calc(-.5 * var(--bs-gutter-x)) +} + +.row>* { + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-right: calc(var(--bs-gutter-x) * .5); + padding-left: calc(var(--bs-gutter-x) * .5); + margin-top: var(--bs-gutter-y) +} + +.col { + flex: 1 0 0% +} + +.row-cols-auto>* { + flex: 0 0 auto; + width: auto +} + +.row-cols-1>* { + flex: 0 0 auto; + width: 100% +} + +.row-cols-2>* { + flex: 0 0 auto; + width: 50% +} + +.row-cols-3>* { + flex: 0 0 auto; + width: 33.3333333333% +} + +.row-cols-4>* { + flex: 0 0 auto; + width: 25% +} + +.row-cols-5>* { + flex: 0 0 auto; + width: 20% +} + +.row-cols-6>* { + flex: 0 0 auto; + width: 16.6666666667% +} + +.col-auto { + flex: 0 0 auto; + width: auto +} + +.col-1 { + flex: 0 0 auto; + width: 8.33333333% +} + +.col-2 { + flex: 0 0 auto; + width: 16.66666667% +} + +.col-3 { + flex: 0 0 auto; + width: 25% +} + +.col-4 { + flex: 0 0 auto; + width: 33.33333333% +} + +.col-5 { + flex: 0 0 auto; + width: 41.66666667% +} + +.col-6 { + flex: 0 0 auto; + width: 50% +} + +.col-7 { + flex: 0 0 auto; + width: 58.33333333% +} + +.col-8 { + flex: 0 0 auto; + width: 66.66666667% +} + +.col-9 { + flex: 0 0 auto; + width: 75% +} + +.col-10 { + flex: 0 0 auto; + width: 83.33333333% +} + +.col-11 { + flex: 0 0 auto; + width: 91.66666667% +} + +.col-12 { + flex: 0 0 auto; + width: 100% +} + +.offset-1 { + margin-left: 8.33333333% +} + +.offset-2 { + margin-left: 16.66666667% +} + +.offset-3 { + margin-left: 25% +} + +.offset-4 { + margin-left: 33.33333333% +} + +.offset-5 { + margin-left: 41.66666667% +} + +.offset-6 { + margin-left: 50% +} + +.offset-7 { + margin-left: 58.33333333% +} + +.offset-8 { + margin-left: 66.66666667% +} + +.offset-9 { + margin-left: 75% +} + +.offset-10 { + margin-left: 83.33333333% +} + +.offset-11 { + margin-left: 91.66666667% +} + +.g-0, +.gx-0 { + --bs-gutter-x: 0rem +} + +.g-0, +.gy-0 { + --bs-gutter-y: 0rem +} + +.g-1, +.gx-1 { + --bs-gutter-x: 0.25rem +} + +.g-1, +.gy-1 { + --bs-gutter-y: 0.25rem +} + +.g-2, +.gx-2 { + --bs-gutter-x: 0.5rem +} + +.g-2, +.gy-2 { + --bs-gutter-y: 0.5rem +} + +.g-3, +.gx-3 { + --bs-gutter-x: 0.75rem +} + +.g-3, +.gy-3 { + --bs-gutter-y: 0.75rem +} + +.g-4, +.gx-4 { + --bs-gutter-x: 1rem +} + +.g-4, +.gy-4 { + --bs-gutter-y: 1rem +} + +.g-5, +.gx-5 { + --bs-gutter-x: 1.25rem +} + +.g-5, +.gy-5 { + --bs-gutter-y: 1.25rem +} + +.g-6, +.gx-6 { + --bs-gutter-x: 1.5rem +} + +.g-6, +.gy-6 { + --bs-gutter-y: 1.5rem +} + +.g-7, +.gx-7 { + --bs-gutter-x: 1.75rem +} + +.g-7, +.gy-7 { + --bs-gutter-y: 1.75rem +} + +.g-8, +.gx-8 { + --bs-gutter-x: 2rem +} + +.g-8, +.gy-8 { + --bs-gutter-y: 2rem +} + +.g-9, +.gx-9 { + --bs-gutter-x: 2.25rem +} + +.g-9, +.gy-9 { + --bs-gutter-y: 2.25rem +} + +.g-10, +.gx-10 { + --bs-gutter-x: 2.5rem +} + +.g-10, +.gy-10 { + --bs-gutter-y: 2.5rem +} + +@media (min-width:576px) { + .col-sm { + flex: 1 0 0% + } + + .row-cols-sm-auto>* { + flex: 0 0 auto; + width: auto + } + + .row-cols-sm-1>* { + flex: 0 0 auto; + width: 100% + } + + .row-cols-sm-2>* { + flex: 0 0 auto; + width: 50% + } + + .row-cols-sm-3>* { + flex: 0 0 auto; + width: 33.3333333333% + } + + .row-cols-sm-4>* { + flex: 0 0 auto; + width: 25% + } + + .row-cols-sm-5>* { + flex: 0 0 auto; + width: 20% + } + + .row-cols-sm-6>* { + flex: 0 0 auto; + width: 16.6666666667% + } + + .col-sm-auto { + flex: 0 0 auto; + width: auto + } + + .col-sm-1 { + flex: 0 0 auto; + width: 8.33333333% + } + + .col-sm-2 { + flex: 0 0 auto; + width: 16.66666667% + } + + .col-sm-3 { + flex: 0 0 auto; + width: 25% + } + + .col-sm-4 { + flex: 0 0 auto; + width: 33.33333333% + } + + .col-sm-5 { + flex: 0 0 auto; + width: 41.66666667% + } + + .col-sm-6 { + flex: 0 0 auto; + width: 50% + } + + .col-sm-7 { + flex: 0 0 auto; + width: 58.33333333% + } + + .col-sm-8 { + flex: 0 0 auto; + width: 66.66666667% + } + + .col-sm-9 { + flex: 0 0 auto; + width: 75% + } + + .col-sm-10 { + flex: 0 0 auto; + width: 83.33333333% + } + + .col-sm-11 { + flex: 0 0 auto; + width: 91.66666667% + } + + .col-sm-12 { + flex: 0 0 auto; + width: 100% + } + + .offset-sm-0 { + margin-left: 0 + } + + .offset-sm-1 { + margin-left: 8.33333333% + } + + .offset-sm-2 { + margin-left: 16.66666667% + } + + .offset-sm-3 { + margin-left: 25% + } + + .offset-sm-4 { + margin-left: 33.33333333% + } + + .offset-sm-5 { + margin-left: 41.66666667% + } + + .offset-sm-6 { + margin-left: 50% + } + + .offset-sm-7 { + margin-left: 58.33333333% + } + + .offset-sm-8 { + margin-left: 66.66666667% + } + + .offset-sm-9 { + margin-left: 75% + } + + .offset-sm-10 { + margin-left: 83.33333333% + } + + .offset-sm-11 { + margin-left: 91.66666667% + } + + .g-sm-0, + .gx-sm-0 { + --bs-gutter-x: 0rem + } + + .g-sm-0, + .gy-sm-0 { + --bs-gutter-y: 0rem + } + + .g-sm-1, + .gx-sm-1 { + --bs-gutter-x: 0.25rem + } + + .g-sm-1, + .gy-sm-1 { + --bs-gutter-y: 0.25rem + } + + .g-sm-2, + .gx-sm-2 { + --bs-gutter-x: 0.5rem + } + + .g-sm-2, + .gy-sm-2 { + --bs-gutter-y: 0.5rem + } + + .g-sm-3, + .gx-sm-3 { + --bs-gutter-x: 0.75rem + } + + .g-sm-3, + .gy-sm-3 { + --bs-gutter-y: 0.75rem + } + + .g-sm-4, + .gx-sm-4 { + --bs-gutter-x: 1rem + } + + .g-sm-4, + .gy-sm-4 { + --bs-gutter-y: 1rem + } + + .g-sm-5, + .gx-sm-5 { + --bs-gutter-x: 1.25rem + } + + .g-sm-5, + .gy-sm-5 { + --bs-gutter-y: 1.25rem + } + + .g-sm-6, + .gx-sm-6 { + --bs-gutter-x: 1.5rem + } + + .g-sm-6, + .gy-sm-6 { + --bs-gutter-y: 1.5rem + } + + .g-sm-7, + .gx-sm-7 { + --bs-gutter-x: 1.75rem + } + + .g-sm-7, + .gy-sm-7 { + --bs-gutter-y: 1.75rem + } + + .g-sm-8, + .gx-sm-8 { + --bs-gutter-x: 2rem + } + + .g-sm-8, + .gy-sm-8 { + --bs-gutter-y: 2rem + } + + .g-sm-9, + .gx-sm-9 { + --bs-gutter-x: 2.25rem + } + + .g-sm-9, + .gy-sm-9 { + --bs-gutter-y: 2.25rem + } + + .g-sm-10, + .gx-sm-10 { + --bs-gutter-x: 2.5rem + } + + .g-sm-10, + .gy-sm-10 { + --bs-gutter-y: 2.5rem + } +} + +@media (min-width:768px) { + .col-md { + flex: 1 0 0% + } + + .row-cols-md-auto>* { + flex: 0 0 auto; + width: auto + } + + .row-cols-md-1>* { + flex: 0 0 auto; + width: 100% + } + + .row-cols-md-2>* { + flex: 0 0 auto; + width: 50% + } + + .row-cols-md-3>* { + flex: 0 0 auto; + width: 33.3333333333% + } + + .row-cols-md-4>* { + flex: 0 0 auto; + width: 25% + } + + .row-cols-md-5>* { + flex: 0 0 auto; + width: 20% + } + + .row-cols-md-6>* { + flex: 0 0 auto; + width: 16.6666666667% + } + + .col-md-auto { + flex: 0 0 auto; + width: auto + } + + .col-md-1 { + flex: 0 0 auto; + width: 8.33333333% + } + + .col-md-2 { + flex: 0 0 auto; + width: 16.66666667% + } + + .col-md-3 { + flex: 0 0 auto; + width: 25% + } + + .col-md-4 { + flex: 0 0 auto; + width: 33.33333333% + } + + .col-md-5 { + flex: 0 0 auto; + width: 41.66666667% + } + + .col-md-6 { + flex: 0 0 auto; + width: 50% + } + + .col-md-7 { + flex: 0 0 auto; + width: 58.33333333% + } + + .col-md-8 { + flex: 0 0 auto; + width: 66.66666667% + } + + .col-md-9 { + flex: 0 0 auto; + width: 75% + } + + .col-md-10 { + flex: 0 0 auto; + width: 83.33333333% + } + + .col-md-11 { + flex: 0 0 auto; + width: 91.66666667% + } + + .col-md-12 { + flex: 0 0 auto; + width: 100% + } + + .offset-md-0 { + margin-left: 0 + } + + .offset-md-1 { + margin-left: 8.33333333% + } + + .offset-md-2 { + margin-left: 16.66666667% + } + + .offset-md-3 { + margin-left: 25% + } + + .offset-md-4 { + margin-left: 33.33333333% + } + + .offset-md-5 { + margin-left: 41.66666667% + } + + .offset-md-6 { + margin-left: 50% + } + + .offset-md-7 { + margin-left: 58.33333333% + } + + .offset-md-8 { + margin-left: 66.66666667% + } + + .offset-md-9 { + margin-left: 75% + } + + .offset-md-10 { + margin-left: 83.33333333% + } + + .offset-md-11 { + margin-left: 91.66666667% + } + + .g-md-0, + .gx-md-0 { + --bs-gutter-x: 0rem + } + + .g-md-0, + .gy-md-0 { + --bs-gutter-y: 0rem + } + + .g-md-1, + .gx-md-1 { + --bs-gutter-x: 0.25rem + } + + .g-md-1, + .gy-md-1 { + --bs-gutter-y: 0.25rem + } + + .g-md-2, + .gx-md-2 { + --bs-gutter-x: 0.5rem + } + + .g-md-2, + .gy-md-2 { + --bs-gutter-y: 0.5rem + } + + .g-md-3, + .gx-md-3 { + --bs-gutter-x: 0.75rem + } + + .g-md-3, + .gy-md-3 { + --bs-gutter-y: 0.75rem + } + + .g-md-4, + .gx-md-4 { + --bs-gutter-x: 1rem + } + + .g-md-4, + .gy-md-4 { + --bs-gutter-y: 1rem + } + + .g-md-5, + .gx-md-5 { + --bs-gutter-x: 1.25rem + } + + .g-md-5, + .gy-md-5 { + --bs-gutter-y: 1.25rem + } + + .g-md-6, + .gx-md-6 { + --bs-gutter-x: 1.5rem + } + + .g-md-6, + .gy-md-6 { + --bs-gutter-y: 1.5rem + } + + .g-md-7, + .gx-md-7 { + --bs-gutter-x: 1.75rem + } + + .g-md-7, + .gy-md-7 { + --bs-gutter-y: 1.75rem + } + + .g-md-8, + .gx-md-8 { + --bs-gutter-x: 2rem + } + + .g-md-8, + .gy-md-8 { + --bs-gutter-y: 2rem + } + + .g-md-9, + .gx-md-9 { + --bs-gutter-x: 2.25rem + } + + .g-md-9, + .gy-md-9 { + --bs-gutter-y: 2.25rem + } + + .g-md-10, + .gx-md-10 { + --bs-gutter-x: 2.5rem + } + + .g-md-10, + .gy-md-10 { + --bs-gutter-y: 2.5rem + } +} + +@media (min-width:992px) { + .col-lg { + flex: 1 0 0% + } + + .row-cols-lg-auto>* { + flex: 0 0 auto; + width: auto + } + + .row-cols-lg-1>* { + flex: 0 0 auto; + width: 100% + } + + .row-cols-lg-2>* { + flex: 0 0 auto; + width: 50% + } + + .row-cols-lg-3>* { + flex: 0 0 auto; + width: 33.3333333333% + } + + .row-cols-lg-4>* { + flex: 0 0 auto; + width: 25% + } + + .row-cols-lg-5>* { + flex: 0 0 auto; + width: 20% + } + + .row-cols-lg-6>* { + flex: 0 0 auto; + width: 16.6666666667% + } + + .col-lg-auto { + flex: 0 0 auto; + width: auto + } + + .col-lg-1 { + flex: 0 0 auto; + width: 8.33333333% + } + + .col-lg-2 { + flex: 0 0 auto; + width: 16.66666667% + } + + .col-lg-3 { + flex: 0 0 auto; + width: 25% + } + + .col-lg-4 { + flex: 0 0 auto; + width: 33.33333333% + } + + .col-lg-5 { + flex: 0 0 auto; + width: 41.66666667% + } + + .col-lg-6 { + flex: 0 0 auto; + width: 50% + } + + .col-lg-7 { + flex: 0 0 auto; + width: 58.33333333% + } + + .col-lg-8 { + flex: 0 0 auto; + width: 66.66666667% + } + + .col-lg-9 { + flex: 0 0 auto; + width: 75% + } + + .col-lg-10 { + flex: 0 0 auto; + width: 83.33333333% + } + + .col-lg-11 { + flex: 0 0 auto; + width: 91.66666667% + } + + .col-lg-12 { + flex: 0 0 auto; + width: 100% + } + + .offset-lg-0 { + margin-left: 0 + } + + .offset-lg-1 { + margin-left: 8.33333333% + } + + .offset-lg-2 { + margin-left: 16.66666667% + } + + .offset-lg-3 { + margin-left: 25% + } + + .offset-lg-4 { + margin-left: 33.33333333% + } + + .offset-lg-5 { + margin-left: 41.66666667% + } + + .offset-lg-6 { + margin-left: 50% + } + + .offset-lg-7 { + margin-left: 58.33333333% + } + + .offset-lg-8 { + margin-left: 66.66666667% + } + + .offset-lg-9 { + margin-left: 75% + } + + .offset-lg-10 { + margin-left: 83.33333333% + } + + .offset-lg-11 { + margin-left: 91.66666667% + } + + .g-lg-0, + .gx-lg-0 { + --bs-gutter-x: 0rem + } + + .g-lg-0, + .gy-lg-0 { + --bs-gutter-y: 0rem + } + + .g-lg-1, + .gx-lg-1 { + --bs-gutter-x: 0.25rem + } + + .g-lg-1, + .gy-lg-1 { + --bs-gutter-y: 0.25rem + } + + .g-lg-2, + .gx-lg-2 { + --bs-gutter-x: 0.5rem + } + + .g-lg-2, + .gy-lg-2 { + --bs-gutter-y: 0.5rem + } + + .g-lg-3, + .gx-lg-3 { + --bs-gutter-x: 0.75rem + } + + .g-lg-3, + .gy-lg-3 { + --bs-gutter-y: 0.75rem + } + + .g-lg-4, + .gx-lg-4 { + --bs-gutter-x: 1rem + } + + .g-lg-4, + .gy-lg-4 { + --bs-gutter-y: 1rem + } + + .g-lg-5, + .gx-lg-5 { + --bs-gutter-x: 1.25rem + } + + .g-lg-5, + .gy-lg-5 { + --bs-gutter-y: 1.25rem + } + + .g-lg-6, + .gx-lg-6 { + --bs-gutter-x: 1.5rem + } + + .g-lg-6, + .gy-lg-6 { + --bs-gutter-y: 1.5rem + } + + .g-lg-7, + .gx-lg-7 { + --bs-gutter-x: 1.75rem + } + + .g-lg-7, + .gy-lg-7 { + --bs-gutter-y: 1.75rem + } + + .g-lg-8, + .gx-lg-8 { + --bs-gutter-x: 2rem + } + + .g-lg-8, + .gy-lg-8 { + --bs-gutter-y: 2rem + } + + .g-lg-9, + .gx-lg-9 { + --bs-gutter-x: 2.25rem + } + + .g-lg-9, + .gy-lg-9 { + --bs-gutter-y: 2.25rem + } + + .g-lg-10, + .gx-lg-10 { + --bs-gutter-x: 2.5rem + } + + .g-lg-10, + .gy-lg-10 { + --bs-gutter-y: 2.5rem + } +} + +@media (min-width:1200px) { + .col-xl { + flex: 1 0 0% + } + + .row-cols-xl-auto>* { + flex: 0 0 auto; + width: auto + } + + .row-cols-xl-1>* { + flex: 0 0 auto; + width: 100% + } + + .row-cols-xl-2>* { + flex: 0 0 auto; + width: 50% + } + + .row-cols-xl-3>* { + flex: 0 0 auto; + width: 33.3333333333% + } + + .row-cols-xl-4>* { + flex: 0 0 auto; + width: 25% + } + + .row-cols-xl-5>* { + flex: 0 0 auto; + width: 20% + } + + .row-cols-xl-6>* { + flex: 0 0 auto; + width: 16.6666666667% + } + + .col-xl-auto { + flex: 0 0 auto; + width: auto + } + + .col-xl-1 { + flex: 0 0 auto; + width: 8.33333333% + } + + .col-xl-2 { + flex: 0 0 auto; + width: 16.66666667% + } + + .col-xl-3 { + flex: 0 0 auto; + width: 25% + } + + .col-xl-4 { + flex: 0 0 auto; + width: 33.33333333% + } + + .col-xl-5 { + flex: 0 0 auto; + width: 41.66666667% + } + + .col-xl-6 { + flex: 0 0 auto; + width: 50% + } + + .col-xl-7 { + flex: 0 0 auto; + width: 58.33333333% + } + + .col-xl-8 { + flex: 0 0 auto; + width: 66.66666667% + } + + .col-xl-9 { + flex: 0 0 auto; + width: 75% + } + + .col-xl-10 { + flex: 0 0 auto; + width: 83.33333333% + } + + .col-xl-11 { + flex: 0 0 auto; + width: 91.66666667% + } + + .col-xl-12 { + flex: 0 0 auto; + width: 100% + } + + .offset-xl-0 { + margin-left: 0 + } + + .offset-xl-1 { + margin-left: 8.33333333% + } + + .offset-xl-2 { + margin-left: 16.66666667% + } + + .offset-xl-3 { + margin-left: 25% + } + + .offset-xl-4 { + margin-left: 33.33333333% + } + + .offset-xl-5 { + margin-left: 41.66666667% + } + + .offset-xl-6 { + margin-left: 50% + } + + .offset-xl-7 { + margin-left: 58.33333333% + } + + .offset-xl-8 { + margin-left: 66.66666667% + } + + .offset-xl-9 { + margin-left: 75% + } + + .offset-xl-10 { + margin-left: 83.33333333% + } + + .offset-xl-11 { + margin-left: 91.66666667% + } + + .g-xl-0, + .gx-xl-0 { + --bs-gutter-x: 0rem + } + + .g-xl-0, + .gy-xl-0 { + --bs-gutter-y: 0rem + } + + .g-xl-1, + .gx-xl-1 { + --bs-gutter-x: 0.25rem + } + + .g-xl-1, + .gy-xl-1 { + --bs-gutter-y: 0.25rem + } + + .g-xl-2, + .gx-xl-2 { + --bs-gutter-x: 0.5rem + } + + .g-xl-2, + .gy-xl-2 { + --bs-gutter-y: 0.5rem + } + + .g-xl-3, + .gx-xl-3 { + --bs-gutter-x: 0.75rem + } + + .g-xl-3, + .gy-xl-3 { + --bs-gutter-y: 0.75rem + } + + .g-xl-4, + .gx-xl-4 { + --bs-gutter-x: 1rem + } + + .g-xl-4, + .gy-xl-4 { + --bs-gutter-y: 1rem + } + + .g-xl-5, + .gx-xl-5 { + --bs-gutter-x: 1.25rem + } + + .g-xl-5, + .gy-xl-5 { + --bs-gutter-y: 1.25rem + } + + .g-xl-6, + .gx-xl-6 { + --bs-gutter-x: 1.5rem + } + + .g-xl-6, + .gy-xl-6 { + --bs-gutter-y: 1.5rem + } + + .g-xl-7, + .gx-xl-7 { + --bs-gutter-x: 1.75rem + } + + .g-xl-7, + .gy-xl-7 { + --bs-gutter-y: 1.75rem + } + + .g-xl-8, + .gx-xl-8 { + --bs-gutter-x: 2rem + } + + .g-xl-8, + .gy-xl-8 { + --bs-gutter-y: 2rem + } + + .g-xl-9, + .gx-xl-9 { + --bs-gutter-x: 2.25rem + } + + .g-xl-9, + .gy-xl-9 { + --bs-gutter-y: 2.25rem + } + + .g-xl-10, + .gx-xl-10 { + --bs-gutter-x: 2.5rem + } + + .g-xl-10, + .gy-xl-10 { + --bs-gutter-y: 2.5rem + } +} + +@media (min-width:1400px) { + .col-xxl { + flex: 1 0 0% + } + + .row-cols-xxl-auto>* { + flex: 0 0 auto; + width: auto + } + + .row-cols-xxl-1>* { + flex: 0 0 auto; + width: 100% + } + + .row-cols-xxl-2>* { + flex: 0 0 auto; + width: 50% + } + + .row-cols-xxl-3>* { + flex: 0 0 auto; + width: 33.3333333333% + } + + .row-cols-xxl-4>* { + flex: 0 0 auto; + width: 25% + } + + .row-cols-xxl-5>* { + flex: 0 0 auto; + width: 20% + } + + .row-cols-xxl-6>* { + flex: 0 0 auto; + width: 16.6666666667% + } + + .col-xxl-auto { + flex: 0 0 auto; + width: auto + } + + .col-xxl-1 { + flex: 0 0 auto; + width: 8.33333333% + } + + .col-xxl-2 { + flex: 0 0 auto; + width: 16.66666667% + } + + .col-xxl-3 { + flex: 0 0 auto; + width: 25% + } + + .col-xxl-4 { + flex: 0 0 auto; + width: 33.33333333% + } + + .col-xxl-5 { + flex: 0 0 auto; + width: 41.66666667% + } + + .col-xxl-6 { + flex: 0 0 auto; + width: 50% + } + + .col-xxl-7 { + flex: 0 0 auto; + width: 58.33333333% + } + + .col-xxl-8 { + flex: 0 0 auto; + width: 66.66666667% + } + + .col-xxl-9 { + flex: 0 0 auto; + width: 75% + } + + .col-xxl-10 { + flex: 0 0 auto; + width: 83.33333333% + } + + .col-xxl-11 { + flex: 0 0 auto; + width: 91.66666667% + } + + .col-xxl-12 { + flex: 0 0 auto; + width: 100% + } + + .offset-xxl-0 { + margin-left: 0 + } + + .offset-xxl-1 { + margin-left: 8.33333333% + } + + .offset-xxl-2 { + margin-left: 16.66666667% + } + + .offset-xxl-3 { + margin-left: 25% + } + + .offset-xxl-4 { + margin-left: 33.33333333% + } + + .offset-xxl-5 { + margin-left: 41.66666667% + } + + .offset-xxl-6 { + margin-left: 50% + } + + .offset-xxl-7 { + margin-left: 58.33333333% + } + + .offset-xxl-8 { + margin-left: 66.66666667% + } + + .offset-xxl-9 { + margin-left: 75% + } + + .offset-xxl-10 { + margin-left: 83.33333333% + } + + .offset-xxl-11 { + margin-left: 91.66666667% + } + + .g-xxl-0, + .gx-xxl-0 { + --bs-gutter-x: 0rem + } + + .g-xxl-0, + .gy-xxl-0 { + --bs-gutter-y: 0rem + } + + .g-xxl-1, + .gx-xxl-1 { + --bs-gutter-x: 0.25rem + } + + .g-xxl-1, + .gy-xxl-1 { + --bs-gutter-y: 0.25rem + } + + .g-xxl-2, + .gx-xxl-2 { + --bs-gutter-x: 0.5rem + } + + .g-xxl-2, + .gy-xxl-2 { + --bs-gutter-y: 0.5rem + } + + .g-xxl-3, + .gx-xxl-3 { + --bs-gutter-x: 0.75rem + } + + .g-xxl-3, + .gy-xxl-3 { + --bs-gutter-y: 0.75rem + } + + .g-xxl-4, + .gx-xxl-4 { + --bs-gutter-x: 1rem + } + + .g-xxl-4, + .gy-xxl-4 { + --bs-gutter-y: 1rem + } + + .g-xxl-5, + .gx-xxl-5 { + --bs-gutter-x: 1.25rem + } + + .g-xxl-5, + .gy-xxl-5 { + --bs-gutter-y: 1.25rem + } + + .g-xxl-6, + .gx-xxl-6 { + --bs-gutter-x: 1.5rem + } + + .g-xxl-6, + .gy-xxl-6 { + --bs-gutter-y: 1.5rem + } + + .g-xxl-7, + .gx-xxl-7 { + --bs-gutter-x: 1.75rem + } + + .g-xxl-7, + .gy-xxl-7 { + --bs-gutter-y: 1.75rem + } + + .g-xxl-8, + .gx-xxl-8 { + --bs-gutter-x: 2rem + } + + .g-xxl-8, + .gy-xxl-8 { + --bs-gutter-y: 2rem + } + + .g-xxl-9, + .gx-xxl-9 { + --bs-gutter-x: 2.25rem + } + + .g-xxl-9, + .gy-xxl-9 { + --bs-gutter-y: 2.25rem + } + + .g-xxl-10, + .gx-xxl-10 { + --bs-gutter-x: 2.5rem + } + + .g-xxl-10, + .gy-xxl-10 { + --bs-gutter-y: 2.5rem + } +} + +.table { + --bs-table-bg: transparent; + --bs-table-accent-bg: transparent; + --bs-table-striped-color: #181C32; + --bs-table-striped-bg: rgba(245, 248, 250, 0.75); + --bs-table-active-color: #181C32; + --bs-table-active-bg: #F5F8FA; + --bs-table-hover-color: #181C32; + --bs-table-hover-bg: #F5F8FA; + width: 100%; + margin-bottom: 1rem; + color: #181c32; + vertical-align: top; + border-color: #eff2f5 +} + +.table>:not(caption)>*>* { + padding: .75rem .75rem; + background-color: var(--bs-table-bg); + border-bottom-width: 1px; + box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg) +} + +.table>tbody { + vertical-align: inherit +} + +.table>thead { + vertical-align: bottom +} + +.table>:not(:first-child) { + border-top: 2px solid currentColor +} + +.caption-top { + caption-side: top +} + +.table-sm>:not(caption)>*>* { + padding: .5rem .5rem +} + +.table-bordered>:not(caption)>* { + border-width: 1px 0 +} + +.table-bordered>:not(caption)>*>* { + border-width: 0 1px +} + +.table-borderless>:not(caption)>*>* { + border-bottom-width: 0 +} + +.table-borderless>:not(:first-child) { + border-top-width: 0 +} + +.table-striped>tbody>tr:nth-of-type(odd)>* { + --bs-table-accent-bg: var(--bs-table-striped-bg); + color: var(--bs-table-striped-color) +} + +.table-active { + --bs-table-accent-bg: var(--bs-table-active-bg); + color: var(--bs-table-active-color) +} + +.table-hover>tbody>tr:hover>* { + --bs-table-accent-bg: var(--bs-table-hover-bg); + color: var(--bs-table-hover-color) +} + +.table-primary { + --bs-table-bg: #ccecfd; + --bs-table-striped-bg: #c2e0f0; + --bs-table-striped-color: #000000; + --bs-table-active-bg: #b8d4e4; + --bs-table-active-color: #000000; + --bs-table-hover-bg: #bddaea; + --bs-table-hover-color: #000000; + color: #000; + border-color: #b8d4e4 +} + +.table-secondary { + --bs-table-bg: #fafafc; + --bs-table-striped-bg: #eeeeef; + --bs-table-striped-color: #000000; + --bs-table-active-bg: #e1e1e3; + --bs-table-active-color: #000000; + --bs-table-hover-bg: #e7e7e9; + --bs-table-hover-color: #000000; + color: #000; + border-color: #e1e1e3 +} + +.table-success { + --bs-table-bg: #dcf5e7; + --bs-table-striped-bg: #d1e9db; + --bs-table-striped-color: #000000; + --bs-table-active-bg: #c6ddd0; + --bs-table-active-color: #000000; + --bs-table-hover-bg: #cce3d6; + --bs-table-hover-color: #000000; + color: #000; + border-color: #c6ddd0 +} + +.table-info { + --bs-table-bg: #e3d7fb; + --bs-table-striped-bg: #d8ccee; + --bs-table-striped-color: #000000; + --bs-table-active-bg: #ccc2e2; + --bs-table-active-color: #000000; + --bs-table-hover-bg: #d2c7e8; + --bs-table-hover-color: #000000; + color: #000; + border-color: #ccc2e2 +} + +.table-warning { + --bs-table-bg: #fff4cc; + --bs-table-striped-bg: #f2e8c2; + --bs-table-striped-color: #000000; + --bs-table-active-bg: #e6dcb8; + --bs-table-active-color: #000000; + --bs-table-hover-bg: #ece2bd; + --bs-table-hover-color: #000000; + color: #000; + border-color: #e6dcb8 +} + +.table-danger { + --bs-table-bg: #fcd9e2; + --bs-table-striped-bg: #efced7; + --bs-table-striped-color: #000000; + --bs-table-active-bg: #e3c3cb; + --bs-table-active-color: #000000; + --bs-table-hover-bg: #e9c9d1; + --bs-table-hover-color: #000000; + color: #000; + border-color: #e3c3cb +} + +.table-light { + --bs-table-bg: #F5F8FA; + --bs-table-striped-bg: #e9ecee; + --bs-table-striped-color: #000000; + --bs-table-active-bg: #dddfe1; + --bs-table-active-color: #000000; + --bs-table-hover-bg: #e3e5e7; + --bs-table-hover-color: #000000; + color: #000; + border-color: #dddfe1 +} + +.table-dark { + --bs-table-bg: #181C32; + --bs-table-striped-bg: #24273c; + --bs-table-striped-color: #ffffff; + --bs-table-active-bg: #2f3347; + --bs-table-active-color: #ffffff; + --bs-table-hover-bg: #292d41; + --bs-table-hover-color: #ffffff; + color: #fff; + border-color: #2f3347 +} + +.table-responsive { + overflow-x: auto; + -webkit-overflow-scrolling: touch +} + +@media (max-width:575.98px) { + .table-responsive-sm { + overflow-x: auto; + -webkit-overflow-scrolling: touch + } +} + +@media (max-width:767.98px) { + .table-responsive-md { + overflow-x: auto; + -webkit-overflow-scrolling: touch + } +} + +@media (max-width:991.98px) { + .table-responsive-lg { + overflow-x: auto; + -webkit-overflow-scrolling: touch + } +} + +@media (max-width:1199.98px) { + .table-responsive-xl { + overflow-x: auto; + -webkit-overflow-scrolling: touch + } +} + +@media (max-width:1399.98px) { + .table-responsive-xxl { + overflow-x: auto; + -webkit-overflow-scrolling: touch + } +} + +.form-label { + margin-bottom: .5rem; + font-size: 1.05rem; + font-weight: 500; + color: #3f4254 +} + +.col-form-label { + padding-top: calc(.75rem + 1px); + padding-bottom: calc(.75rem + 1px); + margin-bottom: 0; + font-size: inherit; + font-weight: 500; + line-height: 1.5; + color: #3f4254 +} + +.col-form-label-lg { + padding-top: calc(.825rem + 1px); + padding-bottom: calc(.825rem + 1px); + font-size: 1.15rem +} + +.col-form-label-sm { + padding-top: calc(.55rem + 1px); + padding-bottom: calc(.55rem + 1px); + font-size: .925rem +} + +.form-text { + margin-top: .5rem; + font-size: .925rem; + color: #a1a5b7 +} + +.form-control { + display: block; + width: 100%; + padding: .75rem 1rem; + font-size: 1.1rem; + font-weight: 500; + line-height: 1.5; + color: #5e6278; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #e4e6ef; + appearance: none; + border-radius: .475rem; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075); + transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out +} + +@media (prefers-reduced-motion:reduce) { + .form-control { + transition: none + } +} + +.form-control[type=file] { + overflow: hidden +} + +.form-control[type=file]:not(:disabled):not([readonly]) { + cursor: pointer +} + +.form-control:focus { + color: #5e6278; + background-color: #fff; + border-color: #b5b5c3; + outline: 0; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 0 .25rem rgba(0, 158, 247, .25) +} + +.form-control::-webkit-date-and-time-value { + height: 1.5em +} + +.form-control::placeholder { + color: #a1a5b7; + opacity: 1 +} + +.form-control:disabled, +.form-control[readonly] { + background-color: #eff2f5; + opacity: 1 +} + +.form-control::file-selector-button { + padding: .75rem 1rem; + margin: -.75rem -1rem; + margin-inline-end: 1rem; + color: #5e6278; + background-color: #f5f8fa; + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: 1px; + border-radius: 0; + 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 (prefers-reduced-motion:reduce) { + .form-control::file-selector-button { + transition: none + } +} + +.form-control:hover:not(:disabled):not([readonly])::file-selector-button { + background-color: #e9ecee +} + +.form-control::-webkit-file-upload-button { + padding: .75rem 1rem; + margin: -.75rem -1rem; + margin-inline-end: 1rem; + color: #5e6278; + background-color: #f5f8fa; + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: 1px; + border-radius: 0; + 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 (prefers-reduced-motion:reduce) { + .form-control::-webkit-file-upload-button { + transition: none + } +} + +.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { + background-color: #e9ecee +} + +.form-control-plaintext { + display: block; + width: 100%; + padding: .75rem 0; + margin-bottom: 0; + line-height: 1.5; + color: #5e6278; + 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 { + min-height: calc(1.5em + 1.1rem + 2px); + padding: .55rem .75rem; + font-size: .925rem; + border-radius: .325rem +} + +.form-control-sm::file-selector-button { + padding: .55rem .75rem; + margin: -.55rem -.75rem; + margin-inline-end: .75rem +} + +.form-control-sm::-webkit-file-upload-button { + padding: .55rem .75rem; + margin: -.55rem -.75rem; + margin-inline-end: .75rem +} + +.form-control-lg { + min-height: calc(1.5em + 1.65rem + 2px); + padding: .825rem 1.5rem; + font-size: 1.15rem; + border-radius: .625rem +} + +.form-control-lg::file-selector-button { + padding: .825rem 1.5rem; + margin: -.825rem -1.5rem; + margin-inline-end: 1.5rem +} + +.form-control-lg::-webkit-file-upload-button { + padding: .825rem 1.5rem; + margin: -.825rem -1.5rem; + margin-inline-end: 1.5rem +} + +textarea.form-control { + min-height: calc(1.5em + 1.5rem + 2px) +} + +textarea.form-control-sm { + min-height: calc(1.5em + 1.1rem + 2px) +} + +textarea.form-control-lg { + min-height: calc(1.5em + 1.65rem + 2px) +} + +.form-control-color { + width: 3rem; + height: auto; + padding: .75rem +} + +.form-control-color:not(:disabled):not([readonly]) { + cursor: pointer +} + +.form-control-color::-moz-color-swatch { + height: 1.5em; + border-radius: .475rem +} + +.form-control-color::-webkit-color-swatch { + height: 1.5em; + border-radius: .475rem +} + +.form-select { + display: block; + width: 100%; + padding: .75rem 3rem .75rem 1rem; + -moz-padding-start: calc(1rem - 3px); + font-size: 1.1rem; + font-weight: 500; + line-height: 1.5; + color: #5e6278; + background-color: #fff; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%237E8299' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right 1rem center; + background-size: 16px 12px; + border: 1px solid #e4e6ef; + border-radius: .475rem; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075); + transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; + appearance: none +} + +@media (prefers-reduced-motion:reduce) { + .form-select { + transition: none + } +} + +.form-select:focus { + border-color: #b5b5c3; + outline: 0; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 0 .25rem rgba(0, 158, 247, .25) +} + +.form-select[multiple], +.form-select[size]:not([size="1"]) { + padding-right: 1rem; + background-image: none +} + +.form-select:disabled { + background-color: #eff2f5 +} + +.form-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #5e6278 +} + +.form-select-sm { + padding-top: .55rem; + padding-bottom: .55rem; + padding-left: .75rem; + font-size: .925rem; + border-radius: .325rem +} + +.form-select-lg { + padding-top: .825rem; + padding-bottom: .825rem; + padding-left: 1.5rem; + font-size: 1.15rem; + border-radius: .625rem +} + +.form-check { + display: block; + min-height: 1.5rem; + padding-left: 2.25rem; + margin-bottom: .125rem +} + +.form-check .form-check-input { + float: left; + margin-left: -2.25rem +} + +.form-check-input { + width: 1.75rem; + height: 1.75rem; + margin-top: -.125rem; + vertical-align: top; + background-color: #fff; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + border: 1px solid rgba(0, 0, 0, .25); + appearance: none; + color-adjust: exact; + transition: background-color .15s ease-in-out, background-position .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out +} + +@media (prefers-reduced-motion:reduce) { + .form-check-input { + transition: none + } +} + +.form-check-input[type=checkbox] { + border-radius: .45em +} + +.form-check-input[type=radio] { + border-radius: 50% +} + +.form-check-input:active { + filter: brightness(90%) +} + +.form-check-input:focus { + border-color: #b5b5c3; + outline: 0; + box-shadow: none +} + +.form-check-input:checked { + background-color: #009ef7; + border-color: #009ef7 +} + +.form-check-input:checked[type=checkbox] { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11' width='13' height='11' fill='none'%3e%3cpath d='M11.0426 1.02893C11.3258 0.695792 11.8254 0.655283 12.1585 0.938451C12.4917 1.22162 12.5322 1.72124 12.249 2.05437L5.51985 9.97104C5.23224 10.3094 4.72261 10.3451 4.3907 10.05L0.828197 6.88335C0.50141 6.59288 0.471975 6.09249 0.762452 5.7657C1.05293 5.43891 1.55332 5.40948 1.88011 5.69995L4.83765 8.32889L11.0426 1.02893Z' fill='%23FFFFFF'/%3e%3c/svg%3e") +} + +.form-check-input:checked[type=radio] { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23FFFFFF'/%3e%3c/svg%3e") +} + +.form-check-input[type=checkbox]:indeterminate { + background-color: #009ef7; + border-color: #009ef7; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e") +} + +.form-check-input:disabled { + pointer-events: none; + filter: none; + opacity: .5 +} + +.form-check-input:disabled~.form-check-label, +.form-check-input[disabled]~.form-check-label { + opacity: .5 +} + +.form-switch { + padding-left: 3.75rem +} + +.form-switch .form-check-input { + width: 3.25rem; + margin-left: -3.75rem; + 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='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e"); + background-position: left center; + border-radius: 3.25rem; + transition: background-position .15s ease-in-out +} + +@media (prefers-reduced-motion:reduce) { + .form-switch .form-check-input { + transition: none + } +} + +.form-switch .form-check-input:focus { + 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='%23B5B5C3'/%3e%3c/svg%3e") +} + +.form-switch .form-check-input:checked { + background-position: right center; + 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='%23FFFFFF'/%3e%3c/svg%3e") +} + +.form-check-inline { + display: inline-block; + margin-right: 1rem +} + +.btn-check { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none +} + +.btn-check:disabled+.btn, +.btn-check[disabled]+.btn { + pointer-events: none; + filter: none; + opacity: .6 +} + +.form-range { + width: 100%; + height: 1.5rem; + padding: 0; + background-color: transparent; + appearance: none +} + +.form-range:focus { + outline: 0 +} + +.form-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(0, 158, 247, .25) +} + +.form-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(0, 158, 247, .25) +} + +.form-range::-moz-focus-outer { + border: 0 +} + +.form-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -.25rem; + background-color: #009ef7; + border: 0; + border-radius: 1rem; + box-shadow: 0 .1rem .25rem rgba(0, 0, 0, .1); + transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; + appearance: none +} + +@media (prefers-reduced-motion:reduce) { + .form-range::-webkit-slider-thumb { + transition: none + } +} + +.form-range::-webkit-slider-thumb:active { + background-color: #b3e2fd +} + +.form-range::-webkit-slider-runnable-track { + width: 100%; + height: .5rem; + color: transparent; + cursor: pointer; + background-color: #e4e6ef; + border-color: transparent; + border-radius: 0; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075) +} + +.form-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #009ef7; + border: 0; + border-radius: 1rem; + box-shadow: 0 .1rem .25rem rgba(0, 0, 0, .1); + transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; + appearance: none +} + +@media (prefers-reduced-motion:reduce) { + .form-range::-moz-range-thumb { + transition: none + } +} + +.form-range::-moz-range-thumb:active { + background-color: #b3e2fd +} + +.form-range::-moz-range-track { + width: 100%; + height: .5rem; + color: transparent; + cursor: pointer; + background-color: #e4e6ef; + border-color: transparent; + border-radius: 0; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075) +} + +.form-range:disabled { + pointer-events: none +} + +.form-range:disabled::-webkit-slider-thumb { + background-color: #a1a5b7 +} + +.form-range:disabled::-moz-range-thumb { + background-color: #a1a5b7 +} + +.form-floating { + position: relative +} + +.form-floating>.form-control, +.form-floating>.form-select { + height: add(3.75rem, 2px); + line-height: 1.25 +} + +.form-floating>label { + position: absolute; + top: 0; + left: 0; + height: 100%; + padding: 1rem 1rem; + pointer-events: none; + border: 1px solid transparent; + transform-origin: 0 0; + transition: opacity .1s ease-in-out, transform .1s ease-in-out +} + +@media (prefers-reduced-motion:reduce) { + .form-floating>label { + transition: none + } +} + +.form-floating>.form-control { + padding: 1rem 1rem +} + +.form-floating>.form-control::placeholder { + color: transparent +} + +.form-floating>.form-control:focus, +.form-floating>.form-control:not(:placeholder-shown) { + padding-top: 2.15rem; + padding-bottom: .625rem +} + +.form-floating>.form-control:-webkit-autofill { + padding-top: 2.15rem; + padding-bottom: .625rem +} + +.form-floating>.form-select { + padding-top: 2.15rem; + padding-bottom: .625rem +} + +.form-floating>.form-control:focus~label, +.form-floating>.form-control:not(:placeholder-shown)~label, +.form-floating>.form-select~label { + opacity: .65; + transform: scale(.85) translateY(-.5rem) translateX(.15rem) +} + +.form-floating>.form-control:-webkit-autofill~label { + opacity: .65; + transform: scale(.85) translateY(-.5rem) translateX(.15rem) +} + +.input-group { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: stretch; + width: 100% +} + +.input-group>.form-control, +.input-group>.form-select { + position: relative; + flex: 1 1 auto; + width: 1%; + min-width: 0 +} + +.input-group>.form-control:focus, +.input-group>.form-select:focus { + z-index: 3 +} + +.input-group .btn { + position: relative; + z-index: 2 +} + +.input-group .btn:focus { + z-index: 3 +} + +.input-group-text { + display: flex; + align-items: center; + padding: .75rem 1rem; + font-size: 1.1rem; + font-weight: 500; + line-height: 1.5; + color: #3f4254; + text-align: center; + white-space: nowrap; + background-color: #f5f8fa; + border: 1px solid #e4e6ef; + border-radius: .475rem +} + +.input-group-lg>.btn, +.input-group-lg>.form-control, +.input-group-lg>.form-select, +.input-group-lg>.input-group-text { + padding: .825rem 1.5rem; + font-size: 1.15rem; + border-radius: .625rem +} + +.input-group-sm>.btn, +.input-group-sm>.form-control, +.input-group-sm>.form-select, +.input-group-sm>.input-group-text { + padding: .55rem .75rem; + font-size: .925rem; + border-radius: .325rem +} + +.input-group-lg>.form-select, +.input-group-sm>.form-select { + padding-right: 4rem +} + +.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), +.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4), +.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu) { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { + margin-left: -1px; + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: .5rem; + font-size: .925rem; + color: #50cd89 +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: .75rem 1rem; + margin-top: .1rem; + font-size: .925rem; + color: #000; + background-color: #50cd89; + border-radius: .475rem +} + +.is-valid~.valid-feedback, +.is-valid~.valid-tooltip, +.was-validated :valid~.valid-feedback, +.was-validated :valid~.valid-tooltip { + display: block +} + +.form-control.is-valid, +.was-validated .form-control:valid { + border-color: #50cd89; + padding-right: calc(1.5em + 1.5rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2350CD89' 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(.375em + .375rem) center; + background-size: calc(.75em + .75rem) calc(.75em + .75rem) +} + +.form-control.is-valid:focus, +.was-validated .form-control:valid:focus { + border-color: #50cd89; + box-shadow: 0 0 0 .25rem rgba(80, 205, 137, .25) +} + +.was-validated textarea.form-control:valid, +textarea.form-control.is-valid { + padding-right: calc(1.5em + 1.5rem); + background-position: top calc(.375em + .375rem) right calc(.375em + .375rem) +} + +.form-select.is-valid, +.was-validated .form-select:valid { + border-color: #50cd89 +} + +.form-select.is-valid:not([multiple]):not([size]), +.form-select.is-valid:not([multiple])[size="1"], +.was-validated .form-select:valid:not([multiple]):not([size]), +.was-validated .form-select:valid:not([multiple])[size="1"] { + padding-right: 5.5rem; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%237E8299' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2350CD89' 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-position: right 1rem center, center right 3rem; + background-size: 16px 12px, calc(.75em + .75rem) calc(.75em + .75rem) +} + +.form-select.is-valid:focus, +.was-validated .form-select:valid:focus { + border-color: #50cd89; + box-shadow: 0 0 0 .25rem rgba(80, 205, 137, .25) +} + +.form-check-input.is-valid, +.was-validated .form-check-input:valid { + border-color: #50cd89 +} + +.form-check-input.is-valid:checked, +.was-validated .form-check-input:valid:checked { + background-color: #50cd89 +} + +.form-check-input.is-valid:focus, +.was-validated .form-check-input:valid:focus { + box-shadow: 0 0 0 .25rem rgba(80, 205, 137, .25) +} + +.form-check-input.is-valid~.form-check-label, +.was-validated .form-check-input:valid~.form-check-label { + color: #50cd89 +} + +.form-check-inline .form-check-input~.valid-feedback { + margin-left: .5em +} + +.input-group .form-control.is-valid, +.input-group .form-select.is-valid, +.was-validated .input-group .form-control:valid, +.was-validated .input-group .form-select:valid { + z-index: 1 +} + +.input-group .form-control.is-valid:focus, +.input-group .form-select.is-valid:focus, +.was-validated .input-group .form-control:valid:focus, +.was-validated .input-group .form-select:valid:focus { + z-index: 3 +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: .5rem; + font-size: .925rem; + color: #f1416c +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: .75rem 1rem; + margin-top: .1rem; + font-size: .925rem; + color: #000; + background-color: #f1416c; + border-radius: .475rem +} + +.is-invalid~.invalid-feedback, +.is-invalid~.invalid-tooltip, +.was-validated :invalid~.invalid-feedback, +.was-validated :invalid~.invalid-tooltip { + display: block +} + +.form-control.is-invalid, +.was-validated .form-control:invalid { + border-color: #f1416c; + padding-right: calc(1.5em + 1.5rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F1416C'%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='%23F1416C' stroke='none'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right calc(.375em + .375rem) center; + background-size: calc(.75em + .75rem) calc(.75em + .75rem) +} + +.form-control.is-invalid:focus, +.was-validated .form-control:invalid:focus { + border-color: #f1416c; + box-shadow: 0 0 0 .25rem rgba(241, 65, 108, .25) +} + +.was-validated textarea.form-control:invalid, +textarea.form-control.is-invalid { + padding-right: calc(1.5em + 1.5rem); + background-position: top calc(.375em + .375rem) right calc(.375em + .375rem) +} + +.form-select.is-invalid, +.was-validated .form-select:invalid { + border-color: #f1416c +} + +.form-select.is-invalid:not([multiple]):not([size]), +.form-select.is-invalid:not([multiple])[size="1"], +.was-validated .form-select:invalid:not([multiple]):not([size]), +.was-validated .form-select:invalid:not([multiple])[size="1"] { + padding-right: 5.5rem; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%237E8299' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F1416C'%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='%23F1416C' stroke='none'/%3e%3c/svg%3e"); + background-position: right 1rem center, center right 3rem; + background-size: 16px 12px, calc(.75em + .75rem) calc(.75em + .75rem) +} + +.form-select.is-invalid:focus, +.was-validated .form-select:invalid:focus { + border-color: #f1416c; + box-shadow: 0 0 0 .25rem rgba(241, 65, 108, .25) +} + +.form-check-input.is-invalid, +.was-validated .form-check-input:invalid { + border-color: #f1416c +} + +.form-check-input.is-invalid:checked, +.was-validated .form-check-input:invalid:checked { + background-color: #f1416c +} + +.form-check-input.is-invalid:focus, +.was-validated .form-check-input:invalid:focus { + box-shadow: 0 0 0 .25rem rgba(241, 65, 108, .25) +} + +.form-check-input.is-invalid~.form-check-label, +.was-validated .form-check-input:invalid~.form-check-label { + color: #f1416c +} + +.form-check-inline .form-check-input~.invalid-feedback { + margin-left: .5em +} + +.input-group .form-control.is-invalid, +.input-group .form-select.is-invalid, +.was-validated .input-group .form-control:invalid, +.was-validated .input-group .form-select:invalid { + z-index: 2 +} + +.input-group .form-control.is-invalid:focus, +.input-group .form-select.is-invalid:focus, +.was-validated .input-group .form-control:invalid:focus, +.was-validated .input-group .form-select:invalid:focus { + z-index: 3 +} + +.btn { + display: inline-block; + font-weight: 500; + line-height: 1.5; + color: #181c32; + text-align: center; + vertical-align: middle; + cursor: pointer; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: .75rem 1.5rem; + font-size: 1.1rem; + border-radius: .475rem; + 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 (prefers-reduced-motion:reduce) { + .btn { + transition: none + } +} + +.btn:hover { + color: #181c32; + text-decoration: none +} + +.btn-check:focus+.btn, +.btn:focus { + outline: 0; + box-shadow: 0 0 0 .25rem rgba(0, 158, 247, .25) +} + +.btn-check:active+.btn, +.btn-check:checked+.btn, +.btn.active, +.btn:active { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) +} + +.btn-check:active+.btn:focus, +.btn-check:checked+.btn:focus, +.btn.active:focus, +.btn:active:focus { + box-shadow: 0 0 0 .25rem rgba(0, 158, 247, .25), inset 0 3px 5px rgba(0, 0, 0, .125) +} + +.btn.disabled, +.btn:disabled, +fieldset:disabled .btn { + pointer-events: none; + opacity: .6; + box-shadow: none +} + +.btn-white { + color: #000; + background-color: #fff; + border-color: #fff; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075) +} + +.btn-white:hover { + color: #000; + background-color: #fff; + border-color: #fff +} + +.btn-check:focus+.btn-white, +.btn-white:focus { + color: #000; + background-color: #fff; + border-color: #fff; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 .25rem rgba(217, 217, 217, .5) +} + +.btn-check:active+.btn-white, +.btn-check:checked+.btn-white, +.btn-white.active, +.btn-white:active, +.show>.btn-white.dropdown-toggle { + color: #000; + background-color: #fff; + border-color: #fff +} + +.btn-check:active+.btn-white:focus, +.btn-check:checked+.btn-white:focus, +.btn-white.active:focus, +.btn-white:active:focus, +.show>.btn-white.dropdown-toggle:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(217, 217, 217, .5) +} + +.btn-white.disabled, +.btn-white:disabled { + color: #000; + background-color: #fff; + border-color: #fff +} + +.btn-light { + color: #000; + background-color: #f5f8fa; + border-color: #f5f8fa; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075) +} + +.btn-light:hover { + color: #000; + background-color: #f7f9fb; + border-color: #f6f9fb +} + +.btn-check:focus+.btn-light, +.btn-light:focus { + color: #000; + background-color: #f7f9fb; + border-color: #f6f9fb; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 .25rem rgba(208, 211, 213, .5) +} + +.btn-check:active+.btn-light, +.btn-check:checked+.btn-light, +.btn-light.active, +.btn-light:active, +.show>.btn-light.dropdown-toggle { + color: #000; + background-color: #f7f9fb; + border-color: #f6f9fb +} + +.btn-check:active+.btn-light:focus, +.btn-check:checked+.btn-light:focus, +.btn-light.active:focus, +.btn-light:active:focus, +.show>.btn-light.dropdown-toggle:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(208, 211, 213, .5) +} + +.btn-light.disabled, +.btn-light:disabled { + color: #000; + background-color: #f5f8fa; + border-color: #f5f8fa +} + +.btn-primary { + color: #000; + background-color: #009ef7; + border-color: #009ef7; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075) +} + +.btn-primary:hover { + color: #000; + background-color: #26adf8; + border-color: #1aa8f8 +} + +.btn-check:focus+.btn-primary, +.btn-primary:focus { + color: #000; + background-color: #26adf8; + border-color: #1aa8f8; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 .25rem rgba(0, 134, 210, .5) +} + +.btn-check:active+.btn-primary, +.btn-check:checked+.btn-primary, +.btn-primary.active, +.btn-primary:active, +.show>.btn-primary.dropdown-toggle { + color: #000; + background-color: #33b1f9; + border-color: #1aa8f8 +} + +.btn-check:active+.btn-primary:focus, +.btn-check:checked+.btn-primary:focus, +.btn-primary.active:focus, +.btn-primary:active:focus, +.show>.btn-primary.dropdown-toggle:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(0, 134, 210, .5) +} + +.btn-primary.disabled, +.btn-primary:disabled { + color: #000; + background-color: #009ef7; + border-color: #009ef7 +} + +.btn-secondary { + color: #000; + background-color: #e4e6ef; + border-color: #e4e6ef; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075) +} + +.btn-secondary:hover { + color: #000; + background-color: #e8eaf1; + border-color: #e7e9f1 +} + +.btn-check:focus+.btn-secondary, +.btn-secondary:focus { + color: #000; + background-color: #e8eaf1; + border-color: #e7e9f1; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 .25rem rgba(194, 196, 203, .5) +} + +.btn-check:active+.btn-secondary, +.btn-check:checked+.btn-secondary, +.btn-secondary.active, +.btn-secondary:active, +.show>.btn-secondary.dropdown-toggle { + color: #000; + background-color: #e9ebf2; + border-color: #e7e9f1 +} + +.btn-check:active+.btn-secondary:focus, +.btn-check:checked+.btn-secondary:focus, +.btn-secondary.active:focus, +.btn-secondary:active:focus, +.show>.btn-secondary.dropdown-toggle:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(194, 196, 203, .5) +} + +.btn-secondary.disabled, +.btn-secondary:disabled { + color: #000; + background-color: #e4e6ef; + border-color: #e4e6ef +} + +.btn-success { + color: #000; + background-color: #50cd89; + border-color: #50cd89; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075) +} + +.btn-success:hover { + color: #000; + background-color: #6ad59b; + border-color: #62d295 +} + +.btn-check:focus+.btn-success, +.btn-success:focus { + color: #000; + background-color: #6ad59b; + border-color: #62d295; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 .25rem rgba(68, 174, 116, .5) +} + +.btn-check:active+.btn-success, +.btn-check:checked+.btn-success, +.btn-success.active, +.btn-success:active, +.show>.btn-success.dropdown-toggle { + color: #000; + background-color: #73d7a1; + border-color: #62d295 +} + +.btn-check:active+.btn-success:focus, +.btn-check:checked+.btn-success:focus, +.btn-success.active:focus, +.btn-success:active:focus, +.show>.btn-success.dropdown-toggle:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(68, 174, 116, .5) +} + +.btn-success.disabled, +.btn-success:disabled { + color: #000; + background-color: #50cd89; + border-color: #50cd89 +} + +.btn-info { + color: #fff; + background-color: #7239ea; + border-color: #7239ea; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075) +} + +.btn-info:hover { + color: #fff; + background-color: #6130c7; + border-color: #5b2ebb +} + +.btn-check:focus+.btn-info, +.btn-info:focus { + color: #fff; + background-color: #6130c7; + border-color: #5b2ebb; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 .25rem rgba(135, 87, 237, .5) +} + +.btn-check:active+.btn-info, +.btn-check:checked+.btn-info, +.btn-info.active, +.btn-info:active, +.show>.btn-info.dropdown-toggle { + color: #fff; + background-color: #5b2ebb; + border-color: #562bb0 +} + +.btn-check:active+.btn-info:focus, +.btn-check:checked+.btn-info:focus, +.btn-info.active:focus, +.btn-info:active:focus, +.show>.btn-info.dropdown-toggle:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(135, 87, 237, .5) +} + +.btn-info.disabled, +.btn-info:disabled { + color: #fff; + background-color: #7239ea; + border-color: #7239ea +} + +.btn-warning { + color: #000; + background-color: #ffc700; + border-color: #ffc700; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075) +} + +.btn-warning:hover { + color: #000; + background-color: #ffcf26; + border-color: #ffcd1a +} + +.btn-check:focus+.btn-warning, +.btn-warning:focus { + color: #000; + background-color: #ffcf26; + border-color: #ffcd1a; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 .25rem rgba(217, 169, 0, .5) +} + +.btn-check:active+.btn-warning, +.btn-check:checked+.btn-warning, +.btn-warning.active, +.btn-warning:active, +.show>.btn-warning.dropdown-toggle { + color: #000; + background-color: #ffd233; + border-color: #ffcd1a +} + +.btn-check:active+.btn-warning:focus, +.btn-check:checked+.btn-warning:focus, +.btn-warning.active:focus, +.btn-warning:active:focus, +.show>.btn-warning.dropdown-toggle:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(217, 169, 0, .5) +} + +.btn-warning.disabled, +.btn-warning:disabled { + color: #000; + background-color: #ffc700; + border-color: #ffc700 +} + +.btn-danger { + color: #000; + background-color: #f1416c; + border-color: #f1416c; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075) +} + +.btn-danger:hover { + color: #000; + background-color: #f35e82; + border-color: #f2547b +} + +.btn-check:focus+.btn-danger, +.btn-danger:focus { + color: #000; + background-color: #f35e82; + border-color: #f2547b; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 .25rem rgba(205, 55, 92, .5) +} + +.btn-check:active+.btn-danger, +.btn-check:checked+.btn-danger, +.btn-danger.active, +.btn-danger:active, +.show>.btn-danger.dropdown-toggle { + color: #000; + background-color: #f46789; + border-color: #f2547b +} + +.btn-check:active+.btn-danger:focus, +.btn-check:checked+.btn-danger:focus, +.btn-danger.active:focus, +.btn-danger:active:focus, +.show>.btn-danger.dropdown-toggle:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(205, 55, 92, .5) +} + +.btn-danger.disabled, +.btn-danger:disabled { + color: #000; + background-color: #f1416c; + border-color: #f1416c +} + +.btn-dark { + color: #fff; + background-color: #181c32; + border-color: #181c32; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075) +} + +.btn-dark:hover { + color: #fff; + background-color: #14182b; + border-color: #131628 +} + +.btn-check:focus+.btn-dark, +.btn-dark:focus { + color: #fff; + background-color: #14182b; + border-color: #131628; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 .25rem rgba(59, 62, 81, .5) +} + +.btn-check:active+.btn-dark, +.btn-check:checked+.btn-dark, +.btn-dark.active, +.btn-dark:active, +.show>.btn-dark.dropdown-toggle { + color: #fff; + background-color: #131628; + border-color: #121526 +} + +.btn-check:active+.btn-dark:focus, +.btn-check:checked+.btn-dark:focus, +.btn-dark.active:focus, +.btn-dark:active:focus, +.show>.btn-dark.dropdown-toggle:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(59, 62, 81, .5) +} + +.btn-dark.disabled, +.btn-dark:disabled { + color: #fff; + background-color: #181c32; + border-color: #181c32 +} + +.btn-outline-white { + color: #fff; + border-color: #fff +} + +.btn-outline-white:hover { + color: #000; + background-color: #fff; + border-color: #fff +} + +.btn-check:focus+.btn-outline-white, +.btn-outline-white:focus { + box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .5) +} + +.btn-check:active+.btn-outline-white, +.btn-check:checked+.btn-outline-white, +.btn-outline-white.active, +.btn-outline-white.dropdown-toggle.show, +.btn-outline-white:active { + color: #000; + background-color: #fff; + border-color: #fff +} + +.btn-check:active+.btn-outline-white:focus, +.btn-check:checked+.btn-outline-white:focus, +.btn-outline-white.active:focus, +.btn-outline-white.dropdown-toggle.show:focus, +.btn-outline-white:active:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(255, 255, 255, .5) +} + +.btn-outline-white.disabled, +.btn-outline-white:disabled { + color: #fff; + background-color: transparent +} + +.btn-outline-light { + color: #f5f8fa; + border-color: #f5f8fa +} + +.btn-outline-light:hover { + color: #000; + background-color: #f5f8fa; + border-color: #f5f8fa +} + +.btn-check:focus+.btn-outline-light, +.btn-outline-light:focus { + box-shadow: 0 0 0 .25rem rgba(245, 248, 250, .5) +} + +.btn-check:active+.btn-outline-light, +.btn-check:checked+.btn-outline-light, +.btn-outline-light.active, +.btn-outline-light.dropdown-toggle.show, +.btn-outline-light:active { + color: #000; + background-color: #f5f8fa; + border-color: #f5f8fa +} + +.btn-check:active+.btn-outline-light:focus, +.btn-check:checked+.btn-outline-light:focus, +.btn-outline-light.active:focus, +.btn-outline-light.dropdown-toggle.show:focus, +.btn-outline-light:active:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(245, 248, 250, .5) +} + +.btn-outline-light.disabled, +.btn-outline-light:disabled { + color: #f5f8fa; + background-color: transparent +} + +.btn-outline-primary { + color: #009ef7; + border-color: #009ef7 +} + +.btn-outline-primary:hover { + color: #000; + background-color: #009ef7; + border-color: #009ef7 +} + +.btn-check:focus+.btn-outline-primary, +.btn-outline-primary:focus { + box-shadow: 0 0 0 .25rem rgba(0, 158, 247, .5) +} + +.btn-check:active+.btn-outline-primary, +.btn-check:checked+.btn-outline-primary, +.btn-outline-primary.active, +.btn-outline-primary.dropdown-toggle.show, +.btn-outline-primary:active { + color: #000; + background-color: #009ef7; + border-color: #009ef7 +} + +.btn-check:active+.btn-outline-primary:focus, +.btn-check:checked+.btn-outline-primary:focus, +.btn-outline-primary.active:focus, +.btn-outline-primary.dropdown-toggle.show:focus, +.btn-outline-primary:active:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(0, 158, 247, .5) +} + +.btn-outline-primary.disabled, +.btn-outline-primary:disabled { + color: #009ef7; + background-color: transparent +} + +.btn-outline-secondary { + color: #e4e6ef; + border-color: #e4e6ef +} + +.btn-outline-secondary:hover { + color: #000; + background-color: #e4e6ef; + border-color: #e4e6ef +} + +.btn-check:focus+.btn-outline-secondary, +.btn-outline-secondary:focus { + box-shadow: 0 0 0 .25rem rgba(228, 230, 239, .5) +} + +.btn-check:active+.btn-outline-secondary, +.btn-check:checked+.btn-outline-secondary, +.btn-outline-secondary.active, +.btn-outline-secondary.dropdown-toggle.show, +.btn-outline-secondary:active { + color: #000; + background-color: #e4e6ef; + border-color: #e4e6ef +} + +.btn-check:active+.btn-outline-secondary:focus, +.btn-check:checked+.btn-outline-secondary:focus, +.btn-outline-secondary.active:focus, +.btn-outline-secondary.dropdown-toggle.show:focus, +.btn-outline-secondary:active:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(228, 230, 239, .5) +} + +.btn-outline-secondary.disabled, +.btn-outline-secondary:disabled { + color: #e4e6ef; + background-color: transparent +} + +.btn-outline-success { + color: #50cd89; + border-color: #50cd89 +} + +.btn-outline-success:hover { + color: #000; + background-color: #50cd89; + border-color: #50cd89 +} + +.btn-check:focus+.btn-outline-success, +.btn-outline-success:focus { + box-shadow: 0 0 0 .25rem rgba(80, 205, 137, .5) +} + +.btn-check:active+.btn-outline-success, +.btn-check:checked+.btn-outline-success, +.btn-outline-success.active, +.btn-outline-success.dropdown-toggle.show, +.btn-outline-success:active { + color: #000; + background-color: #50cd89; + border-color: #50cd89 +} + +.btn-check:active+.btn-outline-success:focus, +.btn-check:checked+.btn-outline-success:focus, +.btn-outline-success.active:focus, +.btn-outline-success.dropdown-toggle.show:focus, +.btn-outline-success:active:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(80, 205, 137, .5) +} + +.btn-outline-success.disabled, +.btn-outline-success:disabled { + color: #50cd89; + background-color: transparent +} + +.btn-outline-info { + color: #7239ea; + border-color: #7239ea +} + +.btn-outline-info:hover { + color: #fff; + background-color: #7239ea; + border-color: #7239ea +} + +.btn-check:focus+.btn-outline-info, +.btn-outline-info:focus { + box-shadow: 0 0 0 .25rem rgba(114, 57, 234, .5) +} + +.btn-check:active+.btn-outline-info, +.btn-check:checked+.btn-outline-info, +.btn-outline-info.active, +.btn-outline-info.dropdown-toggle.show, +.btn-outline-info:active { + color: #fff; + background-color: #7239ea; + border-color: #7239ea +} + +.btn-check:active+.btn-outline-info:focus, +.btn-check:checked+.btn-outline-info:focus, +.btn-outline-info.active:focus, +.btn-outline-info.dropdown-toggle.show:focus, +.btn-outline-info:active:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(114, 57, 234, .5) +} + +.btn-outline-info.disabled, +.btn-outline-info:disabled { + color: #7239ea; + background-color: transparent +} + +.btn-outline-warning { + color: #ffc700; + border-color: #ffc700 +} + +.btn-outline-warning:hover { + color: #000; + background-color: #ffc700; + border-color: #ffc700 +} + +.btn-check:focus+.btn-outline-warning, +.btn-outline-warning:focus { + box-shadow: 0 0 0 .25rem rgba(255, 199, 0, .5) +} + +.btn-check:active+.btn-outline-warning, +.btn-check:checked+.btn-outline-warning, +.btn-outline-warning.active, +.btn-outline-warning.dropdown-toggle.show, +.btn-outline-warning:active { + color: #000; + background-color: #ffc700; + border-color: #ffc700 +} + +.btn-check:active+.btn-outline-warning:focus, +.btn-check:checked+.btn-outline-warning:focus, +.btn-outline-warning.active:focus, +.btn-outline-warning.dropdown-toggle.show:focus, +.btn-outline-warning:active:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(255, 199, 0, .5) +} + +.btn-outline-warning.disabled, +.btn-outline-warning:disabled { + color: #ffc700; + background-color: transparent +} + +.btn-outline-danger { + color: #f1416c; + border-color: #f1416c +} + +.btn-outline-danger:hover { + color: #000; + background-color: #f1416c; + border-color: #f1416c +} + +.btn-check:focus+.btn-outline-danger, +.btn-outline-danger:focus { + box-shadow: 0 0 0 .25rem rgba(241, 65, 108, .5) +} + +.btn-check:active+.btn-outline-danger, +.btn-check:checked+.btn-outline-danger, +.btn-outline-danger.active, +.btn-outline-danger.dropdown-toggle.show, +.btn-outline-danger:active { + color: #000; + background-color: #f1416c; + border-color: #f1416c +} + +.btn-check:active+.btn-outline-danger:focus, +.btn-check:checked+.btn-outline-danger:focus, +.btn-outline-danger.active:focus, +.btn-outline-danger.dropdown-toggle.show:focus, +.btn-outline-danger:active:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(241, 65, 108, .5) +} + +.btn-outline-danger.disabled, +.btn-outline-danger:disabled { + color: #f1416c; + background-color: transparent +} + +.btn-outline-dark { + color: #181c32; + border-color: #181c32 +} + +.btn-outline-dark:hover { + color: #fff; + background-color: #181c32; + border-color: #181c32 +} + +.btn-check:focus+.btn-outline-dark, +.btn-outline-dark:focus { + box-shadow: 0 0 0 .25rem rgba(24, 28, 50, .5) +} + +.btn-check:active+.btn-outline-dark, +.btn-check:checked+.btn-outline-dark, +.btn-outline-dark.active, +.btn-outline-dark.dropdown-toggle.show, +.btn-outline-dark:active { + color: #fff; + background-color: #181c32; + border-color: #181c32 +} + +.btn-check:active+.btn-outline-dark:focus, +.btn-check:checked+.btn-outline-dark:focus, +.btn-outline-dark.active:focus, +.btn-outline-dark.dropdown-toggle.show:focus, +.btn-outline-dark:active:focus { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125), 0 0 0 .25rem rgba(24, 28, 50, .5) +} + +.btn-outline-dark.disabled, +.btn-outline-dark:disabled { + color: #181c32; + background-color: transparent +} + +.btn-link { + font-weight: 400; + color: #009ef7; + text-decoration: none +} + +.btn-link:hover { + color: #006dab; + text-decoration: underline +} + +.btn-link:focus { + text-decoration: underline +} + +.btn-link.disabled, +.btn-link:disabled { + color: #7e8299 +} + +.btn-group-lg>.btn, +.btn-lg { + padding: .825rem 1.75rem; + font-size: 1.15rem; + border-radius: .625rem +} + +.btn-group-sm>.btn, +.btn-sm { + padding: .55rem 1.25rem; + font-size: .925rem; + border-radius: .325rem +} + +.fade { + transition: opacity .15s linear +} + +@media (prefers-reduced-motion:reduce) { + .fade { + transition: none + } +} + +.fade:not(.show) { + opacity: 0 +} + +.collapse:not(.show) { + display: none +} + +.collapsing { + height: 0; + overflow: hidden; + transition: height .35s ease +} + +@media (prefers-reduced-motion:reduce) { + .collapsing { + transition: none + } +} + +.collapsing.collapse-horizontal { + width: 0; + height: auto; + transition: width .35s ease +} + +@media (prefers-reduced-motion:reduce) { + .collapsing.collapse-horizontal { + transition: none + } +} + +.dropdown, +.dropend, +.dropstart, +.dropup { + 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; + z-index: 1000; + display: none; + min-width: 10rem; + padding: .5rem 0; + margin: 0; + font-size: 1rem; + color: #181c32; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 0 solid rgba(0, 0, 0, .15); + border-radius: .475rem; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15) +} + +.dropdown-menu[data-bs-popper] { + top: 100%; + left: 0; + margin-top: .125rem +} + +.dropdown-menu-start { + --bs-position: start +} + +.dropdown-menu-start[data-bs-popper] { + right: auto; + left: 0 +} + +.dropdown-menu-end { + --bs-position: end +} + +.dropdown-menu-end[data-bs-popper] { + right: 0; + left: auto +} + +@media (min-width:576px) { + .dropdown-menu-sm-start { + --bs-position: start + } + + .dropdown-menu-sm-start[data-bs-popper] { + right: auto; + left: 0 + } + + .dropdown-menu-sm-end { + --bs-position: end + } + + .dropdown-menu-sm-end[data-bs-popper] { + right: 0; + left: auto + } +} + +@media (min-width:768px) { + .dropdown-menu-md-start { + --bs-position: start + } + + .dropdown-menu-md-start[data-bs-popper] { + right: auto; + left: 0 + } + + .dropdown-menu-md-end { + --bs-position: end + } + + .dropdown-menu-md-end[data-bs-popper] { + right: 0; + left: auto + } +} + +@media (min-width:992px) { + .dropdown-menu-lg-start { + --bs-position: start + } + + .dropdown-menu-lg-start[data-bs-popper] { + right: auto; + left: 0 + } + + .dropdown-menu-lg-end { + --bs-position: end + } + + .dropdown-menu-lg-end[data-bs-popper] { + right: 0; + left: auto + } +} + +@media (min-width:1200px) { + .dropdown-menu-xl-start { + --bs-position: start + } + + .dropdown-menu-xl-start[data-bs-popper] { + right: auto; + left: 0 + } + + .dropdown-menu-xl-end { + --bs-position: end + } + + .dropdown-menu-xl-end[data-bs-popper] { + right: 0; + left: auto + } +} + +@media (min-width:1400px) { + .dropdown-menu-xxl-start { + --bs-position: start + } + + .dropdown-menu-xxl-start[data-bs-popper] { + right: auto; + left: 0 + } + + .dropdown-menu-xxl-end { + --bs-position: end + } + + .dropdown-menu-xxl-end[data-bs-popper] { + right: 0; + left: auto + } +} + +.dropup .dropdown-menu[data-bs-popper] { + 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 +} + +.dropend .dropdown-menu[data-bs-popper] { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: .125rem +} + +.dropend .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 +} + +.dropend .dropdown-toggle:empty::after { + margin-left: 0 +} + +.dropend .dropdown-toggle::after { + vertical-align: 0 +} + +.dropstart .dropdown-menu[data-bs-popper] { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: .125rem +} + +.dropstart .dropdown-toggle::after { + display: inline-block; + margin-left: .255em; + vertical-align: .255em; + content: "" +} + +.dropstart .dropdown-toggle::after { + display: none +} + +.dropstart .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 +} + +.dropstart .dropdown-toggle:empty::after { + margin-left: 0 +} + +.dropstart .dropdown-toggle::before { + vertical-align: 0 +} + +.dropdown-divider { + height: 0; + margin: .5rem 0; + overflow: hidden; + border-top: 1px solid rgba(0, 0, 0, .15) +} + +.dropdown-item { + display: block; + width: 100%; + padding: .25rem 1rem; + clear: both; + font-weight: 400; + color: #181c32; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0 +} + +.dropdown-item:focus, +.dropdown-item:hover { + color: #16192d; + text-decoration: none; + background-color: #eff2f5 +} + +.dropdown-item.active, +.dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #009ef7 +} + +.dropdown-item.disabled, +.dropdown-item:disabled { + color: #a1a5b7; + pointer-events: none; + background-color: transparent +} + +.dropdown-menu.show { + display: block +} + +.dropdown-header { + display: block; + padding: .5rem 1rem; + margin-bottom: 0; + font-size: .925rem; + color: #7e8299; + white-space: nowrap +} + +.dropdown-item-text { + display: block; + padding: .25rem 1rem; + color: #181c32 +} + +.dropdown-menu-dark { + color: #e4e6ef; + background-color: #3f4254; + border-color: rgba(0, 0, 0, .15) +} + +.dropdown-menu-dark .dropdown-item { + color: #e4e6ef +} + +.dropdown-menu-dark .dropdown-item:focus, +.dropdown-menu-dark .dropdown-item:hover { + color: #fff; + background-color: rgba(255, 255, 255, .15) +} + +.dropdown-menu-dark .dropdown-item.active, +.dropdown-menu-dark .dropdown-item:active { + color: #fff; + background-color: #009ef7 +} + +.dropdown-menu-dark .dropdown-item.disabled, +.dropdown-menu-dark .dropdown-item:disabled { + color: #a1a5b7 +} + +.dropdown-menu-dark .dropdown-divider { + border-color: rgba(0, 0, 0, .15) +} + +.dropdown-menu-dark .dropdown-item-text { + color: #e4e6ef +} + +.dropdown-menu-dark .dropdown-header { + color: #a1a5b7 +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle +} + +.btn-group-vertical>.btn, +.btn-group>.btn { + position: relative; + flex: 1 1 auto +} + +.btn-group-vertical>.btn-check:checked+.btn, +.btn-group-vertical>.btn-check:focus+.btn, +.btn-group-vertical>.btn.active, +.btn-group-vertical>.btn:active, +.btn-group-vertical>.btn:focus, +.btn-group-vertical>.btn:hover, +.btn-group>.btn-check:checked+.btn, +.btn-group>.btn-check:focus+.btn, +.btn-group>.btn.active, +.btn-group>.btn:active, +.btn-group>.btn:focus, +.btn-group>.btn:hover { + z-index: 1 +} + +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start +} + +.btn-toolbar .input-group { + width: auto +} + +.btn-group>.btn-group:not(:first-child), +.btn-group>.btn:not(:first-child) { + margin-left: -1px +} + +.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:nth-child(n+3), +.btn-group>:not(.btn-check)+.btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.dropdown-toggle-split { + padding-right: 1.125rem; + padding-left: 1.125rem +} + +.dropdown-toggle-split::after, +.dropend .dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after { + margin-left: 0 +} + +.dropstart .dropdown-toggle-split::before { + margin-right: 0 +} + +.btn-group-sm>.btn+.dropdown-toggle-split, +.btn-sm+.dropdown-toggle-split { + padding-right: .9375rem; + padding-left: .9375rem +} + +.btn-group-lg>.btn+.dropdown-toggle-split, +.btn-lg+.dropdown-toggle-split { + padding-right: 1.3125rem; + padding-left: 1.3125rem +} + +.btn-group.show .dropdown-toggle { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) +} + +.btn-group.show .dropdown-toggle.btn-link { + box-shadow: none +} + +.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-group:not(:first-child), +.btn-group-vertical>.btn:not(:first-child) { + margin-top: -1px +} + +.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~.btn { + border-top-left-radius: 0; + border-top-right-radius: 0 +} + +.nav { + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none +} + +.nav-link { + display: block; + padding: .5rem 1rem; + color: #009ef7; + transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out +} + +@media (prefers-reduced-motion:reduce) { + .nav-link { + transition: none + } +} + +.nav-link:focus, +.nav-link:hover { + color: #006dab; + text-decoration: none +} + +.nav-link.disabled { + color: #7e8299; + pointer-events: none; + cursor: default +} + +.nav-tabs { + border-bottom: 1px solid #eff2f5 +} + +.nav-tabs .nav-link { + margin-bottom: -1px; + background: 0 0; + border: 1px solid transparent; + border-top-left-radius: .475rem; + border-top-right-radius: .475rem +} + +.nav-tabs .nav-link:focus, +.nav-tabs .nav-link:hover { + border-color: #eff2f5 #eff2f5 #eff2f5; + isolation: isolate +} + +.nav-tabs .nav-link.disabled { + color: #7e8299; + background-color: transparent; + border-color: transparent +} + +.nav-tabs .nav-item.show .nav-link, +.nav-tabs .nav-link.active { + color: #5e6278; + background-color: #fff; + border-color: #e4e6ef #e4e6ef #fff +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0 +} + +.nav-pills .nav-link { + background: 0 0; + border: 0; + border-radius: .475rem +} + +.nav-pills .nav-link.active, +.nav-pills .show>.nav-link { + color: #fff; + background-color: #009ef7 +} + +.nav-fill .nav-item, +.nav-fill>.nav-link { + flex: 1 1 auto; + text-align: center +} + +.nav-justified .nav-item, +.nav-justified>.nav-link { + flex-basis: 0; + flex-grow: 1; + text-align: center +} + +.nav-fill .nav-item .nav-link, +.nav-justified .nav-item .nav-link { + width: 100% +} + +.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-top: .5rem; + padding-bottom: .5rem +} + +.navbar>.container, +.navbar>.container-fluid, +.navbar>.container-lg, +.navbar>.container-md, +.navbar>.container-sm, +.navbar>.container-xl, +.navbar>.container-xxl { + display: flex; + flex-wrap: inherit; + align-items: center; + justify-content: space-between +} + +.navbar-brand { + padding-top: .44375rem; + padding-bottom: .44375rem; + margin-right: 1rem; + font-size: 1.075rem; + white-space: nowrap +} + +.navbar-brand:focus, +.navbar-brand:hover { + 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 +} + +.navbar-text { + 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.075rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: .475rem; + transition: box-shadow .15s ease-in-out +} + +@media (prefers-reduced-motion:reduce) { + .navbar-toggler { + transition: none + } +} + +.navbar-toggler:hover { + text-decoration: none +} + +.navbar-toggler:focus { + text-decoration: none; + outline: 0; + box-shadow: 0 0 0 .25rem +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + background-repeat: no-repeat; + background-position: center; + background-size: 100% +} + +.navbar-nav-scroll { + max-height: var(--bs-scroll-height, 75vh); + overflow-y: auto +} + +@media (min-width:576px) { + .navbar-expand-sm { + flex-wrap: 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 .navbar-nav-scroll { + overflow: visible + } + + .navbar-expand-sm .navbar-collapse { + display: flex !important; + flex-basis: auto + } + + .navbar-expand-sm .navbar-toggler { + display: none + } + + .navbar-expand-sm .offcanvas-header { + display: none + } + + .navbar-expand-sm .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none + } + + .navbar-expand-sm .offcanvas-bottom, + .navbar-expand-sm .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0 + } + + .navbar-expand-sm .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible + } +} + +@media (min-width:768px) { + .navbar-expand-md { + flex-wrap: 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 .navbar-nav-scroll { + overflow: visible + } + + .navbar-expand-md .navbar-collapse { + display: flex !important; + flex-basis: auto + } + + .navbar-expand-md .navbar-toggler { + display: none + } + + .navbar-expand-md .offcanvas-header { + display: none + } + + .navbar-expand-md .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none + } + + .navbar-expand-md .offcanvas-bottom, + .navbar-expand-md .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0 + } + + .navbar-expand-md .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible + } +} + +@media (min-width:992px) { + .navbar-expand-lg { + flex-wrap: 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 .navbar-nav-scroll { + overflow: visible + } + + .navbar-expand-lg .navbar-collapse { + display: flex !important; + flex-basis: auto + } + + .navbar-expand-lg .navbar-toggler { + display: none + } + + .navbar-expand-lg .offcanvas-header { + display: none + } + + .navbar-expand-lg .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none + } + + .navbar-expand-lg .offcanvas-bottom, + .navbar-expand-lg .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0 + } + + .navbar-expand-lg .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible + } +} + +@media (min-width:1200px) { + .navbar-expand-xl { + flex-wrap: 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 .navbar-nav-scroll { + overflow: visible + } + + .navbar-expand-xl .navbar-collapse { + display: flex !important; + flex-basis: auto + } + + .navbar-expand-xl .navbar-toggler { + display: none + } + + .navbar-expand-xl .offcanvas-header { + display: none + } + + .navbar-expand-xl .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none + } + + .navbar-expand-xl .offcanvas-bottom, + .navbar-expand-xl .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0 + } + + .navbar-expand-xl .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible + } +} + +@media (min-width:1400px) { + .navbar-expand-xxl { + flex-wrap: nowrap; + justify-content: flex-start + } + + .navbar-expand-xxl .navbar-nav { + flex-direction: row + } + + .navbar-expand-xxl .navbar-nav .dropdown-menu { + position: absolute + } + + .navbar-expand-xxl .navbar-nav .nav-link { + padding-right: .5rem; + padding-left: .5rem + } + + .navbar-expand-xxl .navbar-nav-scroll { + overflow: visible + } + + .navbar-expand-xxl .navbar-collapse { + display: flex !important; + flex-basis: auto + } + + .navbar-expand-xxl .navbar-toggler { + display: none + } + + .navbar-expand-xxl .offcanvas-header { + display: none + } + + .navbar-expand-xxl .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none + } + + .navbar-expand-xxl .offcanvas-bottom, + .navbar-expand-xxl .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0 + } + + .navbar-expand-xxl .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible + } +} + +.navbar-expand { + flex-wrap: nowrap; + justify-content: flex-start +} + +.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 .navbar-nav-scroll { + overflow: visible +} + +.navbar-expand .navbar-collapse { + display: flex !important; + flex-basis: auto +} + +.navbar-expand .navbar-toggler { + display: none +} + +.navbar-expand .offcanvas-header { + display: none +} + +.navbar-expand .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none +} + +.navbar-expand .offcanvas-bottom, +.navbar-expand .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0 +} + +.navbar-expand .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible +} + +.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, .55) +} + +.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 .nav-link.active, +.navbar-light .navbar-nav .show>.nav-link { + color: rgba(0, 0, 0, .9) +} + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, .55); + border-color: rgba(0, 0, 0, .1) +} + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%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, .55) +} + +.navbar-light .navbar-text a, +.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, .55) +} + +.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 .nav-link.active, +.navbar-dark .navbar-nav .show>.nav-link { + color: #fff +} + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, .55); + border-color: rgba(255, 255, 255, .1) +} + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%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, .55) +} + +.navbar-dark .navbar-text a, +.navbar-dark .navbar-text a:focus, +.navbar-dark .navbar-text a:hover { + 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 #eff2f5; + border-radius: .625rem; + box-shadow: 0 0 20px 0 rgba(76, 87, 125, .02) +} + +.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: calc(.625rem - 1px); + border-top-right-radius: calc(.625rem - 1px) +} + +.card>.list-group:last-child { + border-bottom-width: 0; + border-bottom-right-radius: calc(.625rem - 1px); + border-bottom-left-radius: calc(.625rem - 1px) +} + +.card>.card-header+.list-group, +.card>.list-group+.card-footer { + border-top: 0 +} + +.card-body { + flex: 1 1 auto; + padding: 1rem 1rem +} + +.card-title { + margin-bottom: .5rem +} + +.card-subtitle { + margin-top: -.25rem; + margin-bottom: 0 +} + +.card-text:last-child { + margin-bottom: 0 +} + +.card-link:hover { + text-decoration: none +} + +.card-link+.card-link { + margin-left: 1rem +} + +.card-header { + padding: .5rem 1rem; + margin-bottom: 0; + background-color: #fff; + border-bottom: 1px solid #eff2f5 +} + +.card-header:first-child { + border-radius: calc(.625rem - 1px) calc(.625rem - 1px) 0 0 +} + +.card-footer { + padding: .5rem 1rem; + background-color: #fff; + border-top: 1px solid #eff2f5 +} + +.card-footer:last-child { + border-radius: 0 0 calc(.625rem - 1px) calc(.625rem - 1px) +} + +.card-header-tabs { + margin-right: -.5rem; + margin-bottom: -.5rem; + margin-left: -.5rem; + border-bottom: 0 +} + +.card-header-pills { + margin-right: -.5rem; + margin-left: -.5rem +} + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1rem; + border-radius: calc(.625rem - 1px) +} + +.card-img, +.card-img-bottom, +.card-img-top { + width: 100% +} + +.card-img, +.card-img-top { + border-top-left-radius: calc(.625rem - 1px); + border-top-right-radius: calc(.625rem - 1px) +} + +.card-img, +.card-img-bottom { + border-bottom-right-radius: calc(.625rem - 1px); + border-bottom-left-radius: calc(.625rem - 1px) +} + +.card-group>.card { + margin-bottom: .75rem +} + +@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-header, + .card-group>.card:not(:last-child) .card-img-top { + border-top-right-radius: 0 + } + + .card-group>.card:not(:last-child) .card-footer, + .card-group>.card:not(:last-child) .card-img-bottom { + 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-header, + .card-group>.card:not(:first-child) .card-img-top { + border-top-left-radius: 0 + } + + .card-group>.card:not(:first-child) .card-footer, + .card-group>.card:not(:first-child) .card-img-bottom { + border-bottom-left-radius: 0 + } +} + +.accordion-button { + position: relative; + display: flex; + align-items: center; + width: 100%; + padding: 1.5rem 1.5rem; + font-size: 1rem; + color: #181c32; + text-align: left; + background-color: #fff; + border: 0; + border-radius: 0; + overflow-anchor: none; + transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease +} + +@media (prefers-reduced-motion:reduce) { + .accordion-button { + transition: none + } +} + +.accordion-button:not(.collapsed) { + color: #009ef7; + background-color: #f5f8fa; + box-shadow: inset 0 -1px 0 #eff2f5 +} + +.accordion-button:not(.collapsed)::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); + transform: rotate(-180deg) +} + +.accordion-button::after { + flex-shrink: 0; + width: 1.15rem; + height: 1.15rem; + margin-left: auto; + content: ""; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23181C32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-size: 1.15rem; + transition: transform .2s ease-in-out +} + +@media (prefers-reduced-motion:reduce) { + .accordion-button::after { + transition: none + } +} + +.accordion-button:hover { + z-index: 2 +} + +.accordion-button:focus { + z-index: 3; + border-color: #eff2f5; + outline: 0; + box-shadow: none +} + +.accordion-header { + margin-bottom: 0 +} + +.accordion-item { + background-color: #fff; + border: 1px solid #eff2f5 +} + +.accordion-item:first-of-type { + border-top-left-radius: .475rem; + border-top-right-radius: .475rem +} + +.accordion-item:first-of-type .accordion-button { + border-top-left-radius: calc(.475rem - 1px); + border-top-right-radius: calc(.475rem - 1px) +} + +.accordion-item:not(:first-of-type) { + border-top: 0 +} + +.accordion-item:last-of-type { + border-bottom-right-radius: .475rem; + border-bottom-left-radius: .475rem +} + +.accordion-item:last-of-type .accordion-button.collapsed { + border-bottom-right-radius: calc(.475rem - 1px); + border-bottom-left-radius: calc(.475rem - 1px) +} + +.accordion-item:last-of-type .accordion-collapse { + border-bottom-right-radius: .475rem; + border-bottom-left-radius: .475rem +} + +.accordion-body { + padding: 1.5rem 1.5rem +} + +.accordion-flush .accordion-collapse { + border-width: 0 +} + +.accordion-flush .accordion-item { + border-right: 0; + border-left: 0; + border-radius: 0 +} + +.accordion-flush .accordion-item:first-child { + border-top: 0 +} + +.accordion-flush .accordion-item:last-child { + border-bottom: 0 +} + +.accordion-flush .accordion-item .accordion-button { + border-radius: 0 +} + +.breadcrumb { + display: flex; + flex-wrap: wrap; + padding: 0 0; + margin-bottom: 1rem; + list-style: none +} + +.breadcrumb-item+.breadcrumb-item { + padding-left: .5rem +} + +.breadcrumb-item+.breadcrumb-item::before { + float: left; + padding-right: .5rem; + color: #7e8299; + content: var(--bs-breadcrumb-divider, "/") +} + +.breadcrumb-item.active { + color: #009ef7 +} + +.pagination { + display: flex; + padding-left: 0; + list-style: none +} + +.page-link { + position: relative; + display: block; + color: #5e6278; + background-color: transparent; + border: 0 solid transparent; + 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 (prefers-reduced-motion:reduce) { + .page-link { + transition: none + } +} + +.page-link:hover { + z-index: 2; + color: #009ef7; + text-decoration: none; + background-color: #f1faff; + border-color: transparent +} + +.page-link:focus { + z-index: 3; + color: #009ef7; + background-color: #f1faff; + outline: 0; + box-shadow: none +} + +.page-item:not(:first-child) .page-link { + margin-left: 0 +} + +.page-item.active .page-link { + z-index: 3; + color: #fff; + background-color: #009ef7; + border-color: transparent +} + +.page-item.disabled .page-link { + color: #b5b5c3; + pointer-events: none; + background-color: transparent; + border-color: transparent +} + +.page-link { + padding: .375rem .75rem +} + +.page-item:first-child .page-link { + border-top-left-radius: .475rem; + border-bottom-left-radius: .475rem +} + +.page-item:last-child .page-link { + border-top-right-radius: .475rem; + border-bottom-right-radius: .475rem +} + +.pagination-lg .page-link { + padding: .75rem 1.5rem; + font-size: 1.075rem +} + +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: .625rem; + border-bottom-left-radius: .625rem +} + +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: .625rem; + border-bottom-right-radius: .625rem +} + +.pagination-sm .page-link { + padding: .25rem .5rem; + font-size: .925rem +} + +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: .325rem; + border-bottom-left-radius: .325rem +} + +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: .325rem; + border-bottom-right-radius: .325rem +} + +.badge { + display: inline-block; + padding: .325rem .5rem; + font-size: .85rem; + font-weight: 600; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .325rem +} + +.badge:empty { + display: none +} + +.btn .badge { + position: relative; + top: -1px +} + +.alert { + position: relative; + padding: 1rem 1rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: .475rem +} + +.alert-heading { + color: inherit +} + +.alert-link { + font-weight: 500 +} + +.alert-dismissible { + padding-right: 3rem +} + +.alert-dismissible .btn-close { + position: absolute; + top: 0; + right: 0; + z-index: 2; + padding: 1.25rem 1rem +} + +.alert-white { + color: #666; + background-color: #fff; + border-color: #fff +} + +.alert-white .alert-link { + color: #525252 +} + +.alert-light { + color: #626364; + background-color: #fdfefe; + border-color: #fcfdfe +} + +.alert-light .alert-link { + color: #4e4f50 +} + +.alert-primary { + color: #005f94; + background-color: #ccecfd; + border-color: #b3e2fd +} + +.alert-primary .alert-link { + color: #004c76 +} + +.alert-secondary { + color: #5b5c60; + background-color: #fafafc; + border-color: #f7f8fa +} + +.alert-secondary .alert-link { + color: #494a4d +} + +.alert-success { + color: #205237; + background-color: #dcf5e7; + border-color: #cbf0dc +} + +.alert-success .alert-link { + color: #1a422c +} + +.alert-info { + color: #44228c; + background-color: #e3d7fb; + border-color: #d5c4f9 +} + +.alert-info .alert-link { + color: #361b70 +} + +.alert-warning { + color: #665000; + background-color: #fff4cc; + border-color: #ffeeb3 +} + +.alert-warning .alert-link { + color: #524000 +} + +.alert-danger { + color: #912741; + background-color: #fcd9e2; + border-color: #fbc6d3 +} + +.alert-danger .alert-link { + color: #741f34 +} + +.alert-dark { + color: #0e111e; + background-color: #d1d2d6; + border-color: #babbc2 +} + +.alert-dark .alert-link { + color: #0b0e18 +} + +@keyframes progress-bar-stripes { + 0% { + background-position-x: 1rem + } +} + +.progress { + display: flex; + height: 1rem; + overflow: hidden; + font-size: .75rem; + background-color: #f5f8fa; + border-radius: 6px; + box-shadow: none +} + +.progress-bar { + display: flex; + flex-direction: column; + justify-content: center; + overflow: hidden; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #009ef7; + transition: width .6s ease +} + +@media (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 { + animation: 1s linear infinite progress-bar-stripes +} + +@media (prefers-reduced-motion:reduce) { + .progress-bar-animated { + animation: none + } +} + +.list-group { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + border-radius: .475rem +} + +.list-group-numbered { + list-style-type: none; + counter-reset: section +} + +.list-group-numbered>li::before { + content: counters(section, ".") ". "; + counter-increment: section +} + +.list-group-item-action { + width: 100%; + color: #5e6278; + text-align: inherit +} + +.list-group-item-action:focus, +.list-group-item-action:hover { + z-index: 1; + color: #5e6278; + text-decoration: none; + background-color: #f5f8fa +} + +.list-group-item-action:active { + color: #181c32; + background-color: #eff2f5 +} + +.list-group-item { + position: relative; + display: block; + padding: .5rem 1rem; + color: #181c32; + background-color: #fff; + border: 1px solid rgba(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: #7e8299; + pointer-events: none; + background-color: #fff +} + +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #009ef7; + border-color: #009ef7 +} + +.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: .475rem; + border-top-right-radius: 0 +} + +.list-group-horizontal>.list-group-item:last-child { + border-top-right-radius: .475rem; + 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: .475rem; + border-top-right-radius: 0 + } + + .list-group-horizontal-sm>.list-group-item:last-child { + border-top-right-radius: .475rem; + 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: .475rem; + border-top-right-radius: 0 + } + + .list-group-horizontal-md>.list-group-item:last-child { + border-top-right-radius: .475rem; + 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: .475rem; + border-top-right-radius: 0 + } + + .list-group-horizontal-lg>.list-group-item:last-child { + border-top-right-radius: .475rem; + 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: .475rem; + border-top-right-radius: 0 + } + + .list-group-horizontal-xl>.list-group-item:last-child { + border-top-right-radius: .475rem; + 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 + } +} + +@media (min-width:1400px) { + .list-group-horizontal-xxl { + flex-direction: row + } + + .list-group-horizontal-xxl>.list-group-item:first-child { + border-bottom-left-radius: .475rem; + border-top-right-radius: 0 + } + + .list-group-horizontal-xxl>.list-group-item:last-child { + border-top-right-radius: .475rem; + border-bottom-left-radius: 0 + } + + .list-group-horizontal-xxl>.list-group-item.active { + margin-top: 0 + } + + .list-group-horizontal-xxl>.list-group-item+.list-group-item { + border-top-width: 1px; + border-left-width: 0 + } + + .list-group-horizontal-xxl>.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-white { + color: #666; + background-color: #fff +} + +.list-group-item-white.list-group-item-action:focus, +.list-group-item-white.list-group-item-action:hover { + color: #666; + background-color: #e6e6e6 +} + +.list-group-item-white.list-group-item-action.active { + color: #fff; + background-color: #666; + border-color: #666 +} + +.list-group-item-light { + color: #626364; + background-color: #fdfefe +} + +.list-group-item-light.list-group-item-action:focus, +.list-group-item-light.list-group-item-action:hover { + color: #626364; + background-color: #e4e5e5 +} + +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #626364; + border-color: #626364 +} + +.list-group-item-primary { + color: #005f94; + background-color: #ccecfd +} + +.list-group-item-primary.list-group-item-action:focus, +.list-group-item-primary.list-group-item-action:hover { + color: #005f94; + background-color: #b8d4e4 +} + +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #005f94; + border-color: #005f94 +} + +.list-group-item-secondary { + color: #5b5c60; + background-color: #fafafc +} + +.list-group-item-secondary.list-group-item-action:focus, +.list-group-item-secondary.list-group-item-action:hover { + color: #5b5c60; + background-color: #e1e1e3 +} + +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #5b5c60; + border-color: #5b5c60 +} + +.list-group-item-success { + color: #205237; + background-color: #dcf5e7 +} + +.list-group-item-success.list-group-item-action:focus, +.list-group-item-success.list-group-item-action:hover { + color: #205237; + background-color: #c6ddd0 +} + +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #205237; + border-color: #205237 +} + +.list-group-item-info { + color: #44228c; + background-color: #e3d7fb +} + +.list-group-item-info.list-group-item-action:focus, +.list-group-item-info.list-group-item-action:hover { + color: #44228c; + background-color: #ccc2e2 +} + +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #44228c; + border-color: #44228c +} + +.list-group-item-warning { + color: #665000; + background-color: #fff4cc +} + +.list-group-item-warning.list-group-item-action:focus, +.list-group-item-warning.list-group-item-action:hover { + color: #665000; + background-color: #e6dcb8 +} + +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #665000; + border-color: #665000 +} + +.list-group-item-danger { + color: #912741; + background-color: #fcd9e2 +} + +.list-group-item-danger.list-group-item-action:focus, +.list-group-item-danger.list-group-item-action:hover { + color: #912741; + background-color: #e3c3cb +} + +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #912741; + border-color: #912741 +} + +.list-group-item-dark { + color: #0e111e; + background-color: #d1d2d6 +} + +.list-group-item-dark.list-group-item-action:focus, +.list-group-item-dark.list-group-item-action:hover { + color: #0e111e; + background-color: #bcbdc1 +} + +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #0e111e; + border-color: #0e111e +} + +.btn-close { + box-sizing: content-box; + width: 1em; + height: 1em; + padding: .25em .25em; + color: #000; + background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat; + border: 0; + border-radius: .475rem; + opacity: .5 +} + +.btn-close:hover { + color: #000; + text-decoration: none; + opacity: .75 +} + +.btn-close:focus { + outline: 0; + box-shadow: 0 0 0 .25rem rgba(0, 158, 247, .25); + opacity: 1 +} + +.btn-close.disabled, +.btn-close:disabled { + pointer-events: none; + user-select: none; + opacity: .25 +} + +.btn-close-white { + filter: invert(1) grayscale(100%) brightness(200%) +} + +.toast { + width: 350px; + max-width: 100%; + font-size: .875rem; + pointer-events: auto; + background-color: rgba(255, 255, 255, .85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, .1); + box-shadow: 0 .5rem 1.5rem .5rem rgba(0, 0, 0, .075); + border-radius: .475rem +} + +.toast.showing { + opacity: 0 +} + +.toast:not(.show) { + display: none +} + +.toast-container { + width: max-content; + max-width: 100%; + pointer-events: none +} + +.toast-container>:not(:last-child) { + margin-bottom: 1.5rem +} + +.toast-header { + display: flex; + align-items: center; + padding: .5rem .75rem; + color: #7e8299; + background-color: rgba(255, 255, 255, .85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, .05); + border-top-left-radius: calc(.475rem - 1px); + border-top-right-radius: calc(.475rem - 1px) +} + +.toast-header .btn-close { + margin-right: -.375rem; + margin-left: .75rem +} + +.toast-body { + padding: .75rem; + word-wrap: break-word +} + +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1055; + display: none; + width: 100%; + height: 100%; + overflow-x: hidden; + overflow-y: auto; + outline: 0 +} + +.modal-dialog { + position: relative; + width: auto; + margin: .5rem; + pointer-events: none +} + +.modal.fade .modal-dialog { + transition: transform .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 { + height: calc(100% - 1rem) +} + +.modal-dialog-scrollable .modal-content { + max-height: 100%; + overflow: hidden +} + +.modal-dialog-scrollable .modal-body { + overflow-y: auto +} + +.modal-dialog-centered { + display: flex; + align-items: center; + min-height: calc(100% - 1rem) +} + +.modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 0 solid rgba(0, 0, 0, .2); + border-radius: .475rem; + box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1); + outline: 0 +} + +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + width: 100vw; + height: 100vh; + background-color: #000 +} + +.modal-backdrop.fade { + opacity: 0 +} + +.modal-backdrop.show { + opacity: .3 +} + +.modal-header { + display: flex; + flex-shrink: 0; + align-items: center; + justify-content: space-between; + padding: 1.75rem 1.75rem; + border-bottom: 1px solid #eff2f5; + border-top-left-radius: .475rem; + border-top-right-radius: .475rem +} + +.modal-header .btn-close { + padding: .875rem .875rem; + margin: -.875rem -.875rem -.875rem auto +} + +.modal-title { + margin-bottom: 0; + line-height: 1.5 +} + +.modal-body { + position: relative; + flex: 1 1 auto; + padding: 1.75rem +} + +.modal-footer { + display: flex; + flex-wrap: wrap; + flex-shrink: 0; + align-items: center; + justify-content: flex-end; + padding: 1.5rem; + border-top: 1px solid #eff2f5; + border-bottom-right-radius: .475rem; + border-bottom-left-radius: .475rem +} + +.modal-footer>* { + margin: .25rem +} + +@media (min-width:576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto + } + + .modal-dialog-scrollable { + height: calc(100% - 3.5rem) + } + + .modal-dialog-centered { + min-height: calc(100% - 3.5rem) + } + + .modal-content { + box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1) + } + + .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 + } +} + +.modal-fullscreen { + width: 100vw; + max-width: none; + height: 100%; + margin: 0 +} + +.modal-fullscreen .modal-content { + height: 100%; + border: 0; + border-radius: 0 +} + +.modal-fullscreen .modal-header { + border-radius: 0 +} + +.modal-fullscreen .modal-body { + overflow-y: auto +} + +.modal-fullscreen .modal-footer { + border-radius: 0 +} + +@media (max-width:575.98px) { + .modal-fullscreen-sm-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0 + } + + .modal-fullscreen-sm-down .modal-content { + height: 100%; + border: 0; + border-radius: 0 + } + + .modal-fullscreen-sm-down .modal-header { + border-radius: 0 + } + + .modal-fullscreen-sm-down .modal-body { + overflow-y: auto + } + + .modal-fullscreen-sm-down .modal-footer { + border-radius: 0 + } +} + +@media (max-width:767.98px) { + .modal-fullscreen-md-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0 + } + + .modal-fullscreen-md-down .modal-content { + height: 100%; + border: 0; + border-radius: 0 + } + + .modal-fullscreen-md-down .modal-header { + border-radius: 0 + } + + .modal-fullscreen-md-down .modal-body { + overflow-y: auto + } + + .modal-fullscreen-md-down .modal-footer { + border-radius: 0 + } +} + +@media (max-width:991.98px) { + .modal-fullscreen-lg-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0 + } + + .modal-fullscreen-lg-down .modal-content { + height: 100%; + border: 0; + border-radius: 0 + } + + .modal-fullscreen-lg-down .modal-header { + border-radius: 0 + } + + .modal-fullscreen-lg-down .modal-body { + overflow-y: auto + } + + .modal-fullscreen-lg-down .modal-footer { + border-radius: 0 + } +} + +@media (max-width:1199.98px) { + .modal-fullscreen-xl-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0 + } + + .modal-fullscreen-xl-down .modal-content { + height: 100%; + border: 0; + border-radius: 0 + } + + .modal-fullscreen-xl-down .modal-header { + border-radius: 0 + } + + .modal-fullscreen-xl-down .modal-body { + overflow-y: auto + } + + .modal-fullscreen-xl-down .modal-footer { + border-radius: 0 + } +} + +@media (max-width:1399.98px) { + .modal-fullscreen-xxl-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0 + } + + .modal-fullscreen-xxl-down .modal-content { + height: 100%; + border: 0; + border-radius: 0 + } + + .modal-fullscreen-xxl-down .modal-header { + border-radius: 0 + } + + .modal-fullscreen-xxl-down .modal-body { + overflow-y: auto + } + + .modal-fullscreen-xxl-down .modal-footer { + border-radius: 0 + } +} + +.tooltip { + position: absolute; + z-index: 1080; + display: block; + margin: 0; + font-family: var(--bs-font-sans-serif); + 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: .925rem; + word-wrap: break-word; + opacity: 0 +} + +.tooltip.show { + opacity: 1 +} + +.tooltip .tooltip-arrow { + position: absolute; + display: block; + width: .8rem; + height: .4rem +} + +.tooltip .tooltip-arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid +} + +.bs-tooltip-auto[data-popper-placement^=top], +.bs-tooltip-top { + padding: .4rem 0 +} + +.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow, +.bs-tooltip-top .tooltip-arrow { + bottom: 0 +} + +.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, +.bs-tooltip-top .tooltip-arrow::before { + top: -1px; + border-width: .4rem .4rem 0; + border-top-color: #fff +} + +.bs-tooltip-auto[data-popper-placement^=right], +.bs-tooltip-end { + padding: 0 .4rem +} + +.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow, +.bs-tooltip-end .tooltip-arrow { + left: 0; + width: .4rem; + height: .8rem +} + +.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before, +.bs-tooltip-end .tooltip-arrow::before { + right: -1px; + border-width: .4rem .4rem .4rem 0; + border-right-color: #fff +} + +.bs-tooltip-auto[data-popper-placement^=bottom], +.bs-tooltip-bottom { + padding: .4rem 0 +} + +.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow, +.bs-tooltip-bottom .tooltip-arrow { + top: 0 +} + +.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before, +.bs-tooltip-bottom .tooltip-arrow::before { + bottom: -1px; + border-width: 0 .4rem .4rem; + border-bottom-color: #fff +} + +.bs-tooltip-auto[data-popper-placement^=left], +.bs-tooltip-start { + padding: 0 .4rem +} + +.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow, +.bs-tooltip-start .tooltip-arrow { + right: 0; + width: .4rem; + height: .8rem +} + +.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, +.bs-tooltip-start .tooltip-arrow::before { + left: -1px; + border-width: .4rem 0 .4rem .4rem; + border-left-color: #fff +} + +.tooltip-inner { + max-width: 200px; + padding: .75rem 1rem; + color: #3f4254; + text-align: center; + background-color: #fff; + border-radius: .475rem +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1070; + display: block; + max-width: 276px; + font-family: var(--bs-font-sans-serif); + 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: 1rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #fff; + border-radius: .475rem; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15) +} + +.popover .popover-arrow { + position: absolute; + display: block; + width: 1rem; + height: .5rem +} + +.popover .popover-arrow::after, +.popover .popover-arrow::before { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid +} + +.bs-popover-auto[data-popper-placement^=top]>.popover-arrow, +.bs-popover-top>.popover-arrow { + bottom: calc(-.5rem - 1px) +} + +.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before, +.bs-popover-top>.popover-arrow::before { + bottom: 0; + border-width: .5rem .5rem 0; + border-top-color: #fff +} + +.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after, +.bs-popover-top>.popover-arrow::after { + bottom: 1px; + border-width: .5rem .5rem 0; + border-top-color: #fff +} + +.bs-popover-auto[data-popper-placement^=right]>.popover-arrow, +.bs-popover-end>.popover-arrow { + left: calc(-.5rem - 1px); + width: .5rem; + height: 1rem +} + +.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before, +.bs-popover-end>.popover-arrow::before { + left: 0; + border-width: .5rem .5rem .5rem 0; + border-right-color: #fff +} + +.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after, +.bs-popover-end>.popover-arrow::after { + left: 1px; + border-width: .5rem .5rem .5rem 0; + border-right-color: #fff +} + +.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow, +.bs-popover-bottom>.popover-arrow { + top: calc(-.5rem - 1px) +} + +.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before, +.bs-popover-bottom>.popover-arrow::before { + top: 0; + border-width: 0 .5rem .5rem .5rem; + border-bottom-color: #fff +} + +.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after, +.bs-popover-bottom>.popover-arrow::after { + top: 1px; + border-width: 0 .5rem .5rem .5rem; + border-bottom-color: #fff +} + +.bs-popover-auto[data-popper-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 #fff +} + +.bs-popover-auto[data-popper-placement^=left]>.popover-arrow, +.bs-popover-start>.popover-arrow { + right: calc(-.5rem - 1px); + width: .5rem; + height: 1rem +} + +.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before, +.bs-popover-start>.popover-arrow::before { + right: 0; + border-width: .5rem 0 .5rem .5rem; + border-left-color: #fff +} + +.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after, +.bs-popover-start>.popover-arrow::after { + right: 1px; + border-width: .5rem 0 .5rem .5rem; + border-left-color: #fff +} + +.popover-header { + padding: 1rem 1.25rem; + margin-bottom: 0; + font-size: 1rem; + color: #3f4254; + background-color: #fff; + border-bottom: 1px solid #fff; + border-top-left-radius: calc(.475rem - 1px); + border-top-right-radius: calc(.475rem - 1px) +} + +.popover-header:empty { + display: none +} + +.popover-body { + padding: 1.25rem 1.25rem; + color: #3f4254 +} + +.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-next, +.carousel-item-prev, +.carousel-item.active { + display: block +} + +.active.carousel-item-end, +.carousel-item-next:not(.carousel-item-start) { + transform: translateX(100%) +} + +.active.carousel-item-start, +.carousel-item-prev:not(.carousel-item-end) { + transform: translateX(-100%) +} + +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + transform: none +} + +.carousel-fade .carousel-item-next.carousel-item-start, +.carousel-fade .carousel-item-prev.carousel-item-end, +.carousel-fade .carousel-item.active { + z-index: 1; + opacity: 1 +} + +.carousel-fade .active.carousel-item-end, +.carousel-fade .active.carousel-item-start { + z-index: 0; + opacity: 0; + transition: opacity 0s .6s +} + +@media (prefers-reduced-motion:reduce) { + + .carousel-fade .active.carousel-item-end, + .carousel-fade .active.carousel-item-start { + transition: none + } +} + +.carousel-control-next, +.carousel-control-prev { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: flex; + align-items: center; + justify-content: center; + width: 15%; + padding: 0; + color: #fff; + text-align: center; + background: 0 0; + border: 0; + opacity: .5; + transition: opacity .15s ease +} + +@media (prefers-reduced-motion:reduce) { + + .carousel-control-next, + .carousel-control-prev { + transition: none + } +} + +.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: 2rem; + height: 2rem; + background-repeat: no-repeat; + background-position: 50%; + background-size: 100% 100% +} + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") +} + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") +} + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 2; + display: flex; + justify-content: center; + padding: 0; + margin-right: 15%; + margin-bottom: 1rem; + margin-left: 15%; + list-style: none +} + +.carousel-indicators [data-bs-target] { + box-sizing: content-box; + flex: 0 1 auto; + width: 30px; + height: 3px; + padding: 0; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + transition: opacity .6s ease +} + +@media (prefers-reduced-motion:reduce) { + .carousel-indicators [data-bs-target] { + transition: none + } +} + +.carousel-indicators .active { + opacity: 1 +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 1.25rem; + left: 15%; + padding-top: 1.25rem; + padding-bottom: 1.25rem; + color: #fff; + text-align: center +} + +.carousel-dark .carousel-control-next-icon, +.carousel-dark .carousel-control-prev-icon { + filter: invert(1) grayscale(100) +} + +.carousel-dark .carousel-indicators [data-bs-target] { + background-color: #000 +} + +.carousel-dark .carousel-caption { + color: #000 +} + +@keyframes spinner-border { + to { + transform: rotate(360deg) + } +} + +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: -.125em; + border: .185em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + animation: .65s linear infinite spinner-border +} + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: .145em +} + +@keyframes spinner-grow { + 0% { + transform: scale(0) + } + + 50% { + opacity: 1; + transform: none + } +} + +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: -.125em; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + animation: .65s linear infinite spinner-grow +} + +.spinner-grow-sm { + width: 1rem; + height: 1rem +} + +@media (prefers-reduced-motion:reduce) { + + .spinner-border, + .spinner-grow { + animation-duration: 1.3s + } +} + +.clearfix::after { + display: block; + clear: both; + content: "" +} + +.link-white { + color: #fff +} + +.link-white:focus, +.link-white:hover { + color: #fff +} + +.link-light { + color: #f5f8fa +} + +.link-light:focus, +.link-light:hover { + color: #f7f9fb +} + +.link-primary { + color: #009ef7 +} + +.link-primary:focus, +.link-primary:hover { + color: #33b1f9 +} + +.link-secondary { + color: #e4e6ef +} + +.link-secondary:focus, +.link-secondary:hover { + color: #e9ebf2 +} + +.link-success { + color: #50cd89 +} + +.link-success:focus, +.link-success:hover { + color: #73d7a1 +} + +.link-info { + color: #7239ea +} + +.link-info:focus, +.link-info:hover { + color: #5b2ebb +} + +.link-warning { + color: #ffc700 +} + +.link-warning:focus, +.link-warning:hover { + color: #ffd233 +} + +.link-danger { + color: #f1416c +} + +.link-danger:focus, +.link-danger:hover { + color: #f46789 +} + +.link-dark { + color: #181c32 +} + +.link-dark:focus, +.link-dark:hover { + color: #131628 +} + +.ratio { + position: relative; + width: 100% +} + +.ratio::before { + display: block; + padding-top: var(--bs-aspect-ratio); + content: "" +} + +.ratio>* { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100% +} + +.ratio-1x1 { + --bs-aspect-ratio: 100% +} + +.ratio-4x3 { + --bs-aspect-ratio: 75% +} + +.ratio-16x9 { + --bs-aspect-ratio: 56.25% +} + +.ratio-21x9 { + --bs-aspect-ratio: 42.8571428571% +} + +.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 +} + +.sticky-top { + position: sticky; + top: 0; + z-index: 1020 +} + +@media (min-width:576px) { + .sticky-sm-top { + position: sticky; + top: 0; + z-index: 1020 + } +} + +@media (min-width:768px) { + .sticky-md-top { + position: sticky; + top: 0; + z-index: 1020 + } +} + +@media (min-width:992px) { + .sticky-lg-top { + position: sticky; + top: 0; + z-index: 1020 + } +} + +@media (min-width:1200px) { + .sticky-xl-top { + position: sticky; + top: 0; + z-index: 1020 + } +} + +@media (min-width:1400px) { + .sticky-xxl-top { + position: sticky; + top: 0; + z-index: 1020 + } +} + +.hstack { + display: flex; + flex-direction: row; + align-items: center; + align-self: stretch +} + +.vstack { + display: flex; + flex: 1 1 auto; + flex-direction: column; + align-self: stretch +} + +.visually-hidden, +.visually-hidden-focusable:not(:focus):not(:focus-within) { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border: 0 !important +} + +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + content: "" +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap +} + +.vr { + display: inline-block; + align-self: stretch; + width: 1px; + min-height: 1em; + background-color: currentColor; + opacity: .25 +} + +.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 +} + +.float-start { + float: left !important +} + +.float-end { + float: right !important +} + +.float-none { + float: none !important +} + +.opacity-0 { + opacity: 0 !important +} + +.opacity-5 { + opacity: .05 !important +} + +.opacity-10 { + opacity: .1 !important +} + +.opacity-15 { + opacity: .15 !important +} + +.opacity-20 { + opacity: .2 !important +} + +.opacity-25 { + opacity: .25 !important +} + +.opacity-50 { + opacity: .5 !important +} + +.opacity-75 { + opacity: .75 !important +} + +.opacity-100 { + opacity: 1 !important +} + +.overflow-auto { + overflow: auto !important +} + +.overflow-hidden { + overflow: hidden !important +} + +.overflow-visible { + overflow: visible !important +} + +.overflow-scroll { + overflow: scroll !important +} + +.d-inline { + display: inline !important +} + +.d-inline-block { + display: inline-block !important +} + +.d-block { + display: block !important +} + +.d-grid { + display: grid !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 +} + +.d-none { + display: none !important +} + +.shadow { + box-shadow: 0 .5rem 1.5rem .5rem rgba(0, 0, 0, .075) !important +} + +.shadow-sm { + box-shadow: 0 .1rem 1rem .25rem rgba(0, 0, 0, .05) !important +} + +.shadow-lg { + box-shadow: 0 1rem 2rem 1rem rgba(0, 0, 0, .1) !important +} + +.shadow-none { + box-shadow: 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: sticky !important +} + +.top-0 { + top: 0 !important +} + +.top-25 { + top: 25% !important +} + +.top-50 { + top: 50% !important +} + +.top-75 { + top: 75% !important +} + +.top-100 { + top: 100% !important +} + +.bottom-0 { + bottom: 0 !important +} + +.bottom-25 { + bottom: 25% !important +} + +.bottom-50 { + bottom: 50% !important +} + +.bottom-75 { + bottom: 75% !important +} + +.bottom-100 { + bottom: 100% !important +} + +.start-0 { + left: 0 !important +} + +.start-25 { + left: 25% !important +} + +.start-50 { + left: 50% !important +} + +.start-75 { + left: 75% !important +} + +.start-100 { + left: 100% !important +} + +.end-0 { + right: 0 !important +} + +.end-25 { + right: 25% !important +} + +.end-50 { + right: 50% !important +} + +.end-75 { + right: 75% !important +} + +.end-100 { + right: 100% !important +} + +.translate-middle { + transform: translate(-50%, -50%) !important +} + +.translate-middle-x { + transform: translateX(-50%) !important +} + +.translate-middle-y { + transform: translateY(-50%) !important +} + +.border { + border: 1px solid #eff2f5 !important +} + +.border-0 { + border: 0 !important +} + +.border-top { + border-top: 1px solid #eff2f5 !important +} + +.border-top-0 { + border-top: 0 !important +} + +.border-end { + border-right: 1px solid #eff2f5 !important +} + +.border-end-0 { + border-right: 0 !important +} + +.border-bottom { + border-bottom: 1px solid #eff2f5 !important +} + +.border-bottom-0 { + border-bottom: 0 !important +} + +.border-start { + border-left: 1px solid #eff2f5 !important +} + +.border-start-0 { + border-left: 0 !important +} + +.border-white { + border-color: #fff !important +} + +.border-light { + border-color: #f5f8fa !important +} + +.border-primary { + border-color: #009ef7 !important +} + +.border-secondary { + border-color: #e4e6ef !important +} + +.border-success { + border-color: #50cd89 !important +} + +.border-info { + border-color: #7239ea !important +} + +.border-warning { + border-color: #ffc700 !important +} + +.border-danger { + border-color: #f1416c !important +} + +.border-dark { + border-color: #181c32 !important +} + +.border-0 { + border-width: 0 !important +} + +.border-1 { + border-width: 1px !important +} + +.border-2 { + border-width: 2px !important +} + +.border-3 { + border-width: 3px !important +} + +.border-4 { + border-width: 4px !important +} + +.border-5 { + border-width: 5px !important +} + +.w-unset { + width: unset !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 +} + +.w-1px { + width: 1px !important +} + +.w-2px { + width: 2px !important +} + +.w-3px { + width: 3px !important +} + +.w-4px { + width: 4px !important +} + +.w-5px { + width: 5px !important +} + +.w-6px { + width: 6px !important +} + +.w-7px { + width: 7px !important +} + +.w-8px { + width: 8px !important +} + +.w-9px { + width: 9px !important +} + +.w-10px { + width: 10px !important +} + +.w-15px { + width: 15px !important +} + +.w-20px { + width: 20px !important +} + +.w-25px { + width: 25px !important +} + +.w-30px { + width: 30px !important +} + +.w-35px { + width: 35px !important +} + +.w-40px { + width: 40px !important +} + +.w-45px { + width: 45px !important +} + +.w-50px { + width: 50px !important +} + +.w-55px { + width: 55px !important +} + +.w-60px { + width: 60px !important +} + +.w-65px { + width: 65px !important +} + +.w-70px { + width: 70px !important +} + +.w-75px { + width: 75px !important +} + +.w-80px { + width: 80px !important +} + +.w-85px { + width: 85px !important +} + +.w-90px { + width: 90px !important +} + +.w-95px { + width: 95px !important +} + +.w-100px { + width: 100px !important +} + +.w-125px { + width: 125px !important +} + +.w-150px { + width: 150px !important +} + +.w-175px { + width: 175px !important +} + +.w-200px { + width: 200px !important +} + +.w-225px { + width: 225px !important +} + +.w-250px { + width: 250px !important +} + +.w-275px { + width: 275px !important +} + +.w-300px { + width: 300px !important +} + +.w-325px { + width: 325px !important +} + +.w-350px { + width: 350px !important +} + +.w-375px { + width: 375px !important +} + +.w-400px { + width: 400px !important +} + +.w-425px { + width: 425px !important +} + +.w-450px { + width: 450px !important +} + +.w-475px { + width: 475px !important +} + +.w-500px { + width: 500px !important +} + +.w-550px { + width: 550px !important +} + +.w-600px { + width: 600px !important +} + +.w-650px { + width: 650px !important +} + +.w-700px { + width: 700px !important +} + +.w-750px { + width: 750px !important +} + +.w-800px { + width: 800px !important +} + +.w-850px { + width: 850px !important +} + +.w-900px { + width: 900px !important +} + +.w-950px { + width: 950px !important +} + +.w-1000px { + width: 1000px !important +} + +.mw-unset { + max-width: unset !important +} + +.mw-25 { + max-width: 25% !important +} + +.mw-50 { + max-width: 50% !important +} + +.mw-75 { + max-width: 75% !important +} + +.mw-100 { + max-width: 100% !important +} + +.mw-auto { + max-width: auto !important +} + +.mw-1px { + max-width: 1px !important +} + +.mw-2px { + max-width: 2px !important +} + +.mw-3px { + max-width: 3px !important +} + +.mw-4px { + max-width: 4px !important +} + +.mw-5px { + max-width: 5px !important +} + +.mw-6px { + max-width: 6px !important +} + +.mw-7px { + max-width: 7px !important +} + +.mw-8px { + max-width: 8px !important +} + +.mw-9px { + max-width: 9px !important +} + +.mw-10px { + max-width: 10px !important +} + +.mw-15px { + max-width: 15px !important +} + +.mw-20px { + max-width: 20px !important +} + +.mw-25px { + max-width: 25px !important +} + +.mw-30px { + max-width: 30px !important +} + +.mw-35px { + max-width: 35px !important +} + +.mw-40px { + max-width: 40px !important +} + +.mw-45px { + max-width: 45px !important +} + +.mw-50px { + max-width: 50px !important +} + +.mw-55px { + max-width: 55px !important +} + +.mw-60px { + max-width: 60px !important +} + +.mw-65px { + max-width: 65px !important +} + +.mw-70px { + max-width: 70px !important +} + +.mw-75px { + max-width: 75px !important +} + +.mw-80px { + max-width: 80px !important +} + +.mw-85px { + max-width: 85px !important +} + +.mw-90px { + max-width: 90px !important +} + +.mw-95px { + max-width: 95px !important +} + +.mw-100px { + max-width: 100px !important +} + +.mw-125px { + max-width: 125px !important +} + +.mw-150px { + max-width: 150px !important +} + +.mw-175px { + max-width: 175px !important +} + +.mw-200px { + max-width: 200px !important +} + +.mw-225px { + max-width: 225px !important +} + +.mw-250px { + max-width: 250px !important +} + +.mw-275px { + max-width: 275px !important +} + +.mw-300px { + max-width: 300px !important +} + +.mw-325px { + max-width: 325px !important +} + +.mw-350px { + max-width: 350px !important +} + +.mw-375px { + max-width: 375px !important +} + +.mw-400px { + max-width: 400px !important +} + +.mw-425px { + max-width: 425px !important +} + +.mw-450px { + max-width: 450px !important +} + +.mw-475px { + max-width: 475px !important +} + +.mw-500px { + max-width: 500px !important +} + +.mw-550px { + max-width: 550px !important +} + +.mw-600px { + max-width: 600px !important +} + +.mw-650px { + max-width: 650px !important +} + +.mw-700px { + max-width: 700px !important +} + +.mw-750px { + max-width: 750px !important +} + +.mw-800px { + max-width: 800px !important +} + +.mw-850px { + max-width: 850px !important +} + +.mw-900px { + max-width: 900px !important +} + +.mw-950px { + max-width: 950px !important +} + +.mw-1000px { + max-width: 1000px !important +} + +.vw-100 { + width: 100vw !important +} + +.min-vw-100 { + min-width: 100vw !important +} + +.h-unset { + height: unset !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 +} + +.h-1px { + height: 1px !important +} + +.h-2px { + height: 2px !important +} + +.h-3px { + height: 3px !important +} + +.h-4px { + height: 4px !important +} + +.h-5px { + height: 5px !important +} + +.h-6px { + height: 6px !important +} + +.h-7px { + height: 7px !important +} + +.h-8px { + height: 8px !important +} + +.h-9px { + height: 9px !important +} + +.h-10px { + height: 10px !important +} + +.h-15px { + height: 15px !important +} + +.h-20px { + height: 20px !important +} + +.h-25px { + height: 25px !important +} + +.h-30px { + height: 30px !important +} + +.h-35px { + height: 35px !important +} + +.h-40px { + height: 40px !important +} + +.h-45px { + height: 45px !important +} + +.h-50px { + height: 50px !important +} + +.h-55px { + height: 55px !important +} + +.h-60px { + height: 60px !important +} + +.h-65px { + height: 65px !important +} + +.h-70px { + height: 70px !important +} + +.h-75px { + height: 75px !important +} + +.h-80px { + height: 80px !important +} + +.h-85px { + height: 85px !important +} + +.h-90px { + height: 90px !important +} + +.h-95px { + height: 95px !important +} + +.h-100px { + height: 100px !important +} + +.h-125px { + height: 125px !important +} + +.h-150px { + height: 150px !important +} + +.h-175px { + height: 175px !important +} + +.h-200px { + height: 200px !important +} + +.h-225px { + height: 225px !important +} + +.h-250px { + height: 250px !important +} + +.h-275px { + height: 275px !important +} + +.h-300px { + height: 300px !important +} + +.h-325px { + height: 325px !important +} + +.h-350px { + height: 350px !important +} + +.h-375px { + height: 375px !important +} + +.h-400px { + height: 400px !important +} + +.h-425px { + height: 425px !important +} + +.h-450px { + height: 450px !important +} + +.h-475px { + height: 475px !important +} + +.h-500px { + height: 500px !important +} + +.h-550px { + height: 550px !important +} + +.h-600px { + height: 600px !important +} + +.h-650px { + height: 650px !important +} + +.h-700px { + height: 700px !important +} + +.h-750px { + height: 750px !important +} + +.h-800px { + height: 800px !important +} + +.h-850px { + height: 850px !important +} + +.h-900px { + height: 900px !important +} + +.h-950px { + height: 950px !important +} + +.h-1000px { + height: 1000px !important +} + +.mh-unset { + max-height: unset !important +} + +.mh-25 { + max-height: 25% !important +} + +.mh-50 { + max-height: 50% !important +} + +.mh-75 { + max-height: 75% !important +} + +.mh-100 { + max-height: 100% !important +} + +.mh-auto { + max-height: auto !important +} + +.mh-1px { + max-height: 1px !important +} + +.mh-2px { + max-height: 2px !important +} + +.mh-3px { + max-height: 3px !important +} + +.mh-4px { + max-height: 4px !important +} + +.mh-5px { + max-height: 5px !important +} + +.mh-6px { + max-height: 6px !important +} + +.mh-7px { + max-height: 7px !important +} + +.mh-8px { + max-height: 8px !important +} + +.mh-9px { + max-height: 9px !important +} + +.mh-10px { + max-height: 10px !important +} + +.mh-15px { + max-height: 15px !important +} + +.mh-20px { + max-height: 20px !important +} + +.mh-25px { + max-height: 25px !important +} + +.mh-30px { + max-height: 30px !important +} + +.mh-35px { + max-height: 35px !important +} + +.mh-40px { + max-height: 40px !important +} + +.mh-45px { + max-height: 45px !important +} + +.mh-50px { + max-height: 50px !important +} + +.mh-55px { + max-height: 55px !important +} + +.mh-60px { + max-height: 60px !important +} + +.mh-65px { + max-height: 65px !important +} + +.mh-70px { + max-height: 70px !important +} + +.mh-75px { + max-height: 75px !important +} + +.mh-80px { + max-height: 80px !important +} + +.mh-85px { + max-height: 85px !important +} + +.mh-90px { + max-height: 90px !important +} + +.mh-95px { + max-height: 95px !important +} + +.mh-100px { + max-height: 100px !important +} + +.mh-125px { + max-height: 125px !important +} + +.mh-150px { + max-height: 150px !important +} + +.mh-175px { + max-height: 175px !important +} + +.mh-200px { + max-height: 200px !important +} + +.mh-225px { + max-height: 225px !important +} + +.mh-250px { + max-height: 250px !important +} + +.mh-275px { + max-height: 275px !important +} + +.mh-300px { + max-height: 300px !important +} + +.mh-325px { + max-height: 325px !important +} + +.mh-350px { + max-height: 350px !important +} + +.mh-375px { + max-height: 375px !important +} + +.mh-400px { + max-height: 400px !important +} + +.mh-425px { + max-height: 425px !important +} + +.mh-450px { + max-height: 450px !important +} + +.mh-475px { + max-height: 475px !important +} + +.mh-500px { + max-height: 500px !important +} + +.mh-550px { + max-height: 550px !important +} + +.mh-600px { + max-height: 600px !important +} + +.mh-650px { + max-height: 650px !important +} + +.mh-700px { + max-height: 700px !important +} + +.mh-750px { + max-height: 750px !important +} + +.mh-800px { + max-height: 800px !important +} + +.mh-850px { + max-height: 850px !important +} + +.mh-900px { + max-height: 900px !important +} + +.mh-950px { + max-height: 950px !important +} + +.mh-1000px { + max-height: 1000px !important +} + +.vh-100 { + height: 100vh !important +} + +.min-vh-100 { + min-height: 100vh !important +} + +.flex-fill { + flex: 1 1 auto !important +} + +.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-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 +} + +.flex-wrap { + flex-wrap: wrap !important +} + +.flex-nowrap { + flex-wrap: nowrap !important +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important +} + +.gap-0 { + gap: 0 !important +} + +.gap-1 { + gap: .25rem !important +} + +.gap-2 { + gap: .5rem !important +} + +.gap-3 { + gap: .75rem !important +} + +.gap-4 { + gap: 1rem !important +} + +.gap-5 { + gap: 1.25rem !important +} + +.gap-6 { + gap: 1.5rem !important +} + +.gap-7 { + gap: 1.75rem !important +} + +.gap-8 { + gap: 2rem !important +} + +.gap-9 { + gap: 2.25rem !important +} + +.gap-10 { + gap: 2.5rem !important +} + +.gap-11 { + gap: 2.75rem !important +} + +.gap-12 { + gap: 3rem !important +} + +.gap-13 { + gap: 3.25rem !important +} + +.gap-14 { + gap: 3.5rem !important +} + +.gap-15 { + gap: 3.75rem !important +} + +.gap-16 { + gap: 4rem !important +} + +.gap-17 { + gap: 4.25rem !important +} + +.gap-18 { + gap: 4.5rem !important +} + +.gap-19 { + gap: 4.75rem !important +} + +.gap-20 { + gap: 5rem !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 +} + +.justify-content-evenly { + justify-content: space-evenly !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 +} + +.order-first { + order: -1 !important +} + +.order-0 { + order: 0 !important +} + +.order-1 { + order: 1 !important +} + +.order-2 { + order: 2 !important +} + +.order-3 { + order: 3 !important +} + +.order-4 { + order: 4 !important +} + +.order-5 { + order: 5 !important +} + +.order-last { + order: 6 !important +} + +.m-0 { + margin: 0 !important +} + +.m-1 { + margin: .25rem !important +} + +.m-2 { + margin: .5rem !important +} + +.m-3 { + margin: .75rem !important +} + +.m-4 { + margin: 1rem !important +} + +.m-5 { + margin: 1.25rem !important +} + +.m-6 { + margin: 1.5rem !important +} + +.m-7 { + margin: 1.75rem !important +} + +.m-8 { + margin: 2rem !important +} + +.m-9 { + margin: 2.25rem !important +} + +.m-10 { + margin: 2.5rem !important +} + +.m-11 { + margin: 2.75rem !important +} + +.m-12 { + margin: 3rem !important +} + +.m-13 { + margin: 3.25rem !important +} + +.m-14 { + margin: 3.5rem !important +} + +.m-15 { + margin: 3.75rem !important +} + +.m-16 { + margin: 4rem !important +} + +.m-17 { + margin: 4.25rem !important +} + +.m-18 { + margin: 4.5rem !important +} + +.m-19 { + margin: 4.75rem !important +} + +.m-20 { + margin: 5rem !important +} + +.m-auto { + margin: auto !important +} + +.mx-0 { + margin-right: 0 !important; + margin-left: 0 !important +} + +.mx-1 { + margin-right: .25rem !important; + margin-left: .25rem !important +} + +.mx-2 { + margin-right: .5rem !important; + margin-left: .5rem !important +} + +.mx-3 { + margin-right: .75rem !important; + margin-left: .75rem !important +} + +.mx-4 { + margin-right: 1rem !important; + margin-left: 1rem !important +} + +.mx-5 { + margin-right: 1.25rem !important; + margin-left: 1.25rem !important +} + +.mx-6 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important +} + +.mx-7 { + margin-right: 1.75rem !important; + margin-left: 1.75rem !important +} + +.mx-8 { + margin-right: 2rem !important; + margin-left: 2rem !important +} + +.mx-9 { + margin-right: 2.25rem !important; + margin-left: 2.25rem !important +} + +.mx-10 { + margin-right: 2.5rem !important; + margin-left: 2.5rem !important +} + +.mx-11 { + margin-right: 2.75rem !important; + margin-left: 2.75rem !important +} + +.mx-12 { + margin-right: 3rem !important; + margin-left: 3rem !important +} + +.mx-13 { + margin-right: 3.25rem !important; + margin-left: 3.25rem !important +} + +.mx-14 { + margin-right: 3.5rem !important; + margin-left: 3.5rem !important +} + +.mx-15 { + margin-right: 3.75rem !important; + margin-left: 3.75rem !important +} + +.mx-16 { + margin-right: 4rem !important; + margin-left: 4rem !important +} + +.mx-17 { + margin-right: 4.25rem !important; + margin-left: 4.25rem !important +} + +.mx-18 { + margin-right: 4.5rem !important; + margin-left: 4.5rem !important +} + +.mx-19 { + margin-right: 4.75rem !important; + margin-left: 4.75rem !important +} + +.mx-20 { + margin-right: 5rem !important; + margin-left: 5rem !important +} + +.mx-auto { + margin-right: auto !important; + margin-left: auto !important +} + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important +} + +.my-1 { + margin-top: .25rem !important; + margin-bottom: .25rem !important +} + +.my-2 { + margin-top: .5rem !important; + margin-bottom: .5rem !important +} + +.my-3 { + margin-top: .75rem !important; + margin-bottom: .75rem !important +} + +.my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important +} + +.my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important +} + +.my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important +} + +.my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important +} + +.my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important +} + +.my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important +} + +.my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important +} + +.my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important +} + +.my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important +} + +.my-13 { + margin-top: 3.25rem !important; + margin-bottom: 3.25rem !important +} + +.my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important +} + +.my-15 { + margin-top: 3.75rem !important; + margin-bottom: 3.75rem !important +} + +.my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important +} + +.my-17 { + margin-top: 4.25rem !important; + margin-bottom: 4.25rem !important +} + +.my-18 { + margin-top: 4.5rem !important; + margin-bottom: 4.5rem !important +} + +.my-19 { + margin-top: 4.75rem !important; + margin-bottom: 4.75rem !important +} + +.my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important +} + +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important +} + +.mt-0 { + margin-top: 0 !important +} + +.mt-1 { + margin-top: .25rem !important +} + +.mt-2 { + margin-top: .5rem !important +} + +.mt-3 { + margin-top: .75rem !important +} + +.mt-4 { + margin-top: 1rem !important +} + +.mt-5 { + margin-top: 1.25rem !important +} + +.mt-6 { + margin-top: 1.5rem !important +} + +.mt-7 { + margin-top: 1.75rem !important +} + +.mt-8 { + margin-top: 2rem !important +} + +.mt-9 { + margin-top: 2.25rem !important +} + +.mt-10 { + margin-top: 2.5rem !important +} + +.mt-11 { + margin-top: 2.75rem !important +} + +.mt-12 { + margin-top: 3rem !important +} + +.mt-13 { + margin-top: 3.25rem !important +} + +.mt-14 { + margin-top: 3.5rem !important +} + +.mt-15 { + margin-top: 3.75rem !important +} + +.mt-16 { + margin-top: 4rem !important +} + +.mt-17 { + margin-top: 4.25rem !important +} + +.mt-18 { + margin-top: 4.5rem !important +} + +.mt-19 { + margin-top: 4.75rem !important +} + +.mt-20 { + margin-top: 5rem !important +} + +.mt-auto { + margin-top: auto !important +} + +.me-0 { + margin-right: 0 !important +} + +.me-1 { + margin-right: .25rem !important +} + +.me-2 { + margin-right: .5rem !important +} + +.me-3 { + margin-right: .75rem !important +} + +.me-4 { + margin-right: 1rem !important +} + +.me-5 { + margin-right: 1.25rem !important +} + +.me-6 { + margin-right: 1.5rem !important +} + +.me-7 { + margin-right: 1.75rem !important +} + +.me-8 { + margin-right: 2rem !important +} + +.me-9 { + margin-right: 2.25rem !important +} + +.me-10 { + margin-right: 2.5rem !important +} + +.me-11 { + margin-right: 2.75rem !important +} + +.me-12 { + margin-right: 3rem !important +} + +.me-13 { + margin-right: 3.25rem !important +} + +.me-14 { + margin-right: 3.5rem !important +} + +.me-15 { + margin-right: 3.75rem !important +} + +.me-16 { + margin-right: 4rem !important +} + +.me-17 { + margin-right: 4.25rem !important +} + +.me-18 { + margin-right: 4.5rem !important +} + +.me-19 { + margin-right: 4.75rem !important +} + +.me-20 { + margin-right: 5rem !important +} + +.me-auto { + margin-right: auto !important +} + +.mb-0 { + margin-bottom: 0 !important +} + +.mb-1 { + margin-bottom: .25rem !important +} + +.mb-2 { + margin-bottom: .5rem !important +} + +.mb-3 { + margin-bottom: .75rem !important +} + +.mb-4 { + margin-bottom: 1rem !important +} + +.mb-5 { + margin-bottom: 1.25rem !important +} + +.mb-6 { + margin-bottom: 1.5rem !important +} + +.mb-7 { + margin-bottom: 1.75rem !important +} + +.mb-8 { + margin-bottom: 2rem !important +} + +.mb-9 { + margin-bottom: 2.25rem !important +} + +.mb-10 { + margin-bottom: 2.5rem !important +} + +.mb-11 { + margin-bottom: 2.75rem !important +} + +.mb-12 { + margin-bottom: 3rem !important +} + +.mb-13 { + margin-bottom: 3.25rem !important +} + +.mb-14 { + margin-bottom: 3.5rem !important +} + +.mb-15 { + margin-bottom: 3.75rem !important +} + +.mb-16 { + margin-bottom: 4rem !important +} + +.mb-17 { + margin-bottom: 4.25rem !important +} + +.mb-18 { + margin-bottom: 4.5rem !important +} + +.mb-19 { + margin-bottom: 4.75rem !important +} + +.mb-20 { + margin-bottom: 5rem !important +} + +.mb-auto { + margin-bottom: auto !important +} + +.ms-0 { + margin-left: 0 !important +} + +.ms-1 { + margin-left: .25rem !important +} + +.ms-2 { + margin-left: .5rem !important +} + +.ms-3 { + margin-left: .75rem !important +} + +.ms-4 { + margin-left: 1rem !important +} + +.ms-5 { + margin-left: 1.25rem !important +} + +.ms-6 { + margin-left: 1.5rem !important +} + +.ms-7 { + margin-left: 1.75rem !important +} + +.ms-8 { + margin-left: 2rem !important +} + +.ms-9 { + margin-left: 2.25rem !important +} + +.ms-10 { + margin-left: 2.5rem !important +} + +.ms-11 { + margin-left: 2.75rem !important +} + +.ms-12 { + margin-left: 3rem !important +} + +.ms-13 { + margin-left: 3.25rem !important +} + +.ms-14 { + margin-left: 3.5rem !important +} + +.ms-15 { + margin-left: 3.75rem !important +} + +.ms-16 { + margin-left: 4rem !important +} + +.ms-17 { + margin-left: 4.25rem !important +} + +.ms-18 { + margin-left: 4.5rem !important +} + +.ms-19 { + margin-left: 4.75rem !important +} + +.ms-20 { + margin-left: 5rem !important +} + +.ms-auto { + margin-left: auto !important +} + +.m-n1 { + margin: -.25rem !important +} + +.m-n2 { + margin: -.5rem !important +} + +.m-n3 { + margin: -.75rem !important +} + +.m-n4 { + margin: -1rem !important +} + +.m-n5 { + margin: -1.25rem !important +} + +.m-n6 { + margin: -1.5rem !important +} + +.m-n7 { + margin: -1.75rem !important +} + +.m-n8 { + margin: -2rem !important +} + +.m-n9 { + margin: -2.25rem !important +} + +.m-n10 { + margin: -2.5rem !important +} + +.m-n11 { + margin: -2.75rem !important +} + +.m-n12 { + margin: -3rem !important +} + +.m-n13 { + margin: -3.25rem !important +} + +.m-n14 { + margin: -3.5rem !important +} + +.m-n15 { + margin: -3.75rem !important +} + +.m-n16 { + margin: -4rem !important +} + +.m-n17 { + margin: -4.25rem !important +} + +.m-n18 { + margin: -4.5rem !important +} + +.m-n19 { + margin: -4.75rem !important +} + +.m-n20 { + margin: -5rem !important +} + +.mx-n1 { + margin-right: -.25rem !important; + margin-left: -.25rem !important +} + +.mx-n2 { + margin-right: -.5rem !important; + margin-left: -.5rem !important +} + +.mx-n3 { + margin-right: -.75rem !important; + margin-left: -.75rem !important +} + +.mx-n4 { + margin-right: -1rem !important; + margin-left: -1rem !important +} + +.mx-n5 { + margin-right: -1.25rem !important; + margin-left: -1.25rem !important +} + +.mx-n6 { + margin-right: -1.5rem !important; + margin-left: -1.5rem !important +} + +.mx-n7 { + margin-right: -1.75rem !important; + margin-left: -1.75rem !important +} + +.mx-n8 { + margin-right: -2rem !important; + margin-left: -2rem !important +} + +.mx-n9 { + margin-right: -2.25rem !important; + margin-left: -2.25rem !important +} + +.mx-n10 { + margin-right: -2.5rem !important; + margin-left: -2.5rem !important +} + +.mx-n11 { + margin-right: -2.75rem !important; + margin-left: -2.75rem !important +} + +.mx-n12 { + margin-right: -3rem !important; + margin-left: -3rem !important +} + +.mx-n13 { + margin-right: -3.25rem !important; + margin-left: -3.25rem !important +} + +.mx-n14 { + margin-right: -3.5rem !important; + margin-left: -3.5rem !important +} + +.mx-n15 { + margin-right: -3.75rem !important; + margin-left: -3.75rem !important +} + +.mx-n16 { + margin-right: -4rem !important; + margin-left: -4rem !important +} + +.mx-n17 { + margin-right: -4.25rem !important; + margin-left: -4.25rem !important +} + +.mx-n18 { + margin-right: -4.5rem !important; + margin-left: -4.5rem !important +} + +.mx-n19 { + margin-right: -4.75rem !important; + margin-left: -4.75rem !important +} + +.mx-n20 { + margin-right: -5rem !important; + margin-left: -5rem !important +} + +.my-n1 { + margin-top: -.25rem !important; + margin-bottom: -.25rem !important +} + +.my-n2 { + margin-top: -.5rem !important; + margin-bottom: -.5rem !important +} + +.my-n3 { + margin-top: -.75rem !important; + margin-bottom: -.75rem !important +} + +.my-n4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important +} + +.my-n5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important +} + +.my-n6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important +} + +.my-n7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important +} + +.my-n8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important +} + +.my-n9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important +} + +.my-n10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important +} + +.my-n11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important +} + +.my-n12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important +} + +.my-n13 { + margin-top: -3.25rem !important; + margin-bottom: -3.25rem !important +} + +.my-n14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important +} + +.my-n15 { + margin-top: -3.75rem !important; + margin-bottom: -3.75rem !important +} + +.my-n16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important +} + +.my-n17 { + margin-top: -4.25rem !important; + margin-bottom: -4.25rem !important +} + +.my-n18 { + margin-top: -4.5rem !important; + margin-bottom: -4.5rem !important +} + +.my-n19 { + margin-top: -4.75rem !important; + margin-bottom: -4.75rem !important +} + +.my-n20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important +} + +.mt-n1 { + margin-top: -.25rem !important +} + +.mt-n2 { + margin-top: -.5rem !important +} + +.mt-n3 { + margin-top: -.75rem !important +} + +.mt-n4 { + margin-top: -1rem !important +} + +.mt-n5 { + margin-top: -1.25rem !important +} + +.mt-n6 { + margin-top: -1.5rem !important +} + +.mt-n7 { + margin-top: -1.75rem !important +} + +.mt-n8 { + margin-top: -2rem !important +} + +.mt-n9 { + margin-top: -2.25rem !important +} + +.mt-n10 { + margin-top: -2.5rem !important +} + +.mt-n11 { + margin-top: -2.75rem !important +} + +.mt-n12 { + margin-top: -3rem !important +} + +.mt-n13 { + margin-top: -3.25rem !important +} + +.mt-n14 { + margin-top: -3.5rem !important +} + +.mt-n15 { + margin-top: -3.75rem !important +} + +.mt-n16 { + margin-top: -4rem !important +} + +.mt-n17 { + margin-top: -4.25rem !important +} + +.mt-n18 { + margin-top: -4.5rem !important +} + +.mt-n19 { + margin-top: -4.75rem !important +} + +.mt-n20 { + margin-top: -5rem !important +} + +.me-n1 { + margin-right: -.25rem !important +} + +.me-n2 { + margin-right: -.5rem !important +} + +.me-n3 { + margin-right: -.75rem !important +} + +.me-n4 { + margin-right: -1rem !important +} + +.me-n5 { + margin-right: -1.25rem !important +} + +.me-n6 { + margin-right: -1.5rem !important +} + +.me-n7 { + margin-right: -1.75rem !important +} + +.me-n8 { + margin-right: -2rem !important +} + +.me-n9 { + margin-right: -2.25rem !important +} + +.me-n10 { + margin-right: -2.5rem !important +} + +.me-n11 { + margin-right: -2.75rem !important +} + +.me-n12 { + margin-right: -3rem !important +} + +.me-n13 { + margin-right: -3.25rem !important +} + +.me-n14 { + margin-right: -3.5rem !important +} + +.me-n15 { + margin-right: -3.75rem !important +} + +.me-n16 { + margin-right: -4rem !important +} + +.me-n17 { + margin-right: -4.25rem !important +} + +.me-n18 { + margin-right: -4.5rem !important +} + +.me-n19 { + margin-right: -4.75rem !important +} + +.me-n20 { + margin-right: -5rem !important +} + +.mb-n1 { + margin-bottom: -.25rem !important +} + +.mb-n2 { + margin-bottom: -.5rem !important +} + +.mb-n3 { + margin-bottom: -.75rem !important +} + +.mb-n4 { + margin-bottom: -1rem !important +} + +.mb-n5 { + margin-bottom: -1.25rem !important +} + +.mb-n6 { + margin-bottom: -1.5rem !important +} + +.mb-n7 { + margin-bottom: -1.75rem !important +} + +.mb-n8 { + margin-bottom: -2rem !important +} + +.mb-n9 { + margin-bottom: -2.25rem !important +} + +.mb-n10 { + margin-bottom: -2.5rem !important +} + +.mb-n11 { + margin-bottom: -2.75rem !important +} + +.mb-n12 { + margin-bottom: -3rem !important +} + +.mb-n13 { + margin-bottom: -3.25rem !important +} + +.mb-n14 { + margin-bottom: -3.5rem !important +} + +.mb-n15 { + margin-bottom: -3.75rem !important +} + +.mb-n16 { + margin-bottom: -4rem !important +} + +.mb-n17 { + margin-bottom: -4.25rem !important +} + +.mb-n18 { + margin-bottom: -4.5rem !important +} + +.mb-n19 { + margin-bottom: -4.75rem !important +} + +.mb-n20 { + margin-bottom: -5rem !important +} + +.ms-n1 { + margin-left: -.25rem !important +} + +.ms-n2 { + margin-left: -.5rem !important +} + +.ms-n3 { + margin-left: -.75rem !important +} + +.ms-n4 { + margin-left: -1rem !important +} + +.ms-n5 { + margin-left: -1.25rem !important +} + +.ms-n6 { + margin-left: -1.5rem !important +} + +.ms-n7 { + margin-left: -1.75rem !important +} + +.ms-n8 { + margin-left: -2rem !important +} + +.ms-n9 { + margin-left: -2.25rem !important +} + +.ms-n10 { + margin-left: -2.5rem !important +} + +.ms-n11 { + margin-left: -2.75rem !important +} + +.ms-n12 { + margin-left: -3rem !important +} + +.ms-n13 { + margin-left: -3.25rem !important +} + +.ms-n14 { + margin-left: -3.5rem !important +} + +.ms-n15 { + margin-left: -3.75rem !important +} + +.ms-n16 { + margin-left: -4rem !important +} + +.ms-n17 { + margin-left: -4.25rem !important +} + +.ms-n18 { + margin-left: -4.5rem !important +} + +.ms-n19 { + margin-left: -4.75rem !important +} + +.ms-n20 { + margin-left: -5rem !important +} + +.p-0 { + padding: 0 !important +} + +.p-1 { + padding: .25rem !important +} + +.p-2 { + padding: .5rem !important +} + +.p-3 { + padding: .75rem !important +} + +.p-4 { + padding: 1rem !important +} + +.p-5 { + padding: 1.25rem !important +} + +.p-6 { + padding: 1.5rem !important +} + +.p-7 { + padding: 1.75rem !important +} + +.p-8 { + padding: 2rem !important +} + +.p-9 { + padding: 2.25rem !important +} + +.p-10 { + padding: 2.5rem !important +} + +.p-11 { + padding: 2.75rem !important +} + +.p-12 { + padding: 3rem !important +} + +.p-13 { + padding: 3.25rem !important +} + +.p-14 { + padding: 3.5rem !important +} + +.p-15 { + padding: 3.75rem !important +} + +.p-16 { + padding: 4rem !important +} + +.p-17 { + padding: 4.25rem !important +} + +.p-18 { + padding: 4.5rem !important +} + +.p-19 { + padding: 4.75rem !important +} + +.p-20 { + padding: 5rem !important +} + +.px-0 { + padding-right: 0 !important; + padding-left: 0 !important +} + +.px-1 { + padding-right: .25rem !important; + padding-left: .25rem !important +} + +.px-2 { + padding-right: .5rem !important; + padding-left: .5rem !important +} + +.px-3 { + padding-right: .75rem !important; + padding-left: .75rem !important +} + +.px-4 { + padding-right: 1rem !important; + padding-left: 1rem !important +} + +.px-5 { + padding-right: 1.25rem !important; + padding-left: 1.25rem !important +} + +.px-6 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important +} + +.px-7 { + padding-right: 1.75rem !important; + padding-left: 1.75rem !important +} + +.px-8 { + padding-right: 2rem !important; + padding-left: 2rem !important +} + +.px-9 { + padding-right: 2.25rem !important; + padding-left: 2.25rem !important +} + +.px-10 { + padding-right: 2.5rem !important; + padding-left: 2.5rem !important +} + +.px-11 { + padding-right: 2.75rem !important; + padding-left: 2.75rem !important +} + +.px-12 { + padding-right: 3rem !important; + padding-left: 3rem !important +} + +.px-13 { + padding-right: 3.25rem !important; + padding-left: 3.25rem !important +} + +.px-14 { + padding-right: 3.5rem !important; + padding-left: 3.5rem !important +} + +.px-15 { + padding-right: 3.75rem !important; + padding-left: 3.75rem !important +} + +.px-16 { + padding-right: 4rem !important; + padding-left: 4rem !important +} + +.px-17 { + padding-right: 4.25rem !important; + padding-left: 4.25rem !important +} + +.px-18 { + padding-right: 4.5rem !important; + padding-left: 4.5rem !important +} + +.px-19 { + padding-right: 4.75rem !important; + padding-left: 4.75rem !important +} + +.px-20 { + padding-right: 5rem !important; + padding-left: 5rem !important +} + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important +} + +.py-1 { + padding-top: .25rem !important; + padding-bottom: .25rem !important +} + +.py-2 { + padding-top: .5rem !important; + padding-bottom: .5rem !important +} + +.py-3 { + padding-top: .75rem !important; + padding-bottom: .75rem !important +} + +.py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important +} + +.py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important +} + +.py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important +} + +.py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important +} + +.py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important +} + +.py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important +} + +.py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important +} + +.py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important +} + +.py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important +} + +.py-13 { + padding-top: 3.25rem !important; + padding-bottom: 3.25rem !important +} + +.py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important +} + +.py-15 { + padding-top: 3.75rem !important; + padding-bottom: 3.75rem !important +} + +.py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important +} + +.py-17 { + padding-top: 4.25rem !important; + padding-bottom: 4.25rem !important +} + +.py-18 { + padding-top: 4.5rem !important; + padding-bottom: 4.5rem !important +} + +.py-19 { + padding-top: 4.75rem !important; + padding-bottom: 4.75rem !important +} + +.py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important +} + +.pt-0 { + padding-top: 0 !important +} + +.pt-1 { + padding-top: .25rem !important +} + +.pt-2 { + padding-top: .5rem !important +} + +.pt-3 { + padding-top: .75rem !important +} + +.pt-4 { + padding-top: 1rem !important +} + +.pt-5 { + padding-top: 1.25rem !important +} + +.pt-6 { + padding-top: 1.5rem !important +} + +.pt-7 { + padding-top: 1.75rem !important +} + +.pt-8 { + padding-top: 2rem !important +} + +.pt-9 { + padding-top: 2.25rem !important +} + +.pt-10 { + padding-top: 2.5rem !important +} + +.pt-11 { + padding-top: 2.75rem !important +} + +.pt-12 { + padding-top: 3rem !important +} + +.pt-13 { + padding-top: 3.25rem !important +} + +.pt-14 { + padding-top: 3.5rem !important +} + +.pt-15 { + padding-top: 3.75rem !important +} + +.pt-16 { + padding-top: 4rem !important +} + +.pt-17 { + padding-top: 4.25rem !important +} + +.pt-18 { + padding-top: 4.5rem !important +} + +.pt-19 { + padding-top: 4.75rem !important +} + +.pt-20 { + padding-top: 5rem !important +} + +.pe-0 { + padding-right: 0 !important +} + +.pe-1 { + padding-right: .25rem !important +} + +.pe-2 { + padding-right: .5rem !important +} + +.pe-3 { + padding-right: .75rem !important +} + +.pe-4 { + padding-right: 1rem !important +} + +.pe-5 { + padding-right: 1.25rem !important +} + +.pe-6 { + padding-right: 1.5rem !important +} + +.pe-7 { + padding-right: 1.75rem !important +} + +.pe-8 { + padding-right: 2rem !important +} + +.pe-9 { + padding-right: 2.25rem !important +} + +.pe-10 { + padding-right: 2.5rem !important +} + +.pe-11 { + padding-right: 2.75rem !important +} + +.pe-12 { + padding-right: 3rem !important +} + +.pe-13 { + padding-right: 3.25rem !important +} + +.pe-14 { + padding-right: 3.5rem !important +} + +.pe-15 { + padding-right: 3.75rem !important +} + +.pe-16 { + padding-right: 4rem !important +} + +.pe-17 { + padding-right: 4.25rem !important +} + +.pe-18 { + padding-right: 4.5rem !important +} + +.pe-19 { + padding-right: 4.75rem !important +} + +.pe-20 { + padding-right: 5rem !important +} + +.pb-0 { + padding-bottom: 0 !important +} + +.pb-1 { + padding-bottom: .25rem !important +} + +.pb-2 { + padding-bottom: .5rem !important +} + +.pb-3 { + padding-bottom: .75rem !important +} + +.pb-4 { + padding-bottom: 1rem !important +} + +.pb-5 { + padding-bottom: 1.25rem !important +} + +.pb-6 { + padding-bottom: 1.5rem !important +} + +.pb-7 { + padding-bottom: 1.75rem !important +} + +.pb-8 { + padding-bottom: 2rem !important +} + +.pb-9 { + padding-bottom: 2.25rem !important +} + +.pb-10 { + padding-bottom: 2.5rem !important +} + +.pb-11 { + padding-bottom: 2.75rem !important +} + +.pb-12 { + padding-bottom: 3rem !important +} + +.pb-13 { + padding-bottom: 3.25rem !important +} + +.pb-14 { + padding-bottom: 3.5rem !important +} + +.pb-15 { + padding-bottom: 3.75rem !important +} + +.pb-16 { + padding-bottom: 4rem !important +} + +.pb-17 { + padding-bottom: 4.25rem !important +} + +.pb-18 { + padding-bottom: 4.5rem !important +} + +.pb-19 { + padding-bottom: 4.75rem !important +} + +.pb-20 { + padding-bottom: 5rem !important +} + +.ps-0 { + padding-left: 0 !important +} + +.ps-1 { + padding-left: .25rem !important +} + +.ps-2 { + padding-left: .5rem !important +} + +.ps-3 { + padding-left: .75rem !important +} + +.ps-4 { + padding-left: 1rem !important +} + +.ps-5 { + padding-left: 1.25rem !important +} + +.ps-6 { + padding-left: 1.5rem !important +} + +.ps-7 { + padding-left: 1.75rem !important +} + +.ps-8 { + padding-left: 2rem !important +} + +.ps-9 { + padding-left: 2.25rem !important +} + +.ps-10 { + padding-left: 2.5rem !important +} + +.ps-11 { + padding-left: 2.75rem !important +} + +.ps-12 { + padding-left: 3rem !important +} + +.ps-13 { + padding-left: 3.25rem !important +} + +.ps-14 { + padding-left: 3.5rem !important +} + +.ps-15 { + padding-left: 3.75rem !important +} + +.ps-16 { + padding-left: 4rem !important +} + +.ps-17 { + padding-left: 4.25rem !important +} + +.ps-18 { + padding-left: 4.5rem !important +} + +.ps-19 { + padding-left: 4.75rem !important +} + +.ps-20 { + padding-left: 5rem !important +} + +.font-monospace { + font-family: var(--bs-font-monospace) !important +} + +.fs-1 { + font-size: calc(1.3rem + .6vw) !important +} + +.fs-2 { + font-size: calc(1.275rem + .3vw) !important +} + +.fs-3 { + font-size: calc(1.26rem + .12vw) !important +} + +.fs-4 { + font-size: 1.25rem !important +} + +.fs-5 { + font-size: 1.15rem !important +} + +.fs-6 { + font-size: 1.075rem !important +} + +.fs-7 { + font-size: .95rem !important +} + +.fs-8 { + font-size: .85rem !important +} + +.fs-9 { + font-size: .75rem !important +} + +.fs-10 { + font-size: .5rem !important +} + +.fs-base { + font-size: 1rem !important +} + +.fs-fluid { + font-size: 100% !important +} + +.fs-2x { + font-size: calc(1.325rem + .9vw) !important +} + +.fs-2qx { + font-size: calc(1.35rem + 1.2vw) !important +} + +.fs-2hx { + font-size: calc(1.375rem + 1.5vw) !important +} + +.fs-2tx { + font-size: calc(1.4rem + 1.8vw) !important +} + +.fs-3x { + font-size: calc(1.425rem + 2.1vw) !important +} + +.fs-3qx { + font-size: calc(1.45rem + 2.4vw) !important +} + +.fs-3hx { + font-size: calc(1.475rem + 2.7vw) !important +} + +.fs-3tx { + font-size: calc(1.5rem + 3vw) !important +} + +.fs-4x { + font-size: calc(1.525rem + 3.3vw) !important +} + +.fs-4qx { + font-size: calc(1.55rem + 3.6vw) !important +} + +.fs-4hx { + font-size: calc(1.575rem + 3.9vw) !important +} + +.fs-4tx { + font-size: calc(1.6rem + 4.2vw) !important +} + +.fs-5x { + font-size: calc(1.625rem + 4.5vw) !important +} + +.fs-5qx { + font-size: calc(1.65rem + 4.8vw) !important +} + +.fs-5hx { + font-size: calc(1.675rem + 5.1vw) !important +} + +.fs-5tx { + font-size: calc(1.7rem + 5.4vw) !important +} + +.fst-italic { + font-style: italic !important +} + +.fst-normal { + font-style: normal !important +} + +.fw-light { + font-weight: 300 !important +} + +.fw-lighter { + font-weight: lighter !important +} + +.fw-normal { + font-weight: 400 !important +} + +.fw-bold { + font-weight: 500 !important +} + +.fw-bolder { + font-weight: 600 !important +} + +.lh-0 { + line-height: 0 !important +} + +.lh-1 { + line-height: 1 !important +} + +.lh-sm { + line-height: 1.25 !important +} + +.lh-base { + line-height: 1.5 !important +} + +.lh-lg { + line-height: 1.75 !important +} + +.lh-xl { + line-height: 2 !important +} + +.lh-xxl { + line-height: 2.25 !important +} + +.text-start { + text-align: left !important +} + +.text-end { + text-align: right !important +} + +.text-center { + text-align: center !important +} + +.text-decoration-none { + text-decoration: none !important +} + +.text-decoration-underline { + text-decoration: underline !important +} + +.text-decoration-line-through { + text-decoration: line-through !important +} + +.text-lowercase { + text-transform: lowercase !important +} + +.text-uppercase { + text-transform: uppercase !important +} + +.text-capitalize { + text-transform: capitalize !important +} + +.text-wrap { + white-space: normal !important +} + +.text-nowrap { + white-space: nowrap !important +} + +.text-break { + word-wrap: break-word !important; + word-break: break-word !important +} + +.text-white { + --bs-text-opacity: 1; + color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important +} + +.text-light { + --bs-text-opacity: 1; + color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important +} + +.text-primary { + --bs-text-opacity: 1; + color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important +} + +.text-secondary { + --bs-text-opacity: 1; + color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important +} + +.text-success { + --bs-text-opacity: 1; + color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important +} + +.text-info { + --bs-text-opacity: 1; + color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important +} + +.text-warning { + --bs-text-opacity: 1; + color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important +} + +.text-danger { + --bs-text-opacity: 1; + color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important +} + +.text-dark { + --bs-text-opacity: 1; + color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important +} + +.text-black { + --bs-text-opacity: 1; + color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important +} + +.text-body { + --bs-text-opacity: 1; + color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important +} + +.text-muted { + --bs-text-opacity: 1; + color: #a1a5b7 !important +} + +.text-black-50 { + --bs-text-opacity: 1; + color: rgba(0, 0, 0, .5) !important +} + +.text-white-50 { + --bs-text-opacity: 1; + color: rgba(255, 255, 255, .5) !important +} + +.text-reset { + --bs-text-opacity: 1; + color: inherit !important +} + +.text-opacity-25 { + --bs-text-opacity: 0.25 +} + +.text-opacity-50 { + --bs-text-opacity: 0.5 +} + +.text-opacity-75 { + --bs-text-opacity: 0.75 +} + +.text-opacity-100 { + --bs-text-opacity: 1 +} + +.bg-white { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important +} + +.bg-light { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important +} + +.bg-primary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important +} + +.bg-secondary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important +} + +.bg-success { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important +} + +.bg-info { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important +} + +.bg-warning { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important +} + +.bg-danger { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important +} + +.bg-dark { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important +} + +.bg-black { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important +} + +.bg-body { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important +} + +.bg-transparent { + --bs-bg-opacity: 1; + background-color: transparent !important +} + +.bg-opacity-10 { + --bs-bg-opacity: 0.1 +} + +.bg-opacity-25 { + --bs-bg-opacity: 0.25 +} + +.bg-opacity-50 { + --bs-bg-opacity: 0.5 +} + +.bg-opacity-75 { + --bs-bg-opacity: 0.75 +} + +.bg-opacity-100 { + --bs-bg-opacity: 1 +} + +.bg-gradient { + background-image: var(--bs-gradient) !important +} + +.user-select-all { + user-select: all !important +} + +.user-select-auto { + user-select: auto !important +} + +.user-select-none { + user-select: none !important +} + +.pe-none { + pointer-events: none !important +} + +.pe-auto { + pointer-events: auto !important +} + +.rounded { + border-radius: .475rem !important +} + +.rounded-0 { + border-radius: 0 !important +} + +.rounded-1 { + border-radius: .325rem !important +} + +.rounded-2 { + border-radius: .475rem !important +} + +.rounded-3 { + border-radius: .625rem !important +} + +.rounded-4 { + border-radius: 1rem !important +} + +.rounded-circle { + border-radius: 50% !important +} + +.rounded-pill { + border-radius: 50rem !important +} + +.rounded-top { + border-top-left-radius: .475rem !important; + border-top-right-radius: .475rem !important +} + +.rounded-end { + border-top-right-radius: .475rem !important; + border-bottom-right-radius: .475rem !important +} + +.rounded-bottom { + border-bottom-right-radius: .475rem !important; + border-bottom-left-radius: .475rem !important +} + +.rounded-start { + border-bottom-left-radius: .475rem !important; + border-top-left-radius: .475rem !important +} + +.visible { + visibility: visible !important +} + +.invisible { + visibility: hidden !important +} + +.opacity-0 { + opacity: 0 !important +} + +.opacity-0-hover:hover { + opacity: 0 !important +} + +.opacity-5 { + opacity: .05 !important +} + +.opacity-5-hover:hover { + opacity: .05 !important +} + +.opacity-10 { + opacity: .1 !important +} + +.opacity-10-hover:hover { + opacity: .1 !important +} + +.opacity-15 { + opacity: .15 !important +} + +.opacity-15-hover:hover { + opacity: .15 !important +} + +.opacity-20 { + opacity: .2 !important +} + +.opacity-20-hover:hover { + opacity: .2 !important +} + +.opacity-25 { + opacity: .25 !important +} + +.opacity-25-hover:hover { + opacity: .25 !important +} + +.opacity-50 { + opacity: .5 !important +} + +.opacity-50-hover:hover { + opacity: .5 !important +} + +.opacity-75 { + opacity: .75 !important +} + +.opacity-75-hover:hover { + opacity: .75 !important +} + +.opacity-100 { + opacity: 1 !important +} + +.opacity-100-hover:hover { + opacity: 1 !important +} + +.min-w-unset { + min-width: unset !important +} + +.min-w-25 { + min-width: 25% !important +} + +.min-w-50 { + min-width: 50% !important +} + +.min-w-75 { + min-width: 75% !important +} + +.min-w-100 { + min-width: 100% !important +} + +.min-w-auto { + min-width: auto !important +} + +.min-w-1px { + min-width: 1px !important +} + +.min-w-2px { + min-width: 2px !important +} + +.min-w-3px { + min-width: 3px !important +} + +.min-w-4px { + min-width: 4px !important +} + +.min-w-5px { + min-width: 5px !important +} + +.min-w-6px { + min-width: 6px !important +} + +.min-w-7px { + min-width: 7px !important +} + +.min-w-8px { + min-width: 8px !important +} + +.min-w-9px { + min-width: 9px !important +} + +.min-w-10px { + min-width: 10px !important +} + +.min-w-15px { + min-width: 15px !important +} + +.min-w-20px { + min-width: 20px !important +} + +.min-w-25px { + min-width: 25px !important +} + +.min-w-30px { + min-width: 30px !important +} + +.min-w-35px { + min-width: 35px !important +} + +.min-w-40px { + min-width: 40px !important +} + +.min-w-45px { + min-width: 45px !important +} + +.min-w-50px { + min-width: 50px !important +} + +.min-w-55px { + min-width: 55px !important +} + +.min-w-60px { + min-width: 60px !important +} + +.min-w-65px { + min-width: 65px !important +} + +.min-w-70px { + min-width: 70px !important +} + +.min-w-75px { + min-width: 75px !important +} + +.min-w-80px { + min-width: 80px !important +} + +.min-w-85px { + min-width: 85px !important +} + +.min-w-90px { + min-width: 90px !important +} + +.min-w-95px { + min-width: 95px !important +} + +.min-w-100px { + min-width: 100px !important +} + +.min-w-125px { + min-width: 125px !important +} + +.min-w-150px { + min-width: 150px !important +} + +.min-w-175px { + min-width: 175px !important +} + +.min-w-200px { + min-width: 200px !important +} + +.min-w-225px { + min-width: 225px !important +} + +.min-w-250px { + min-width: 250px !important +} + +.min-w-275px { + min-width: 275px !important +} + +.min-w-300px { + min-width: 300px !important +} + +.min-w-325px { + min-width: 325px !important +} + +.min-w-350px { + min-width: 350px !important +} + +.min-w-375px { + min-width: 375px !important +} + +.min-w-400px { + min-width: 400px !important +} + +.min-w-425px { + min-width: 425px !important +} + +.min-w-450px { + min-width: 450px !important +} + +.min-w-475px { + min-width: 475px !important +} + +.min-w-500px { + min-width: 500px !important +} + +.min-w-550px { + min-width: 550px !important +} + +.min-w-600px { + min-width: 600px !important +} + +.min-w-650px { + min-width: 650px !important +} + +.min-w-700px { + min-width: 700px !important +} + +.min-w-750px { + min-width: 750px !important +} + +.min-w-800px { + min-width: 800px !important +} + +.min-w-850px { + min-width: 850px !important +} + +.min-w-900px { + min-width: 900px !important +} + +.min-w-950px { + min-width: 950px !important +} + +.min-w-1000px { + min-width: 1000px !important +} + +.min-h-unset { + min-height: unset !important +} + +.min-h-25 { + min-height: 25% !important +} + +.min-h-50 { + min-height: 50% !important +} + +.min-h-75 { + min-height: 75% !important +} + +.min-h-100 { + min-height: 100% !important +} + +.min-h-auto { + min-height: auto !important +} + +.min-h-1px { + min-height: 1px !important +} + +.min-h-2px { + min-height: 2px !important +} + +.min-h-3px { + min-height: 3px !important +} + +.min-h-4px { + min-height: 4px !important +} + +.min-h-5px { + min-height: 5px !important +} + +.min-h-6px { + min-height: 6px !important +} + +.min-h-7px { + min-height: 7px !important +} + +.min-h-8px { + min-height: 8px !important +} + +.min-h-9px { + min-height: 9px !important +} + +.min-h-10px { + min-height: 10px !important +} + +.min-h-15px { + min-height: 15px !important +} + +.min-h-20px { + min-height: 20px !important +} + +.min-h-25px { + min-height: 25px !important +} + +.min-h-30px { + min-height: 30px !important +} + +.min-h-35px { + min-height: 35px !important +} + +.min-h-40px { + min-height: 40px !important +} + +.min-h-45px { + min-height: 45px !important +} + +.min-h-50px { + min-height: 50px !important +} + +.min-h-55px { + min-height: 55px !important +} + +.min-h-60px { + min-height: 60px !important +} + +.min-h-65px { + min-height: 65px !important +} + +.min-h-70px { + min-height: 70px !important +} + +.min-h-75px { + min-height: 75px !important +} + +.min-h-80px { + min-height: 80px !important +} + +.min-h-85px { + min-height: 85px !important +} + +.min-h-90px { + min-height: 90px !important +} + +.min-h-95px { + min-height: 95px !important +} + +.min-h-100px { + min-height: 100px !important +} + +.min-h-125px { + min-height: 125px !important +} + +.min-h-150px { + min-height: 150px !important +} + +.min-h-175px { + min-height: 175px !important +} + +.min-h-200px { + min-height: 200px !important +} + +.min-h-225px { + min-height: 225px !important +} + +.min-h-250px { + min-height: 250px !important +} + +.min-h-275px { + min-height: 275px !important +} + +.min-h-300px { + min-height: 300px !important +} + +.min-h-325px { + min-height: 325px !important +} + +.min-h-350px { + min-height: 350px !important +} + +.min-h-375px { + min-height: 375px !important +} + +.min-h-400px { + min-height: 400px !important +} + +.min-h-425px { + min-height: 425px !important +} + +.min-h-450px { + min-height: 450px !important +} + +.min-h-475px { + min-height: 475px !important +} + +.min-h-500px { + min-height: 500px !important +} + +.min-h-550px { + min-height: 550px !important +} + +.min-h-600px { + min-height: 600px !important +} + +.min-h-650px { + min-height: 650px !important +} + +.min-h-700px { + min-height: 700px !important +} + +.min-h-750px { + min-height: 750px !important +} + +.min-h-800px { + min-height: 800px !important +} + +.min-h-850px { + min-height: 850px !important +} + +.min-h-900px { + min-height: 900px !important +} + +.min-h-950px { + min-height: 950px !important +} + +.min-h-1000px { + min-height: 1000px !important +} + +.z-index-n1 { + z-index: -1 !important +} + +.z-index-n2 { + z-index: -2 !important +} + +.z-index-0 { + z-index: 0 !important +} + +.z-index-1 { + z-index: 1 !important +} + +.z-index-2 { + z-index: 2 !important +} + +.z-index-3 { + z-index: 3 !important +} + +.border-top-0 { + border-top-width: 0 !important +} + +.border-top-1 { + border-top-width: 1px !important +} + +.border-top-2 { + border-top-width: 2px !important +} + +.border-top-3 { + border-top-width: 3px !important +} + +.border-top-4 { + border-top-width: 4px !important +} + +.border-top-5 { + border-top-width: 5px !important +} + +.border-bottom-0 { + border-bottom-width: 0 !important +} + +.border-bottom-1 { + border-bottom-width: 1px !important +} + +.border-bottom-2 { + border-bottom-width: 2px !important +} + +.border-bottom-3 { + border-bottom-width: 3px !important +} + +.border-bottom-4 { + border-bottom-width: 4px !important +} + +.border-bottom-5 { + border-bottom-width: 5px !important +} + +.border-right-0 { + border-right-width: 0 !important +} + +.border-right-1 { + border-right-width: 1px !important +} + +.border-right-2 { + border-right-width: 2px !important +} + +.border-right-3 { + border-right-width: 3px !important +} + +.border-right-4 { + border-right-width: 4px !important +} + +.border-right-5 { + border-right-width: 5px !important +} + +.border-left-0 { + border-left-width: 0 !important +} + +.border-left-1 { + border-left-width: 1px !important +} + +.border-left-2 { + border-left-width: 2px !important +} + +.border-left-3 { + border-left-width: 3px !important +} + +.border-left-4 { + border-left-width: 4px !important +} + +.border-left-5 { + border-left-width: 5px !important +} + +.ls-1 { + letter-spacing: .1rem !important +} + +.ls-2 { + letter-spacing: .115rem !important +} + +.ls-3 { + letter-spacing: .125rem !important +} + +.ls-4 { + letter-spacing: .25rem !important +} + +.ls-5 { + letter-spacing: .5rem !important +} + +.ls-n1 { + letter-spacing: -.1rem !important +} + +.ls-n2 { + letter-spacing: -.115rem !important +} + +.ls-n3 { + letter-spacing: -.125rem !important +} + +.ls-n4 { + letter-spacing: -.25rem !important +} + +.ls-n5 { + letter-spacing: -.5rem !important +} + +@media (min-width:576px) { + .float-sm-start { + float: left !important + } + + .float-sm-end { + float: right !important + } + + .float-sm-none { + float: none !important + } + + .d-sm-inline { + display: inline !important + } + + .d-sm-inline-block { + display: inline-block !important + } + + .d-sm-block { + display: block !important + } + + .d-sm-grid { + display: grid !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 + } + + .d-sm-none { + display: none !important + } + + .position-sm-static { + position: static !important + } + + .position-sm-relative { + position: relative !important + } + + .position-sm-absolute { + position: absolute !important + } + + .position-sm-fixed { + position: fixed !important + } + + .position-sm-sticky { + position: sticky !important + } + + .w-sm-unset { + width: unset !important + } + + .w-sm-25 { + width: 25% !important + } + + .w-sm-50 { + width: 50% !important + } + + .w-sm-75 { + width: 75% !important + } + + .w-sm-100 { + width: 100% !important + } + + .w-sm-auto { + width: auto !important + } + + .w-sm-1px { + width: 1px !important + } + + .w-sm-2px { + width: 2px !important + } + + .w-sm-3px { + width: 3px !important + } + + .w-sm-4px { + width: 4px !important + } + + .w-sm-5px { + width: 5px !important + } + + .w-sm-6px { + width: 6px !important + } + + .w-sm-7px { + width: 7px !important + } + + .w-sm-8px { + width: 8px !important + } + + .w-sm-9px { + width: 9px !important + } + + .w-sm-10px { + width: 10px !important + } + + .w-sm-15px { + width: 15px !important + } + + .w-sm-20px { + width: 20px !important + } + + .w-sm-25px { + width: 25px !important + } + + .w-sm-30px { + width: 30px !important + } + + .w-sm-35px { + width: 35px !important + } + + .w-sm-40px { + width: 40px !important + } + + .w-sm-45px { + width: 45px !important + } + + .w-sm-50px { + width: 50px !important + } + + .w-sm-55px { + width: 55px !important + } + + .w-sm-60px { + width: 60px !important + } + + .w-sm-65px { + width: 65px !important + } + + .w-sm-70px { + width: 70px !important + } + + .w-sm-75px { + width: 75px !important + } + + .w-sm-80px { + width: 80px !important + } + + .w-sm-85px { + width: 85px !important + } + + .w-sm-90px { + width: 90px !important + } + + .w-sm-95px { + width: 95px !important + } + + .w-sm-100px { + width: 100px !important + } + + .w-sm-125px { + width: 125px !important + } + + .w-sm-150px { + width: 150px !important + } + + .w-sm-175px { + width: 175px !important + } + + .w-sm-200px { + width: 200px !important + } + + .w-sm-225px { + width: 225px !important + } + + .w-sm-250px { + width: 250px !important + } + + .w-sm-275px { + width: 275px !important + } + + .w-sm-300px { + width: 300px !important + } + + .w-sm-325px { + width: 325px !important + } + + .w-sm-350px { + width: 350px !important + } + + .w-sm-375px { + width: 375px !important + } + + .w-sm-400px { + width: 400px !important + } + + .w-sm-425px { + width: 425px !important + } + + .w-sm-450px { + width: 450px !important + } + + .w-sm-475px { + width: 475px !important + } + + .w-sm-500px { + width: 500px !important + } + + .w-sm-550px { + width: 550px !important + } + + .w-sm-600px { + width: 600px !important + } + + .w-sm-650px { + width: 650px !important + } + + .w-sm-700px { + width: 700px !important + } + + .w-sm-750px { + width: 750px !important + } + + .w-sm-800px { + width: 800px !important + } + + .w-sm-850px { + width: 850px !important + } + + .w-sm-900px { + width: 900px !important + } + + .w-sm-950px { + width: 950px !important + } + + .w-sm-1000px { + width: 1000px !important + } + + .mw-sm-unset { + max-width: unset !important + } + + .mw-sm-25 { + max-width: 25% !important + } + + .mw-sm-50 { + max-width: 50% !important + } + + .mw-sm-75 { + max-width: 75% !important + } + + .mw-sm-100 { + max-width: 100% !important + } + + .mw-sm-auto { + max-width: auto !important + } + + .mw-sm-1px { + max-width: 1px !important + } + + .mw-sm-2px { + max-width: 2px !important + } + + .mw-sm-3px { + max-width: 3px !important + } + + .mw-sm-4px { + max-width: 4px !important + } + + .mw-sm-5px { + max-width: 5px !important + } + + .mw-sm-6px { + max-width: 6px !important + } + + .mw-sm-7px { + max-width: 7px !important + } + + .mw-sm-8px { + max-width: 8px !important + } + + .mw-sm-9px { + max-width: 9px !important + } + + .mw-sm-10px { + max-width: 10px !important + } + + .mw-sm-15px { + max-width: 15px !important + } + + .mw-sm-20px { + max-width: 20px !important + } + + .mw-sm-25px { + max-width: 25px !important + } + + .mw-sm-30px { + max-width: 30px !important + } + + .mw-sm-35px { + max-width: 35px !important + } + + .mw-sm-40px { + max-width: 40px !important + } + + .mw-sm-45px { + max-width: 45px !important + } + + .mw-sm-50px { + max-width: 50px !important + } + + .mw-sm-55px { + max-width: 55px !important + } + + .mw-sm-60px { + max-width: 60px !important + } + + .mw-sm-65px { + max-width: 65px !important + } + + .mw-sm-70px { + max-width: 70px !important + } + + .mw-sm-75px { + max-width: 75px !important + } + + .mw-sm-80px { + max-width: 80px !important + } + + .mw-sm-85px { + max-width: 85px !important + } + + .mw-sm-90px { + max-width: 90px !important + } + + .mw-sm-95px { + max-width: 95px !important + } + + .mw-sm-100px { + max-width: 100px !important + } + + .mw-sm-125px { + max-width: 125px !important + } + + .mw-sm-150px { + max-width: 150px !important + } + + .mw-sm-175px { + max-width: 175px !important + } + + .mw-sm-200px { + max-width: 200px !important + } + + .mw-sm-225px { + max-width: 225px !important + } + + .mw-sm-250px { + max-width: 250px !important + } + + .mw-sm-275px { + max-width: 275px !important + } + + .mw-sm-300px { + max-width: 300px !important + } + + .mw-sm-325px { + max-width: 325px !important + } + + .mw-sm-350px { + max-width: 350px !important + } + + .mw-sm-375px { + max-width: 375px !important + } + + .mw-sm-400px { + max-width: 400px !important + } + + .mw-sm-425px { + max-width: 425px !important + } + + .mw-sm-450px { + max-width: 450px !important + } + + .mw-sm-475px { + max-width: 475px !important + } + + .mw-sm-500px { + max-width: 500px !important + } + + .mw-sm-550px { + max-width: 550px !important + } + + .mw-sm-600px { + max-width: 600px !important + } + + .mw-sm-650px { + max-width: 650px !important + } + + .mw-sm-700px { + max-width: 700px !important + } + + .mw-sm-750px { + max-width: 750px !important + } + + .mw-sm-800px { + max-width: 800px !important + } + + .mw-sm-850px { + max-width: 850px !important + } + + .mw-sm-900px { + max-width: 900px !important + } + + .mw-sm-950px { + max-width: 950px !important + } + + .mw-sm-1000px { + max-width: 1000px !important + } + + .h-sm-unset { + height: unset !important + } + + .h-sm-25 { + height: 25% !important + } + + .h-sm-50 { + height: 50% !important + } + + .h-sm-75 { + height: 75% !important + } + + .h-sm-100 { + height: 100% !important + } + + .h-sm-auto { + height: auto !important + } + + .h-sm-1px { + height: 1px !important + } + + .h-sm-2px { + height: 2px !important + } + + .h-sm-3px { + height: 3px !important + } + + .h-sm-4px { + height: 4px !important + } + + .h-sm-5px { + height: 5px !important + } + + .h-sm-6px { + height: 6px !important + } + + .h-sm-7px { + height: 7px !important + } + + .h-sm-8px { + height: 8px !important + } + + .h-sm-9px { + height: 9px !important + } + + .h-sm-10px { + height: 10px !important + } + + .h-sm-15px { + height: 15px !important + } + + .h-sm-20px { + height: 20px !important + } + + .h-sm-25px { + height: 25px !important + } + + .h-sm-30px { + height: 30px !important + } + + .h-sm-35px { + height: 35px !important + } + + .h-sm-40px { + height: 40px !important + } + + .h-sm-45px { + height: 45px !important + } + + .h-sm-50px { + height: 50px !important + } + + .h-sm-55px { + height: 55px !important + } + + .h-sm-60px { + height: 60px !important + } + + .h-sm-65px { + height: 65px !important + } + + .h-sm-70px { + height: 70px !important + } + + .h-sm-75px { + height: 75px !important + } + + .h-sm-80px { + height: 80px !important + } + + .h-sm-85px { + height: 85px !important + } + + .h-sm-90px { + height: 90px !important + } + + .h-sm-95px { + height: 95px !important + } + + .h-sm-100px { + height: 100px !important + } + + .h-sm-125px { + height: 125px !important + } + + .h-sm-150px { + height: 150px !important + } + + .h-sm-175px { + height: 175px !important + } + + .h-sm-200px { + height: 200px !important + } + + .h-sm-225px { + height: 225px !important + } + + .h-sm-250px { + height: 250px !important + } + + .h-sm-275px { + height: 275px !important + } + + .h-sm-300px { + height: 300px !important + } + + .h-sm-325px { + height: 325px !important + } + + .h-sm-350px { + height: 350px !important + } + + .h-sm-375px { + height: 375px !important + } + + .h-sm-400px { + height: 400px !important + } + + .h-sm-425px { + height: 425px !important + } + + .h-sm-450px { + height: 450px !important + } + + .h-sm-475px { + height: 475px !important + } + + .h-sm-500px { + height: 500px !important + } + + .h-sm-550px { + height: 550px !important + } + + .h-sm-600px { + height: 600px !important + } + + .h-sm-650px { + height: 650px !important + } + + .h-sm-700px { + height: 700px !important + } + + .h-sm-750px { + height: 750px !important + } + + .h-sm-800px { + height: 800px !important + } + + .h-sm-850px { + height: 850px !important + } + + .h-sm-900px { + height: 900px !important + } + + .h-sm-950px { + height: 950px !important + } + + .h-sm-1000px { + height: 1000px !important + } + + .mh-sm-unset { + max-height: unset !important + } + + .mh-sm-25 { + max-height: 25% !important + } + + .mh-sm-50 { + max-height: 50% !important + } + + .mh-sm-75 { + max-height: 75% !important + } + + .mh-sm-100 { + max-height: 100% !important + } + + .mh-sm-auto { + max-height: auto !important + } + + .mh-sm-1px { + max-height: 1px !important + } + + .mh-sm-2px { + max-height: 2px !important + } + + .mh-sm-3px { + max-height: 3px !important + } + + .mh-sm-4px { + max-height: 4px !important + } + + .mh-sm-5px { + max-height: 5px !important + } + + .mh-sm-6px { + max-height: 6px !important + } + + .mh-sm-7px { + max-height: 7px !important + } + + .mh-sm-8px { + max-height: 8px !important + } + + .mh-sm-9px { + max-height: 9px !important + } + + .mh-sm-10px { + max-height: 10px !important + } + + .mh-sm-15px { + max-height: 15px !important + } + + .mh-sm-20px { + max-height: 20px !important + } + + .mh-sm-25px { + max-height: 25px !important + } + + .mh-sm-30px { + max-height: 30px !important + } + + .mh-sm-35px { + max-height: 35px !important + } + + .mh-sm-40px { + max-height: 40px !important + } + + .mh-sm-45px { + max-height: 45px !important + } + + .mh-sm-50px { + max-height: 50px !important + } + + .mh-sm-55px { + max-height: 55px !important + } + + .mh-sm-60px { + max-height: 60px !important + } + + .mh-sm-65px { + max-height: 65px !important + } + + .mh-sm-70px { + max-height: 70px !important + } + + .mh-sm-75px { + max-height: 75px !important + } + + .mh-sm-80px { + max-height: 80px !important + } + + .mh-sm-85px { + max-height: 85px !important + } + + .mh-sm-90px { + max-height: 90px !important + } + + .mh-sm-95px { + max-height: 95px !important + } + + .mh-sm-100px { + max-height: 100px !important + } + + .mh-sm-125px { + max-height: 125px !important + } + + .mh-sm-150px { + max-height: 150px !important + } + + .mh-sm-175px { + max-height: 175px !important + } + + .mh-sm-200px { + max-height: 200px !important + } + + .mh-sm-225px { + max-height: 225px !important + } + + .mh-sm-250px { + max-height: 250px !important + } + + .mh-sm-275px { + max-height: 275px !important + } + + .mh-sm-300px { + max-height: 300px !important + } + + .mh-sm-325px { + max-height: 325px !important + } + + .mh-sm-350px { + max-height: 350px !important + } + + .mh-sm-375px { + max-height: 375px !important + } + + .mh-sm-400px { + max-height: 400px !important + } + + .mh-sm-425px { + max-height: 425px !important + } + + .mh-sm-450px { + max-height: 450px !important + } + + .mh-sm-475px { + max-height: 475px !important + } + + .mh-sm-500px { + max-height: 500px !important + } + + .mh-sm-550px { + max-height: 550px !important + } + + .mh-sm-600px { + max-height: 600px !important + } + + .mh-sm-650px { + max-height: 650px !important + } + + .mh-sm-700px { + max-height: 700px !important + } + + .mh-sm-750px { + max-height: 750px !important + } + + .mh-sm-800px { + max-height: 800px !important + } + + .mh-sm-850px { + max-height: 850px !important + } + + .mh-sm-900px { + max-height: 900px !important + } + + .mh-sm-950px { + max-height: 950px !important + } + + .mh-sm-1000px { + max-height: 1000px !important + } + + .flex-sm-fill { + flex: 1 1 auto !important + } + + .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-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 + } + + .flex-sm-wrap { + flex-wrap: wrap !important + } + + .flex-sm-nowrap { + flex-wrap: nowrap !important + } + + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important + } + + .gap-sm-0 { + gap: 0 !important + } + + .gap-sm-1 { + gap: .25rem !important + } + + .gap-sm-2 { + gap: .5rem !important + } + + .gap-sm-3 { + gap: .75rem !important + } + + .gap-sm-4 { + gap: 1rem !important + } + + .gap-sm-5 { + gap: 1.25rem !important + } + + .gap-sm-6 { + gap: 1.5rem !important + } + + .gap-sm-7 { + gap: 1.75rem !important + } + + .gap-sm-8 { + gap: 2rem !important + } + + .gap-sm-9 { + gap: 2.25rem !important + } + + .gap-sm-10 { + gap: 2.5rem !important + } + + .gap-sm-11 { + gap: 2.75rem !important + } + + .gap-sm-12 { + gap: 3rem !important + } + + .gap-sm-13 { + gap: 3.25rem !important + } + + .gap-sm-14 { + gap: 3.5rem !important + } + + .gap-sm-15 { + gap: 3.75rem !important + } + + .gap-sm-16 { + gap: 4rem !important + } + + .gap-sm-17 { + gap: 4.25rem !important + } + + .gap-sm-18 { + gap: 4.5rem !important + } + + .gap-sm-19 { + gap: 4.75rem !important + } + + .gap-sm-20 { + gap: 5rem !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 + } + + .justify-content-sm-evenly { + justify-content: space-evenly !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 + } + + .order-sm-first { + order: -1 !important + } + + .order-sm-0 { + order: 0 !important + } + + .order-sm-1 { + order: 1 !important + } + + .order-sm-2 { + order: 2 !important + } + + .order-sm-3 { + order: 3 !important + } + + .order-sm-4 { + order: 4 !important + } + + .order-sm-5 { + order: 5 !important + } + + .order-sm-last { + order: 6 !important + } + + .m-sm-0 { + margin: 0 !important + } + + .m-sm-1 { + margin: .25rem !important + } + + .m-sm-2 { + margin: .5rem !important + } + + .m-sm-3 { + margin: .75rem !important + } + + .m-sm-4 { + margin: 1rem !important + } + + .m-sm-5 { + margin: 1.25rem !important + } + + .m-sm-6 { + margin: 1.5rem !important + } + + .m-sm-7 { + margin: 1.75rem !important + } + + .m-sm-8 { + margin: 2rem !important + } + + .m-sm-9 { + margin: 2.25rem !important + } + + .m-sm-10 { + margin: 2.5rem !important + } + + .m-sm-11 { + margin: 2.75rem !important + } + + .m-sm-12 { + margin: 3rem !important + } + + .m-sm-13 { + margin: 3.25rem !important + } + + .m-sm-14 { + margin: 3.5rem !important + } + + .m-sm-15 { + margin: 3.75rem !important + } + + .m-sm-16 { + margin: 4rem !important + } + + .m-sm-17 { + margin: 4.25rem !important + } + + .m-sm-18 { + margin: 4.5rem !important + } + + .m-sm-19 { + margin: 4.75rem !important + } + + .m-sm-20 { + margin: 5rem !important + } + + .m-sm-auto { + margin: auto !important + } + + .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important + } + + .mx-sm-1 { + margin-right: .25rem !important; + margin-left: .25rem !important + } + + .mx-sm-2 { + margin-right: .5rem !important; + margin-left: .5rem !important + } + + .mx-sm-3 { + margin-right: .75rem !important; + margin-left: .75rem !important + } + + .mx-sm-4 { + margin-right: 1rem !important; + margin-left: 1rem !important + } + + .mx-sm-5 { + margin-right: 1.25rem !important; + margin-left: 1.25rem !important + } + + .mx-sm-6 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important + } + + .mx-sm-7 { + margin-right: 1.75rem !important; + margin-left: 1.75rem !important + } + + .mx-sm-8 { + margin-right: 2rem !important; + margin-left: 2rem !important + } + + .mx-sm-9 { + margin-right: 2.25rem !important; + margin-left: 2.25rem !important + } + + .mx-sm-10 { + margin-right: 2.5rem !important; + margin-left: 2.5rem !important + } + + .mx-sm-11 { + margin-right: 2.75rem !important; + margin-left: 2.75rem !important + } + + .mx-sm-12 { + margin-right: 3rem !important; + margin-left: 3rem !important + } + + .mx-sm-13 { + margin-right: 3.25rem !important; + margin-left: 3.25rem !important + } + + .mx-sm-14 { + margin-right: 3.5rem !important; + margin-left: 3.5rem !important + } + + .mx-sm-15 { + margin-right: 3.75rem !important; + margin-left: 3.75rem !important + } + + .mx-sm-16 { + margin-right: 4rem !important; + margin-left: 4rem !important + } + + .mx-sm-17 { + margin-right: 4.25rem !important; + margin-left: 4.25rem !important + } + + .mx-sm-18 { + margin-right: 4.5rem !important; + margin-left: 4.5rem !important + } + + .mx-sm-19 { + margin-right: 4.75rem !important; + margin-left: 4.75rem !important + } + + .mx-sm-20 { + margin-right: 5rem !important; + margin-left: 5rem !important + } + + .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important + } + + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important + } + + .my-sm-1 { + margin-top: .25rem !important; + margin-bottom: .25rem !important + } + + .my-sm-2 { + margin-top: .5rem !important; + margin-bottom: .5rem !important + } + + .my-sm-3 { + margin-top: .75rem !important; + margin-bottom: .75rem !important + } + + .my-sm-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important + } + + .my-sm-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important + } + + .my-sm-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important + } + + .my-sm-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important + } + + .my-sm-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important + } + + .my-sm-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important + } + + .my-sm-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important + } + + .my-sm-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important + } + + .my-sm-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important + } + + .my-sm-13 { + margin-top: 3.25rem !important; + margin-bottom: 3.25rem !important + } + + .my-sm-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important + } + + .my-sm-15 { + margin-top: 3.75rem !important; + margin-bottom: 3.75rem !important + } + + .my-sm-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important + } + + .my-sm-17 { + margin-top: 4.25rem !important; + margin-bottom: 4.25rem !important + } + + .my-sm-18 { + margin-top: 4.5rem !important; + margin-bottom: 4.5rem !important + } + + .my-sm-19 { + margin-top: 4.75rem !important; + margin-bottom: 4.75rem !important + } + + .my-sm-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important + } + + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important + } + + .mt-sm-0 { + margin-top: 0 !important + } + + .mt-sm-1 { + margin-top: .25rem !important + } + + .mt-sm-2 { + margin-top: .5rem !important + } + + .mt-sm-3 { + margin-top: .75rem !important + } + + .mt-sm-4 { + margin-top: 1rem !important + } + + .mt-sm-5 { + margin-top: 1.25rem !important + } + + .mt-sm-6 { + margin-top: 1.5rem !important + } + + .mt-sm-7 { + margin-top: 1.75rem !important + } + + .mt-sm-8 { + margin-top: 2rem !important + } + + .mt-sm-9 { + margin-top: 2.25rem !important + } + + .mt-sm-10 { + margin-top: 2.5rem !important + } + + .mt-sm-11 { + margin-top: 2.75rem !important + } + + .mt-sm-12 { + margin-top: 3rem !important + } + + .mt-sm-13 { + margin-top: 3.25rem !important + } + + .mt-sm-14 { + margin-top: 3.5rem !important + } + + .mt-sm-15 { + margin-top: 3.75rem !important + } + + .mt-sm-16 { + margin-top: 4rem !important + } + + .mt-sm-17 { + margin-top: 4.25rem !important + } + + .mt-sm-18 { + margin-top: 4.5rem !important + } + + .mt-sm-19 { + margin-top: 4.75rem !important + } + + .mt-sm-20 { + margin-top: 5rem !important + } + + .mt-sm-auto { + margin-top: auto !important + } + + .me-sm-0 { + margin-right: 0 !important + } + + .me-sm-1 { + margin-right: .25rem !important + } + + .me-sm-2 { + margin-right: .5rem !important + } + + .me-sm-3 { + margin-right: .75rem !important + } + + .me-sm-4 { + margin-right: 1rem !important + } + + .me-sm-5 { + margin-right: 1.25rem !important + } + + .me-sm-6 { + margin-right: 1.5rem !important + } + + .me-sm-7 { + margin-right: 1.75rem !important + } + + .me-sm-8 { + margin-right: 2rem !important + } + + .me-sm-9 { + margin-right: 2.25rem !important + } + + .me-sm-10 { + margin-right: 2.5rem !important + } + + .me-sm-11 { + margin-right: 2.75rem !important + } + + .me-sm-12 { + margin-right: 3rem !important + } + + .me-sm-13 { + margin-right: 3.25rem !important + } + + .me-sm-14 { + margin-right: 3.5rem !important + } + + .me-sm-15 { + margin-right: 3.75rem !important + } + + .me-sm-16 { + margin-right: 4rem !important + } + + .me-sm-17 { + margin-right: 4.25rem !important + } + + .me-sm-18 { + margin-right: 4.5rem !important + } + + .me-sm-19 { + margin-right: 4.75rem !important + } + + .me-sm-20 { + margin-right: 5rem !important + } + + .me-sm-auto { + margin-right: auto !important + } + + .mb-sm-0 { + margin-bottom: 0 !important + } + + .mb-sm-1 { + margin-bottom: .25rem !important + } + + .mb-sm-2 { + margin-bottom: .5rem !important + } + + .mb-sm-3 { + margin-bottom: .75rem !important + } + + .mb-sm-4 { + margin-bottom: 1rem !important + } + + .mb-sm-5 { + margin-bottom: 1.25rem !important + } + + .mb-sm-6 { + margin-bottom: 1.5rem !important + } + + .mb-sm-7 { + margin-bottom: 1.75rem !important + } + + .mb-sm-8 { + margin-bottom: 2rem !important + } + + .mb-sm-9 { + margin-bottom: 2.25rem !important + } + + .mb-sm-10 { + margin-bottom: 2.5rem !important + } + + .mb-sm-11 { + margin-bottom: 2.75rem !important + } + + .mb-sm-12 { + margin-bottom: 3rem !important + } + + .mb-sm-13 { + margin-bottom: 3.25rem !important + } + + .mb-sm-14 { + margin-bottom: 3.5rem !important + } + + .mb-sm-15 { + margin-bottom: 3.75rem !important + } + + .mb-sm-16 { + margin-bottom: 4rem !important + } + + .mb-sm-17 { + margin-bottom: 4.25rem !important + } + + .mb-sm-18 { + margin-bottom: 4.5rem !important + } + + .mb-sm-19 { + margin-bottom: 4.75rem !important + } + + .mb-sm-20 { + margin-bottom: 5rem !important + } + + .mb-sm-auto { + margin-bottom: auto !important + } + + .ms-sm-0 { + margin-left: 0 !important + } + + .ms-sm-1 { + margin-left: .25rem !important + } + + .ms-sm-2 { + margin-left: .5rem !important + } + + .ms-sm-3 { + margin-left: .75rem !important + } + + .ms-sm-4 { + margin-left: 1rem !important + } + + .ms-sm-5 { + margin-left: 1.25rem !important + } + + .ms-sm-6 { + margin-left: 1.5rem !important + } + + .ms-sm-7 { + margin-left: 1.75rem !important + } + + .ms-sm-8 { + margin-left: 2rem !important + } + + .ms-sm-9 { + margin-left: 2.25rem !important + } + + .ms-sm-10 { + margin-left: 2.5rem !important + } + + .ms-sm-11 { + margin-left: 2.75rem !important + } + + .ms-sm-12 { + margin-left: 3rem !important + } + + .ms-sm-13 { + margin-left: 3.25rem !important + } + + .ms-sm-14 { + margin-left: 3.5rem !important + } + + .ms-sm-15 { + margin-left: 3.75rem !important + } + + .ms-sm-16 { + margin-left: 4rem !important + } + + .ms-sm-17 { + margin-left: 4.25rem !important + } + + .ms-sm-18 { + margin-left: 4.5rem !important + } + + .ms-sm-19 { + margin-left: 4.75rem !important + } + + .ms-sm-20 { + margin-left: 5rem !important + } + + .ms-sm-auto { + margin-left: auto !important + } + + .m-sm-n1 { + margin: -.25rem !important + } + + .m-sm-n2 { + margin: -.5rem !important + } + + .m-sm-n3 { + margin: -.75rem !important + } + + .m-sm-n4 { + margin: -1rem !important + } + + .m-sm-n5 { + margin: -1.25rem !important + } + + .m-sm-n6 { + margin: -1.5rem !important + } + + .m-sm-n7 { + margin: -1.75rem !important + } + + .m-sm-n8 { + margin: -2rem !important + } + + .m-sm-n9 { + margin: -2.25rem !important + } + + .m-sm-n10 { + margin: -2.5rem !important + } + + .m-sm-n11 { + margin: -2.75rem !important + } + + .m-sm-n12 { + margin: -3rem !important + } + + .m-sm-n13 { + margin: -3.25rem !important + } + + .m-sm-n14 { + margin: -3.5rem !important + } + + .m-sm-n15 { + margin: -3.75rem !important + } + + .m-sm-n16 { + margin: -4rem !important + } + + .m-sm-n17 { + margin: -4.25rem !important + } + + .m-sm-n18 { + margin: -4.5rem !important + } + + .m-sm-n19 { + margin: -4.75rem !important + } + + .m-sm-n20 { + margin: -5rem !important + } + + .mx-sm-n1 { + margin-right: -.25rem !important; + margin-left: -.25rem !important + } + + .mx-sm-n2 { + margin-right: -.5rem !important; + margin-left: -.5rem !important + } + + .mx-sm-n3 { + margin-right: -.75rem !important; + margin-left: -.75rem !important + } + + .mx-sm-n4 { + margin-right: -1rem !important; + margin-left: -1rem !important + } + + .mx-sm-n5 { + margin-right: -1.25rem !important; + margin-left: -1.25rem !important + } + + .mx-sm-n6 { + margin-right: -1.5rem !important; + margin-left: -1.5rem !important + } + + .mx-sm-n7 { + margin-right: -1.75rem !important; + margin-left: -1.75rem !important + } + + .mx-sm-n8 { + margin-right: -2rem !important; + margin-left: -2rem !important + } + + .mx-sm-n9 { + margin-right: -2.25rem !important; + margin-left: -2.25rem !important + } + + .mx-sm-n10 { + margin-right: -2.5rem !important; + margin-left: -2.5rem !important + } + + .mx-sm-n11 { + margin-right: -2.75rem !important; + margin-left: -2.75rem !important + } + + .mx-sm-n12 { + margin-right: -3rem !important; + margin-left: -3rem !important + } + + .mx-sm-n13 { + margin-right: -3.25rem !important; + margin-left: -3.25rem !important + } + + .mx-sm-n14 { + margin-right: -3.5rem !important; + margin-left: -3.5rem !important + } + + .mx-sm-n15 { + margin-right: -3.75rem !important; + margin-left: -3.75rem !important + } + + .mx-sm-n16 { + margin-right: -4rem !important; + margin-left: -4rem !important + } + + .mx-sm-n17 { + margin-right: -4.25rem !important; + margin-left: -4.25rem !important + } + + .mx-sm-n18 { + margin-right: -4.5rem !important; + margin-left: -4.5rem !important + } + + .mx-sm-n19 { + margin-right: -4.75rem !important; + margin-left: -4.75rem !important + } + + .mx-sm-n20 { + margin-right: -5rem !important; + margin-left: -5rem !important + } + + .my-sm-n1 { + margin-top: -.25rem !important; + margin-bottom: -.25rem !important + } + + .my-sm-n2 { + margin-top: -.5rem !important; + margin-bottom: -.5rem !important + } + + .my-sm-n3 { + margin-top: -.75rem !important; + margin-bottom: -.75rem !important + } + + .my-sm-n4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important + } + + .my-sm-n5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important + } + + .my-sm-n6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important + } + + .my-sm-n7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important + } + + .my-sm-n8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important + } + + .my-sm-n9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important + } + + .my-sm-n10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important + } + + .my-sm-n11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important + } + + .my-sm-n12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important + } + + .my-sm-n13 { + margin-top: -3.25rem !important; + margin-bottom: -3.25rem !important + } + + .my-sm-n14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important + } + + .my-sm-n15 { + margin-top: -3.75rem !important; + margin-bottom: -3.75rem !important + } + + .my-sm-n16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important + } + + .my-sm-n17 { + margin-top: -4.25rem !important; + margin-bottom: -4.25rem !important + } + + .my-sm-n18 { + margin-top: -4.5rem !important; + margin-bottom: -4.5rem !important + } + + .my-sm-n19 { + margin-top: -4.75rem !important; + margin-bottom: -4.75rem !important + } + + .my-sm-n20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important + } + + .mt-sm-n1 { + margin-top: -.25rem !important + } + + .mt-sm-n2 { + margin-top: -.5rem !important + } + + .mt-sm-n3 { + margin-top: -.75rem !important + } + + .mt-sm-n4 { + margin-top: -1rem !important + } + + .mt-sm-n5 { + margin-top: -1.25rem !important + } + + .mt-sm-n6 { + margin-top: -1.5rem !important + } + + .mt-sm-n7 { + margin-top: -1.75rem !important + } + + .mt-sm-n8 { + margin-top: -2rem !important + } + + .mt-sm-n9 { + margin-top: -2.25rem !important + } + + .mt-sm-n10 { + margin-top: -2.5rem !important + } + + .mt-sm-n11 { + margin-top: -2.75rem !important + } + + .mt-sm-n12 { + margin-top: -3rem !important + } + + .mt-sm-n13 { + margin-top: -3.25rem !important + } + + .mt-sm-n14 { + margin-top: -3.5rem !important + } + + .mt-sm-n15 { + margin-top: -3.75rem !important + } + + .mt-sm-n16 { + margin-top: -4rem !important + } + + .mt-sm-n17 { + margin-top: -4.25rem !important + } + + .mt-sm-n18 { + margin-top: -4.5rem !important + } + + .mt-sm-n19 { + margin-top: -4.75rem !important + } + + .mt-sm-n20 { + margin-top: -5rem !important + } + + .me-sm-n1 { + margin-right: -.25rem !important + } + + .me-sm-n2 { + margin-right: -.5rem !important + } + + .me-sm-n3 { + margin-right: -.75rem !important + } + + .me-sm-n4 { + margin-right: -1rem !important + } + + .me-sm-n5 { + margin-right: -1.25rem !important + } + + .me-sm-n6 { + margin-right: -1.5rem !important + } + + .me-sm-n7 { + margin-right: -1.75rem !important + } + + .me-sm-n8 { + margin-right: -2rem !important + } + + .me-sm-n9 { + margin-right: -2.25rem !important + } + + .me-sm-n10 { + margin-right: -2.5rem !important + } + + .me-sm-n11 { + margin-right: -2.75rem !important + } + + .me-sm-n12 { + margin-right: -3rem !important + } + + .me-sm-n13 { + margin-right: -3.25rem !important + } + + .me-sm-n14 { + margin-right: -3.5rem !important + } + + .me-sm-n15 { + margin-right: -3.75rem !important + } + + .me-sm-n16 { + margin-right: -4rem !important + } + + .me-sm-n17 { + margin-right: -4.25rem !important + } + + .me-sm-n18 { + margin-right: -4.5rem !important + } + + .me-sm-n19 { + margin-right: -4.75rem !important + } + + .me-sm-n20 { + margin-right: -5rem !important + } + + .mb-sm-n1 { + margin-bottom: -.25rem !important + } + + .mb-sm-n2 { + margin-bottom: -.5rem !important + } + + .mb-sm-n3 { + margin-bottom: -.75rem !important + } + + .mb-sm-n4 { + margin-bottom: -1rem !important + } + + .mb-sm-n5 { + margin-bottom: -1.25rem !important + } + + .mb-sm-n6 { + margin-bottom: -1.5rem !important + } + + .mb-sm-n7 { + margin-bottom: -1.75rem !important + } + + .mb-sm-n8 { + margin-bottom: -2rem !important + } + + .mb-sm-n9 { + margin-bottom: -2.25rem !important + } + + .mb-sm-n10 { + margin-bottom: -2.5rem !important + } + + .mb-sm-n11 { + margin-bottom: -2.75rem !important + } + + .mb-sm-n12 { + margin-bottom: -3rem !important + } + + .mb-sm-n13 { + margin-bottom: -3.25rem !important + } + + .mb-sm-n14 { + margin-bottom: -3.5rem !important + } + + .mb-sm-n15 { + margin-bottom: -3.75rem !important + } + + .mb-sm-n16 { + margin-bottom: -4rem !important + } + + .mb-sm-n17 { + margin-bottom: -4.25rem !important + } + + .mb-sm-n18 { + margin-bottom: -4.5rem !important + } + + .mb-sm-n19 { + margin-bottom: -4.75rem !important + } + + .mb-sm-n20 { + margin-bottom: -5rem !important + } + + .ms-sm-n1 { + margin-left: -.25rem !important + } + + .ms-sm-n2 { + margin-left: -.5rem !important + } + + .ms-sm-n3 { + margin-left: -.75rem !important + } + + .ms-sm-n4 { + margin-left: -1rem !important + } + + .ms-sm-n5 { + margin-left: -1.25rem !important + } + + .ms-sm-n6 { + margin-left: -1.5rem !important + } + + .ms-sm-n7 { + margin-left: -1.75rem !important + } + + .ms-sm-n8 { + margin-left: -2rem !important + } + + .ms-sm-n9 { + margin-left: -2.25rem !important + } + + .ms-sm-n10 { + margin-left: -2.5rem !important + } + + .ms-sm-n11 { + margin-left: -2.75rem !important + } + + .ms-sm-n12 { + margin-left: -3rem !important + } + + .ms-sm-n13 { + margin-left: -3.25rem !important + } + + .ms-sm-n14 { + margin-left: -3.5rem !important + } + + .ms-sm-n15 { + margin-left: -3.75rem !important + } + + .ms-sm-n16 { + margin-left: -4rem !important + } + + .ms-sm-n17 { + margin-left: -4.25rem !important + } + + .ms-sm-n18 { + margin-left: -4.5rem !important + } + + .ms-sm-n19 { + margin-left: -4.75rem !important + } + + .ms-sm-n20 { + margin-left: -5rem !important + } + + .p-sm-0 { + padding: 0 !important + } + + .p-sm-1 { + padding: .25rem !important + } + + .p-sm-2 { + padding: .5rem !important + } + + .p-sm-3 { + padding: .75rem !important + } + + .p-sm-4 { + padding: 1rem !important + } + + .p-sm-5 { + padding: 1.25rem !important + } + + .p-sm-6 { + padding: 1.5rem !important + } + + .p-sm-7 { + padding: 1.75rem !important + } + + .p-sm-8 { + padding: 2rem !important + } + + .p-sm-9 { + padding: 2.25rem !important + } + + .p-sm-10 { + padding: 2.5rem !important + } + + .p-sm-11 { + padding: 2.75rem !important + } + + .p-sm-12 { + padding: 3rem !important + } + + .p-sm-13 { + padding: 3.25rem !important + } + + .p-sm-14 { + padding: 3.5rem !important + } + + .p-sm-15 { + padding: 3.75rem !important + } + + .p-sm-16 { + padding: 4rem !important + } + + .p-sm-17 { + padding: 4.25rem !important + } + + .p-sm-18 { + padding: 4.5rem !important + } + + .p-sm-19 { + padding: 4.75rem !important + } + + .p-sm-20 { + padding: 5rem !important + } + + .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important + } + + .px-sm-1 { + padding-right: .25rem !important; + padding-left: .25rem !important + } + + .px-sm-2 { + padding-right: .5rem !important; + padding-left: .5rem !important + } + + .px-sm-3 { + padding-right: .75rem !important; + padding-left: .75rem !important + } + + .px-sm-4 { + padding-right: 1rem !important; + padding-left: 1rem !important + } + + .px-sm-5 { + padding-right: 1.25rem !important; + padding-left: 1.25rem !important + } + + .px-sm-6 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important + } + + .px-sm-7 { + padding-right: 1.75rem !important; + padding-left: 1.75rem !important + } + + .px-sm-8 { + padding-right: 2rem !important; + padding-left: 2rem !important + } + + .px-sm-9 { + padding-right: 2.25rem !important; + padding-left: 2.25rem !important + } + + .px-sm-10 { + padding-right: 2.5rem !important; + padding-left: 2.5rem !important + } + + .px-sm-11 { + padding-right: 2.75rem !important; + padding-left: 2.75rem !important + } + + .px-sm-12 { + padding-right: 3rem !important; + padding-left: 3rem !important + } + + .px-sm-13 { + padding-right: 3.25rem !important; + padding-left: 3.25rem !important + } + + .px-sm-14 { + padding-right: 3.5rem !important; + padding-left: 3.5rem !important + } + + .px-sm-15 { + padding-right: 3.75rem !important; + padding-left: 3.75rem !important + } + + .px-sm-16 { + padding-right: 4rem !important; + padding-left: 4rem !important + } + + .px-sm-17 { + padding-right: 4.25rem !important; + padding-left: 4.25rem !important + } + + .px-sm-18 { + padding-right: 4.5rem !important; + padding-left: 4.5rem !important + } + + .px-sm-19 { + padding-right: 4.75rem !important; + padding-left: 4.75rem !important + } + + .px-sm-20 { + padding-right: 5rem !important; + padding-left: 5rem !important + } + + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important + } + + .py-sm-1 { + padding-top: .25rem !important; + padding-bottom: .25rem !important + } + + .py-sm-2 { + padding-top: .5rem !important; + padding-bottom: .5rem !important + } + + .py-sm-3 { + padding-top: .75rem !important; + padding-bottom: .75rem !important + } + + .py-sm-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important + } + + .py-sm-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important + } + + .py-sm-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important + } + + .py-sm-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important + } + + .py-sm-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important + } + + .py-sm-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important + } + + .py-sm-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important + } + + .py-sm-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important + } + + .py-sm-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important + } + + .py-sm-13 { + padding-top: 3.25rem !important; + padding-bottom: 3.25rem !important + } + + .py-sm-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important + } + + .py-sm-15 { + padding-top: 3.75rem !important; + padding-bottom: 3.75rem !important + } + + .py-sm-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important + } + + .py-sm-17 { + padding-top: 4.25rem !important; + padding-bottom: 4.25rem !important + } + + .py-sm-18 { + padding-top: 4.5rem !important; + padding-bottom: 4.5rem !important + } + + .py-sm-19 { + padding-top: 4.75rem !important; + padding-bottom: 4.75rem !important + } + + .py-sm-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important + } + + .pt-sm-0 { + padding-top: 0 !important + } + + .pt-sm-1 { + padding-top: .25rem !important + } + + .pt-sm-2 { + padding-top: .5rem !important + } + + .pt-sm-3 { + padding-top: .75rem !important + } + + .pt-sm-4 { + padding-top: 1rem !important + } + + .pt-sm-5 { + padding-top: 1.25rem !important + } + + .pt-sm-6 { + padding-top: 1.5rem !important + } + + .pt-sm-7 { + padding-top: 1.75rem !important + } + + .pt-sm-8 { + padding-top: 2rem !important + } + + .pt-sm-9 { + padding-top: 2.25rem !important + } + + .pt-sm-10 { + padding-top: 2.5rem !important + } + + .pt-sm-11 { + padding-top: 2.75rem !important + } + + .pt-sm-12 { + padding-top: 3rem !important + } + + .pt-sm-13 { + padding-top: 3.25rem !important + } + + .pt-sm-14 { + padding-top: 3.5rem !important + } + + .pt-sm-15 { + padding-top: 3.75rem !important + } + + .pt-sm-16 { + padding-top: 4rem !important + } + + .pt-sm-17 { + padding-top: 4.25rem !important + } + + .pt-sm-18 { + padding-top: 4.5rem !important + } + + .pt-sm-19 { + padding-top: 4.75rem !important + } + + .pt-sm-20 { + padding-top: 5rem !important + } + + .pe-sm-0 { + padding-right: 0 !important + } + + .pe-sm-1 { + padding-right: .25rem !important + } + + .pe-sm-2 { + padding-right: .5rem !important + } + + .pe-sm-3 { + padding-right: .75rem !important + } + + .pe-sm-4 { + padding-right: 1rem !important + } + + .pe-sm-5 { + padding-right: 1.25rem !important + } + + .pe-sm-6 { + padding-right: 1.5rem !important + } + + .pe-sm-7 { + padding-right: 1.75rem !important + } + + .pe-sm-8 { + padding-right: 2rem !important + } + + .pe-sm-9 { + padding-right: 2.25rem !important + } + + .pe-sm-10 { + padding-right: 2.5rem !important + } + + .pe-sm-11 { + padding-right: 2.75rem !important + } + + .pe-sm-12 { + padding-right: 3rem !important + } + + .pe-sm-13 { + padding-right: 3.25rem !important + } + + .pe-sm-14 { + padding-right: 3.5rem !important + } + + .pe-sm-15 { + padding-right: 3.75rem !important + } + + .pe-sm-16 { + padding-right: 4rem !important + } + + .pe-sm-17 { + padding-right: 4.25rem !important + } + + .pe-sm-18 { + padding-right: 4.5rem !important + } + + .pe-sm-19 { + padding-right: 4.75rem !important + } + + .pe-sm-20 { + padding-right: 5rem !important + } + + .pb-sm-0 { + padding-bottom: 0 !important + } + + .pb-sm-1 { + padding-bottom: .25rem !important + } + + .pb-sm-2 { + padding-bottom: .5rem !important + } + + .pb-sm-3 { + padding-bottom: .75rem !important + } + + .pb-sm-4 { + padding-bottom: 1rem !important + } + + .pb-sm-5 { + padding-bottom: 1.25rem !important + } + + .pb-sm-6 { + padding-bottom: 1.5rem !important + } + + .pb-sm-7 { + padding-bottom: 1.75rem !important + } + + .pb-sm-8 { + padding-bottom: 2rem !important + } + + .pb-sm-9 { + padding-bottom: 2.25rem !important + } + + .pb-sm-10 { + padding-bottom: 2.5rem !important + } + + .pb-sm-11 { + padding-bottom: 2.75rem !important + } + + .pb-sm-12 { + padding-bottom: 3rem !important + } + + .pb-sm-13 { + padding-bottom: 3.25rem !important + } + + .pb-sm-14 { + padding-bottom: 3.5rem !important + } + + .pb-sm-15 { + padding-bottom: 3.75rem !important + } + + .pb-sm-16 { + padding-bottom: 4rem !important + } + + .pb-sm-17 { + padding-bottom: 4.25rem !important + } + + .pb-sm-18 { + padding-bottom: 4.5rem !important + } + + .pb-sm-19 { + padding-bottom: 4.75rem !important + } + + .pb-sm-20 { + padding-bottom: 5rem !important + } + + .ps-sm-0 { + padding-left: 0 !important + } + + .ps-sm-1 { + padding-left: .25rem !important + } + + .ps-sm-2 { + padding-left: .5rem !important + } + + .ps-sm-3 { + padding-left: .75rem !important + } + + .ps-sm-4 { + padding-left: 1rem !important + } + + .ps-sm-5 { + padding-left: 1.25rem !important + } + + .ps-sm-6 { + padding-left: 1.5rem !important + } + + .ps-sm-7 { + padding-left: 1.75rem !important + } + + .ps-sm-8 { + padding-left: 2rem !important + } + + .ps-sm-9 { + padding-left: 2.25rem !important + } + + .ps-sm-10 { + padding-left: 2.5rem !important + } + + .ps-sm-11 { + padding-left: 2.75rem !important + } + + .ps-sm-12 { + padding-left: 3rem !important + } + + .ps-sm-13 { + padding-left: 3.25rem !important + } + + .ps-sm-14 { + padding-left: 3.5rem !important + } + + .ps-sm-15 { + padding-left: 3.75rem !important + } + + .ps-sm-16 { + padding-left: 4rem !important + } + + .ps-sm-17 { + padding-left: 4.25rem !important + } + + .ps-sm-18 { + padding-left: 4.5rem !important + } + + .ps-sm-19 { + padding-left: 4.75rem !important + } + + .ps-sm-20 { + padding-left: 5rem !important + } + + .fs-sm-1 { + font-size: calc(1.3rem + .6vw) !important + } + + .fs-sm-2 { + font-size: calc(1.275rem + .3vw) !important + } + + .fs-sm-3 { + font-size: calc(1.26rem + .12vw) !important + } + + .fs-sm-4 { + font-size: 1.25rem !important + } + + .fs-sm-5 { + font-size: 1.15rem !important + } + + .fs-sm-6 { + font-size: 1.075rem !important + } + + .fs-sm-7 { + font-size: .95rem !important + } + + .fs-sm-8 { + font-size: .85rem !important + } + + .fs-sm-9 { + font-size: .75rem !important + } + + .fs-sm-10 { + font-size: .5rem !important + } + + .fs-sm-base { + font-size: 1rem !important + } + + .fs-sm-fluid { + font-size: 100% !important + } + + .fs-sm-2x { + font-size: calc(1.325rem + .9vw) !important + } + + .fs-sm-2qx { + font-size: calc(1.35rem + 1.2vw) !important + } + + .fs-sm-2hx { + font-size: calc(1.375rem + 1.5vw) !important + } + + .fs-sm-2tx { + font-size: calc(1.4rem + 1.8vw) !important + } + + .fs-sm-3x { + font-size: calc(1.425rem + 2.1vw) !important + } + + .fs-sm-3qx { + font-size: calc(1.45rem + 2.4vw) !important + } + + .fs-sm-3hx { + font-size: calc(1.475rem + 2.7vw) !important + } + + .fs-sm-3tx { + font-size: calc(1.5rem + 3vw) !important + } + + .fs-sm-4x { + font-size: calc(1.525rem + 3.3vw) !important + } + + .fs-sm-4qx { + font-size: calc(1.55rem + 3.6vw) !important + } + + .fs-sm-4hx { + font-size: calc(1.575rem + 3.9vw) !important + } + + .fs-sm-4tx { + font-size: calc(1.6rem + 4.2vw) !important + } + + .fs-sm-5x { + font-size: calc(1.625rem + 4.5vw) !important + } + + .fs-sm-5qx { + font-size: calc(1.65rem + 4.8vw) !important + } + + .fs-sm-5hx { + font-size: calc(1.675rem + 5.1vw) !important + } + + .fs-sm-5tx { + font-size: calc(1.7rem + 5.4vw) !important + } + + .text-sm-start { + text-align: left !important + } + + .text-sm-end { + text-align: right !important + } + + .text-sm-center { + text-align: center !important + } + + .min-w-sm-unset { + min-width: unset !important + } + + .min-w-sm-25 { + min-width: 25% !important + } + + .min-w-sm-50 { + min-width: 50% !important + } + + .min-w-sm-75 { + min-width: 75% !important + } + + .min-w-sm-100 { + min-width: 100% !important + } + + .min-w-sm-auto { + min-width: auto !important + } + + .min-w-sm-1px { + min-width: 1px !important + } + + .min-w-sm-2px { + min-width: 2px !important + } + + .min-w-sm-3px { + min-width: 3px !important + } + + .min-w-sm-4px { + min-width: 4px !important + } + + .min-w-sm-5px { + min-width: 5px !important + } + + .min-w-sm-6px { + min-width: 6px !important + } + + .min-w-sm-7px { + min-width: 7px !important + } + + .min-w-sm-8px { + min-width: 8px !important + } + + .min-w-sm-9px { + min-width: 9px !important + } + + .min-w-sm-10px { + min-width: 10px !important + } + + .min-w-sm-15px { + min-width: 15px !important + } + + .min-w-sm-20px { + min-width: 20px !important + } + + .min-w-sm-25px { + min-width: 25px !important + } + + .min-w-sm-30px { + min-width: 30px !important + } + + .min-w-sm-35px { + min-width: 35px !important + } + + .min-w-sm-40px { + min-width: 40px !important + } + + .min-w-sm-45px { + min-width: 45px !important + } + + .min-w-sm-50px { + min-width: 50px !important + } + + .min-w-sm-55px { + min-width: 55px !important + } + + .min-w-sm-60px { + min-width: 60px !important + } + + .min-w-sm-65px { + min-width: 65px !important + } + + .min-w-sm-70px { + min-width: 70px !important + } + + .min-w-sm-75px { + min-width: 75px !important + } + + .min-w-sm-80px { + min-width: 80px !important + } + + .min-w-sm-85px { + min-width: 85px !important + } + + .min-w-sm-90px { + min-width: 90px !important + } + + .min-w-sm-95px { + min-width: 95px !important + } + + .min-w-sm-100px { + min-width: 100px !important + } + + .min-w-sm-125px { + min-width: 125px !important + } + + .min-w-sm-150px { + min-width: 150px !important + } + + .min-w-sm-175px { + min-width: 175px !important + } + + .min-w-sm-200px { + min-width: 200px !important + } + + .min-w-sm-225px { + min-width: 225px !important + } + + .min-w-sm-250px { + min-width: 250px !important + } + + .min-w-sm-275px { + min-width: 275px !important + } + + .min-w-sm-300px { + min-width: 300px !important + } + + .min-w-sm-325px { + min-width: 325px !important + } + + .min-w-sm-350px { + min-width: 350px !important + } + + .min-w-sm-375px { + min-width: 375px !important + } + + .min-w-sm-400px { + min-width: 400px !important + } + + .min-w-sm-425px { + min-width: 425px !important + } + + .min-w-sm-450px { + min-width: 450px !important + } + + .min-w-sm-475px { + min-width: 475px !important + } + + .min-w-sm-500px { + min-width: 500px !important + } + + .min-w-sm-550px { + min-width: 550px !important + } + + .min-w-sm-600px { + min-width: 600px !important + } + + .min-w-sm-650px { + min-width: 650px !important + } + + .min-w-sm-700px { + min-width: 700px !important + } + + .min-w-sm-750px { + min-width: 750px !important + } + + .min-w-sm-800px { + min-width: 800px !important + } + + .min-w-sm-850px { + min-width: 850px !important + } + + .min-w-sm-900px { + min-width: 900px !important + } + + .min-w-sm-950px { + min-width: 950px !important + } + + .min-w-sm-1000px { + min-width: 1000px !important + } + + .min-h-sm-unset { + min-height: unset !important + } + + .min-h-sm-25 { + min-height: 25% !important + } + + .min-h-sm-50 { + min-height: 50% !important + } + + .min-h-sm-75 { + min-height: 75% !important + } + + .min-h-sm-100 { + min-height: 100% !important + } + + .min-h-sm-auto { + min-height: auto !important + } + + .min-h-sm-1px { + min-height: 1px !important + } + + .min-h-sm-2px { + min-height: 2px !important + } + + .min-h-sm-3px { + min-height: 3px !important + } + + .min-h-sm-4px { + min-height: 4px !important + } + + .min-h-sm-5px { + min-height: 5px !important + } + + .min-h-sm-6px { + min-height: 6px !important + } + + .min-h-sm-7px { + min-height: 7px !important + } + + .min-h-sm-8px { + min-height: 8px !important + } + + .min-h-sm-9px { + min-height: 9px !important + } + + .min-h-sm-10px { + min-height: 10px !important + } + + .min-h-sm-15px { + min-height: 15px !important + } + + .min-h-sm-20px { + min-height: 20px !important + } + + .min-h-sm-25px { + min-height: 25px !important + } + + .min-h-sm-30px { + min-height: 30px !important + } + + .min-h-sm-35px { + min-height: 35px !important + } + + .min-h-sm-40px { + min-height: 40px !important + } + + .min-h-sm-45px { + min-height: 45px !important + } + + .min-h-sm-50px { + min-height: 50px !important + } + + .min-h-sm-55px { + min-height: 55px !important + } + + .min-h-sm-60px { + min-height: 60px !important + } + + .min-h-sm-65px { + min-height: 65px !important + } + + .min-h-sm-70px { + min-height: 70px !important + } + + .min-h-sm-75px { + min-height: 75px !important + } + + .min-h-sm-80px { + min-height: 80px !important + } + + .min-h-sm-85px { + min-height: 85px !important + } + + .min-h-sm-90px { + min-height: 90px !important + } + + .min-h-sm-95px { + min-height: 95px !important + } + + .min-h-sm-100px { + min-height: 100px !important + } + + .min-h-sm-125px { + min-height: 125px !important + } + + .min-h-sm-150px { + min-height: 150px !important + } + + .min-h-sm-175px { + min-height: 175px !important + } + + .min-h-sm-200px { + min-height: 200px !important + } + + .min-h-sm-225px { + min-height: 225px !important + } + + .min-h-sm-250px { + min-height: 250px !important + } + + .min-h-sm-275px { + min-height: 275px !important + } + + .min-h-sm-300px { + min-height: 300px !important + } + + .min-h-sm-325px { + min-height: 325px !important + } + + .min-h-sm-350px { + min-height: 350px !important + } + + .min-h-sm-375px { + min-height: 375px !important + } + + .min-h-sm-400px { + min-height: 400px !important + } + + .min-h-sm-425px { + min-height: 425px !important + } + + .min-h-sm-450px { + min-height: 450px !important + } + + .min-h-sm-475px { + min-height: 475px !important + } + + .min-h-sm-500px { + min-height: 500px !important + } + + .min-h-sm-550px { + min-height: 550px !important + } + + .min-h-sm-600px { + min-height: 600px !important + } + + .min-h-sm-650px { + min-height: 650px !important + } + + .min-h-sm-700px { + min-height: 700px !important + } + + .min-h-sm-750px { + min-height: 750px !important + } + + .min-h-sm-800px { + min-height: 800px !important + } + + .min-h-sm-850px { + min-height: 850px !important + } + + .min-h-sm-900px { + min-height: 900px !important + } + + .min-h-sm-950px { + min-height: 950px !important + } + + .min-h-sm-1000px { + min-height: 1000px !important + } +} + +@media (min-width:768px) { + .float-md-start { + float: left !important + } + + .float-md-end { + float: right !important + } + + .float-md-none { + float: none !important + } + + .d-md-inline { + display: inline !important + } + + .d-md-inline-block { + display: inline-block !important + } + + .d-md-block { + display: block !important + } + + .d-md-grid { + display: grid !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 + } + + .d-md-none { + display: none !important + } + + .position-md-static { + position: static !important + } + + .position-md-relative { + position: relative !important + } + + .position-md-absolute { + position: absolute !important + } + + .position-md-fixed { + position: fixed !important + } + + .position-md-sticky { + position: sticky !important + } + + .w-md-unset { + width: unset !important + } + + .w-md-25 { + width: 25% !important + } + + .w-md-50 { + width: 50% !important + } + + .w-md-75 { + width: 75% !important + } + + .w-md-100 { + width: 100% !important + } + + .w-md-auto { + width: auto !important + } + + .w-md-1px { + width: 1px !important + } + + .w-md-2px { + width: 2px !important + } + + .w-md-3px { + width: 3px !important + } + + .w-md-4px { + width: 4px !important + } + + .w-md-5px { + width: 5px !important + } + + .w-md-6px { + width: 6px !important + } + + .w-md-7px { + width: 7px !important + } + + .w-md-8px { + width: 8px !important + } + + .w-md-9px { + width: 9px !important + } + + .w-md-10px { + width: 10px !important + } + + .w-md-15px { + width: 15px !important + } + + .w-md-20px { + width: 20px !important + } + + .w-md-25px { + width: 25px !important + } + + .w-md-30px { + width: 30px !important + } + + .w-md-35px { + width: 35px !important + } + + .w-md-40px { + width: 40px !important + } + + .w-md-45px { + width: 45px !important + } + + .w-md-50px { + width: 50px !important + } + + .w-md-55px { + width: 55px !important + } + + .w-md-60px { + width: 60px !important + } + + .w-md-65px { + width: 65px !important + } + + .w-md-70px { + width: 70px !important + } + + .w-md-75px { + width: 75px !important + } + + .w-md-80px { + width: 80px !important + } + + .w-md-85px { + width: 85px !important + } + + .w-md-90px { + width: 90px !important + } + + .w-md-95px { + width: 95px !important + } + + .w-md-100px { + width: 100px !important + } + + .w-md-125px { + width: 125px !important + } + + .w-md-150px { + width: 150px !important + } + + .w-md-175px { + width: 175px !important + } + + .w-md-200px { + width: 200px !important + } + + .w-md-225px { + width: 225px !important + } + + .w-md-250px { + width: 250px !important + } + + .w-md-275px { + width: 275px !important + } + + .w-md-300px { + width: 300px !important + } + + .w-md-325px { + width: 325px !important + } + + .w-md-350px { + width: 350px !important + } + + .w-md-375px { + width: 375px !important + } + + .w-md-400px { + width: 400px !important + } + + .w-md-425px { + width: 425px !important + } + + .w-md-450px { + width: 450px !important + } + + .w-md-475px { + width: 475px !important + } + + .w-md-500px { + width: 500px !important + } + + .w-md-550px { + width: 550px !important + } + + .w-md-600px { + width: 600px !important + } + + .w-md-650px { + width: 650px !important + } + + .w-md-700px { + width: 700px !important + } + + .w-md-750px { + width: 750px !important + } + + .w-md-800px { + width: 800px !important + } + + .w-md-850px { + width: 850px !important + } + + .w-md-900px { + width: 900px !important + } + + .w-md-950px { + width: 950px !important + } + + .w-md-1000px { + width: 1000px !important + } + + .mw-md-unset { + max-width: unset !important + } + + .mw-md-25 { + max-width: 25% !important + } + + .mw-md-50 { + max-width: 50% !important + } + + .mw-md-75 { + max-width: 75% !important + } + + .mw-md-100 { + max-width: 100% !important + } + + .mw-md-auto { + max-width: auto !important + } + + .mw-md-1px { + max-width: 1px !important + } + + .mw-md-2px { + max-width: 2px !important + } + + .mw-md-3px { + max-width: 3px !important + } + + .mw-md-4px { + max-width: 4px !important + } + + .mw-md-5px { + max-width: 5px !important + } + + .mw-md-6px { + max-width: 6px !important + } + + .mw-md-7px { + max-width: 7px !important + } + + .mw-md-8px { + max-width: 8px !important + } + + .mw-md-9px { + max-width: 9px !important + } + + .mw-md-10px { + max-width: 10px !important + } + + .mw-md-15px { + max-width: 15px !important + } + + .mw-md-20px { + max-width: 20px !important + } + + .mw-md-25px { + max-width: 25px !important + } + + .mw-md-30px { + max-width: 30px !important + } + + .mw-md-35px { + max-width: 35px !important + } + + .mw-md-40px { + max-width: 40px !important + } + + .mw-md-45px { + max-width: 45px !important + } + + .mw-md-50px { + max-width: 50px !important + } + + .mw-md-55px { + max-width: 55px !important + } + + .mw-md-60px { + max-width: 60px !important + } + + .mw-md-65px { + max-width: 65px !important + } + + .mw-md-70px { + max-width: 70px !important + } + + .mw-md-75px { + max-width: 75px !important + } + + .mw-md-80px { + max-width: 80px !important + } + + .mw-md-85px { + max-width: 85px !important + } + + .mw-md-90px { + max-width: 90px !important + } + + .mw-md-95px { + max-width: 95px !important + } + + .mw-md-100px { + max-width: 100px !important + } + + .mw-md-125px { + max-width: 125px !important + } + + .mw-md-150px { + max-width: 150px !important + } + + .mw-md-175px { + max-width: 175px !important + } + + .mw-md-200px { + max-width: 200px !important + } + + .mw-md-225px { + max-width: 225px !important + } + + .mw-md-250px { + max-width: 250px !important + } + + .mw-md-275px { + max-width: 275px !important + } + + .mw-md-300px { + max-width: 300px !important + } + + .mw-md-325px { + max-width: 325px !important + } + + .mw-md-350px { + max-width: 350px !important + } + + .mw-md-375px { + max-width: 375px !important + } + + .mw-md-400px { + max-width: 400px !important + } + + .mw-md-425px { + max-width: 425px !important + } + + .mw-md-450px { + max-width: 450px !important + } + + .mw-md-475px { + max-width: 475px !important + } + + .mw-md-500px { + max-width: 500px !important + } + + .mw-md-550px { + max-width: 550px !important + } + + .mw-md-600px { + max-width: 600px !important + } + + .mw-md-650px { + max-width: 650px !important + } + + .mw-md-700px { + max-width: 700px !important + } + + .mw-md-750px { + max-width: 750px !important + } + + .mw-md-800px { + max-width: 800px !important + } + + .mw-md-850px { + max-width: 850px !important + } + + .mw-md-900px { + max-width: 900px !important + } + + .mw-md-950px { + max-width: 950px !important + } + + .mw-md-1000px { + max-width: 1000px !important + } + + .h-md-unset { + height: unset !important + } + + .h-md-25 { + height: 25% !important + } + + .h-md-50 { + height: 50% !important + } + + .h-md-75 { + height: 75% !important + } + + .h-md-100 { + height: 100% !important + } + + .h-md-auto { + height: auto !important + } + + .h-md-1px { + height: 1px !important + } + + .h-md-2px { + height: 2px !important + } + + .h-md-3px { + height: 3px !important + } + + .h-md-4px { + height: 4px !important + } + + .h-md-5px { + height: 5px !important + } + + .h-md-6px { + height: 6px !important + } + + .h-md-7px { + height: 7px !important + } + + .h-md-8px { + height: 8px !important + } + + .h-md-9px { + height: 9px !important + } + + .h-md-10px { + height: 10px !important + } + + .h-md-15px { + height: 15px !important + } + + .h-md-20px { + height: 20px !important + } + + .h-md-25px { + height: 25px !important + } + + .h-md-30px { + height: 30px !important + } + + .h-md-35px { + height: 35px !important + } + + .h-md-40px { + height: 40px !important + } + + .h-md-45px { + height: 45px !important + } + + .h-md-50px { + height: 50px !important + } + + .h-md-55px { + height: 55px !important + } + + .h-md-60px { + height: 60px !important + } + + .h-md-65px { + height: 65px !important + } + + .h-md-70px { + height: 70px !important + } + + .h-md-75px { + height: 75px !important + } + + .h-md-80px { + height: 80px !important + } + + .h-md-85px { + height: 85px !important + } + + .h-md-90px { + height: 90px !important + } + + .h-md-95px { + height: 95px !important + } + + .h-md-100px { + height: 100px !important + } + + .h-md-125px { + height: 125px !important + } + + .h-md-150px { + height: 150px !important + } + + .h-md-175px { + height: 175px !important + } + + .h-md-200px { + height: 200px !important + } + + .h-md-225px { + height: 225px !important + } + + .h-md-250px { + height: 250px !important + } + + .h-md-275px { + height: 275px !important + } + + .h-md-300px { + height: 300px !important + } + + .h-md-325px { + height: 325px !important + } + + .h-md-350px { + height: 350px !important + } + + .h-md-375px { + height: 375px !important + } + + .h-md-400px { + height: 400px !important + } + + .h-md-425px { + height: 425px !important + } + + .h-md-450px { + height: 450px !important + } + + .h-md-475px { + height: 475px !important + } + + .h-md-500px { + height: 500px !important + } + + .h-md-550px { + height: 550px !important + } + + .h-md-600px { + height: 600px !important + } + + .h-md-650px { + height: 650px !important + } + + .h-md-700px { + height: 700px !important + } + + .h-md-750px { + height: 750px !important + } + + .h-md-800px { + height: 800px !important + } + + .h-md-850px { + height: 850px !important + } + + .h-md-900px { + height: 900px !important + } + + .h-md-950px { + height: 950px !important + } + + .h-md-1000px { + height: 1000px !important + } + + .mh-md-unset { + max-height: unset !important + } + + .mh-md-25 { + max-height: 25% !important + } + + .mh-md-50 { + max-height: 50% !important + } + + .mh-md-75 { + max-height: 75% !important + } + + .mh-md-100 { + max-height: 100% !important + } + + .mh-md-auto { + max-height: auto !important + } + + .mh-md-1px { + max-height: 1px !important + } + + .mh-md-2px { + max-height: 2px !important + } + + .mh-md-3px { + max-height: 3px !important + } + + .mh-md-4px { + max-height: 4px !important + } + + .mh-md-5px { + max-height: 5px !important + } + + .mh-md-6px { + max-height: 6px !important + } + + .mh-md-7px { + max-height: 7px !important + } + + .mh-md-8px { + max-height: 8px !important + } + + .mh-md-9px { + max-height: 9px !important + } + + .mh-md-10px { + max-height: 10px !important + } + + .mh-md-15px { + max-height: 15px !important + } + + .mh-md-20px { + max-height: 20px !important + } + + .mh-md-25px { + max-height: 25px !important + } + + .mh-md-30px { + max-height: 30px !important + } + + .mh-md-35px { + max-height: 35px !important + } + + .mh-md-40px { + max-height: 40px !important + } + + .mh-md-45px { + max-height: 45px !important + } + + .mh-md-50px { + max-height: 50px !important + } + + .mh-md-55px { + max-height: 55px !important + } + + .mh-md-60px { + max-height: 60px !important + } + + .mh-md-65px { + max-height: 65px !important + } + + .mh-md-70px { + max-height: 70px !important + } + + .mh-md-75px { + max-height: 75px !important + } + + .mh-md-80px { + max-height: 80px !important + } + + .mh-md-85px { + max-height: 85px !important + } + + .mh-md-90px { + max-height: 90px !important + } + + .mh-md-95px { + max-height: 95px !important + } + + .mh-md-100px { + max-height: 100px !important + } + + .mh-md-125px { + max-height: 125px !important + } + + .mh-md-150px { + max-height: 150px !important + } + + .mh-md-175px { + max-height: 175px !important + } + + .mh-md-200px { + max-height: 200px !important + } + + .mh-md-225px { + max-height: 225px !important + } + + .mh-md-250px { + max-height: 250px !important + } + + .mh-md-275px { + max-height: 275px !important + } + + .mh-md-300px { + max-height: 300px !important + } + + .mh-md-325px { + max-height: 325px !important + } + + .mh-md-350px { + max-height: 350px !important + } + + .mh-md-375px { + max-height: 375px !important + } + + .mh-md-400px { + max-height: 400px !important + } + + .mh-md-425px { + max-height: 425px !important + } + + .mh-md-450px { + max-height: 450px !important + } + + .mh-md-475px { + max-height: 475px !important + } + + .mh-md-500px { + max-height: 500px !important + } + + .mh-md-550px { + max-height: 550px !important + } + + .mh-md-600px { + max-height: 600px !important + } + + .mh-md-650px { + max-height: 650px !important + } + + .mh-md-700px { + max-height: 700px !important + } + + .mh-md-750px { + max-height: 750px !important + } + + .mh-md-800px { + max-height: 800px !important + } + + .mh-md-850px { + max-height: 850px !important + } + + .mh-md-900px { + max-height: 900px !important + } + + .mh-md-950px { + max-height: 950px !important + } + + .mh-md-1000px { + max-height: 1000px !important + } + + .flex-md-fill { + flex: 1 1 auto !important + } + + .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-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 + } + + .flex-md-wrap { + flex-wrap: wrap !important + } + + .flex-md-nowrap { + flex-wrap: nowrap !important + } + + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important + } + + .gap-md-0 { + gap: 0 !important + } + + .gap-md-1 { + gap: .25rem !important + } + + .gap-md-2 { + gap: .5rem !important + } + + .gap-md-3 { + gap: .75rem !important + } + + .gap-md-4 { + gap: 1rem !important + } + + .gap-md-5 { + gap: 1.25rem !important + } + + .gap-md-6 { + gap: 1.5rem !important + } + + .gap-md-7 { + gap: 1.75rem !important + } + + .gap-md-8 { + gap: 2rem !important + } + + .gap-md-9 { + gap: 2.25rem !important + } + + .gap-md-10 { + gap: 2.5rem !important + } + + .gap-md-11 { + gap: 2.75rem !important + } + + .gap-md-12 { + gap: 3rem !important + } + + .gap-md-13 { + gap: 3.25rem !important + } + + .gap-md-14 { + gap: 3.5rem !important + } + + .gap-md-15 { + gap: 3.75rem !important + } + + .gap-md-16 { + gap: 4rem !important + } + + .gap-md-17 { + gap: 4.25rem !important + } + + .gap-md-18 { + gap: 4.5rem !important + } + + .gap-md-19 { + gap: 4.75rem !important + } + + .gap-md-20 { + gap: 5rem !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 + } + + .justify-content-md-evenly { + justify-content: space-evenly !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 + } + + .order-md-first { + order: -1 !important + } + + .order-md-0 { + order: 0 !important + } + + .order-md-1 { + order: 1 !important + } + + .order-md-2 { + order: 2 !important + } + + .order-md-3 { + order: 3 !important + } + + .order-md-4 { + order: 4 !important + } + + .order-md-5 { + order: 5 !important + } + + .order-md-last { + order: 6 !important + } + + .m-md-0 { + margin: 0 !important + } + + .m-md-1 { + margin: .25rem !important + } + + .m-md-2 { + margin: .5rem !important + } + + .m-md-3 { + margin: .75rem !important + } + + .m-md-4 { + margin: 1rem !important + } + + .m-md-5 { + margin: 1.25rem !important + } + + .m-md-6 { + margin: 1.5rem !important + } + + .m-md-7 { + margin: 1.75rem !important + } + + .m-md-8 { + margin: 2rem !important + } + + .m-md-9 { + margin: 2.25rem !important + } + + .m-md-10 { + margin: 2.5rem !important + } + + .m-md-11 { + margin: 2.75rem !important + } + + .m-md-12 { + margin: 3rem !important + } + + .m-md-13 { + margin: 3.25rem !important + } + + .m-md-14 { + margin: 3.5rem !important + } + + .m-md-15 { + margin: 3.75rem !important + } + + .m-md-16 { + margin: 4rem !important + } + + .m-md-17 { + margin: 4.25rem !important + } + + .m-md-18 { + margin: 4.5rem !important + } + + .m-md-19 { + margin: 4.75rem !important + } + + .m-md-20 { + margin: 5rem !important + } + + .m-md-auto { + margin: auto !important + } + + .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important + } + + .mx-md-1 { + margin-right: .25rem !important; + margin-left: .25rem !important + } + + .mx-md-2 { + margin-right: .5rem !important; + margin-left: .5rem !important + } + + .mx-md-3 { + margin-right: .75rem !important; + margin-left: .75rem !important + } + + .mx-md-4 { + margin-right: 1rem !important; + margin-left: 1rem !important + } + + .mx-md-5 { + margin-right: 1.25rem !important; + margin-left: 1.25rem !important + } + + .mx-md-6 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important + } + + .mx-md-7 { + margin-right: 1.75rem !important; + margin-left: 1.75rem !important + } + + .mx-md-8 { + margin-right: 2rem !important; + margin-left: 2rem !important + } + + .mx-md-9 { + margin-right: 2.25rem !important; + margin-left: 2.25rem !important + } + + .mx-md-10 { + margin-right: 2.5rem !important; + margin-left: 2.5rem !important + } + + .mx-md-11 { + margin-right: 2.75rem !important; + margin-left: 2.75rem !important + } + + .mx-md-12 { + margin-right: 3rem !important; + margin-left: 3rem !important + } + + .mx-md-13 { + margin-right: 3.25rem !important; + margin-left: 3.25rem !important + } + + .mx-md-14 { + margin-right: 3.5rem !important; + margin-left: 3.5rem !important + } + + .mx-md-15 { + margin-right: 3.75rem !important; + margin-left: 3.75rem !important + } + + .mx-md-16 { + margin-right: 4rem !important; + margin-left: 4rem !important + } + + .mx-md-17 { + margin-right: 4.25rem !important; + margin-left: 4.25rem !important + } + + .mx-md-18 { + margin-right: 4.5rem !important; + margin-left: 4.5rem !important + } + + .mx-md-19 { + margin-right: 4.75rem !important; + margin-left: 4.75rem !important + } + + .mx-md-20 { + margin-right: 5rem !important; + margin-left: 5rem !important + } + + .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important + } + + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important + } + + .my-md-1 { + margin-top: .25rem !important; + margin-bottom: .25rem !important + } + + .my-md-2 { + margin-top: .5rem !important; + margin-bottom: .5rem !important + } + + .my-md-3 { + margin-top: .75rem !important; + margin-bottom: .75rem !important + } + + .my-md-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important + } + + .my-md-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important + } + + .my-md-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important + } + + .my-md-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important + } + + .my-md-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important + } + + .my-md-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important + } + + .my-md-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important + } + + .my-md-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important + } + + .my-md-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important + } + + .my-md-13 { + margin-top: 3.25rem !important; + margin-bottom: 3.25rem !important + } + + .my-md-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important + } + + .my-md-15 { + margin-top: 3.75rem !important; + margin-bottom: 3.75rem !important + } + + .my-md-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important + } + + .my-md-17 { + margin-top: 4.25rem !important; + margin-bottom: 4.25rem !important + } + + .my-md-18 { + margin-top: 4.5rem !important; + margin-bottom: 4.5rem !important + } + + .my-md-19 { + margin-top: 4.75rem !important; + margin-bottom: 4.75rem !important + } + + .my-md-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important + } + + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important + } + + .mt-md-0 { + margin-top: 0 !important + } + + .mt-md-1 { + margin-top: .25rem !important + } + + .mt-md-2 { + margin-top: .5rem !important + } + + .mt-md-3 { + margin-top: .75rem !important + } + + .mt-md-4 { + margin-top: 1rem !important + } + + .mt-md-5 { + margin-top: 1.25rem !important + } + + .mt-md-6 { + margin-top: 1.5rem !important + } + + .mt-md-7 { + margin-top: 1.75rem !important + } + + .mt-md-8 { + margin-top: 2rem !important + } + + .mt-md-9 { + margin-top: 2.25rem !important + } + + .mt-md-10 { + margin-top: 2.5rem !important + } + + .mt-md-11 { + margin-top: 2.75rem !important + } + + .mt-md-12 { + margin-top: 3rem !important + } + + .mt-md-13 { + margin-top: 3.25rem !important + } + + .mt-md-14 { + margin-top: 3.5rem !important + } + + .mt-md-15 { + margin-top: 3.75rem !important + } + + .mt-md-16 { + margin-top: 4rem !important + } + + .mt-md-17 { + margin-top: 4.25rem !important + } + + .mt-md-18 { + margin-top: 4.5rem !important + } + + .mt-md-19 { + margin-top: 4.75rem !important + } + + .mt-md-20 { + margin-top: 5rem !important + } + + .mt-md-auto { + margin-top: auto !important + } + + .me-md-0 { + margin-right: 0 !important + } + + .me-md-1 { + margin-right: .25rem !important + } + + .me-md-2 { + margin-right: .5rem !important + } + + .me-md-3 { + margin-right: .75rem !important + } + + .me-md-4 { + margin-right: 1rem !important + } + + .me-md-5 { + margin-right: 1.25rem !important + } + + .me-md-6 { + margin-right: 1.5rem !important + } + + .me-md-7 { + margin-right: 1.75rem !important + } + + .me-md-8 { + margin-right: 2rem !important + } + + .me-md-9 { + margin-right: 2.25rem !important + } + + .me-md-10 { + margin-right: 2.5rem !important + } + + .me-md-11 { + margin-right: 2.75rem !important + } + + .me-md-12 { + margin-right: 3rem !important + } + + .me-md-13 { + margin-right: 3.25rem !important + } + + .me-md-14 { + margin-right: 3.5rem !important + } + + .me-md-15 { + margin-right: 3.75rem !important + } + + .me-md-16 { + margin-right: 4rem !important + } + + .me-md-17 { + margin-right: 4.25rem !important + } + + .me-md-18 { + margin-right: 4.5rem !important + } + + .me-md-19 { + margin-right: 4.75rem !important + } + + .me-md-20 { + margin-right: 5rem !important + } + + .me-md-auto { + margin-right: auto !important + } + + .mb-md-0 { + margin-bottom: 0 !important + } + + .mb-md-1 { + margin-bottom: .25rem !important + } + + .mb-md-2 { + margin-bottom: .5rem !important + } + + .mb-md-3 { + margin-bottom: .75rem !important + } + + .mb-md-4 { + margin-bottom: 1rem !important + } + + .mb-md-5 { + margin-bottom: 1.25rem !important + } + + .mb-md-6 { + margin-bottom: 1.5rem !important + } + + .mb-md-7 { + margin-bottom: 1.75rem !important + } + + .mb-md-8 { + margin-bottom: 2rem !important + } + + .mb-md-9 { + margin-bottom: 2.25rem !important + } + + .mb-md-10 { + margin-bottom: 2.5rem !important + } + + .mb-md-11 { + margin-bottom: 2.75rem !important + } + + .mb-md-12 { + margin-bottom: 3rem !important + } + + .mb-md-13 { + margin-bottom: 3.25rem !important + } + + .mb-md-14 { + margin-bottom: 3.5rem !important + } + + .mb-md-15 { + margin-bottom: 3.75rem !important + } + + .mb-md-16 { + margin-bottom: 4rem !important + } + + .mb-md-17 { + margin-bottom: 4.25rem !important + } + + .mb-md-18 { + margin-bottom: 4.5rem !important + } + + .mb-md-19 { + margin-bottom: 4.75rem !important + } + + .mb-md-20 { + margin-bottom: 5rem !important + } + + .mb-md-auto { + margin-bottom: auto !important + } + + .ms-md-0 { + margin-left: 0 !important + } + + .ms-md-1 { + margin-left: .25rem !important + } + + .ms-md-2 { + margin-left: .5rem !important + } + + .ms-md-3 { + margin-left: .75rem !important + } + + .ms-md-4 { + margin-left: 1rem !important + } + + .ms-md-5 { + margin-left: 1.25rem !important + } + + .ms-md-6 { + margin-left: 1.5rem !important + } + + .ms-md-7 { + margin-left: 1.75rem !important + } + + .ms-md-8 { + margin-left: 2rem !important + } + + .ms-md-9 { + margin-left: 2.25rem !important + } + + .ms-md-10 { + margin-left: 2.5rem !important + } + + .ms-md-11 { + margin-left: 2.75rem !important + } + + .ms-md-12 { + margin-left: 3rem !important + } + + .ms-md-13 { + margin-left: 3.25rem !important + } + + .ms-md-14 { + margin-left: 3.5rem !important + } + + .ms-md-15 { + margin-left: 3.75rem !important + } + + .ms-md-16 { + margin-left: 4rem !important + } + + .ms-md-17 { + margin-left: 4.25rem !important + } + + .ms-md-18 { + margin-left: 4.5rem !important + } + + .ms-md-19 { + margin-left: 4.75rem !important + } + + .ms-md-20 { + margin-left: 5rem !important + } + + .ms-md-auto { + margin-left: auto !important + } + + .m-md-n1 { + margin: -.25rem !important + } + + .m-md-n2 { + margin: -.5rem !important + } + + .m-md-n3 { + margin: -.75rem !important + } + + .m-md-n4 { + margin: -1rem !important + } + + .m-md-n5 { + margin: -1.25rem !important + } + + .m-md-n6 { + margin: -1.5rem !important + } + + .m-md-n7 { + margin: -1.75rem !important + } + + .m-md-n8 { + margin: -2rem !important + } + + .m-md-n9 { + margin: -2.25rem !important + } + + .m-md-n10 { + margin: -2.5rem !important + } + + .m-md-n11 { + margin: -2.75rem !important + } + + .m-md-n12 { + margin: -3rem !important + } + + .m-md-n13 { + margin: -3.25rem !important + } + + .m-md-n14 { + margin: -3.5rem !important + } + + .m-md-n15 { + margin: -3.75rem !important + } + + .m-md-n16 { + margin: -4rem !important + } + + .m-md-n17 { + margin: -4.25rem !important + } + + .m-md-n18 { + margin: -4.5rem !important + } + + .m-md-n19 { + margin: -4.75rem !important + } + + .m-md-n20 { + margin: -5rem !important + } + + .mx-md-n1 { + margin-right: -.25rem !important; + margin-left: -.25rem !important + } + + .mx-md-n2 { + margin-right: -.5rem !important; + margin-left: -.5rem !important + } + + .mx-md-n3 { + margin-right: -.75rem !important; + margin-left: -.75rem !important + } + + .mx-md-n4 { + margin-right: -1rem !important; + margin-left: -1rem !important + } + + .mx-md-n5 { + margin-right: -1.25rem !important; + margin-left: -1.25rem !important + } + + .mx-md-n6 { + margin-right: -1.5rem !important; + margin-left: -1.5rem !important + } + + .mx-md-n7 { + margin-right: -1.75rem !important; + margin-left: -1.75rem !important + } + + .mx-md-n8 { + margin-right: -2rem !important; + margin-left: -2rem !important + } + + .mx-md-n9 { + margin-right: -2.25rem !important; + margin-left: -2.25rem !important + } + + .mx-md-n10 { + margin-right: -2.5rem !important; + margin-left: -2.5rem !important + } + + .mx-md-n11 { + margin-right: -2.75rem !important; + margin-left: -2.75rem !important + } + + .mx-md-n12 { + margin-right: -3rem !important; + margin-left: -3rem !important + } + + .mx-md-n13 { + margin-right: -3.25rem !important; + margin-left: -3.25rem !important + } + + .mx-md-n14 { + margin-right: -3.5rem !important; + margin-left: -3.5rem !important + } + + .mx-md-n15 { + margin-right: -3.75rem !important; + margin-left: -3.75rem !important + } + + .mx-md-n16 { + margin-right: -4rem !important; + margin-left: -4rem !important + } + + .mx-md-n17 { + margin-right: -4.25rem !important; + margin-left: -4.25rem !important + } + + .mx-md-n18 { + margin-right: -4.5rem !important; + margin-left: -4.5rem !important + } + + .mx-md-n19 { + margin-right: -4.75rem !important; + margin-left: -4.75rem !important + } + + .mx-md-n20 { + margin-right: -5rem !important; + margin-left: -5rem !important + } + + .my-md-n1 { + margin-top: -.25rem !important; + margin-bottom: -.25rem !important + } + + .my-md-n2 { + margin-top: -.5rem !important; + margin-bottom: -.5rem !important + } + + .my-md-n3 { + margin-top: -.75rem !important; + margin-bottom: -.75rem !important + } + + .my-md-n4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important + } + + .my-md-n5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important + } + + .my-md-n6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important + } + + .my-md-n7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important + } + + .my-md-n8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important + } + + .my-md-n9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important + } + + .my-md-n10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important + } + + .my-md-n11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important + } + + .my-md-n12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important + } + + .my-md-n13 { + margin-top: -3.25rem !important; + margin-bottom: -3.25rem !important + } + + .my-md-n14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important + } + + .my-md-n15 { + margin-top: -3.75rem !important; + margin-bottom: -3.75rem !important + } + + .my-md-n16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important + } + + .my-md-n17 { + margin-top: -4.25rem !important; + margin-bottom: -4.25rem !important + } + + .my-md-n18 { + margin-top: -4.5rem !important; + margin-bottom: -4.5rem !important + } + + .my-md-n19 { + margin-top: -4.75rem !important; + margin-bottom: -4.75rem !important + } + + .my-md-n20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important + } + + .mt-md-n1 { + margin-top: -.25rem !important + } + + .mt-md-n2 { + margin-top: -.5rem !important + } + + .mt-md-n3 { + margin-top: -.75rem !important + } + + .mt-md-n4 { + margin-top: -1rem !important + } + + .mt-md-n5 { + margin-top: -1.25rem !important + } + + .mt-md-n6 { + margin-top: -1.5rem !important + } + + .mt-md-n7 { + margin-top: -1.75rem !important + } + + .mt-md-n8 { + margin-top: -2rem !important + } + + .mt-md-n9 { + margin-top: -2.25rem !important + } + + .mt-md-n10 { + margin-top: -2.5rem !important + } + + .mt-md-n11 { + margin-top: -2.75rem !important + } + + .mt-md-n12 { + margin-top: -3rem !important + } + + .mt-md-n13 { + margin-top: -3.25rem !important + } + + .mt-md-n14 { + margin-top: -3.5rem !important + } + + .mt-md-n15 { + margin-top: -3.75rem !important + } + + .mt-md-n16 { + margin-top: -4rem !important + } + + .mt-md-n17 { + margin-top: -4.25rem !important + } + + .mt-md-n18 { + margin-top: -4.5rem !important + } + + .mt-md-n19 { + margin-top: -4.75rem !important + } + + .mt-md-n20 { + margin-top: -5rem !important + } + + .me-md-n1 { + margin-right: -.25rem !important + } + + .me-md-n2 { + margin-right: -.5rem !important + } + + .me-md-n3 { + margin-right: -.75rem !important + } + + .me-md-n4 { + margin-right: -1rem !important + } + + .me-md-n5 { + margin-right: -1.25rem !important + } + + .me-md-n6 { + margin-right: -1.5rem !important + } + + .me-md-n7 { + margin-right: -1.75rem !important + } + + .me-md-n8 { + margin-right: -2rem !important + } + + .me-md-n9 { + margin-right: -2.25rem !important + } + + .me-md-n10 { + margin-right: -2.5rem !important + } + + .me-md-n11 { + margin-right: -2.75rem !important + } + + .me-md-n12 { + margin-right: -3rem !important + } + + .me-md-n13 { + margin-right: -3.25rem !important + } + + .me-md-n14 { + margin-right: -3.5rem !important + } + + .me-md-n15 { + margin-right: -3.75rem !important + } + + .me-md-n16 { + margin-right: -4rem !important + } + + .me-md-n17 { + margin-right: -4.25rem !important + } + + .me-md-n18 { + margin-right: -4.5rem !important + } + + .me-md-n19 { + margin-right: -4.75rem !important + } + + .me-md-n20 { + margin-right: -5rem !important + } + + .mb-md-n1 { + margin-bottom: -.25rem !important + } + + .mb-md-n2 { + margin-bottom: -.5rem !important + } + + .mb-md-n3 { + margin-bottom: -.75rem !important + } + + .mb-md-n4 { + margin-bottom: -1rem !important + } + + .mb-md-n5 { + margin-bottom: -1.25rem !important + } + + .mb-md-n6 { + margin-bottom: -1.5rem !important + } + + .mb-md-n7 { + margin-bottom: -1.75rem !important + } + + .mb-md-n8 { + margin-bottom: -2rem !important + } + + .mb-md-n9 { + margin-bottom: -2.25rem !important + } + + .mb-md-n10 { + margin-bottom: -2.5rem !important + } + + .mb-md-n11 { + margin-bottom: -2.75rem !important + } + + .mb-md-n12 { + margin-bottom: -3rem !important + } + + .mb-md-n13 { + margin-bottom: -3.25rem !important + } + + .mb-md-n14 { + margin-bottom: -3.5rem !important + } + + .mb-md-n15 { + margin-bottom: -3.75rem !important + } + + .mb-md-n16 { + margin-bottom: -4rem !important + } + + .mb-md-n17 { + margin-bottom: -4.25rem !important + } + + .mb-md-n18 { + margin-bottom: -4.5rem !important + } + + .mb-md-n19 { + margin-bottom: -4.75rem !important + } + + .mb-md-n20 { + margin-bottom: -5rem !important + } + + .ms-md-n1 { + margin-left: -.25rem !important + } + + .ms-md-n2 { + margin-left: -.5rem !important + } + + .ms-md-n3 { + margin-left: -.75rem !important + } + + .ms-md-n4 { + margin-left: -1rem !important + } + + .ms-md-n5 { + margin-left: -1.25rem !important + } + + .ms-md-n6 { + margin-left: -1.5rem !important + } + + .ms-md-n7 { + margin-left: -1.75rem !important + } + + .ms-md-n8 { + margin-left: -2rem !important + } + + .ms-md-n9 { + margin-left: -2.25rem !important + } + + .ms-md-n10 { + margin-left: -2.5rem !important + } + + .ms-md-n11 { + margin-left: -2.75rem !important + } + + .ms-md-n12 { + margin-left: -3rem !important + } + + .ms-md-n13 { + margin-left: -3.25rem !important + } + + .ms-md-n14 { + margin-left: -3.5rem !important + } + + .ms-md-n15 { + margin-left: -3.75rem !important + } + + .ms-md-n16 { + margin-left: -4rem !important + } + + .ms-md-n17 { + margin-left: -4.25rem !important + } + + .ms-md-n18 { + margin-left: -4.5rem !important + } + + .ms-md-n19 { + margin-left: -4.75rem !important + } + + .ms-md-n20 { + margin-left: -5rem !important + } + + .p-md-0 { + padding: 0 !important + } + + .p-md-1 { + padding: .25rem !important + } + + .p-md-2 { + padding: .5rem !important + } + + .p-md-3 { + padding: .75rem !important + } + + .p-md-4 { + padding: 1rem !important + } + + .p-md-5 { + padding: 1.25rem !important + } + + .p-md-6 { + padding: 1.5rem !important + } + + .p-md-7 { + padding: 1.75rem !important + } + + .p-md-8 { + padding: 2rem !important + } + + .p-md-9 { + padding: 2.25rem !important + } + + .p-md-10 { + padding: 2.5rem !important + } + + .p-md-11 { + padding: 2.75rem !important + } + + .p-md-12 { + padding: 3rem !important + } + + .p-md-13 { + padding: 3.25rem !important + } + + .p-md-14 { + padding: 3.5rem !important + } + + .p-md-15 { + padding: 3.75rem !important + } + + .p-md-16 { + padding: 4rem !important + } + + .p-md-17 { + padding: 4.25rem !important + } + + .p-md-18 { + padding: 4.5rem !important + } + + .p-md-19 { + padding: 4.75rem !important + } + + .p-md-20 { + padding: 5rem !important + } + + .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important + } + + .px-md-1 { + padding-right: .25rem !important; + padding-left: .25rem !important + } + + .px-md-2 { + padding-right: .5rem !important; + padding-left: .5rem !important + } + + .px-md-3 { + padding-right: .75rem !important; + padding-left: .75rem !important + } + + .px-md-4 { + padding-right: 1rem !important; + padding-left: 1rem !important + } + + .px-md-5 { + padding-right: 1.25rem !important; + padding-left: 1.25rem !important + } + + .px-md-6 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important + } + + .px-md-7 { + padding-right: 1.75rem !important; + padding-left: 1.75rem !important + } + + .px-md-8 { + padding-right: 2rem !important; + padding-left: 2rem !important + } + + .px-md-9 { + padding-right: 2.25rem !important; + padding-left: 2.25rem !important + } + + .px-md-10 { + padding-right: 2.5rem !important; + padding-left: 2.5rem !important + } + + .px-md-11 { + padding-right: 2.75rem !important; + padding-left: 2.75rem !important + } + + .px-md-12 { + padding-right: 3rem !important; + padding-left: 3rem !important + } + + .px-md-13 { + padding-right: 3.25rem !important; + padding-left: 3.25rem !important + } + + .px-md-14 { + padding-right: 3.5rem !important; + padding-left: 3.5rem !important + } + + .px-md-15 { + padding-right: 3.75rem !important; + padding-left: 3.75rem !important + } + + .px-md-16 { + padding-right: 4rem !important; + padding-left: 4rem !important + } + + .px-md-17 { + padding-right: 4.25rem !important; + padding-left: 4.25rem !important + } + + .px-md-18 { + padding-right: 4.5rem !important; + padding-left: 4.5rem !important + } + + .px-md-19 { + padding-right: 4.75rem !important; + padding-left: 4.75rem !important + } + + .px-md-20 { + padding-right: 5rem !important; + padding-left: 5rem !important + } + + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important + } + + .py-md-1 { + padding-top: .25rem !important; + padding-bottom: .25rem !important + } + + .py-md-2 { + padding-top: .5rem !important; + padding-bottom: .5rem !important + } + + .py-md-3 { + padding-top: .75rem !important; + padding-bottom: .75rem !important + } + + .py-md-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important + } + + .py-md-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important + } + + .py-md-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important + } + + .py-md-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important + } + + .py-md-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important + } + + .py-md-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important + } + + .py-md-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important + } + + .py-md-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important + } + + .py-md-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important + } + + .py-md-13 { + padding-top: 3.25rem !important; + padding-bottom: 3.25rem !important + } + + .py-md-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important + } + + .py-md-15 { + padding-top: 3.75rem !important; + padding-bottom: 3.75rem !important + } + + .py-md-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important + } + + .py-md-17 { + padding-top: 4.25rem !important; + padding-bottom: 4.25rem !important + } + + .py-md-18 { + padding-top: 4.5rem !important; + padding-bottom: 4.5rem !important + } + + .py-md-19 { + padding-top: 4.75rem !important; + padding-bottom: 4.75rem !important + } + + .py-md-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important + } + + .pt-md-0 { + padding-top: 0 !important + } + + .pt-md-1 { + padding-top: .25rem !important + } + + .pt-md-2 { + padding-top: .5rem !important + } + + .pt-md-3 { + padding-top: .75rem !important + } + + .pt-md-4 { + padding-top: 1rem !important + } + + .pt-md-5 { + padding-top: 1.25rem !important + } + + .pt-md-6 { + padding-top: 1.5rem !important + } + + .pt-md-7 { + padding-top: 1.75rem !important + } + + .pt-md-8 { + padding-top: 2rem !important + } + + .pt-md-9 { + padding-top: 2.25rem !important + } + + .pt-md-10 { + padding-top: 2.5rem !important + } + + .pt-md-11 { + padding-top: 2.75rem !important + } + + .pt-md-12 { + padding-top: 3rem !important + } + + .pt-md-13 { + padding-top: 3.25rem !important + } + + .pt-md-14 { + padding-top: 3.5rem !important + } + + .pt-md-15 { + padding-top: 3.75rem !important + } + + .pt-md-16 { + padding-top: 4rem !important + } + + .pt-md-17 { + padding-top: 4.25rem !important + } + + .pt-md-18 { + padding-top: 4.5rem !important + } + + .pt-md-19 { + padding-top: 4.75rem !important + } + + .pt-md-20 { + padding-top: 5rem !important + } + + .pe-md-0 { + padding-right: 0 !important + } + + .pe-md-1 { + padding-right: .25rem !important + } + + .pe-md-2 { + padding-right: .5rem !important + } + + .pe-md-3 { + padding-right: .75rem !important + } + + .pe-md-4 { + padding-right: 1rem !important + } + + .pe-md-5 { + padding-right: 1.25rem !important + } + + .pe-md-6 { + padding-right: 1.5rem !important + } + + .pe-md-7 { + padding-right: 1.75rem !important + } + + .pe-md-8 { + padding-right: 2rem !important + } + + .pe-md-9 { + padding-right: 2.25rem !important + } + + .pe-md-10 { + padding-right: 2.5rem !important + } + + .pe-md-11 { + padding-right: 2.75rem !important + } + + .pe-md-12 { + padding-right: 3rem !important + } + + .pe-md-13 { + padding-right: 3.25rem !important + } + + .pe-md-14 { + padding-right: 3.5rem !important + } + + .pe-md-15 { + padding-right: 3.75rem !important + } + + .pe-md-16 { + padding-right: 4rem !important + } + + .pe-md-17 { + padding-right: 4.25rem !important + } + + .pe-md-18 { + padding-right: 4.5rem !important + } + + .pe-md-19 { + padding-right: 4.75rem !important + } + + .pe-md-20 { + padding-right: 5rem !important + } + + .pb-md-0 { + padding-bottom: 0 !important + } + + .pb-md-1 { + padding-bottom: .25rem !important + } + + .pb-md-2 { + padding-bottom: .5rem !important + } + + .pb-md-3 { + padding-bottom: .75rem !important + } + + .pb-md-4 { + padding-bottom: 1rem !important + } + + .pb-md-5 { + padding-bottom: 1.25rem !important + } + + .pb-md-6 { + padding-bottom: 1.5rem !important + } + + .pb-md-7 { + padding-bottom: 1.75rem !important + } + + .pb-md-8 { + padding-bottom: 2rem !important + } + + .pb-md-9 { + padding-bottom: 2.25rem !important + } + + .pb-md-10 { + padding-bottom: 2.5rem !important + } + + .pb-md-11 { + padding-bottom: 2.75rem !important + } + + .pb-md-12 { + padding-bottom: 3rem !important + } + + .pb-md-13 { + padding-bottom: 3.25rem !important + } + + .pb-md-14 { + padding-bottom: 3.5rem !important + } + + .pb-md-15 { + padding-bottom: 3.75rem !important + } + + .pb-md-16 { + padding-bottom: 4rem !important + } + + .pb-md-17 { + padding-bottom: 4.25rem !important + } + + .pb-md-18 { + padding-bottom: 4.5rem !important + } + + .pb-md-19 { + padding-bottom: 4.75rem !important + } + + .pb-md-20 { + padding-bottom: 5rem !important + } + + .ps-md-0 { + padding-left: 0 !important + } + + .ps-md-1 { + padding-left: .25rem !important + } + + .ps-md-2 { + padding-left: .5rem !important + } + + .ps-md-3 { + padding-left: .75rem !important + } + + .ps-md-4 { + padding-left: 1rem !important + } + + .ps-md-5 { + padding-left: 1.25rem !important + } + + .ps-md-6 { + padding-left: 1.5rem !important + } + + .ps-md-7 { + padding-left: 1.75rem !important + } + + .ps-md-8 { + padding-left: 2rem !important + } + + .ps-md-9 { + padding-left: 2.25rem !important + } + + .ps-md-10 { + padding-left: 2.5rem !important + } + + .ps-md-11 { + padding-left: 2.75rem !important + } + + .ps-md-12 { + padding-left: 3rem !important + } + + .ps-md-13 { + padding-left: 3.25rem !important + } + + .ps-md-14 { + padding-left: 3.5rem !important + } + + .ps-md-15 { + padding-left: 3.75rem !important + } + + .ps-md-16 { + padding-left: 4rem !important + } + + .ps-md-17 { + padding-left: 4.25rem !important + } + + .ps-md-18 { + padding-left: 4.5rem !important + } + + .ps-md-19 { + padding-left: 4.75rem !important + } + + .ps-md-20 { + padding-left: 5rem !important + } + + .fs-md-1 { + font-size: calc(1.3rem + .6vw) !important + } + + .fs-md-2 { + font-size: calc(1.275rem + .3vw) !important + } + + .fs-md-3 { + font-size: calc(1.26rem + .12vw) !important + } + + .fs-md-4 { + font-size: 1.25rem !important + } + + .fs-md-5 { + font-size: 1.15rem !important + } + + .fs-md-6 { + font-size: 1.075rem !important + } + + .fs-md-7 { + font-size: .95rem !important + } + + .fs-md-8 { + font-size: .85rem !important + } + + .fs-md-9 { + font-size: .75rem !important + } + + .fs-md-10 { + font-size: .5rem !important + } + + .fs-md-base { + font-size: 1rem !important + } + + .fs-md-fluid { + font-size: 100% !important + } + + .fs-md-2x { + font-size: calc(1.325rem + .9vw) !important + } + + .fs-md-2qx { + font-size: calc(1.35rem + 1.2vw) !important + } + + .fs-md-2hx { + font-size: calc(1.375rem + 1.5vw) !important + } + + .fs-md-2tx { + font-size: calc(1.4rem + 1.8vw) !important + } + + .fs-md-3x { + font-size: calc(1.425rem + 2.1vw) !important + } + + .fs-md-3qx { + font-size: calc(1.45rem + 2.4vw) !important + } + + .fs-md-3hx { + font-size: calc(1.475rem + 2.7vw) !important + } + + .fs-md-3tx { + font-size: calc(1.5rem + 3vw) !important + } + + .fs-md-4x { + font-size: calc(1.525rem + 3.3vw) !important + } + + .fs-md-4qx { + font-size: calc(1.55rem + 3.6vw) !important + } + + .fs-md-4hx { + font-size: calc(1.575rem + 3.9vw) !important + } + + .fs-md-4tx { + font-size: calc(1.6rem + 4.2vw) !important + } + + .fs-md-5x { + font-size: calc(1.625rem + 4.5vw) !important + } + + .fs-md-5qx { + font-size: calc(1.65rem + 4.8vw) !important + } + + .fs-md-5hx { + font-size: calc(1.675rem + 5.1vw) !important + } + + .fs-md-5tx { + font-size: calc(1.7rem + 5.4vw) !important + } + + .text-md-start { + text-align: left !important + } + + .text-md-end { + text-align: right !important + } + + .text-md-center { + text-align: center !important + } + + .min-w-md-unset { + min-width: unset !important + } + + .min-w-md-25 { + min-width: 25% !important + } + + .min-w-md-50 { + min-width: 50% !important + } + + .min-w-md-75 { + min-width: 75% !important + } + + .min-w-md-100 { + min-width: 100% !important + } + + .min-w-md-auto { + min-width: auto !important + } + + .min-w-md-1px { + min-width: 1px !important + } + + .min-w-md-2px { + min-width: 2px !important + } + + .min-w-md-3px { + min-width: 3px !important + } + + .min-w-md-4px { + min-width: 4px !important + } + + .min-w-md-5px { + min-width: 5px !important + } + + .min-w-md-6px { + min-width: 6px !important + } + + .min-w-md-7px { + min-width: 7px !important + } + + .min-w-md-8px { + min-width: 8px !important + } + + .min-w-md-9px { + min-width: 9px !important + } + + .min-w-md-10px { + min-width: 10px !important + } + + .min-w-md-15px { + min-width: 15px !important + } + + .min-w-md-20px { + min-width: 20px !important + } + + .min-w-md-25px { + min-width: 25px !important + } + + .min-w-md-30px { + min-width: 30px !important + } + + .min-w-md-35px { + min-width: 35px !important + } + + .min-w-md-40px { + min-width: 40px !important + } + + .min-w-md-45px { + min-width: 45px !important + } + + .min-w-md-50px { + min-width: 50px !important + } + + .min-w-md-55px { + min-width: 55px !important + } + + .min-w-md-60px { + min-width: 60px !important + } + + .min-w-md-65px { + min-width: 65px !important + } + + .min-w-md-70px { + min-width: 70px !important + } + + .min-w-md-75px { + min-width: 75px !important + } + + .min-w-md-80px { + min-width: 80px !important + } + + .min-w-md-85px { + min-width: 85px !important + } + + .min-w-md-90px { + min-width: 90px !important + } + + .min-w-md-95px { + min-width: 95px !important + } + + .min-w-md-100px { + min-width: 100px !important + } + + .min-w-md-125px { + min-width: 125px !important + } + + .min-w-md-150px { + min-width: 150px !important + } + + .min-w-md-175px { + min-width: 175px !important + } + + .min-w-md-200px { + min-width: 200px !important + } + + .min-w-md-225px { + min-width: 225px !important + } + + .min-w-md-250px { + min-width: 250px !important + } + + .min-w-md-275px { + min-width: 275px !important + } + + .min-w-md-300px { + min-width: 300px !important + } + + .min-w-md-325px { + min-width: 325px !important + } + + .min-w-md-350px { + min-width: 350px !important + } + + .min-w-md-375px { + min-width: 375px !important + } + + .min-w-md-400px { + min-width: 400px !important + } + + .min-w-md-425px { + min-width: 425px !important + } + + .min-w-md-450px { + min-width: 450px !important + } + + .min-w-md-475px { + min-width: 475px !important + } + + .min-w-md-500px { + min-width: 500px !important + } + + .min-w-md-550px { + min-width: 550px !important + } + + .min-w-md-600px { + min-width: 600px !important + } + + .min-w-md-650px { + min-width: 650px !important + } + + .min-w-md-700px { + min-width: 700px !important + } + + .min-w-md-750px { + min-width: 750px !important + } + + .min-w-md-800px { + min-width: 800px !important + } + + .min-w-md-850px { + min-width: 850px !important + } + + .min-w-md-900px { + min-width: 900px !important + } + + .min-w-md-950px { + min-width: 950px !important + } + + .min-w-md-1000px { + min-width: 1000px !important + } + + .min-h-md-unset { + min-height: unset !important + } + + .min-h-md-25 { + min-height: 25% !important + } + + .min-h-md-50 { + min-height: 50% !important + } + + .min-h-md-75 { + min-height: 75% !important + } + + .min-h-md-100 { + min-height: 100% !important + } + + .min-h-md-auto { + min-height: auto !important + } + + .min-h-md-1px { + min-height: 1px !important + } + + .min-h-md-2px { + min-height: 2px !important + } + + .min-h-md-3px { + min-height: 3px !important + } + + .min-h-md-4px { + min-height: 4px !important + } + + .min-h-md-5px { + min-height: 5px !important + } + + .min-h-md-6px { + min-height: 6px !important + } + + .min-h-md-7px { + min-height: 7px !important + } + + .min-h-md-8px { + min-height: 8px !important + } + + .min-h-md-9px { + min-height: 9px !important + } + + .min-h-md-10px { + min-height: 10px !important + } + + .min-h-md-15px { + min-height: 15px !important + } + + .min-h-md-20px { + min-height: 20px !important + } + + .min-h-md-25px { + min-height: 25px !important + } + + .min-h-md-30px { + min-height: 30px !important + } + + .min-h-md-35px { + min-height: 35px !important + } + + .min-h-md-40px { + min-height: 40px !important + } + + .min-h-md-45px { + min-height: 45px !important + } + + .min-h-md-50px { + min-height: 50px !important + } + + .min-h-md-55px { + min-height: 55px !important + } + + .min-h-md-60px { + min-height: 60px !important + } + + .min-h-md-65px { + min-height: 65px !important + } + + .min-h-md-70px { + min-height: 70px !important + } + + .min-h-md-75px { + min-height: 75px !important + } + + .min-h-md-80px { + min-height: 80px !important + } + + .min-h-md-85px { + min-height: 85px !important + } + + .min-h-md-90px { + min-height: 90px !important + } + + .min-h-md-95px { + min-height: 95px !important + } + + .min-h-md-100px { + min-height: 100px !important + } + + .min-h-md-125px { + min-height: 125px !important + } + + .min-h-md-150px { + min-height: 150px !important + } + + .min-h-md-175px { + min-height: 175px !important + } + + .min-h-md-200px { + min-height: 200px !important + } + + .min-h-md-225px { + min-height: 225px !important + } + + .min-h-md-250px { + min-height: 250px !important + } + + .min-h-md-275px { + min-height: 275px !important + } + + .min-h-md-300px { + min-height: 300px !important + } + + .min-h-md-325px { + min-height: 325px !important + } + + .min-h-md-350px { + min-height: 350px !important + } + + .min-h-md-375px { + min-height: 375px !important + } + + .min-h-md-400px { + min-height: 400px !important + } + + .min-h-md-425px { + min-height: 425px !important + } + + .min-h-md-450px { + min-height: 450px !important + } + + .min-h-md-475px { + min-height: 475px !important + } + + .min-h-md-500px { + min-height: 500px !important + } + + .min-h-md-550px { + min-height: 550px !important + } + + .min-h-md-600px { + min-height: 600px !important + } + + .min-h-md-650px { + min-height: 650px !important + } + + .min-h-md-700px { + min-height: 700px !important + } + + .min-h-md-750px { + min-height: 750px !important + } + + .min-h-md-800px { + min-height: 800px !important + } + + .min-h-md-850px { + min-height: 850px !important + } + + .min-h-md-900px { + min-height: 900px !important + } + + .min-h-md-950px { + min-height: 950px !important + } + + .min-h-md-1000px { + min-height: 1000px !important + } +} + +@media (min-width:992px) { + .float-lg-start { + float: left !important + } + + .float-lg-end { + float: right !important + } + + .float-lg-none { + float: none !important + } + + .d-lg-inline { + display: inline !important + } + + .d-lg-inline-block { + display: inline-block !important + } + + .d-lg-block { + display: block !important + } + + .d-lg-grid { + display: grid !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 + } + + .d-lg-none { + display: none !important + } + + .position-lg-static { + position: static !important + } + + .position-lg-relative { + position: relative !important + } + + .position-lg-absolute { + position: absolute !important + } + + .position-lg-fixed { + position: fixed !important + } + + .position-lg-sticky { + position: sticky !important + } + + .w-lg-unset { + width: unset !important + } + + .w-lg-25 { + width: 25% !important + } + + .w-lg-50 { + width: 50% !important + } + + .w-lg-75 { + width: 75% !important + } + + .w-lg-100 { + width: 100% !important + } + + .w-lg-auto { + width: auto !important + } + + .w-lg-1px { + width: 1px !important + } + + .w-lg-2px { + width: 2px !important + } + + .w-lg-3px { + width: 3px !important + } + + .w-lg-4px { + width: 4px !important + } + + .w-lg-5px { + width: 5px !important + } + + .w-lg-6px { + width: 6px !important + } + + .w-lg-7px { + width: 7px !important + } + + .w-lg-8px { + width: 8px !important + } + + .w-lg-9px { + width: 9px !important + } + + .w-lg-10px { + width: 10px !important + } + + .w-lg-15px { + width: 15px !important + } + + .w-lg-20px { + width: 20px !important + } + + .w-lg-25px { + width: 25px !important + } + + .w-lg-30px { + width: 30px !important + } + + .w-lg-35px { + width: 35px !important + } + + .w-lg-40px { + width: 40px !important + } + + .w-lg-45px { + width: 45px !important + } + + .w-lg-50px { + width: 50px !important + } + + .w-lg-55px { + width: 55px !important + } + + .w-lg-60px { + width: 60px !important + } + + .w-lg-65px { + width: 65px !important + } + + .w-lg-70px { + width: 70px !important + } + + .w-lg-75px { + width: 75px !important + } + + .w-lg-80px { + width: 80px !important + } + + .w-lg-85px { + width: 85px !important + } + + .w-lg-90px { + width: 90px !important + } + + .w-lg-95px { + width: 95px !important + } + + .w-lg-100px { + width: 100px !important + } + + .w-lg-125px { + width: 125px !important + } + + .w-lg-150px { + width: 150px !important + } + + .w-lg-175px { + width: 175px !important + } + + .w-lg-200px { + width: 200px !important + } + + .w-lg-225px { + width: 225px !important + } + + .w-lg-250px { + width: 250px !important + } + + .w-lg-275px { + width: 275px !important + } + + .w-lg-300px { + width: 300px !important + } + + .w-lg-325px { + width: 325px !important + } + + .w-lg-350px { + width: 350px !important + } + + .w-lg-375px { + width: 375px !important + } + + .w-lg-400px { + width: 400px !important + } + + .w-lg-425px { + width: 425px !important + } + + .w-lg-450px { + width: 450px !important + } + + .w-lg-475px { + width: 475px !important + } + + .w-lg-500px { + width: 500px !important + } + + .w-lg-550px { + width: 550px !important + } + + .w-lg-600px { + width: 600px !important + } + + .w-lg-650px { + width: 650px !important + } + + .w-lg-700px { + width: 700px !important + } + + .w-lg-750px { + width: 750px !important + } + + .w-lg-800px { + width: 800px !important + } + + .w-lg-850px { + width: 850px !important + } + + .w-lg-900px { + width: 900px !important + } + + .w-lg-950px { + width: 950px !important + } + + .w-lg-1000px { + width: 1000px !important + } + + .mw-lg-unset { + max-width: unset !important + } + + .mw-lg-25 { + max-width: 25% !important + } + + .mw-lg-50 { + max-width: 50% !important + } + + .mw-lg-75 { + max-width: 75% !important + } + + .mw-lg-100 { + max-width: 100% !important + } + + .mw-lg-auto { + max-width: auto !important + } + + .mw-lg-1px { + max-width: 1px !important + } + + .mw-lg-2px { + max-width: 2px !important + } + + .mw-lg-3px { + max-width: 3px !important + } + + .mw-lg-4px { + max-width: 4px !important + } + + .mw-lg-5px { + max-width: 5px !important + } + + .mw-lg-6px { + max-width: 6px !important + } + + .mw-lg-7px { + max-width: 7px !important + } + + .mw-lg-8px { + max-width: 8px !important + } + + .mw-lg-9px { + max-width: 9px !important + } + + .mw-lg-10px { + max-width: 10px !important + } + + .mw-lg-15px { + max-width: 15px !important + } + + .mw-lg-20px { + max-width: 20px !important + } + + .mw-lg-25px { + max-width: 25px !important + } + + .mw-lg-30px { + max-width: 30px !important + } + + .mw-lg-35px { + max-width: 35px !important + } + + .mw-lg-40px { + max-width: 40px !important + } + + .mw-lg-45px { + max-width: 45px !important + } + + .mw-lg-50px { + max-width: 50px !important + } + + .mw-lg-55px { + max-width: 55px !important + } + + .mw-lg-60px { + max-width: 60px !important + } + + .mw-lg-65px { + max-width: 65px !important + } + + .mw-lg-70px { + max-width: 70px !important + } + + .mw-lg-75px { + max-width: 75px !important + } + + .mw-lg-80px { + max-width: 80px !important + } + + .mw-lg-85px { + max-width: 85px !important + } + + .mw-lg-90px { + max-width: 90px !important + } + + .mw-lg-95px { + max-width: 95px !important + } + + .mw-lg-100px { + max-width: 100px !important + } + + .mw-lg-125px { + max-width: 125px !important + } + + .mw-lg-150px { + max-width: 150px !important + } + + .mw-lg-175px { + max-width: 175px !important + } + + .mw-lg-200px { + max-width: 200px !important + } + + .mw-lg-225px { + max-width: 225px !important + } + + .mw-lg-250px { + max-width: 250px !important + } + + .mw-lg-275px { + max-width: 275px !important + } + + .mw-lg-300px { + max-width: 300px !important + } + + .mw-lg-325px { + max-width: 325px !important + } + + .mw-lg-350px { + max-width: 350px !important + } + + .mw-lg-375px { + max-width: 375px !important + } + + .mw-lg-400px { + max-width: 400px !important + } + + .mw-lg-425px { + max-width: 425px !important + } + + .mw-lg-450px { + max-width: 450px !important + } + + .mw-lg-475px { + max-width: 475px !important + } + + .mw-lg-500px { + max-width: 500px !important + } + + .mw-lg-550px { + max-width: 550px !important + } + + .mw-lg-600px { + max-width: 600px !important + } + + .mw-lg-650px { + max-width: 650px !important + } + + .mw-lg-700px { + max-width: 700px !important + } + + .mw-lg-750px { + max-width: 750px !important + } + + .mw-lg-800px { + max-width: 800px !important + } + + .mw-lg-850px { + max-width: 850px !important + } + + .mw-lg-900px { + max-width: 900px !important + } + + .mw-lg-950px { + max-width: 950px !important + } + + .mw-lg-1000px { + max-width: 1000px !important + } + + .h-lg-unset { + height: unset !important + } + + .h-lg-25 { + height: 25% !important + } + + .h-lg-50 { + height: 50% !important + } + + .h-lg-75 { + height: 75% !important + } + + .h-lg-100 { + height: 100% !important + } + + .h-lg-auto { + height: auto !important + } + + .h-lg-1px { + height: 1px !important + } + + .h-lg-2px { + height: 2px !important + } + + .h-lg-3px { + height: 3px !important + } + + .h-lg-4px { + height: 4px !important + } + + .h-lg-5px { + height: 5px !important + } + + .h-lg-6px { + height: 6px !important + } + + .h-lg-7px { + height: 7px !important + } + + .h-lg-8px { + height: 8px !important + } + + .h-lg-9px { + height: 9px !important + } + + .h-lg-10px { + height: 10px !important + } + + .h-lg-15px { + height: 15px !important + } + + .h-lg-20px { + height: 20px !important + } + + .h-lg-25px { + height: 25px !important + } + + .h-lg-30px { + height: 30px !important + } + + .h-lg-35px { + height: 35px !important + } + + .h-lg-40px { + height: 40px !important + } + + .h-lg-45px { + height: 45px !important + } + + .h-lg-50px { + height: 50px !important + } + + .h-lg-55px { + height: 55px !important + } + + .h-lg-60px { + height: 60px !important + } + + .h-lg-65px { + height: 65px !important + } + + .h-lg-70px { + height: 70px !important + } + + .h-lg-75px { + height: 75px !important + } + + .h-lg-80px { + height: 80px !important + } + + .h-lg-85px { + height: 85px !important + } + + .h-lg-90px { + height: 90px !important + } + + .h-lg-95px { + height: 95px !important + } + + .h-lg-100px { + height: 100px !important + } + + .h-lg-125px { + height: 125px !important + } + + .h-lg-150px { + height: 150px !important + } + + .h-lg-175px { + height: 175px !important + } + + .h-lg-200px { + height: 200px !important + } + + .h-lg-225px { + height: 225px !important + } + + .h-lg-250px { + height: 250px !important + } + + .h-lg-275px { + height: 275px !important + } + + .h-lg-300px { + height: 300px !important + } + + .h-lg-325px { + height: 325px !important + } + + .h-lg-350px { + height: 350px !important + } + + .h-lg-375px { + height: 375px !important + } + + .h-lg-400px { + height: 400px !important + } + + .h-lg-425px { + height: 425px !important + } + + .h-lg-450px { + height: 450px !important + } + + .h-lg-475px { + height: 475px !important + } + + .h-lg-500px { + height: 500px !important + } + + .h-lg-550px { + height: 550px !important + } + + .h-lg-600px { + height: 600px !important + } + + .h-lg-650px { + height: 650px !important + } + + .h-lg-700px { + height: 700px !important + } + + .h-lg-750px { + height: 750px !important + } + + .h-lg-800px { + height: 800px !important + } + + .h-lg-850px { + height: 850px !important + } + + .h-lg-900px { + height: 900px !important + } + + .h-lg-950px { + height: 950px !important + } + + .h-lg-1000px { + height: 1000px !important + } + + .mh-lg-unset { + max-height: unset !important + } + + .mh-lg-25 { + max-height: 25% !important + } + + .mh-lg-50 { + max-height: 50% !important + } + + .mh-lg-75 { + max-height: 75% !important + } + + .mh-lg-100 { + max-height: 100% !important + } + + .mh-lg-auto { + max-height: auto !important + } + + .mh-lg-1px { + max-height: 1px !important + } + + .mh-lg-2px { + max-height: 2px !important + } + + .mh-lg-3px { + max-height: 3px !important + } + + .mh-lg-4px { + max-height: 4px !important + } + + .mh-lg-5px { + max-height: 5px !important + } + + .mh-lg-6px { + max-height: 6px !important + } + + .mh-lg-7px { + max-height: 7px !important + } + + .mh-lg-8px { + max-height: 8px !important + } + + .mh-lg-9px { + max-height: 9px !important + } + + .mh-lg-10px { + max-height: 10px !important + } + + .mh-lg-15px { + max-height: 15px !important + } + + .mh-lg-20px { + max-height: 20px !important + } + + .mh-lg-25px { + max-height: 25px !important + } + + .mh-lg-30px { + max-height: 30px !important + } + + .mh-lg-35px { + max-height: 35px !important + } + + .mh-lg-40px { + max-height: 40px !important + } + + .mh-lg-45px { + max-height: 45px !important + } + + .mh-lg-50px { + max-height: 50px !important + } + + .mh-lg-55px { + max-height: 55px !important + } + + .mh-lg-60px { + max-height: 60px !important + } + + .mh-lg-65px { + max-height: 65px !important + } + + .mh-lg-70px { + max-height: 70px !important + } + + .mh-lg-75px { + max-height: 75px !important + } + + .mh-lg-80px { + max-height: 80px !important + } + + .mh-lg-85px { + max-height: 85px !important + } + + .mh-lg-90px { + max-height: 90px !important + } + + .mh-lg-95px { + max-height: 95px !important + } + + .mh-lg-100px { + max-height: 100px !important + } + + .mh-lg-125px { + max-height: 125px !important + } + + .mh-lg-150px { + max-height: 150px !important + } + + .mh-lg-175px { + max-height: 175px !important + } + + .mh-lg-200px { + max-height: 200px !important + } + + .mh-lg-225px { + max-height: 225px !important + } + + .mh-lg-250px { + max-height: 250px !important + } + + .mh-lg-275px { + max-height: 275px !important + } + + .mh-lg-300px { + max-height: 300px !important + } + + .mh-lg-325px { + max-height: 325px !important + } + + .mh-lg-350px { + max-height: 350px !important + } + + .mh-lg-375px { + max-height: 375px !important + } + + .mh-lg-400px { + max-height: 400px !important + } + + .mh-lg-425px { + max-height: 425px !important + } + + .mh-lg-450px { + max-height: 450px !important + } + + .mh-lg-475px { + max-height: 475px !important + } + + .mh-lg-500px { + max-height: 500px !important + } + + .mh-lg-550px { + max-height: 550px !important + } + + .mh-lg-600px { + max-height: 600px !important + } + + .mh-lg-650px { + max-height: 650px !important + } + + .mh-lg-700px { + max-height: 700px !important + } + + .mh-lg-750px { + max-height: 750px !important + } + + .mh-lg-800px { + max-height: 800px !important + } + + .mh-lg-850px { + max-height: 850px !important + } + + .mh-lg-900px { + max-height: 900px !important + } + + .mh-lg-950px { + max-height: 950px !important + } + + .mh-lg-1000px { + max-height: 1000px !important + } + + .flex-lg-fill { + flex: 1 1 auto !important + } + + .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-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 + } + + .flex-lg-wrap { + flex-wrap: wrap !important + } + + .flex-lg-nowrap { + flex-wrap: nowrap !important + } + + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important + } + + .gap-lg-0 { + gap: 0 !important + } + + .gap-lg-1 { + gap: .25rem !important + } + + .gap-lg-2 { + gap: .5rem !important + } + + .gap-lg-3 { + gap: .75rem !important + } + + .gap-lg-4 { + gap: 1rem !important + } + + .gap-lg-5 { + gap: 1.25rem !important + } + + .gap-lg-6 { + gap: 1.5rem !important + } + + .gap-lg-7 { + gap: 1.75rem !important + } + + .gap-lg-8 { + gap: 2rem !important + } + + .gap-lg-9 { + gap: 2.25rem !important + } + + .gap-lg-10 { + gap: 2.5rem !important + } + + .gap-lg-11 { + gap: 2.75rem !important + } + + .gap-lg-12 { + gap: 3rem !important + } + + .gap-lg-13 { + gap: 3.25rem !important + } + + .gap-lg-14 { + gap: 3.5rem !important + } + + .gap-lg-15 { + gap: 3.75rem !important + } + + .gap-lg-16 { + gap: 4rem !important + } + + .gap-lg-17 { + gap: 4.25rem !important + } + + .gap-lg-18 { + gap: 4.5rem !important + } + + .gap-lg-19 { + gap: 4.75rem !important + } + + .gap-lg-20 { + gap: 5rem !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 + } + + .justify-content-lg-evenly { + justify-content: space-evenly !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 + } + + .order-lg-first { + order: -1 !important + } + + .order-lg-0 { + order: 0 !important + } + + .order-lg-1 { + order: 1 !important + } + + .order-lg-2 { + order: 2 !important + } + + .order-lg-3 { + order: 3 !important + } + + .order-lg-4 { + order: 4 !important + } + + .order-lg-5 { + order: 5 !important + } + + .order-lg-last { + order: 6 !important + } + + .m-lg-0 { + margin: 0 !important + } + + .m-lg-1 { + margin: .25rem !important + } + + .m-lg-2 { + margin: .5rem !important + } + + .m-lg-3 { + margin: .75rem !important + } + + .m-lg-4 { + margin: 1rem !important + } + + .m-lg-5 { + margin: 1.25rem !important + } + + .m-lg-6 { + margin: 1.5rem !important + } + + .m-lg-7 { + margin: 1.75rem !important + } + + .m-lg-8 { + margin: 2rem !important + } + + .m-lg-9 { + margin: 2.25rem !important + } + + .m-lg-10 { + margin: 2.5rem !important + } + + .m-lg-11 { + margin: 2.75rem !important + } + + .m-lg-12 { + margin: 3rem !important + } + + .m-lg-13 { + margin: 3.25rem !important + } + + .m-lg-14 { + margin: 3.5rem !important + } + + .m-lg-15 { + margin: 3.75rem !important + } + + .m-lg-16 { + margin: 4rem !important + } + + .m-lg-17 { + margin: 4.25rem !important + } + + .m-lg-18 { + margin: 4.5rem !important + } + + .m-lg-19 { + margin: 4.75rem !important + } + + .m-lg-20 { + margin: 5rem !important + } + + .m-lg-auto { + margin: auto !important + } + + .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important + } + + .mx-lg-1 { + margin-right: .25rem !important; + margin-left: .25rem !important + } + + .mx-lg-2 { + margin-right: .5rem !important; + margin-left: .5rem !important + } + + .mx-lg-3 { + margin-right: .75rem !important; + margin-left: .75rem !important + } + + .mx-lg-4 { + margin-right: 1rem !important; + margin-left: 1rem !important + } + + .mx-lg-5 { + margin-right: 1.25rem !important; + margin-left: 1.25rem !important + } + + .mx-lg-6 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important + } + + .mx-lg-7 { + margin-right: 1.75rem !important; + margin-left: 1.75rem !important + } + + .mx-lg-8 { + margin-right: 2rem !important; + margin-left: 2rem !important + } + + .mx-lg-9 { + margin-right: 2.25rem !important; + margin-left: 2.25rem !important + } + + .mx-lg-10 { + margin-right: 2.5rem !important; + margin-left: 2.5rem !important + } + + .mx-lg-11 { + margin-right: 2.75rem !important; + margin-left: 2.75rem !important + } + + .mx-lg-12 { + margin-right: 3rem !important; + margin-left: 3rem !important + } + + .mx-lg-13 { + margin-right: 3.25rem !important; + margin-left: 3.25rem !important + } + + .mx-lg-14 { + margin-right: 3.5rem !important; + margin-left: 3.5rem !important + } + + .mx-lg-15 { + margin-right: 3.75rem !important; + margin-left: 3.75rem !important + } + + .mx-lg-16 { + margin-right: 4rem !important; + margin-left: 4rem !important + } + + .mx-lg-17 { + margin-right: 4.25rem !important; + margin-left: 4.25rem !important + } + + .mx-lg-18 { + margin-right: 4.5rem !important; + margin-left: 4.5rem !important + } + + .mx-lg-19 { + margin-right: 4.75rem !important; + margin-left: 4.75rem !important + } + + .mx-lg-20 { + margin-right: 5rem !important; + margin-left: 5rem !important + } + + .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important + } + + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important + } + + .my-lg-1 { + margin-top: .25rem !important; + margin-bottom: .25rem !important + } + + .my-lg-2 { + margin-top: .5rem !important; + margin-bottom: .5rem !important + } + + .my-lg-3 { + margin-top: .75rem !important; + margin-bottom: .75rem !important + } + + .my-lg-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important + } + + .my-lg-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important + } + + .my-lg-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important + } + + .my-lg-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important + } + + .my-lg-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important + } + + .my-lg-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important + } + + .my-lg-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important + } + + .my-lg-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important + } + + .my-lg-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important + } + + .my-lg-13 { + margin-top: 3.25rem !important; + margin-bottom: 3.25rem !important + } + + .my-lg-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important + } + + .my-lg-15 { + margin-top: 3.75rem !important; + margin-bottom: 3.75rem !important + } + + .my-lg-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important + } + + .my-lg-17 { + margin-top: 4.25rem !important; + margin-bottom: 4.25rem !important + } + + .my-lg-18 { + margin-top: 4.5rem !important; + margin-bottom: 4.5rem !important + } + + .my-lg-19 { + margin-top: 4.75rem !important; + margin-bottom: 4.75rem !important + } + + .my-lg-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important + } + + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important + } + + .mt-lg-0 { + margin-top: 0 !important + } + + .mt-lg-1 { + margin-top: .25rem !important + } + + .mt-lg-2 { + margin-top: .5rem !important + } + + .mt-lg-3 { + margin-top: .75rem !important + } + + .mt-lg-4 { + margin-top: 1rem !important + } + + .mt-lg-5 { + margin-top: 1.25rem !important + } + + .mt-lg-6 { + margin-top: 1.5rem !important + } + + .mt-lg-7 { + margin-top: 1.75rem !important + } + + .mt-lg-8 { + margin-top: 2rem !important + } + + .mt-lg-9 { + margin-top: 2.25rem !important + } + + .mt-lg-10 { + margin-top: 2.5rem !important + } + + .mt-lg-11 { + margin-top: 2.75rem !important + } + + .mt-lg-12 { + margin-top: 3rem !important + } + + .mt-lg-13 { + margin-top: 3.25rem !important + } + + .mt-lg-14 { + margin-top: 3.5rem !important + } + + .mt-lg-15 { + margin-top: 3.75rem !important + } + + .mt-lg-16 { + margin-top: 4rem !important + } + + .mt-lg-17 { + margin-top: 4.25rem !important + } + + .mt-lg-18 { + margin-top: 4.5rem !important + } + + .mt-lg-19 { + margin-top: 4.75rem !important + } + + .mt-lg-20 { + margin-top: 5rem !important + } + + .mt-lg-auto { + margin-top: auto !important + } + + .me-lg-0 { + margin-right: 0 !important + } + + .me-lg-1 { + margin-right: .25rem !important + } + + .me-lg-2 { + margin-right: .5rem !important + } + + .me-lg-3 { + margin-right: .75rem !important + } + + .me-lg-4 { + margin-right: 1rem !important + } + + .me-lg-5 { + margin-right: 1.25rem !important + } + + .me-lg-6 { + margin-right: 1.5rem !important + } + + .me-lg-7 { + margin-right: 1.75rem !important + } + + .me-lg-8 { + margin-right: 2rem !important + } + + .me-lg-9 { + margin-right: 2.25rem !important + } + + .me-lg-10 { + margin-right: 2.5rem !important + } + + .me-lg-11 { + margin-right: 2.75rem !important + } + + .me-lg-12 { + margin-right: 3rem !important + } + + .me-lg-13 { + margin-right: 3.25rem !important + } + + .me-lg-14 { + margin-right: 3.5rem !important + } + + .me-lg-15 { + margin-right: 3.75rem !important + } + + .me-lg-16 { + margin-right: 4rem !important + } + + .me-lg-17 { + margin-right: 4.25rem !important + } + + .me-lg-18 { + margin-right: 4.5rem !important + } + + .me-lg-19 { + margin-right: 4.75rem !important + } + + .me-lg-20 { + margin-right: 5rem !important + } + + .me-lg-auto { + margin-right: auto !important + } + + .mb-lg-0 { + margin-bottom: 0 !important + } + + .mb-lg-1 { + margin-bottom: .25rem !important + } + + .mb-lg-2 { + margin-bottom: .5rem !important + } + + .mb-lg-3 { + margin-bottom: .75rem !important + } + + .mb-lg-4 { + margin-bottom: 1rem !important + } + + .mb-lg-5 { + margin-bottom: 1.25rem !important + } + + .mb-lg-6 { + margin-bottom: 1.5rem !important + } + + .mb-lg-7 { + margin-bottom: 1.75rem !important + } + + .mb-lg-8 { + margin-bottom: 2rem !important + } + + .mb-lg-9 { + margin-bottom: 2.25rem !important + } + + .mb-lg-10 { + margin-bottom: 2.5rem !important + } + + .mb-lg-11 { + margin-bottom: 2.75rem !important + } + + .mb-lg-12 { + margin-bottom: 3rem !important + } + + .mb-lg-13 { + margin-bottom: 3.25rem !important + } + + .mb-lg-14 { + margin-bottom: 3.5rem !important + } + + .mb-lg-15 { + margin-bottom: 3.75rem !important + } + + .mb-lg-16 { + margin-bottom: 4rem !important + } + + .mb-lg-17 { + margin-bottom: 4.25rem !important + } + + .mb-lg-18 { + margin-bottom: 4.5rem !important + } + + .mb-lg-19 { + margin-bottom: 4.75rem !important + } + + .mb-lg-20 { + margin-bottom: 5rem !important + } + + .mb-lg-auto { + margin-bottom: auto !important + } + + .ms-lg-0 { + margin-left: 0 !important + } + + .ms-lg-1 { + margin-left: .25rem !important + } + + .ms-lg-2 { + margin-left: .5rem !important + } + + .ms-lg-3 { + margin-left: .75rem !important + } + + .ms-lg-4 { + margin-left: 1rem !important + } + + .ms-lg-5 { + margin-left: 1.25rem !important + } + + .ms-lg-6 { + margin-left: 1.5rem !important + } + + .ms-lg-7 { + margin-left: 1.75rem !important + } + + .ms-lg-8 { + margin-left: 2rem !important + } + + .ms-lg-9 { + margin-left: 2.25rem !important + } + + .ms-lg-10 { + margin-left: 2.5rem !important + } + + .ms-lg-11 { + margin-left: 2.75rem !important + } + + .ms-lg-12 { + margin-left: 3rem !important + } + + .ms-lg-13 { + margin-left: 3.25rem !important + } + + .ms-lg-14 { + margin-left: 3.5rem !important + } + + .ms-lg-15 { + margin-left: 3.75rem !important + } + + .ms-lg-16 { + margin-left: 4rem !important + } + + .ms-lg-17 { + margin-left: 4.25rem !important + } + + .ms-lg-18 { + margin-left: 4.5rem !important + } + + .ms-lg-19 { + margin-left: 4.75rem !important + } + + .ms-lg-20 { + margin-left: 5rem !important + } + + .ms-lg-auto { + margin-left: auto !important + } + + .m-lg-n1 { + margin: -.25rem !important + } + + .m-lg-n2 { + margin: -.5rem !important + } + + .m-lg-n3 { + margin: -.75rem !important + } + + .m-lg-n4 { + margin: -1rem !important + } + + .m-lg-n5 { + margin: -1.25rem !important + } + + .m-lg-n6 { + margin: -1.5rem !important + } + + .m-lg-n7 { + margin: -1.75rem !important + } + + .m-lg-n8 { + margin: -2rem !important + } + + .m-lg-n9 { + margin: -2.25rem !important + } + + .m-lg-n10 { + margin: -2.5rem !important + } + + .m-lg-n11 { + margin: -2.75rem !important + } + + .m-lg-n12 { + margin: -3rem !important + } + + .m-lg-n13 { + margin: -3.25rem !important + } + + .m-lg-n14 { + margin: -3.5rem !important + } + + .m-lg-n15 { + margin: -3.75rem !important + } + + .m-lg-n16 { + margin: -4rem !important + } + + .m-lg-n17 { + margin: -4.25rem !important + } + + .m-lg-n18 { + margin: -4.5rem !important + } + + .m-lg-n19 { + margin: -4.75rem !important + } + + .m-lg-n20 { + margin: -5rem !important + } + + .mx-lg-n1 { + margin-right: -.25rem !important; + margin-left: -.25rem !important + } + + .mx-lg-n2 { + margin-right: -.5rem !important; + margin-left: -.5rem !important + } + + .mx-lg-n3 { + margin-right: -.75rem !important; + margin-left: -.75rem !important + } + + .mx-lg-n4 { + margin-right: -1rem !important; + margin-left: -1rem !important + } + + .mx-lg-n5 { + margin-right: -1.25rem !important; + margin-left: -1.25rem !important + } + + .mx-lg-n6 { + margin-right: -1.5rem !important; + margin-left: -1.5rem !important + } + + .mx-lg-n7 { + margin-right: -1.75rem !important; + margin-left: -1.75rem !important + } + + .mx-lg-n8 { + margin-right: -2rem !important; + margin-left: -2rem !important + } + + .mx-lg-n9 { + margin-right: -2.25rem !important; + margin-left: -2.25rem !important + } + + .mx-lg-n10 { + margin-right: -2.5rem !important; + margin-left: -2.5rem !important + } + + .mx-lg-n11 { + margin-right: -2.75rem !important; + margin-left: -2.75rem !important + } + + .mx-lg-n12 { + margin-right: -3rem !important; + margin-left: -3rem !important + } + + .mx-lg-n13 { + margin-right: -3.25rem !important; + margin-left: -3.25rem !important + } + + .mx-lg-n14 { + margin-right: -3.5rem !important; + margin-left: -3.5rem !important + } + + .mx-lg-n15 { + margin-right: -3.75rem !important; + margin-left: -3.75rem !important + } + + .mx-lg-n16 { + margin-right: -4rem !important; + margin-left: -4rem !important + } + + .mx-lg-n17 { + margin-right: -4.25rem !important; + margin-left: -4.25rem !important + } + + .mx-lg-n18 { + margin-right: -4.5rem !important; + margin-left: -4.5rem !important + } + + .mx-lg-n19 { + margin-right: -4.75rem !important; + margin-left: -4.75rem !important + } + + .mx-lg-n20 { + margin-right: -5rem !important; + margin-left: -5rem !important + } + + .my-lg-n1 { + margin-top: -.25rem !important; + margin-bottom: -.25rem !important + } + + .my-lg-n2 { + margin-top: -.5rem !important; + margin-bottom: -.5rem !important + } + + .my-lg-n3 { + margin-top: -.75rem !important; + margin-bottom: -.75rem !important + } + + .my-lg-n4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important + } + + .my-lg-n5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important + } + + .my-lg-n6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important + } + + .my-lg-n7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important + } + + .my-lg-n8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important + } + + .my-lg-n9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important + } + + .my-lg-n10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important + } + + .my-lg-n11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important + } + + .my-lg-n12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important + } + + .my-lg-n13 { + margin-top: -3.25rem !important; + margin-bottom: -3.25rem !important + } + + .my-lg-n14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important + } + + .my-lg-n15 { + margin-top: -3.75rem !important; + margin-bottom: -3.75rem !important + } + + .my-lg-n16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important + } + + .my-lg-n17 { + margin-top: -4.25rem !important; + margin-bottom: -4.25rem !important + } + + .my-lg-n18 { + margin-top: -4.5rem !important; + margin-bottom: -4.5rem !important + } + + .my-lg-n19 { + margin-top: -4.75rem !important; + margin-bottom: -4.75rem !important + } + + .my-lg-n20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important + } + + .mt-lg-n1 { + margin-top: -.25rem !important + } + + .mt-lg-n2 { + margin-top: -.5rem !important + } + + .mt-lg-n3 { + margin-top: -.75rem !important + } + + .mt-lg-n4 { + margin-top: -1rem !important + } + + .mt-lg-n5 { + margin-top: -1.25rem !important + } + + .mt-lg-n6 { + margin-top: -1.5rem !important + } + + .mt-lg-n7 { + margin-top: -1.75rem !important + } + + .mt-lg-n8 { + margin-top: -2rem !important + } + + .mt-lg-n9 { + margin-top: -2.25rem !important + } + + .mt-lg-n10 { + margin-top: -2.5rem !important + } + + .mt-lg-n11 { + margin-top: -2.75rem !important + } + + .mt-lg-n12 { + margin-top: -3rem !important + } + + .mt-lg-n13 { + margin-top: -3.25rem !important + } + + .mt-lg-n14 { + margin-top: -3.5rem !important + } + + .mt-lg-n15 { + margin-top: -3.75rem !important + } + + .mt-lg-n16 { + margin-top: -4rem !important + } + + .mt-lg-n17 { + margin-top: -4.25rem !important + } + + .mt-lg-n18 { + margin-top: -4.5rem !important + } + + .mt-lg-n19 { + margin-top: -4.75rem !important + } + + .mt-lg-n20 { + margin-top: -5rem !important + } + + .me-lg-n1 { + margin-right: -.25rem !important + } + + .me-lg-n2 { + margin-right: -.5rem !important + } + + .me-lg-n3 { + margin-right: -.75rem !important + } + + .me-lg-n4 { + margin-right: -1rem !important + } + + .me-lg-n5 { + margin-right: -1.25rem !important + } + + .me-lg-n6 { + margin-right: -1.5rem !important + } + + .me-lg-n7 { + margin-right: -1.75rem !important + } + + .me-lg-n8 { + margin-right: -2rem !important + } + + .me-lg-n9 { + margin-right: -2.25rem !important + } + + .me-lg-n10 { + margin-right: -2.5rem !important + } + + .me-lg-n11 { + margin-right: -2.75rem !important + } + + .me-lg-n12 { + margin-right: -3rem !important + } + + .me-lg-n13 { + margin-right: -3.25rem !important + } + + .me-lg-n14 { + margin-right: -3.5rem !important + } + + .me-lg-n15 { + margin-right: -3.75rem !important + } + + .me-lg-n16 { + margin-right: -4rem !important + } + + .me-lg-n17 { + margin-right: -4.25rem !important + } + + .me-lg-n18 { + margin-right: -4.5rem !important + } + + .me-lg-n19 { + margin-right: -4.75rem !important + } + + .me-lg-n20 { + margin-right: -5rem !important + } + + .mb-lg-n1 { + margin-bottom: -.25rem !important + } + + .mb-lg-n2 { + margin-bottom: -.5rem !important + } + + .mb-lg-n3 { + margin-bottom: -.75rem !important + } + + .mb-lg-n4 { + margin-bottom: -1rem !important + } + + .mb-lg-n5 { + margin-bottom: -1.25rem !important + } + + .mb-lg-n6 { + margin-bottom: -1.5rem !important + } + + .mb-lg-n7 { + margin-bottom: -1.75rem !important + } + + .mb-lg-n8 { + margin-bottom: -2rem !important + } + + .mb-lg-n9 { + margin-bottom: -2.25rem !important + } + + .mb-lg-n10 { + margin-bottom: -2.5rem !important + } + + .mb-lg-n11 { + margin-bottom: -2.75rem !important + } + + .mb-lg-n12 { + margin-bottom: -3rem !important + } + + .mb-lg-n13 { + margin-bottom: -3.25rem !important + } + + .mb-lg-n14 { + margin-bottom: -3.5rem !important + } + + .mb-lg-n15 { + margin-bottom: -3.75rem !important + } + + .mb-lg-n16 { + margin-bottom: -4rem !important + } + + .mb-lg-n17 { + margin-bottom: -4.25rem !important + } + + .mb-lg-n18 { + margin-bottom: -4.5rem !important + } + + .mb-lg-n19 { + margin-bottom: -4.75rem !important + } + + .mb-lg-n20 { + margin-bottom: -5rem !important + } + + .ms-lg-n1 { + margin-left: -.25rem !important + } + + .ms-lg-n2 { + margin-left: -.5rem !important + } + + .ms-lg-n3 { + margin-left: -.75rem !important + } + + .ms-lg-n4 { + margin-left: -1rem !important + } + + .ms-lg-n5 { + margin-left: -1.25rem !important + } + + .ms-lg-n6 { + margin-left: -1.5rem !important + } + + .ms-lg-n7 { + margin-left: -1.75rem !important + } + + .ms-lg-n8 { + margin-left: -2rem !important + } + + .ms-lg-n9 { + margin-left: -2.25rem !important + } + + .ms-lg-n10 { + margin-left: -2.5rem !important + } + + .ms-lg-n11 { + margin-left: -2.75rem !important + } + + .ms-lg-n12 { + margin-left: -3rem !important + } + + .ms-lg-n13 { + margin-left: -3.25rem !important + } + + .ms-lg-n14 { + margin-left: -3.5rem !important + } + + .ms-lg-n15 { + margin-left: -3.75rem !important + } + + .ms-lg-n16 { + margin-left: -4rem !important + } + + .ms-lg-n17 { + margin-left: -4.25rem !important + } + + .ms-lg-n18 { + margin-left: -4.5rem !important + } + + .ms-lg-n19 { + margin-left: -4.75rem !important + } + + .ms-lg-n20 { + margin-left: -5rem !important + } + + .p-lg-0 { + padding: 0 !important + } + + .p-lg-1 { + padding: .25rem !important + } + + .p-lg-2 { + padding: .5rem !important + } + + .p-lg-3 { + padding: .75rem !important + } + + .p-lg-4 { + padding: 1rem !important + } + + .p-lg-5 { + padding: 1.25rem !important + } + + .p-lg-6 { + padding: 1.5rem !important + } + + .p-lg-7 { + padding: 1.75rem !important + } + + .p-lg-8 { + padding: 2rem !important + } + + .p-lg-9 { + padding: 2.25rem !important + } + + .p-lg-10 { + padding: 2.5rem !important + } + + .p-lg-11 { + padding: 2.75rem !important + } + + .p-lg-12 { + padding: 3rem !important + } + + .p-lg-13 { + padding: 3.25rem !important + } + + .p-lg-14 { + padding: 3.5rem !important + } + + .p-lg-15 { + padding: 3.75rem !important + } + + .p-lg-16 { + padding: 4rem !important + } + + .p-lg-17 { + padding: 4.25rem !important + } + + .p-lg-18 { + padding: 4.5rem !important + } + + .p-lg-19 { + padding: 4.75rem !important + } + + .p-lg-20 { + padding: 5rem !important + } + + .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important + } + + .px-lg-1 { + padding-right: .25rem !important; + padding-left: .25rem !important + } + + .px-lg-2 { + padding-right: .5rem !important; + padding-left: .5rem !important + } + + .px-lg-3 { + padding-right: .75rem !important; + padding-left: .75rem !important + } + + .px-lg-4 { + padding-right: 1rem !important; + padding-left: 1rem !important + } + + .px-lg-5 { + padding-right: 1.25rem !important; + padding-left: 1.25rem !important + } + + .px-lg-6 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important + } + + .px-lg-7 { + padding-right: 1.75rem !important; + padding-left: 1.75rem !important + } + + .px-lg-8 { + padding-right: 2rem !important; + padding-left: 2rem !important + } + + .px-lg-9 { + padding-right: 2.25rem !important; + padding-left: 2.25rem !important + } + + .px-lg-10 { + padding-right: 2.5rem !important; + padding-left: 2.5rem !important + } + + .px-lg-11 { + padding-right: 2.75rem !important; + padding-left: 2.75rem !important + } + + .px-lg-12 { + padding-right: 3rem !important; + padding-left: 3rem !important + } + + .px-lg-13 { + padding-right: 3.25rem !important; + padding-left: 3.25rem !important + } + + .px-lg-14 { + padding-right: 3.5rem !important; + padding-left: 3.5rem !important + } + + .px-lg-15 { + padding-right: 3.75rem !important; + padding-left: 3.75rem !important + } + + .px-lg-16 { + padding-right: 4rem !important; + padding-left: 4rem !important + } + + .px-lg-17 { + padding-right: 4.25rem !important; + padding-left: 4.25rem !important + } + + .px-lg-18 { + padding-right: 4.5rem !important; + padding-left: 4.5rem !important + } + + .px-lg-19 { + padding-right: 4.75rem !important; + padding-left: 4.75rem !important + } + + .px-lg-20 { + padding-right: 5rem !important; + padding-left: 5rem !important + } + + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important + } + + .py-lg-1 { + padding-top: .25rem !important; + padding-bottom: .25rem !important + } + + .py-lg-2 { + padding-top: .5rem !important; + padding-bottom: .5rem !important + } + + .py-lg-3 { + padding-top: .75rem !important; + padding-bottom: .75rem !important + } + + .py-lg-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important + } + + .py-lg-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important + } + + .py-lg-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important + } + + .py-lg-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important + } + + .py-lg-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important + } + + .py-lg-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important + } + + .py-lg-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important + } + + .py-lg-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important + } + + .py-lg-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important + } + + .py-lg-13 { + padding-top: 3.25rem !important; + padding-bottom: 3.25rem !important + } + + .py-lg-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important + } + + .py-lg-15 { + padding-top: 3.75rem !important; + padding-bottom: 3.75rem !important + } + + .py-lg-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important + } + + .py-lg-17 { + padding-top: 4.25rem !important; + padding-bottom: 4.25rem !important + } + + .py-lg-18 { + padding-top: 4.5rem !important; + padding-bottom: 4.5rem !important + } + + .py-lg-19 { + padding-top: 4.75rem !important; + padding-bottom: 4.75rem !important + } + + .py-lg-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important + } + + .pt-lg-0 { + padding-top: 0 !important + } + + .pt-lg-1 { + padding-top: .25rem !important + } + + .pt-lg-2 { + padding-top: .5rem !important + } + + .pt-lg-3 { + padding-top: .75rem !important + } + + .pt-lg-4 { + padding-top: 1rem !important + } + + .pt-lg-5 { + padding-top: 1.25rem !important + } + + .pt-lg-6 { + padding-top: 1.5rem !important + } + + .pt-lg-7 { + padding-top: 1.75rem !important + } + + .pt-lg-8 { + padding-top: 2rem !important + } + + .pt-lg-9 { + padding-top: 2.25rem !important + } + + .pt-lg-10 { + padding-top: 2.5rem !important + } + + .pt-lg-11 { + padding-top: 2.75rem !important + } + + .pt-lg-12 { + padding-top: 3rem !important + } + + .pt-lg-13 { + padding-top: 3.25rem !important + } + + .pt-lg-14 { + padding-top: 3.5rem !important + } + + .pt-lg-15 { + padding-top: 3.75rem !important + } + + .pt-lg-16 { + padding-top: 4rem !important + } + + .pt-lg-17 { + padding-top: 4.25rem !important + } + + .pt-lg-18 { + padding-top: 4.5rem !important + } + + .pt-lg-19 { + padding-top: 4.75rem !important + } + + .pt-lg-20 { + padding-top: 5rem !important + } + + .pe-lg-0 { + padding-right: 0 !important + } + + .pe-lg-1 { + padding-right: .25rem !important + } + + .pe-lg-2 { + padding-right: .5rem !important + } + + .pe-lg-3 { + padding-right: .75rem !important + } + + .pe-lg-4 { + padding-right: 1rem !important + } + + .pe-lg-5 { + padding-right: 1.25rem !important + } + + .pe-lg-6 { + padding-right: 1.5rem !important + } + + .pe-lg-7 { + padding-right: 1.75rem !important + } + + .pe-lg-8 { + padding-right: 2rem !important + } + + .pe-lg-9 { + padding-right: 2.25rem !important + } + + .pe-lg-10 { + padding-right: 2.5rem !important + } + + .pe-lg-11 { + padding-right: 2.75rem !important + } + + .pe-lg-12 { + padding-right: 3rem !important + } + + .pe-lg-13 { + padding-right: 3.25rem !important + } + + .pe-lg-14 { + padding-right: 3.5rem !important + } + + .pe-lg-15 { + padding-right: 3.75rem !important + } + + .pe-lg-16 { + padding-right: 4rem !important + } + + .pe-lg-17 { + padding-right: 4.25rem !important + } + + .pe-lg-18 { + padding-right: 4.5rem !important + } + + .pe-lg-19 { + padding-right: 4.75rem !important + } + + .pe-lg-20 { + padding-right: 5rem !important + } + + .pb-lg-0 { + padding-bottom: 0 !important + } + + .pb-lg-1 { + padding-bottom: .25rem !important + } + + .pb-lg-2 { + padding-bottom: .5rem !important + } + + .pb-lg-3 { + padding-bottom: .75rem !important + } + + .pb-lg-4 { + padding-bottom: 1rem !important + } + + .pb-lg-5 { + padding-bottom: 1.25rem !important + } + + .pb-lg-6 { + padding-bottom: 1.5rem !important + } + + .pb-lg-7 { + padding-bottom: 1.75rem !important + } + + .pb-lg-8 { + padding-bottom: 2rem !important + } + + .pb-lg-9 { + padding-bottom: 2.25rem !important + } + + .pb-lg-10 { + padding-bottom: 2.5rem !important + } + + .pb-lg-11 { + padding-bottom: 2.75rem !important + } + + .pb-lg-12 { + padding-bottom: 3rem !important + } + + .pb-lg-13 { + padding-bottom: 3.25rem !important + } + + .pb-lg-14 { + padding-bottom: 3.5rem !important + } + + .pb-lg-15 { + padding-bottom: 3.75rem !important + } + + .pb-lg-16 { + padding-bottom: 4rem !important + } + + .pb-lg-17 { + padding-bottom: 4.25rem !important + } + + .pb-lg-18 { + padding-bottom: 4.5rem !important + } + + .pb-lg-19 { + padding-bottom: 4.75rem !important + } + + .pb-lg-20 { + padding-bottom: 5rem !important + } + + .ps-lg-0 { + padding-left: 0 !important + } + + .ps-lg-1 { + padding-left: .25rem !important + } + + .ps-lg-2 { + padding-left: .5rem !important + } + + .ps-lg-3 { + padding-left: .75rem !important + } + + .ps-lg-4 { + padding-left: 1rem !important + } + + .ps-lg-5 { + padding-left: 1.25rem !important + } + + .ps-lg-6 { + padding-left: 1.5rem !important + } + + .ps-lg-7 { + padding-left: 1.75rem !important + } + + .ps-lg-8 { + padding-left: 2rem !important + } + + .ps-lg-9 { + padding-left: 2.25rem !important + } + + .ps-lg-10 { + padding-left: 2.5rem !important + } + + .ps-lg-11 { + padding-left: 2.75rem !important + } + + .ps-lg-12 { + padding-left: 3rem !important + } + + .ps-lg-13 { + padding-left: 3.25rem !important + } + + .ps-lg-14 { + padding-left: 3.5rem !important + } + + .ps-lg-15 { + padding-left: 3.75rem !important + } + + .ps-lg-16 { + padding-left: 4rem !important + } + + .ps-lg-17 { + padding-left: 4.25rem !important + } + + .ps-lg-18 { + padding-left: 4.5rem !important + } + + .ps-lg-19 { + padding-left: 4.75rem !important + } + + .ps-lg-20 { + padding-left: 5rem !important + } + + .fs-lg-1 { + font-size: calc(1.3rem + .6vw) !important + } + + .fs-lg-2 { + font-size: calc(1.275rem + .3vw) !important + } + + .fs-lg-3 { + font-size: calc(1.26rem + .12vw) !important + } + + .fs-lg-4 { + font-size: 1.25rem !important + } + + .fs-lg-5 { + font-size: 1.15rem !important + } + + .fs-lg-6 { + font-size: 1.075rem !important + } + + .fs-lg-7 { + font-size: .95rem !important + } + + .fs-lg-8 { + font-size: .85rem !important + } + + .fs-lg-9 { + font-size: .75rem !important + } + + .fs-lg-10 { + font-size: .5rem !important + } + + .fs-lg-base { + font-size: 1rem !important + } + + .fs-lg-fluid { + font-size: 100% !important + } + + .fs-lg-2x { + font-size: calc(1.325rem + .9vw) !important + } + + .fs-lg-2qx { + font-size: calc(1.35rem + 1.2vw) !important + } + + .fs-lg-2hx { + font-size: calc(1.375rem + 1.5vw) !important + } + + .fs-lg-2tx { + font-size: calc(1.4rem + 1.8vw) !important + } + + .fs-lg-3x { + font-size: calc(1.425rem + 2.1vw) !important + } + + .fs-lg-3qx { + font-size: calc(1.45rem + 2.4vw) !important + } + + .fs-lg-3hx { + font-size: calc(1.475rem + 2.7vw) !important + } + + .fs-lg-3tx { + font-size: calc(1.5rem + 3vw) !important + } + + .fs-lg-4x { + font-size: calc(1.525rem + 3.3vw) !important + } + + .fs-lg-4qx { + font-size: calc(1.55rem + 3.6vw) !important + } + + .fs-lg-4hx { + font-size: calc(1.575rem + 3.9vw) !important + } + + .fs-lg-4tx { + font-size: calc(1.6rem + 4.2vw) !important + } + + .fs-lg-5x { + font-size: calc(1.625rem + 4.5vw) !important + } + + .fs-lg-5qx { + font-size: calc(1.65rem + 4.8vw) !important + } + + .fs-lg-5hx { + font-size: calc(1.675rem + 5.1vw) !important + } + + .fs-lg-5tx { + font-size: calc(1.7rem + 5.4vw) !important + } + + .text-lg-start { + text-align: left !important + } + + .text-lg-end { + text-align: right !important + } + + .text-lg-center { + text-align: center !important + } + + .min-w-lg-unset { + min-width: unset !important + } + + .min-w-lg-25 { + min-width: 25% !important + } + + .min-w-lg-50 { + min-width: 50% !important + } + + .min-w-lg-75 { + min-width: 75% !important + } + + .min-w-lg-100 { + min-width: 100% !important + } + + .min-w-lg-auto { + min-width: auto !important + } + + .min-w-lg-1px { + min-width: 1px !important + } + + .min-w-lg-2px { + min-width: 2px !important + } + + .min-w-lg-3px { + min-width: 3px !important + } + + .min-w-lg-4px { + min-width: 4px !important + } + + .min-w-lg-5px { + min-width: 5px !important + } + + .min-w-lg-6px { + min-width: 6px !important + } + + .min-w-lg-7px { + min-width: 7px !important + } + + .min-w-lg-8px { + min-width: 8px !important + } + + .min-w-lg-9px { + min-width: 9px !important + } + + .min-w-lg-10px { + min-width: 10px !important + } + + .min-w-lg-15px { + min-width: 15px !important + } + + .min-w-lg-20px { + min-width: 20px !important + } + + .min-w-lg-25px { + min-width: 25px !important + } + + .min-w-lg-30px { + min-width: 30px !important + } + + .min-w-lg-35px { + min-width: 35px !important + } + + .min-w-lg-40px { + min-width: 40px !important + } + + .min-w-lg-45px { + min-width: 45px !important + } + + .min-w-lg-50px { + min-width: 50px !important + } + + .min-w-lg-55px { + min-width: 55px !important + } + + .min-w-lg-60px { + min-width: 60px !important + } + + .min-w-lg-65px { + min-width: 65px !important + } + + .min-w-lg-70px { + min-width: 70px !important + } + + .min-w-lg-75px { + min-width: 75px !important + } + + .min-w-lg-80px { + min-width: 80px !important + } + + .min-w-lg-85px { + min-width: 85px !important + } + + .min-w-lg-90px { + min-width: 90px !important + } + + .min-w-lg-95px { + min-width: 95px !important + } + + .min-w-lg-100px { + min-width: 100px !important + } + + .min-w-lg-125px { + min-width: 125px !important + } + + .min-w-lg-150px { + min-width: 150px !important + } + + .min-w-lg-175px { + min-width: 175px !important + } + + .min-w-lg-200px { + min-width: 200px !important + } + + .min-w-lg-225px { + min-width: 225px !important + } + + .min-w-lg-250px { + min-width: 250px !important + } + + .min-w-lg-275px { + min-width: 275px !important + } + + .min-w-lg-300px { + min-width: 300px !important + } + + .min-w-lg-325px { + min-width: 325px !important + } + + .min-w-lg-350px { + min-width: 350px !important + } + + .min-w-lg-375px { + min-width: 375px !important + } + + .min-w-lg-400px { + min-width: 400px !important + } + + .min-w-lg-425px { + min-width: 425px !important + } + + .min-w-lg-450px { + min-width: 450px !important + } + + .min-w-lg-475px { + min-width: 475px !important + } + + .min-w-lg-500px { + min-width: 500px !important + } + + .min-w-lg-550px { + min-width: 550px !important + } + + .min-w-lg-600px { + min-width: 600px !important + } + + .min-w-lg-650px { + min-width: 650px !important + } + + .min-w-lg-700px { + min-width: 700px !important + } + + .min-w-lg-750px { + min-width: 750px !important + } + + .min-w-lg-800px { + min-width: 800px !important + } + + .min-w-lg-850px { + min-width: 850px !important + } + + .min-w-lg-900px { + min-width: 900px !important + } + + .min-w-lg-950px { + min-width: 950px !important + } + + .min-w-lg-1000px { + min-width: 1000px !important + } + + .min-h-lg-unset { + min-height: unset !important + } + + .min-h-lg-25 { + min-height: 25% !important + } + + .min-h-lg-50 { + min-height: 50% !important + } + + .min-h-lg-75 { + min-height: 75% !important + } + + .min-h-lg-100 { + min-height: 100% !important + } + + .min-h-lg-auto { + min-height: auto !important + } + + .min-h-lg-1px { + min-height: 1px !important + } + + .min-h-lg-2px { + min-height: 2px !important + } + + .min-h-lg-3px { + min-height: 3px !important + } + + .min-h-lg-4px { + min-height: 4px !important + } + + .min-h-lg-5px { + min-height: 5px !important + } + + .min-h-lg-6px { + min-height: 6px !important + } + + .min-h-lg-7px { + min-height: 7px !important + } + + .min-h-lg-8px { + min-height: 8px !important + } + + .min-h-lg-9px { + min-height: 9px !important + } + + .min-h-lg-10px { + min-height: 10px !important + } + + .min-h-lg-15px { + min-height: 15px !important + } + + .min-h-lg-20px { + min-height: 20px !important + } + + .min-h-lg-25px { + min-height: 25px !important + } + + .min-h-lg-30px { + min-height: 30px !important + } + + .min-h-lg-35px { + min-height: 35px !important + } + + .min-h-lg-40px { + min-height: 40px !important + } + + .min-h-lg-45px { + min-height: 45px !important + } + + .min-h-lg-50px { + min-height: 50px !important + } + + .min-h-lg-55px { + min-height: 55px !important + } + + .min-h-lg-60px { + min-height: 60px !important + } + + .min-h-lg-65px { + min-height: 65px !important + } + + .min-h-lg-70px { + min-height: 70px !important + } + + .min-h-lg-75px { + min-height: 75px !important + } + + .min-h-lg-80px { + min-height: 80px !important + } + + .min-h-lg-85px { + min-height: 85px !important + } + + .min-h-lg-90px { + min-height: 90px !important + } + + .min-h-lg-95px { + min-height: 95px !important + } + + .min-h-lg-100px { + min-height: 100px !important + } + + .min-h-lg-125px { + min-height: 125px !important + } + + .min-h-lg-150px { + min-height: 150px !important + } + + .min-h-lg-175px { + min-height: 175px !important + } + + .min-h-lg-200px { + min-height: 200px !important + } + + .min-h-lg-225px { + min-height: 225px !important + } + + .min-h-lg-250px { + min-height: 250px !important + } + + .min-h-lg-275px { + min-height: 275px !important + } + + .min-h-lg-300px { + min-height: 300px !important + } + + .min-h-lg-325px { + min-height: 325px !important + } + + .min-h-lg-350px { + min-height: 350px !important + } + + .min-h-lg-375px { + min-height: 375px !important + } + + .min-h-lg-400px { + min-height: 400px !important + } + + .min-h-lg-425px { + min-height: 425px !important + } + + .min-h-lg-450px { + min-height: 450px !important + } + + .min-h-lg-475px { + min-height: 475px !important + } + + .min-h-lg-500px { + min-height: 500px !important + } + + .min-h-lg-550px { + min-height: 550px !important + } + + .min-h-lg-600px { + min-height: 600px !important + } + + .min-h-lg-650px { + min-height: 650px !important + } + + .min-h-lg-700px { + min-height: 700px !important + } + + .min-h-lg-750px { + min-height: 750px !important + } + + .min-h-lg-800px { + min-height: 800px !important + } + + .min-h-lg-850px { + min-height: 850px !important + } + + .min-h-lg-900px { + min-height: 900px !important + } + + .min-h-lg-950px { + min-height: 950px !important + } + + .min-h-lg-1000px { + min-height: 1000px !important + } +} + +@media (min-width:1200px) { + .float-xl-start { + float: left !important + } + + .float-xl-end { + float: right !important + } + + .float-xl-none { + float: none !important + } + + .d-xl-inline { + display: inline !important + } + + .d-xl-inline-block { + display: inline-block !important + } + + .d-xl-block { + display: block !important + } + + .d-xl-grid { + display: grid !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 + } + + .d-xl-none { + display: none !important + } + + .position-xl-static { + position: static !important + } + + .position-xl-relative { + position: relative !important + } + + .position-xl-absolute { + position: absolute !important + } + + .position-xl-fixed { + position: fixed !important + } + + .position-xl-sticky { + position: sticky !important + } + + .w-xl-unset { + width: unset !important + } + + .w-xl-25 { + width: 25% !important + } + + .w-xl-50 { + width: 50% !important + } + + .w-xl-75 { + width: 75% !important + } + + .w-xl-100 { + width: 100% !important + } + + .w-xl-auto { + width: auto !important + } + + .w-xl-1px { + width: 1px !important + } + + .w-xl-2px { + width: 2px !important + } + + .w-xl-3px { + width: 3px !important + } + + .w-xl-4px { + width: 4px !important + } + + .w-xl-5px { + width: 5px !important + } + + .w-xl-6px { + width: 6px !important + } + + .w-xl-7px { + width: 7px !important + } + + .w-xl-8px { + width: 8px !important + } + + .w-xl-9px { + width: 9px !important + } + + .w-xl-10px { + width: 10px !important + } + + .w-xl-15px { + width: 15px !important + } + + .w-xl-20px { + width: 20px !important + } + + .w-xl-25px { + width: 25px !important + } + + .w-xl-30px { + width: 30px !important + } + + .w-xl-35px { + width: 35px !important + } + + .w-xl-40px { + width: 40px !important + } + + .w-xl-45px { + width: 45px !important + } + + .w-xl-50px { + width: 50px !important + } + + .w-xl-55px { + width: 55px !important + } + + .w-xl-60px { + width: 60px !important + } + + .w-xl-65px { + width: 65px !important + } + + .w-xl-70px { + width: 70px !important + } + + .w-xl-75px { + width: 75px !important + } + + .w-xl-80px { + width: 80px !important + } + + .w-xl-85px { + width: 85px !important + } + + .w-xl-90px { + width: 90px !important + } + + .w-xl-95px { + width: 95px !important + } + + .w-xl-100px { + width: 100px !important + } + + .w-xl-125px { + width: 125px !important + } + + .w-xl-150px { + width: 150px !important + } + + .w-xl-175px { + width: 175px !important + } + + .w-xl-200px { + width: 200px !important + } + + .w-xl-225px { + width: 225px !important + } + + .w-xl-250px { + width: 250px !important + } + + .w-xl-275px { + width: 275px !important + } + + .w-xl-300px { + width: 300px !important + } + + .w-xl-325px { + width: 325px !important + } + + .w-xl-350px { + width: 350px !important + } + + .w-xl-375px { + width: 375px !important + } + + .w-xl-400px { + width: 400px !important + } + + .w-xl-425px { + width: 425px !important + } + + .w-xl-450px { + width: 450px !important + } + + .w-xl-475px { + width: 475px !important + } + + .w-xl-500px { + width: 500px !important + } + + .w-xl-550px { + width: 550px !important + } + + .w-xl-600px { + width: 600px !important + } + + .w-xl-650px { + width: 650px !important + } + + .w-xl-700px { + width: 700px !important + } + + .w-xl-750px { + width: 750px !important + } + + .w-xl-800px { + width: 800px !important + } + + .w-xl-850px { + width: 850px !important + } + + .w-xl-900px { + width: 900px !important + } + + .w-xl-950px { + width: 950px !important + } + + .w-xl-1000px { + width: 1000px !important + } + + .mw-xl-unset { + max-width: unset !important + } + + .mw-xl-25 { + max-width: 25% !important + } + + .mw-xl-50 { + max-width: 50% !important + } + + .mw-xl-75 { + max-width: 75% !important + } + + .mw-xl-100 { + max-width: 100% !important + } + + .mw-xl-auto { + max-width: auto !important + } + + .mw-xl-1px { + max-width: 1px !important + } + + .mw-xl-2px { + max-width: 2px !important + } + + .mw-xl-3px { + max-width: 3px !important + } + + .mw-xl-4px { + max-width: 4px !important + } + + .mw-xl-5px { + max-width: 5px !important + } + + .mw-xl-6px { + max-width: 6px !important + } + + .mw-xl-7px { + max-width: 7px !important + } + + .mw-xl-8px { + max-width: 8px !important + } + + .mw-xl-9px { + max-width: 9px !important + } + + .mw-xl-10px { + max-width: 10px !important + } + + .mw-xl-15px { + max-width: 15px !important + } + + .mw-xl-20px { + max-width: 20px !important + } + + .mw-xl-25px { + max-width: 25px !important + } + + .mw-xl-30px { + max-width: 30px !important + } + + .mw-xl-35px { + max-width: 35px !important + } + + .mw-xl-40px { + max-width: 40px !important + } + + .mw-xl-45px { + max-width: 45px !important + } + + .mw-xl-50px { + max-width: 50px !important + } + + .mw-xl-55px { + max-width: 55px !important + } + + .mw-xl-60px { + max-width: 60px !important + } + + .mw-xl-65px { + max-width: 65px !important + } + + .mw-xl-70px { + max-width: 70px !important + } + + .mw-xl-75px { + max-width: 75px !important + } + + .mw-xl-80px { + max-width: 80px !important + } + + .mw-xl-85px { + max-width: 85px !important + } + + .mw-xl-90px { + max-width: 90px !important + } + + .mw-xl-95px { + max-width: 95px !important + } + + .mw-xl-100px { + max-width: 100px !important + } + + .mw-xl-125px { + max-width: 125px !important + } + + .mw-xl-150px { + max-width: 150px !important + } + + .mw-xl-175px { + max-width: 175px !important + } + + .mw-xl-200px { + max-width: 200px !important + } + + .mw-xl-225px { + max-width: 225px !important + } + + .mw-xl-250px { + max-width: 250px !important + } + + .mw-xl-275px { + max-width: 275px !important + } + + .mw-xl-300px { + max-width: 300px !important + } + + .mw-xl-325px { + max-width: 325px !important + } + + .mw-xl-350px { + max-width: 350px !important + } + + .mw-xl-375px { + max-width: 375px !important + } + + .mw-xl-400px { + max-width: 400px !important + } + + .mw-xl-425px { + max-width: 425px !important + } + + .mw-xl-450px { + max-width: 450px !important + } + + .mw-xl-475px { + max-width: 475px !important + } + + .mw-xl-500px { + max-width: 500px !important + } + + .mw-xl-550px { + max-width: 550px !important + } + + .mw-xl-600px { + max-width: 600px !important + } + + .mw-xl-650px { + max-width: 650px !important + } + + .mw-xl-700px { + max-width: 700px !important + } + + .mw-xl-750px { + max-width: 750px !important + } + + .mw-xl-800px { + max-width: 800px !important + } + + .mw-xl-850px { + max-width: 850px !important + } + + .mw-xl-900px { + max-width: 900px !important + } + + .mw-xl-950px { + max-width: 950px !important + } + + .mw-xl-1000px { + max-width: 1000px !important + } + + .h-xl-unset { + height: unset !important + } + + .h-xl-25 { + height: 25% !important + } + + .h-xl-50 { + height: 50% !important + } + + .h-xl-75 { + height: 75% !important + } + + .h-xl-100 { + height: 100% !important + } + + .h-xl-auto { + height: auto !important + } + + .h-xl-1px { + height: 1px !important + } + + .h-xl-2px { + height: 2px !important + } + + .h-xl-3px { + height: 3px !important + } + + .h-xl-4px { + height: 4px !important + } + + .h-xl-5px { + height: 5px !important + } + + .h-xl-6px { + height: 6px !important + } + + .h-xl-7px { + height: 7px !important + } + + .h-xl-8px { + height: 8px !important + } + + .h-xl-9px { + height: 9px !important + } + + .h-xl-10px { + height: 10px !important + } + + .h-xl-15px { + height: 15px !important + } + + .h-xl-20px { + height: 20px !important + } + + .h-xl-25px { + height: 25px !important + } + + .h-xl-30px { + height: 30px !important + } + + .h-xl-35px { + height: 35px !important + } + + .h-xl-40px { + height: 40px !important + } + + .h-xl-45px { + height: 45px !important + } + + .h-xl-50px { + height: 50px !important + } + + .h-xl-55px { + height: 55px !important + } + + .h-xl-60px { + height: 60px !important + } + + .h-xl-65px { + height: 65px !important + } + + .h-xl-70px { + height: 70px !important + } + + .h-xl-75px { + height: 75px !important + } + + .h-xl-80px { + height: 80px !important + } + + .h-xl-85px { + height: 85px !important + } + + .h-xl-90px { + height: 90px !important + } + + .h-xl-95px { + height: 95px !important + } + + .h-xl-100px { + height: 100px !important + } + + .h-xl-125px { + height: 125px !important + } + + .h-xl-150px { + height: 150px !important + } + + .h-xl-175px { + height: 175px !important + } + + .h-xl-200px { + height: 200px !important + } + + .h-xl-225px { + height: 225px !important + } + + .h-xl-250px { + height: 250px !important + } + + .h-xl-275px { + height: 275px !important + } + + .h-xl-300px { + height: 300px !important + } + + .h-xl-325px { + height: 325px !important + } + + .h-xl-350px { + height: 350px !important + } + + .h-xl-375px { + height: 375px !important + } + + .h-xl-400px { + height: 400px !important + } + + .h-xl-425px { + height: 425px !important + } + + .h-xl-450px { + height: 450px !important + } + + .h-xl-475px { + height: 475px !important + } + + .h-xl-500px { + height: 500px !important + } + + .h-xl-550px { + height: 550px !important + } + + .h-xl-600px { + height: 600px !important + } + + .h-xl-650px { + height: 650px !important + } + + .h-xl-700px { + height: 700px !important + } + + .h-xl-750px { + height: 750px !important + } + + .h-xl-800px { + height: 800px !important + } + + .h-xl-850px { + height: 850px !important + } + + .h-xl-900px { + height: 900px !important + } + + .h-xl-950px { + height: 950px !important + } + + .h-xl-1000px { + height: 1000px !important + } + + .mh-xl-unset { + max-height: unset !important + } + + .mh-xl-25 { + max-height: 25% !important + } + + .mh-xl-50 { + max-height: 50% !important + } + + .mh-xl-75 { + max-height: 75% !important + } + + .mh-xl-100 { + max-height: 100% !important + } + + .mh-xl-auto { + max-height: auto !important + } + + .mh-xl-1px { + max-height: 1px !important + } + + .mh-xl-2px { + max-height: 2px !important + } + + .mh-xl-3px { + max-height: 3px !important + } + + .mh-xl-4px { + max-height: 4px !important + } + + .mh-xl-5px { + max-height: 5px !important + } + + .mh-xl-6px { + max-height: 6px !important + } + + .mh-xl-7px { + max-height: 7px !important + } + + .mh-xl-8px { + max-height: 8px !important + } + + .mh-xl-9px { + max-height: 9px !important + } + + .mh-xl-10px { + max-height: 10px !important + } + + .mh-xl-15px { + max-height: 15px !important + } + + .mh-xl-20px { + max-height: 20px !important + } + + .mh-xl-25px { + max-height: 25px !important + } + + .mh-xl-30px { + max-height: 30px !important + } + + .mh-xl-35px { + max-height: 35px !important + } + + .mh-xl-40px { + max-height: 40px !important + } + + .mh-xl-45px { + max-height: 45px !important + } + + .mh-xl-50px { + max-height: 50px !important + } + + .mh-xl-55px { + max-height: 55px !important + } + + .mh-xl-60px { + max-height: 60px !important + } + + .mh-xl-65px { + max-height: 65px !important + } + + .mh-xl-70px { + max-height: 70px !important + } + + .mh-xl-75px { + max-height: 75px !important + } + + .mh-xl-80px { + max-height: 80px !important + } + + .mh-xl-85px { + max-height: 85px !important + } + + .mh-xl-90px { + max-height: 90px !important + } + + .mh-xl-95px { + max-height: 95px !important + } + + .mh-xl-100px { + max-height: 100px !important + } + + .mh-xl-125px { + max-height: 125px !important + } + + .mh-xl-150px { + max-height: 150px !important + } + + .mh-xl-175px { + max-height: 175px !important + } + + .mh-xl-200px { + max-height: 200px !important + } + + .mh-xl-225px { + max-height: 225px !important + } + + .mh-xl-250px { + max-height: 250px !important + } + + .mh-xl-275px { + max-height: 275px !important + } + + .mh-xl-300px { + max-height: 300px !important + } + + .mh-xl-325px { + max-height: 325px !important + } + + .mh-xl-350px { + max-height: 350px !important + } + + .mh-xl-375px { + max-height: 375px !important + } + + .mh-xl-400px { + max-height: 400px !important + } + + .mh-xl-425px { + max-height: 425px !important + } + + .mh-xl-450px { + max-height: 450px !important + } + + .mh-xl-475px { + max-height: 475px !important + } + + .mh-xl-500px { + max-height: 500px !important + } + + .mh-xl-550px { + max-height: 550px !important + } + + .mh-xl-600px { + max-height: 600px !important + } + + .mh-xl-650px { + max-height: 650px !important + } + + .mh-xl-700px { + max-height: 700px !important + } + + .mh-xl-750px { + max-height: 750px !important + } + + .mh-xl-800px { + max-height: 800px !important + } + + .mh-xl-850px { + max-height: 850px !important + } + + .mh-xl-900px { + max-height: 900px !important + } + + .mh-xl-950px { + max-height: 950px !important + } + + .mh-xl-1000px { + max-height: 1000px !important + } + + .flex-xl-fill { + flex: 1 1 auto !important + } + + .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-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 + } + + .flex-xl-wrap { + flex-wrap: wrap !important + } + + .flex-xl-nowrap { + flex-wrap: nowrap !important + } + + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important + } + + .gap-xl-0 { + gap: 0 !important + } + + .gap-xl-1 { + gap: .25rem !important + } + + .gap-xl-2 { + gap: .5rem !important + } + + .gap-xl-3 { + gap: .75rem !important + } + + .gap-xl-4 { + gap: 1rem !important + } + + .gap-xl-5 { + gap: 1.25rem !important + } + + .gap-xl-6 { + gap: 1.5rem !important + } + + .gap-xl-7 { + gap: 1.75rem !important + } + + .gap-xl-8 { + gap: 2rem !important + } + + .gap-xl-9 { + gap: 2.25rem !important + } + + .gap-xl-10 { + gap: 2.5rem !important + } + + .gap-xl-11 { + gap: 2.75rem !important + } + + .gap-xl-12 { + gap: 3rem !important + } + + .gap-xl-13 { + gap: 3.25rem !important + } + + .gap-xl-14 { + gap: 3.5rem !important + } + + .gap-xl-15 { + gap: 3.75rem !important + } + + .gap-xl-16 { + gap: 4rem !important + } + + .gap-xl-17 { + gap: 4.25rem !important + } + + .gap-xl-18 { + gap: 4.5rem !important + } + + .gap-xl-19 { + gap: 4.75rem !important + } + + .gap-xl-20 { + gap: 5rem !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 + } + + .justify-content-xl-evenly { + justify-content: space-evenly !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 + } + + .order-xl-first { + order: -1 !important + } + + .order-xl-0 { + order: 0 !important + } + + .order-xl-1 { + order: 1 !important + } + + .order-xl-2 { + order: 2 !important + } + + .order-xl-3 { + order: 3 !important + } + + .order-xl-4 { + order: 4 !important + } + + .order-xl-5 { + order: 5 !important + } + + .order-xl-last { + order: 6 !important + } + + .m-xl-0 { + margin: 0 !important + } + + .m-xl-1 { + margin: .25rem !important + } + + .m-xl-2 { + margin: .5rem !important + } + + .m-xl-3 { + margin: .75rem !important + } + + .m-xl-4 { + margin: 1rem !important + } + + .m-xl-5 { + margin: 1.25rem !important + } + + .m-xl-6 { + margin: 1.5rem !important + } + + .m-xl-7 { + margin: 1.75rem !important + } + + .m-xl-8 { + margin: 2rem !important + } + + .m-xl-9 { + margin: 2.25rem !important + } + + .m-xl-10 { + margin: 2.5rem !important + } + + .m-xl-11 { + margin: 2.75rem !important + } + + .m-xl-12 { + margin: 3rem !important + } + + .m-xl-13 { + margin: 3.25rem !important + } + + .m-xl-14 { + margin: 3.5rem !important + } + + .m-xl-15 { + margin: 3.75rem !important + } + + .m-xl-16 { + margin: 4rem !important + } + + .m-xl-17 { + margin: 4.25rem !important + } + + .m-xl-18 { + margin: 4.5rem !important + } + + .m-xl-19 { + margin: 4.75rem !important + } + + .m-xl-20 { + margin: 5rem !important + } + + .m-xl-auto { + margin: auto !important + } + + .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important + } + + .mx-xl-1 { + margin-right: .25rem !important; + margin-left: .25rem !important + } + + .mx-xl-2 { + margin-right: .5rem !important; + margin-left: .5rem !important + } + + .mx-xl-3 { + margin-right: .75rem !important; + margin-left: .75rem !important + } + + .mx-xl-4 { + margin-right: 1rem !important; + margin-left: 1rem !important + } + + .mx-xl-5 { + margin-right: 1.25rem !important; + margin-left: 1.25rem !important + } + + .mx-xl-6 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important + } + + .mx-xl-7 { + margin-right: 1.75rem !important; + margin-left: 1.75rem !important + } + + .mx-xl-8 { + margin-right: 2rem !important; + margin-left: 2rem !important + } + + .mx-xl-9 { + margin-right: 2.25rem !important; + margin-left: 2.25rem !important + } + + .mx-xl-10 { + margin-right: 2.5rem !important; + margin-left: 2.5rem !important + } + + .mx-xl-11 { + margin-right: 2.75rem !important; + margin-left: 2.75rem !important + } + + .mx-xl-12 { + margin-right: 3rem !important; + margin-left: 3rem !important + } + + .mx-xl-13 { + margin-right: 3.25rem !important; + margin-left: 3.25rem !important + } + + .mx-xl-14 { + margin-right: 3.5rem !important; + margin-left: 3.5rem !important + } + + .mx-xl-15 { + margin-right: 3.75rem !important; + margin-left: 3.75rem !important + } + + .mx-xl-16 { + margin-right: 4rem !important; + margin-left: 4rem !important + } + + .mx-xl-17 { + margin-right: 4.25rem !important; + margin-left: 4.25rem !important + } + + .mx-xl-18 { + margin-right: 4.5rem !important; + margin-left: 4.5rem !important + } + + .mx-xl-19 { + margin-right: 4.75rem !important; + margin-left: 4.75rem !important + } + + .mx-xl-20 { + margin-right: 5rem !important; + margin-left: 5rem !important + } + + .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important + } + + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important + } + + .my-xl-1 { + margin-top: .25rem !important; + margin-bottom: .25rem !important + } + + .my-xl-2 { + margin-top: .5rem !important; + margin-bottom: .5rem !important + } + + .my-xl-3 { + margin-top: .75rem !important; + margin-bottom: .75rem !important + } + + .my-xl-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important + } + + .my-xl-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important + } + + .my-xl-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important + } + + .my-xl-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important + } + + .my-xl-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important + } + + .my-xl-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important + } + + .my-xl-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important + } + + .my-xl-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important + } + + .my-xl-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important + } + + .my-xl-13 { + margin-top: 3.25rem !important; + margin-bottom: 3.25rem !important + } + + .my-xl-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important + } + + .my-xl-15 { + margin-top: 3.75rem !important; + margin-bottom: 3.75rem !important + } + + .my-xl-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important + } + + .my-xl-17 { + margin-top: 4.25rem !important; + margin-bottom: 4.25rem !important + } + + .my-xl-18 { + margin-top: 4.5rem !important; + margin-bottom: 4.5rem !important + } + + .my-xl-19 { + margin-top: 4.75rem !important; + margin-bottom: 4.75rem !important + } + + .my-xl-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important + } + + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important + } + + .mt-xl-0 { + margin-top: 0 !important + } + + .mt-xl-1 { + margin-top: .25rem !important + } + + .mt-xl-2 { + margin-top: .5rem !important + } + + .mt-xl-3 { + margin-top: .75rem !important + } + + .mt-xl-4 { + margin-top: 1rem !important + } + + .mt-xl-5 { + margin-top: 1.25rem !important + } + + .mt-xl-6 { + margin-top: 1.5rem !important + } + + .mt-xl-7 { + margin-top: 1.75rem !important + } + + .mt-xl-8 { + margin-top: 2rem !important + } + + .mt-xl-9 { + margin-top: 2.25rem !important + } + + .mt-xl-10 { + margin-top: 2.5rem !important + } + + .mt-xl-11 { + margin-top: 2.75rem !important + } + + .mt-xl-12 { + margin-top: 3rem !important + } + + .mt-xl-13 { + margin-top: 3.25rem !important + } + + .mt-xl-14 { + margin-top: 3.5rem !important + } + + .mt-xl-15 { + margin-top: 3.75rem !important + } + + .mt-xl-16 { + margin-top: 4rem !important + } + + .mt-xl-17 { + margin-top: 4.25rem !important + } + + .mt-xl-18 { + margin-top: 4.5rem !important + } + + .mt-xl-19 { + margin-top: 4.75rem !important + } + + .mt-xl-20 { + margin-top: 5rem !important + } + + .mt-xl-auto { + margin-top: auto !important + } + + .me-xl-0 { + margin-right: 0 !important + } + + .me-xl-1 { + margin-right: .25rem !important + } + + .me-xl-2 { + margin-right: .5rem !important + } + + .me-xl-3 { + margin-right: .75rem !important + } + + .me-xl-4 { + margin-right: 1rem !important + } + + .me-xl-5 { + margin-right: 1.25rem !important + } + + .me-xl-6 { + margin-right: 1.5rem !important + } + + .me-xl-7 { + margin-right: 1.75rem !important + } + + .me-xl-8 { + margin-right: 2rem !important + } + + .me-xl-9 { + margin-right: 2.25rem !important + } + + .me-xl-10 { + margin-right: 2.5rem !important + } + + .me-xl-11 { + margin-right: 2.75rem !important + } + + .me-xl-12 { + margin-right: 3rem !important + } + + .me-xl-13 { + margin-right: 3.25rem !important + } + + .me-xl-14 { + margin-right: 3.5rem !important + } + + .me-xl-15 { + margin-right: 3.75rem !important + } + + .me-xl-16 { + margin-right: 4rem !important + } + + .me-xl-17 { + margin-right: 4.25rem !important + } + + .me-xl-18 { + margin-right: 4.5rem !important + } + + .me-xl-19 { + margin-right: 4.75rem !important + } + + .me-xl-20 { + margin-right: 5rem !important + } + + .me-xl-auto { + margin-right: auto !important + } + + .mb-xl-0 { + margin-bottom: 0 !important + } + + .mb-xl-1 { + margin-bottom: .25rem !important + } + + .mb-xl-2 { + margin-bottom: .5rem !important + } + + .mb-xl-3 { + margin-bottom: .75rem !important + } + + .mb-xl-4 { + margin-bottom: 1rem !important + } + + .mb-xl-5 { + margin-bottom: 1.25rem !important + } + + .mb-xl-6 { + margin-bottom: 1.5rem !important + } + + .mb-xl-7 { + margin-bottom: 1.75rem !important + } + + .mb-xl-8 { + margin-bottom: 2rem !important + } + + .mb-xl-9 { + margin-bottom: 2.25rem !important + } + + .mb-xl-10 { + margin-bottom: 2.5rem !important + } + + .mb-xl-11 { + margin-bottom: 2.75rem !important + } + + .mb-xl-12 { + margin-bottom: 3rem !important + } + + .mb-xl-13 { + margin-bottom: 3.25rem !important + } + + .mb-xl-14 { + margin-bottom: 3.5rem !important + } + + .mb-xl-15 { + margin-bottom: 3.75rem !important + } + + .mb-xl-16 { + margin-bottom: 4rem !important + } + + .mb-xl-17 { + margin-bottom: 4.25rem !important + } + + .mb-xl-18 { + margin-bottom: 4.5rem !important + } + + .mb-xl-19 { + margin-bottom: 4.75rem !important + } + + .mb-xl-20 { + margin-bottom: 5rem !important + } + + .mb-xl-auto { + margin-bottom: auto !important + } + + .ms-xl-0 { + margin-left: 0 !important + } + + .ms-xl-1 { + margin-left: .25rem !important + } + + .ms-xl-2 { + margin-left: .5rem !important + } + + .ms-xl-3 { + margin-left: .75rem !important + } + + .ms-xl-4 { + margin-left: 1rem !important + } + + .ms-xl-5 { + margin-left: 1.25rem !important + } + + .ms-xl-6 { + margin-left: 1.5rem !important + } + + .ms-xl-7 { + margin-left: 1.75rem !important + } + + .ms-xl-8 { + margin-left: 2rem !important + } + + .ms-xl-9 { + margin-left: 2.25rem !important + } + + .ms-xl-10 { + margin-left: 2.5rem !important + } + + .ms-xl-11 { + margin-left: 2.75rem !important + } + + .ms-xl-12 { + margin-left: 3rem !important + } + + .ms-xl-13 { + margin-left: 3.25rem !important + } + + .ms-xl-14 { + margin-left: 3.5rem !important + } + + .ms-xl-15 { + margin-left: 3.75rem !important + } + + .ms-xl-16 { + margin-left: 4rem !important + } + + .ms-xl-17 { + margin-left: 4.25rem !important + } + + .ms-xl-18 { + margin-left: 4.5rem !important + } + + .ms-xl-19 { + margin-left: 4.75rem !important + } + + .ms-xl-20 { + margin-left: 5rem !important + } + + .ms-xl-auto { + margin-left: auto !important + } + + .m-xl-n1 { + margin: -.25rem !important + } + + .m-xl-n2 { + margin: -.5rem !important + } + + .m-xl-n3 { + margin: -.75rem !important + } + + .m-xl-n4 { + margin: -1rem !important + } + + .m-xl-n5 { + margin: -1.25rem !important + } + + .m-xl-n6 { + margin: -1.5rem !important + } + + .m-xl-n7 { + margin: -1.75rem !important + } + + .m-xl-n8 { + margin: -2rem !important + } + + .m-xl-n9 { + margin: -2.25rem !important + } + + .m-xl-n10 { + margin: -2.5rem !important + } + + .m-xl-n11 { + margin: -2.75rem !important + } + + .m-xl-n12 { + margin: -3rem !important + } + + .m-xl-n13 { + margin: -3.25rem !important + } + + .m-xl-n14 { + margin: -3.5rem !important + } + + .m-xl-n15 { + margin: -3.75rem !important + } + + .m-xl-n16 { + margin: -4rem !important + } + + .m-xl-n17 { + margin: -4.25rem !important + } + + .m-xl-n18 { + margin: -4.5rem !important + } + + .m-xl-n19 { + margin: -4.75rem !important + } + + .m-xl-n20 { + margin: -5rem !important + } + + .mx-xl-n1 { + margin-right: -.25rem !important; + margin-left: -.25rem !important + } + + .mx-xl-n2 { + margin-right: -.5rem !important; + margin-left: -.5rem !important + } + + .mx-xl-n3 { + margin-right: -.75rem !important; + margin-left: -.75rem !important + } + + .mx-xl-n4 { + margin-right: -1rem !important; + margin-left: -1rem !important + } + + .mx-xl-n5 { + margin-right: -1.25rem !important; + margin-left: -1.25rem !important + } + + .mx-xl-n6 { + margin-right: -1.5rem !important; + margin-left: -1.5rem !important + } + + .mx-xl-n7 { + margin-right: -1.75rem !important; + margin-left: -1.75rem !important + } + + .mx-xl-n8 { + margin-right: -2rem !important; + margin-left: -2rem !important + } + + .mx-xl-n9 { + margin-right: -2.25rem !important; + margin-left: -2.25rem !important + } + + .mx-xl-n10 { + margin-right: -2.5rem !important; + margin-left: -2.5rem !important + } + + .mx-xl-n11 { + margin-right: -2.75rem !important; + margin-left: -2.75rem !important + } + + .mx-xl-n12 { + margin-right: -3rem !important; + margin-left: -3rem !important + } + + .mx-xl-n13 { + margin-right: -3.25rem !important; + margin-left: -3.25rem !important + } + + .mx-xl-n14 { + margin-right: -3.5rem !important; + margin-left: -3.5rem !important + } + + .mx-xl-n15 { + margin-right: -3.75rem !important; + margin-left: -3.75rem !important + } + + .mx-xl-n16 { + margin-right: -4rem !important; + margin-left: -4rem !important + } + + .mx-xl-n17 { + margin-right: -4.25rem !important; + margin-left: -4.25rem !important + } + + .mx-xl-n18 { + margin-right: -4.5rem !important; + margin-left: -4.5rem !important + } + + .mx-xl-n19 { + margin-right: -4.75rem !important; + margin-left: -4.75rem !important + } + + .mx-xl-n20 { + margin-right: -5rem !important; + margin-left: -5rem !important + } + + .my-xl-n1 { + margin-top: -.25rem !important; + margin-bottom: -.25rem !important + } + + .my-xl-n2 { + margin-top: -.5rem !important; + margin-bottom: -.5rem !important + } + + .my-xl-n3 { + margin-top: -.75rem !important; + margin-bottom: -.75rem !important + } + + .my-xl-n4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important + } + + .my-xl-n5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important + } + + .my-xl-n6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important + } + + .my-xl-n7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important + } + + .my-xl-n8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important + } + + .my-xl-n9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important + } + + .my-xl-n10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important + } + + .my-xl-n11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important + } + + .my-xl-n12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important + } + + .my-xl-n13 { + margin-top: -3.25rem !important; + margin-bottom: -3.25rem !important + } + + .my-xl-n14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important + } + + .my-xl-n15 { + margin-top: -3.75rem !important; + margin-bottom: -3.75rem !important + } + + .my-xl-n16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important + } + + .my-xl-n17 { + margin-top: -4.25rem !important; + margin-bottom: -4.25rem !important + } + + .my-xl-n18 { + margin-top: -4.5rem !important; + margin-bottom: -4.5rem !important + } + + .my-xl-n19 { + margin-top: -4.75rem !important; + margin-bottom: -4.75rem !important + } + + .my-xl-n20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important + } + + .mt-xl-n1 { + margin-top: -.25rem !important + } + + .mt-xl-n2 { + margin-top: -.5rem !important + } + + .mt-xl-n3 { + margin-top: -.75rem !important + } + + .mt-xl-n4 { + margin-top: -1rem !important + } + + .mt-xl-n5 { + margin-top: -1.25rem !important + } + + .mt-xl-n6 { + margin-top: -1.5rem !important + } + + .mt-xl-n7 { + margin-top: -1.75rem !important + } + + .mt-xl-n8 { + margin-top: -2rem !important + } + + .mt-xl-n9 { + margin-top: -2.25rem !important + } + + .mt-xl-n10 { + margin-top: -2.5rem !important + } + + .mt-xl-n11 { + margin-top: -2.75rem !important + } + + .mt-xl-n12 { + margin-top: -3rem !important + } + + .mt-xl-n13 { + margin-top: -3.25rem !important + } + + .mt-xl-n14 { + margin-top: -3.5rem !important + } + + .mt-xl-n15 { + margin-top: -3.75rem !important + } + + .mt-xl-n16 { + margin-top: -4rem !important + } + + .mt-xl-n17 { + margin-top: -4.25rem !important + } + + .mt-xl-n18 { + margin-top: -4.5rem !important + } + + .mt-xl-n19 { + margin-top: -4.75rem !important + } + + .mt-xl-n20 { + margin-top: -5rem !important + } + + .me-xl-n1 { + margin-right: -.25rem !important + } + + .me-xl-n2 { + margin-right: -.5rem !important + } + + .me-xl-n3 { + margin-right: -.75rem !important + } + + .me-xl-n4 { + margin-right: -1rem !important + } + + .me-xl-n5 { + margin-right: -1.25rem !important + } + + .me-xl-n6 { + margin-right: -1.5rem !important + } + + .me-xl-n7 { + margin-right: -1.75rem !important + } + + .me-xl-n8 { + margin-right: -2rem !important + } + + .me-xl-n9 { + margin-right: -2.25rem !important + } + + .me-xl-n10 { + margin-right: -2.5rem !important + } + + .me-xl-n11 { + margin-right: -2.75rem !important + } + + .me-xl-n12 { + margin-right: -3rem !important + } + + .me-xl-n13 { + margin-right: -3.25rem !important + } + + .me-xl-n14 { + margin-right: -3.5rem !important + } + + .me-xl-n15 { + margin-right: -3.75rem !important + } + + .me-xl-n16 { + margin-right: -4rem !important + } + + .me-xl-n17 { + margin-right: -4.25rem !important + } + + .me-xl-n18 { + margin-right: -4.5rem !important + } + + .me-xl-n19 { + margin-right: -4.75rem !important + } + + .me-xl-n20 { + margin-right: -5rem !important + } + + .mb-xl-n1 { + margin-bottom: -.25rem !important + } + + .mb-xl-n2 { + margin-bottom: -.5rem !important + } + + .mb-xl-n3 { + margin-bottom: -.75rem !important + } + + .mb-xl-n4 { + margin-bottom: -1rem !important + } + + .mb-xl-n5 { + margin-bottom: -1.25rem !important + } + + .mb-xl-n6 { + margin-bottom: -1.5rem !important + } + + .mb-xl-n7 { + margin-bottom: -1.75rem !important + } + + .mb-xl-n8 { + margin-bottom: -2rem !important + } + + .mb-xl-n9 { + margin-bottom: -2.25rem !important + } + + .mb-xl-n10 { + margin-bottom: -2.5rem !important + } + + .mb-xl-n11 { + margin-bottom: -2.75rem !important + } + + .mb-xl-n12 { + margin-bottom: -3rem !important + } + + .mb-xl-n13 { + margin-bottom: -3.25rem !important + } + + .mb-xl-n14 { + margin-bottom: -3.5rem !important + } + + .mb-xl-n15 { + margin-bottom: -3.75rem !important + } + + .mb-xl-n16 { + margin-bottom: -4rem !important + } + + .mb-xl-n17 { + margin-bottom: -4.25rem !important + } + + .mb-xl-n18 { + margin-bottom: -4.5rem !important + } + + .mb-xl-n19 { + margin-bottom: -4.75rem !important + } + + .mb-xl-n20 { + margin-bottom: -5rem !important + } + + .ms-xl-n1 { + margin-left: -.25rem !important + } + + .ms-xl-n2 { + margin-left: -.5rem !important + } + + .ms-xl-n3 { + margin-left: -.75rem !important + } + + .ms-xl-n4 { + margin-left: -1rem !important + } + + .ms-xl-n5 { + margin-left: -1.25rem !important + } + + .ms-xl-n6 { + margin-left: -1.5rem !important + } + + .ms-xl-n7 { + margin-left: -1.75rem !important + } + + .ms-xl-n8 { + margin-left: -2rem !important + } + + .ms-xl-n9 { + margin-left: -2.25rem !important + } + + .ms-xl-n10 { + margin-left: -2.5rem !important + } + + .ms-xl-n11 { + margin-left: -2.75rem !important + } + + .ms-xl-n12 { + margin-left: -3rem !important + } + + .ms-xl-n13 { + margin-left: -3.25rem !important + } + + .ms-xl-n14 { + margin-left: -3.5rem !important + } + + .ms-xl-n15 { + margin-left: -3.75rem !important + } + + .ms-xl-n16 { + margin-left: -4rem !important + } + + .ms-xl-n17 { + margin-left: -4.25rem !important + } + + .ms-xl-n18 { + margin-left: -4.5rem !important + } + + .ms-xl-n19 { + margin-left: -4.75rem !important + } + + .ms-xl-n20 { + margin-left: -5rem !important + } + + .p-xl-0 { + padding: 0 !important + } + + .p-xl-1 { + padding: .25rem !important + } + + .p-xl-2 { + padding: .5rem !important + } + + .p-xl-3 { + padding: .75rem !important + } + + .p-xl-4 { + padding: 1rem !important + } + + .p-xl-5 { + padding: 1.25rem !important + } + + .p-xl-6 { + padding: 1.5rem !important + } + + .p-xl-7 { + padding: 1.75rem !important + } + + .p-xl-8 { + padding: 2rem !important + } + + .p-xl-9 { + padding: 2.25rem !important + } + + .p-xl-10 { + padding: 2.5rem !important + } + + .p-xl-11 { + padding: 2.75rem !important + } + + .p-xl-12 { + padding: 3rem !important + } + + .p-xl-13 { + padding: 3.25rem !important + } + + .p-xl-14 { + padding: 3.5rem !important + } + + .p-xl-15 { + padding: 3.75rem !important + } + + .p-xl-16 { + padding: 4rem !important + } + + .p-xl-17 { + padding: 4.25rem !important + } + + .p-xl-18 { + padding: 4.5rem !important + } + + .p-xl-19 { + padding: 4.75rem !important + } + + .p-xl-20 { + padding: 5rem !important + } + + .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important + } + + .px-xl-1 { + padding-right: .25rem !important; + padding-left: .25rem !important + } + + .px-xl-2 { + padding-right: .5rem !important; + padding-left: .5rem !important + } + + .px-xl-3 { + padding-right: .75rem !important; + padding-left: .75rem !important + } + + .px-xl-4 { + padding-right: 1rem !important; + padding-left: 1rem !important + } + + .px-xl-5 { + padding-right: 1.25rem !important; + padding-left: 1.25rem !important + } + + .px-xl-6 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important + } + + .px-xl-7 { + padding-right: 1.75rem !important; + padding-left: 1.75rem !important + } + + .px-xl-8 { + padding-right: 2rem !important; + padding-left: 2rem !important + } + + .px-xl-9 { + padding-right: 2.25rem !important; + padding-left: 2.25rem !important + } + + .px-xl-10 { + padding-right: 2.5rem !important; + padding-left: 2.5rem !important + } + + .px-xl-11 { + padding-right: 2.75rem !important; + padding-left: 2.75rem !important + } + + .px-xl-12 { + padding-right: 3rem !important; + padding-left: 3rem !important + } + + .px-xl-13 { + padding-right: 3.25rem !important; + padding-left: 3.25rem !important + } + + .px-xl-14 { + padding-right: 3.5rem !important; + padding-left: 3.5rem !important + } + + .px-xl-15 { + padding-right: 3.75rem !important; + padding-left: 3.75rem !important + } + + .px-xl-16 { + padding-right: 4rem !important; + padding-left: 4rem !important + } + + .px-xl-17 { + padding-right: 4.25rem !important; + padding-left: 4.25rem !important + } + + .px-xl-18 { + padding-right: 4.5rem !important; + padding-left: 4.5rem !important + } + + .px-xl-19 { + padding-right: 4.75rem !important; + padding-left: 4.75rem !important + } + + .px-xl-20 { + padding-right: 5rem !important; + padding-left: 5rem !important + } + + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important + } + + .py-xl-1 { + padding-top: .25rem !important; + padding-bottom: .25rem !important + } + + .py-xl-2 { + padding-top: .5rem !important; + padding-bottom: .5rem !important + } + + .py-xl-3 { + padding-top: .75rem !important; + padding-bottom: .75rem !important + } + + .py-xl-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important + } + + .py-xl-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important + } + + .py-xl-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important + } + + .py-xl-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important + } + + .py-xl-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important + } + + .py-xl-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important + } + + .py-xl-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important + } + + .py-xl-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important + } + + .py-xl-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important + } + + .py-xl-13 { + padding-top: 3.25rem !important; + padding-bottom: 3.25rem !important + } + + .py-xl-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important + } + + .py-xl-15 { + padding-top: 3.75rem !important; + padding-bottom: 3.75rem !important + } + + .py-xl-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important + } + + .py-xl-17 { + padding-top: 4.25rem !important; + padding-bottom: 4.25rem !important + } + + .py-xl-18 { + padding-top: 4.5rem !important; + padding-bottom: 4.5rem !important + } + + .py-xl-19 { + padding-top: 4.75rem !important; + padding-bottom: 4.75rem !important + } + + .py-xl-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important + } + + .pt-xl-0 { + padding-top: 0 !important + } + + .pt-xl-1 { + padding-top: .25rem !important + } + + .pt-xl-2 { + padding-top: .5rem !important + } + + .pt-xl-3 { + padding-top: .75rem !important + } + + .pt-xl-4 { + padding-top: 1rem !important + } + + .pt-xl-5 { + padding-top: 1.25rem !important + } + + .pt-xl-6 { + padding-top: 1.5rem !important + } + + .pt-xl-7 { + padding-top: 1.75rem !important + } + + .pt-xl-8 { + padding-top: 2rem !important + } + + .pt-xl-9 { + padding-top: 2.25rem !important + } + + .pt-xl-10 { + padding-top: 2.5rem !important + } + + .pt-xl-11 { + padding-top: 2.75rem !important + } + + .pt-xl-12 { + padding-top: 3rem !important + } + + .pt-xl-13 { + padding-top: 3.25rem !important + } + + .pt-xl-14 { + padding-top: 3.5rem !important + } + + .pt-xl-15 { + padding-top: 3.75rem !important + } + + .pt-xl-16 { + padding-top: 4rem !important + } + + .pt-xl-17 { + padding-top: 4.25rem !important + } + + .pt-xl-18 { + padding-top: 4.5rem !important + } + + .pt-xl-19 { + padding-top: 4.75rem !important + } + + .pt-xl-20 { + padding-top: 5rem !important + } + + .pe-xl-0 { + padding-right: 0 !important + } + + .pe-xl-1 { + padding-right: .25rem !important + } + + .pe-xl-2 { + padding-right: .5rem !important + } + + .pe-xl-3 { + padding-right: .75rem !important + } + + .pe-xl-4 { + padding-right: 1rem !important + } + + .pe-xl-5 { + padding-right: 1.25rem !important + } + + .pe-xl-6 { + padding-right: 1.5rem !important + } + + .pe-xl-7 { + padding-right: 1.75rem !important + } + + .pe-xl-8 { + padding-right: 2rem !important + } + + .pe-xl-9 { + padding-right: 2.25rem !important + } + + .pe-xl-10 { + padding-right: 2.5rem !important + } + + .pe-xl-11 { + padding-right: 2.75rem !important + } + + .pe-xl-12 { + padding-right: 3rem !important + } + + .pe-xl-13 { + padding-right: 3.25rem !important + } + + .pe-xl-14 { + padding-right: 3.5rem !important + } + + .pe-xl-15 { + padding-right: 3.75rem !important + } + + .pe-xl-16 { + padding-right: 4rem !important + } + + .pe-xl-17 { + padding-right: 4.25rem !important + } + + .pe-xl-18 { + padding-right: 4.5rem !important + } + + .pe-xl-19 { + padding-right: 4.75rem !important + } + + .pe-xl-20 { + padding-right: 5rem !important + } + + .pb-xl-0 { + padding-bottom: 0 !important + } + + .pb-xl-1 { + padding-bottom: .25rem !important + } + + .pb-xl-2 { + padding-bottom: .5rem !important + } + + .pb-xl-3 { + padding-bottom: .75rem !important + } + + .pb-xl-4 { + padding-bottom: 1rem !important + } + + .pb-xl-5 { + padding-bottom: 1.25rem !important + } + + .pb-xl-6 { + padding-bottom: 1.5rem !important + } + + .pb-xl-7 { + padding-bottom: 1.75rem !important + } + + .pb-xl-8 { + padding-bottom: 2rem !important + } + + .pb-xl-9 { + padding-bottom: 2.25rem !important + } + + .pb-xl-10 { + padding-bottom: 2.5rem !important + } + + .pb-xl-11 { + padding-bottom: 2.75rem !important + } + + .pb-xl-12 { + padding-bottom: 3rem !important + } + + .pb-xl-13 { + padding-bottom: 3.25rem !important + } + + .pb-xl-14 { + padding-bottom: 3.5rem !important + } + + .pb-xl-15 { + padding-bottom: 3.75rem !important + } + + .pb-xl-16 { + padding-bottom: 4rem !important + } + + .pb-xl-17 { + padding-bottom: 4.25rem !important + } + + .pb-xl-18 { + padding-bottom: 4.5rem !important + } + + .pb-xl-19 { + padding-bottom: 4.75rem !important + } + + .pb-xl-20 { + padding-bottom: 5rem !important + } + + .ps-xl-0 { + padding-left: 0 !important + } + + .ps-xl-1 { + padding-left: .25rem !important + } + + .ps-xl-2 { + padding-left: .5rem !important + } + + .ps-xl-3 { + padding-left: .75rem !important + } + + .ps-xl-4 { + padding-left: 1rem !important + } + + .ps-xl-5 { + padding-left: 1.25rem !important + } + + .ps-xl-6 { + padding-left: 1.5rem !important + } + + .ps-xl-7 { + padding-left: 1.75rem !important + } + + .ps-xl-8 { + padding-left: 2rem !important + } + + .ps-xl-9 { + padding-left: 2.25rem !important + } + + .ps-xl-10 { + padding-left: 2.5rem !important + } + + .ps-xl-11 { + padding-left: 2.75rem !important + } + + .ps-xl-12 { + padding-left: 3rem !important + } + + .ps-xl-13 { + padding-left: 3.25rem !important + } + + .ps-xl-14 { + padding-left: 3.5rem !important + } + + .ps-xl-15 { + padding-left: 3.75rem !important + } + + .ps-xl-16 { + padding-left: 4rem !important + } + + .ps-xl-17 { + padding-left: 4.25rem !important + } + + .ps-xl-18 { + padding-left: 4.5rem !important + } + + .ps-xl-19 { + padding-left: 4.75rem !important + } + + .ps-xl-20 { + padding-left: 5rem !important + } + + .fs-xl-1 { + font-size: calc(1.3rem + .6vw) !important + } + + .fs-xl-2 { + font-size: calc(1.275rem + .3vw) !important + } + + .fs-xl-3 { + font-size: calc(1.26rem + .12vw) !important + } + + .fs-xl-4 { + font-size: 1.25rem !important + } + + .fs-xl-5 { + font-size: 1.15rem !important + } + + .fs-xl-6 { + font-size: 1.075rem !important + } + + .fs-xl-7 { + font-size: .95rem !important + } + + .fs-xl-8 { + font-size: .85rem !important + } + + .fs-xl-9 { + font-size: .75rem !important + } + + .fs-xl-10 { + font-size: .5rem !important + } + + .fs-xl-base { + font-size: 1rem !important + } + + .fs-xl-fluid { + font-size: 100% !important + } + + .fs-xl-2x { + font-size: calc(1.325rem + .9vw) !important + } + + .fs-xl-2qx { + font-size: calc(1.35rem + 1.2vw) !important + } + + .fs-xl-2hx { + font-size: calc(1.375rem + 1.5vw) !important + } + + .fs-xl-2tx { + font-size: calc(1.4rem + 1.8vw) !important + } + + .fs-xl-3x { + font-size: calc(1.425rem + 2.1vw) !important + } + + .fs-xl-3qx { + font-size: calc(1.45rem + 2.4vw) !important + } + + .fs-xl-3hx { + font-size: calc(1.475rem + 2.7vw) !important + } + + .fs-xl-3tx { + font-size: calc(1.5rem + 3vw) !important + } + + .fs-xl-4x { + font-size: calc(1.525rem + 3.3vw) !important + } + + .fs-xl-4qx { + font-size: calc(1.55rem + 3.6vw) !important + } + + .fs-xl-4hx { + font-size: calc(1.575rem + 3.9vw) !important + } + + .fs-xl-4tx { + font-size: calc(1.6rem + 4.2vw) !important + } + + .fs-xl-5x { + font-size: calc(1.625rem + 4.5vw) !important + } + + .fs-xl-5qx { + font-size: calc(1.65rem + 4.8vw) !important + } + + .fs-xl-5hx { + font-size: calc(1.675rem + 5.1vw) !important + } + + .fs-xl-5tx { + font-size: calc(1.7rem + 5.4vw) !important + } + + .text-xl-start { + text-align: left !important + } + + .text-xl-end { + text-align: right !important + } + + .text-xl-center { + text-align: center !important + } + + .min-w-xl-unset { + min-width: unset !important + } + + .min-w-xl-25 { + min-width: 25% !important + } + + .min-w-xl-50 { + min-width: 50% !important + } + + .min-w-xl-75 { + min-width: 75% !important + } + + .min-w-xl-100 { + min-width: 100% !important + } + + .min-w-xl-auto { + min-width: auto !important + } + + .min-w-xl-1px { + min-width: 1px !important + } + + .min-w-xl-2px { + min-width: 2px !important + } + + .min-w-xl-3px { + min-width: 3px !important + } + + .min-w-xl-4px { + min-width: 4px !important + } + + .min-w-xl-5px { + min-width: 5px !important + } + + .min-w-xl-6px { + min-width: 6px !important + } + + .min-w-xl-7px { + min-width: 7px !important + } + + .min-w-xl-8px { + min-width: 8px !important + } + + .min-w-xl-9px { + min-width: 9px !important + } + + .min-w-xl-10px { + min-width: 10px !important + } + + .min-w-xl-15px { + min-width: 15px !important + } + + .min-w-xl-20px { + min-width: 20px !important + } + + .min-w-xl-25px { + min-width: 25px !important + } + + .min-w-xl-30px { + min-width: 30px !important + } + + .min-w-xl-35px { + min-width: 35px !important + } + + .min-w-xl-40px { + min-width: 40px !important + } + + .min-w-xl-45px { + min-width: 45px !important + } + + .min-w-xl-50px { + min-width: 50px !important + } + + .min-w-xl-55px { + min-width: 55px !important + } + + .min-w-xl-60px { + min-width: 60px !important + } + + .min-w-xl-65px { + min-width: 65px !important + } + + .min-w-xl-70px { + min-width: 70px !important + } + + .min-w-xl-75px { + min-width: 75px !important + } + + .min-w-xl-80px { + min-width: 80px !important + } + + .min-w-xl-85px { + min-width: 85px !important + } + + .min-w-xl-90px { + min-width: 90px !important + } + + .min-w-xl-95px { + min-width: 95px !important + } + + .min-w-xl-100px { + min-width: 100px !important + } + + .min-w-xl-125px { + min-width: 125px !important + } + + .min-w-xl-150px { + min-width: 150px !important + } + + .min-w-xl-175px { + min-width: 175px !important + } + + .min-w-xl-200px { + min-width: 200px !important + } + + .min-w-xl-225px { + min-width: 225px !important + } + + .min-w-xl-250px { + min-width: 250px !important + } + + .min-w-xl-275px { + min-width: 275px !important + } + + .min-w-xl-300px { + min-width: 300px !important + } + + .min-w-xl-325px { + min-width: 325px !important + } + + .min-w-xl-350px { + min-width: 350px !important + } + + .min-w-xl-375px { + min-width: 375px !important + } + + .min-w-xl-400px { + min-width: 400px !important + } + + .min-w-xl-425px { + min-width: 425px !important + } + + .min-w-xl-450px { + min-width: 450px !important + } + + .min-w-xl-475px { + min-width: 475px !important + } + + .min-w-xl-500px { + min-width: 500px !important + } + + .min-w-xl-550px { + min-width: 550px !important + } + + .min-w-xl-600px { + min-width: 600px !important + } + + .min-w-xl-650px { + min-width: 650px !important + } + + .min-w-xl-700px { + min-width: 700px !important + } + + .min-w-xl-750px { + min-width: 750px !important + } + + .min-w-xl-800px { + min-width: 800px !important + } + + .min-w-xl-850px { + min-width: 850px !important + } + + .min-w-xl-900px { + min-width: 900px !important + } + + .min-w-xl-950px { + min-width: 950px !important + } + + .min-w-xl-1000px { + min-width: 1000px !important + } + + .min-h-xl-unset { + min-height: unset !important + } + + .min-h-xl-25 { + min-height: 25% !important + } + + .min-h-xl-50 { + min-height: 50% !important + } + + .min-h-xl-75 { + min-height: 75% !important + } + + .min-h-xl-100 { + min-height: 100% !important + } + + .min-h-xl-auto { + min-height: auto !important + } + + .min-h-xl-1px { + min-height: 1px !important + } + + .min-h-xl-2px { + min-height: 2px !important + } + + .min-h-xl-3px { + min-height: 3px !important + } + + .min-h-xl-4px { + min-height: 4px !important + } + + .min-h-xl-5px { + min-height: 5px !important + } + + .min-h-xl-6px { + min-height: 6px !important + } + + .min-h-xl-7px { + min-height: 7px !important + } + + .min-h-xl-8px { + min-height: 8px !important + } + + .min-h-xl-9px { + min-height: 9px !important + } + + .min-h-xl-10px { + min-height: 10px !important + } + + .min-h-xl-15px { + min-height: 15px !important + } + + .min-h-xl-20px { + min-height: 20px !important + } + + .min-h-xl-25px { + min-height: 25px !important + } + + .min-h-xl-30px { + min-height: 30px !important + } + + .min-h-xl-35px { + min-height: 35px !important + } + + .min-h-xl-40px { + min-height: 40px !important + } + + .min-h-xl-45px { + min-height: 45px !important + } + + .min-h-xl-50px { + min-height: 50px !important + } + + .min-h-xl-55px { + min-height: 55px !important + } + + .min-h-xl-60px { + min-height: 60px !important + } + + .min-h-xl-65px { + min-height: 65px !important + } + + .min-h-xl-70px { + min-height: 70px !important + } + + .min-h-xl-75px { + min-height: 75px !important + } + + .min-h-xl-80px { + min-height: 80px !important + } + + .min-h-xl-85px { + min-height: 85px !important + } + + .min-h-xl-90px { + min-height: 90px !important + } + + .min-h-xl-95px { + min-height: 95px !important + } + + .min-h-xl-100px { + min-height: 100px !important + } + + .min-h-xl-125px { + min-height: 125px !important + } + + .min-h-xl-150px { + min-height: 150px !important + } + + .min-h-xl-175px { + min-height: 175px !important + } + + .min-h-xl-200px { + min-height: 200px !important + } + + .min-h-xl-225px { + min-height: 225px !important + } + + .min-h-xl-250px { + min-height: 250px !important + } + + .min-h-xl-275px { + min-height: 275px !important + } + + .min-h-xl-300px { + min-height: 300px !important + } + + .min-h-xl-325px { + min-height: 325px !important + } + + .min-h-xl-350px { + min-height: 350px !important + } + + .min-h-xl-375px { + min-height: 375px !important + } + + .min-h-xl-400px { + min-height: 400px !important + } + + .min-h-xl-425px { + min-height: 425px !important + } + + .min-h-xl-450px { + min-height: 450px !important + } + + .min-h-xl-475px { + min-height: 475px !important + } + + .min-h-xl-500px { + min-height: 500px !important + } + + .min-h-xl-550px { + min-height: 550px !important + } + + .min-h-xl-600px { + min-height: 600px !important + } + + .min-h-xl-650px { + min-height: 650px !important + } + + .min-h-xl-700px { + min-height: 700px !important + } + + .min-h-xl-750px { + min-height: 750px !important + } + + .min-h-xl-800px { + min-height: 800px !important + } + + .min-h-xl-850px { + min-height: 850px !important + } + + .min-h-xl-900px { + min-height: 900px !important + } + + .min-h-xl-950px { + min-height: 950px !important + } + + .min-h-xl-1000px { + min-height: 1000px !important + } +} + +@media (min-width:1400px) { + .float-xxl-start { + float: left !important + } + + .float-xxl-end { + float: right !important + } + + .float-xxl-none { + float: none !important + } + + .d-xxl-inline { + display: inline !important + } + + .d-xxl-inline-block { + display: inline-block !important + } + + .d-xxl-block { + display: block !important + } + + .d-xxl-grid { + display: grid !important + } + + .d-xxl-table { + display: table !important + } + + .d-xxl-table-row { + display: table-row !important + } + + .d-xxl-table-cell { + display: table-cell !important + } + + .d-xxl-flex { + display: flex !important + } + + .d-xxl-inline-flex { + display: inline-flex !important + } + + .d-xxl-none { + display: none !important + } + + .position-xxl-static { + position: static !important + } + + .position-xxl-relative { + position: relative !important + } + + .position-xxl-absolute { + position: absolute !important + } + + .position-xxl-fixed { + position: fixed !important + } + + .position-xxl-sticky { + position: sticky !important + } + + .w-xxl-unset { + width: unset !important + } + + .w-xxl-25 { + width: 25% !important + } + + .w-xxl-50 { + width: 50% !important + } + + .w-xxl-75 { + width: 75% !important + } + + .w-xxl-100 { + width: 100% !important + } + + .w-xxl-auto { + width: auto !important + } + + .w-xxl-1px { + width: 1px !important + } + + .w-xxl-2px { + width: 2px !important + } + + .w-xxl-3px { + width: 3px !important + } + + .w-xxl-4px { + width: 4px !important + } + + .w-xxl-5px { + width: 5px !important + } + + .w-xxl-6px { + width: 6px !important + } + + .w-xxl-7px { + width: 7px !important + } + + .w-xxl-8px { + width: 8px !important + } + + .w-xxl-9px { + width: 9px !important + } + + .w-xxl-10px { + width: 10px !important + } + + .w-xxl-15px { + width: 15px !important + } + + .w-xxl-20px { + width: 20px !important + } + + .w-xxl-25px { + width: 25px !important + } + + .w-xxl-30px { + width: 30px !important + } + + .w-xxl-35px { + width: 35px !important + } + + .w-xxl-40px { + width: 40px !important + } + + .w-xxl-45px { + width: 45px !important + } + + .w-xxl-50px { + width: 50px !important + } + + .w-xxl-55px { + width: 55px !important + } + + .w-xxl-60px { + width: 60px !important + } + + .w-xxl-65px { + width: 65px !important + } + + .w-xxl-70px { + width: 70px !important + } + + .w-xxl-75px { + width: 75px !important + } + + .w-xxl-80px { + width: 80px !important + } + + .w-xxl-85px { + width: 85px !important + } + + .w-xxl-90px { + width: 90px !important + } + + .w-xxl-95px { + width: 95px !important + } + + .w-xxl-100px { + width: 100px !important + } + + .w-xxl-125px { + width: 125px !important + } + + .w-xxl-150px { + width: 150px !important + } + + .w-xxl-175px { + width: 175px !important + } + + .w-xxl-200px { + width: 200px !important + } + + .w-xxl-225px { + width: 225px !important + } + + .w-xxl-250px { + width: 250px !important + } + + .w-xxl-275px { + width: 275px !important + } + + .w-xxl-300px { + width: 300px !important + } + + .w-xxl-325px { + width: 325px !important + } + + .w-xxl-350px { + width: 350px !important + } + + .w-xxl-375px { + width: 375px !important + } + + .w-xxl-400px { + width: 400px !important + } + + .w-xxl-425px { + width: 425px !important + } + + .w-xxl-450px { + width: 450px !important + } + + .w-xxl-475px { + width: 475px !important + } + + .w-xxl-500px { + width: 500px !important + } + + .w-xxl-550px { + width: 550px !important + } + + .w-xxl-600px { + width: 600px !important + } + + .w-xxl-650px { + width: 650px !important + } + + .w-xxl-700px { + width: 700px !important + } + + .w-xxl-750px { + width: 750px !important + } + + .w-xxl-800px { + width: 800px !important + } + + .w-xxl-850px { + width: 850px !important + } + + .w-xxl-900px { + width: 900px !important + } + + .w-xxl-950px { + width: 950px !important + } + + .w-xxl-1000px { + width: 1000px !important + } + + .mw-xxl-unset { + max-width: unset !important + } + + .mw-xxl-25 { + max-width: 25% !important + } + + .mw-xxl-50 { + max-width: 50% !important + } + + .mw-xxl-75 { + max-width: 75% !important + } + + .mw-xxl-100 { + max-width: 100% !important + } + + .mw-xxl-auto { + max-width: auto !important + } + + .mw-xxl-1px { + max-width: 1px !important + } + + .mw-xxl-2px { + max-width: 2px !important + } + + .mw-xxl-3px { + max-width: 3px !important + } + + .mw-xxl-4px { + max-width: 4px !important + } + + .mw-xxl-5px { + max-width: 5px !important + } + + .mw-xxl-6px { + max-width: 6px !important + } + + .mw-xxl-7px { + max-width: 7px !important + } + + .mw-xxl-8px { + max-width: 8px !important + } + + .mw-xxl-9px { + max-width: 9px !important + } + + .mw-xxl-10px { + max-width: 10px !important + } + + .mw-xxl-15px { + max-width: 15px !important + } + + .mw-xxl-20px { + max-width: 20px !important + } + + .mw-xxl-25px { + max-width: 25px !important + } + + .mw-xxl-30px { + max-width: 30px !important + } + + .mw-xxl-35px { + max-width: 35px !important + } + + .mw-xxl-40px { + max-width: 40px !important + } + + .mw-xxl-45px { + max-width: 45px !important + } + + .mw-xxl-50px { + max-width: 50px !important + } + + .mw-xxl-55px { + max-width: 55px !important + } + + .mw-xxl-60px { + max-width: 60px !important + } + + .mw-xxl-65px { + max-width: 65px !important + } + + .mw-xxl-70px { + max-width: 70px !important + } + + .mw-xxl-75px { + max-width: 75px !important + } + + .mw-xxl-80px { + max-width: 80px !important + } + + .mw-xxl-85px { + max-width: 85px !important + } + + .mw-xxl-90px { + max-width: 90px !important + } + + .mw-xxl-95px { + max-width: 95px !important + } + + .mw-xxl-100px { + max-width: 100px !important + } + + .mw-xxl-125px { + max-width: 125px !important + } + + .mw-xxl-150px { + max-width: 150px !important + } + + .mw-xxl-175px { + max-width: 175px !important + } + + .mw-xxl-200px { + max-width: 200px !important + } + + .mw-xxl-225px { + max-width: 225px !important + } + + .mw-xxl-250px { + max-width: 250px !important + } + + .mw-xxl-275px { + max-width: 275px !important + } + + .mw-xxl-300px { + max-width: 300px !important + } + + .mw-xxl-325px { + max-width: 325px !important + } + + .mw-xxl-350px { + max-width: 350px !important + } + + .mw-xxl-375px { + max-width: 375px !important + } + + .mw-xxl-400px { + max-width: 400px !important + } + + .mw-xxl-425px { + max-width: 425px !important + } + + .mw-xxl-450px { + max-width: 450px !important + } + + .mw-xxl-475px { + max-width: 475px !important + } + + .mw-xxl-500px { + max-width: 500px !important + } + + .mw-xxl-550px { + max-width: 550px !important + } + + .mw-xxl-600px { + max-width: 600px !important + } + + .mw-xxl-650px { + max-width: 650px !important + } + + .mw-xxl-700px { + max-width: 700px !important + } + + .mw-xxl-750px { + max-width: 750px !important + } + + .mw-xxl-800px { + max-width: 800px !important + } + + .mw-xxl-850px { + max-width: 850px !important + } + + .mw-xxl-900px { + max-width: 900px !important + } + + .mw-xxl-950px { + max-width: 950px !important + } + + .mw-xxl-1000px { + max-width: 1000px !important + } + + .h-xxl-unset { + height: unset !important + } + + .h-xxl-25 { + height: 25% !important + } + + .h-xxl-50 { + height: 50% !important + } + + .h-xxl-75 { + height: 75% !important + } + + .h-xxl-100 { + height: 100% !important + } + + .h-xxl-auto { + height: auto !important + } + + .h-xxl-1px { + height: 1px !important + } + + .h-xxl-2px { + height: 2px !important + } + + .h-xxl-3px { + height: 3px !important + } + + .h-xxl-4px { + height: 4px !important + } + + .h-xxl-5px { + height: 5px !important + } + + .h-xxl-6px { + height: 6px !important + } + + .h-xxl-7px { + height: 7px !important + } + + .h-xxl-8px { + height: 8px !important + } + + .h-xxl-9px { + height: 9px !important + } + + .h-xxl-10px { + height: 10px !important + } + + .h-xxl-15px { + height: 15px !important + } + + .h-xxl-20px { + height: 20px !important + } + + .h-xxl-25px { + height: 25px !important + } + + .h-xxl-30px { + height: 30px !important + } + + .h-xxl-35px { + height: 35px !important + } + + .h-xxl-40px { + height: 40px !important + } + + .h-xxl-45px { + height: 45px !important + } + + .h-xxl-50px { + height: 50px !important + } + + .h-xxl-55px { + height: 55px !important + } + + .h-xxl-60px { + height: 60px !important + } + + .h-xxl-65px { + height: 65px !important + } + + .h-xxl-70px { + height: 70px !important + } + + .h-xxl-75px { + height: 75px !important + } + + .h-xxl-80px { + height: 80px !important + } + + .h-xxl-85px { + height: 85px !important + } + + .h-xxl-90px { + height: 90px !important + } + + .h-xxl-95px { + height: 95px !important + } + + .h-xxl-100px { + height: 100px !important + } + + .h-xxl-125px { + height: 125px !important + } + + .h-xxl-150px { + height: 150px !important + } + + .h-xxl-175px { + height: 175px !important + } + + .h-xxl-200px { + height: 200px !important + } + + .h-xxl-225px { + height: 225px !important + } + + .h-xxl-250px { + height: 250px !important + } + + .h-xxl-275px { + height: 275px !important + } + + .h-xxl-300px { + height: 300px !important + } + + .h-xxl-325px { + height: 325px !important + } + + .h-xxl-350px { + height: 350px !important + } + + .h-xxl-375px { + height: 375px !important + } + + .h-xxl-400px { + height: 400px !important + } + + .h-xxl-425px { + height: 425px !important + } + + .h-xxl-450px { + height: 450px !important + } + + .h-xxl-475px { + height: 475px !important + } + + .h-xxl-500px { + height: 500px !important + } + + .h-xxl-550px { + height: 550px !important + } + + .h-xxl-600px { + height: 600px !important + } + + .h-xxl-650px { + height: 650px !important + } + + .h-xxl-700px { + height: 700px !important + } + + .h-xxl-750px { + height: 750px !important + } + + .h-xxl-800px { + height: 800px !important + } + + .h-xxl-850px { + height: 850px !important + } + + .h-xxl-900px { + height: 900px !important + } + + .h-xxl-950px { + height: 950px !important + } + + .h-xxl-1000px { + height: 1000px !important + } + + .mh-xxl-unset { + max-height: unset !important + } + + .mh-xxl-25 { + max-height: 25% !important + } + + .mh-xxl-50 { + max-height: 50% !important + } + + .mh-xxl-75 { + max-height: 75% !important + } + + .mh-xxl-100 { + max-height: 100% !important + } + + .mh-xxl-auto { + max-height: auto !important + } + + .mh-xxl-1px { + max-height: 1px !important + } + + .mh-xxl-2px { + max-height: 2px !important + } + + .mh-xxl-3px { + max-height: 3px !important + } + + .mh-xxl-4px { + max-height: 4px !important + } + + .mh-xxl-5px { + max-height: 5px !important + } + + .mh-xxl-6px { + max-height: 6px !important + } + + .mh-xxl-7px { + max-height: 7px !important + } + + .mh-xxl-8px { + max-height: 8px !important + } + + .mh-xxl-9px { + max-height: 9px !important + } + + .mh-xxl-10px { + max-height: 10px !important + } + + .mh-xxl-15px { + max-height: 15px !important + } + + .mh-xxl-20px { + max-height: 20px !important + } + + .mh-xxl-25px { + max-height: 25px !important + } + + .mh-xxl-30px { + max-height: 30px !important + } + + .mh-xxl-35px { + max-height: 35px !important + } + + .mh-xxl-40px { + max-height: 40px !important + } + + .mh-xxl-45px { + max-height: 45px !important + } + + .mh-xxl-50px { + max-height: 50px !important + } + + .mh-xxl-55px { + max-height: 55px !important + } + + .mh-xxl-60px { + max-height: 60px !important + } + + .mh-xxl-65px { + max-height: 65px !important + } + + .mh-xxl-70px { + max-height: 70px !important + } + + .mh-xxl-75px { + max-height: 75px !important + } + + .mh-xxl-80px { + max-height: 80px !important + } + + .mh-xxl-85px { + max-height: 85px !important + } + + .mh-xxl-90px { + max-height: 90px !important + } + + .mh-xxl-95px { + max-height: 95px !important + } + + .mh-xxl-100px { + max-height: 100px !important + } + + .mh-xxl-125px { + max-height: 125px !important + } + + .mh-xxl-150px { + max-height: 150px !important + } + + .mh-xxl-175px { + max-height: 175px !important + } + + .mh-xxl-200px { + max-height: 200px !important + } + + .mh-xxl-225px { + max-height: 225px !important + } + + .mh-xxl-250px { + max-height: 250px !important + } + + .mh-xxl-275px { + max-height: 275px !important + } + + .mh-xxl-300px { + max-height: 300px !important + } + + .mh-xxl-325px { + max-height: 325px !important + } + + .mh-xxl-350px { + max-height: 350px !important + } + + .mh-xxl-375px { + max-height: 375px !important + } + + .mh-xxl-400px { + max-height: 400px !important + } + + .mh-xxl-425px { + max-height: 425px !important + } + + .mh-xxl-450px { + max-height: 450px !important + } + + .mh-xxl-475px { + max-height: 475px !important + } + + .mh-xxl-500px { + max-height: 500px !important + } + + .mh-xxl-550px { + max-height: 550px !important + } + + .mh-xxl-600px { + max-height: 600px !important + } + + .mh-xxl-650px { + max-height: 650px !important + } + + .mh-xxl-700px { + max-height: 700px !important + } + + .mh-xxl-750px { + max-height: 750px !important + } + + .mh-xxl-800px { + max-height: 800px !important + } + + .mh-xxl-850px { + max-height: 850px !important + } + + .mh-xxl-900px { + max-height: 900px !important + } + + .mh-xxl-950px { + max-height: 950px !important + } + + .mh-xxl-1000px { + max-height: 1000px !important + } + + .flex-xxl-fill { + flex: 1 1 auto !important + } + + .flex-xxl-row { + flex-direction: row !important + } + + .flex-xxl-column { + flex-direction: column !important + } + + .flex-xxl-row-reverse { + flex-direction: row-reverse !important + } + + .flex-xxl-column-reverse { + flex-direction: column-reverse !important + } + + .flex-xxl-grow-0 { + flex-grow: 0 !important + } + + .flex-xxl-grow-1 { + flex-grow: 1 !important + } + + .flex-xxl-shrink-0 { + flex-shrink: 0 !important + } + + .flex-xxl-shrink-1 { + flex-shrink: 1 !important + } + + .flex-xxl-wrap { + flex-wrap: wrap !important + } + + .flex-xxl-nowrap { + flex-wrap: nowrap !important + } + + .flex-xxl-wrap-reverse { + flex-wrap: wrap-reverse !important + } + + .gap-xxl-0 { + gap: 0 !important + } + + .gap-xxl-1 { + gap: .25rem !important + } + + .gap-xxl-2 { + gap: .5rem !important + } + + .gap-xxl-3 { + gap: .75rem !important + } + + .gap-xxl-4 { + gap: 1rem !important + } + + .gap-xxl-5 { + gap: 1.25rem !important + } + + .gap-xxl-6 { + gap: 1.5rem !important + } + + .gap-xxl-7 { + gap: 1.75rem !important + } + + .gap-xxl-8 { + gap: 2rem !important + } + + .gap-xxl-9 { + gap: 2.25rem !important + } + + .gap-xxl-10 { + gap: 2.5rem !important + } + + .gap-xxl-11 { + gap: 2.75rem !important + } + + .gap-xxl-12 { + gap: 3rem !important + } + + .gap-xxl-13 { + gap: 3.25rem !important + } + + .gap-xxl-14 { + gap: 3.5rem !important + } + + .gap-xxl-15 { + gap: 3.75rem !important + } + + .gap-xxl-16 { + gap: 4rem !important + } + + .gap-xxl-17 { + gap: 4.25rem !important + } + + .gap-xxl-18 { + gap: 4.5rem !important + } + + .gap-xxl-19 { + gap: 4.75rem !important + } + + .gap-xxl-20 { + gap: 5rem !important + } + + .justify-content-xxl-start { + justify-content: flex-start !important + } + + .justify-content-xxl-end { + justify-content: flex-end !important + } + + .justify-content-xxl-center { + justify-content: center !important + } + + .justify-content-xxl-between { + justify-content: space-between !important + } + + .justify-content-xxl-around { + justify-content: space-around !important + } + + .justify-content-xxl-evenly { + justify-content: space-evenly !important + } + + .align-items-xxl-start { + align-items: flex-start !important + } + + .align-items-xxl-end { + align-items: flex-end !important + } + + .align-items-xxl-center { + align-items: center !important + } + + .align-items-xxl-baseline { + align-items: baseline !important + } + + .align-items-xxl-stretch { + align-items: stretch !important + } + + .align-content-xxl-start { + align-content: flex-start !important + } + + .align-content-xxl-end { + align-content: flex-end !important + } + + .align-content-xxl-center { + align-content: center !important + } + + .align-content-xxl-between { + align-content: space-between !important + } + + .align-content-xxl-around { + align-content: space-around !important + } + + .align-content-xxl-stretch { + align-content: stretch !important + } + + .align-self-xxl-auto { + align-self: auto !important + } + + .align-self-xxl-start { + align-self: flex-start !important + } + + .align-self-xxl-end { + align-self: flex-end !important + } + + .align-self-xxl-center { + align-self: center !important + } + + .align-self-xxl-baseline { + align-self: baseline !important + } + + .align-self-xxl-stretch { + align-self: stretch !important + } + + .order-xxl-first { + order: -1 !important + } + + .order-xxl-0 { + order: 0 !important + } + + .order-xxl-1 { + order: 1 !important + } + + .order-xxl-2 { + order: 2 !important + } + + .order-xxl-3 { + order: 3 !important + } + + .order-xxl-4 { + order: 4 !important + } + + .order-xxl-5 { + order: 5 !important + } + + .order-xxl-last { + order: 6 !important + } + + .m-xxl-0 { + margin: 0 !important + } + + .m-xxl-1 { + margin: .25rem !important + } + + .m-xxl-2 { + margin: .5rem !important + } + + .m-xxl-3 { + margin: .75rem !important + } + + .m-xxl-4 { + margin: 1rem !important + } + + .m-xxl-5 { + margin: 1.25rem !important + } + + .m-xxl-6 { + margin: 1.5rem !important + } + + .m-xxl-7 { + margin: 1.75rem !important + } + + .m-xxl-8 { + margin: 2rem !important + } + + .m-xxl-9 { + margin: 2.25rem !important + } + + .m-xxl-10 { + margin: 2.5rem !important + } + + .m-xxl-11 { + margin: 2.75rem !important + } + + .m-xxl-12 { + margin: 3rem !important + } + + .m-xxl-13 { + margin: 3.25rem !important + } + + .m-xxl-14 { + margin: 3.5rem !important + } + + .m-xxl-15 { + margin: 3.75rem !important + } + + .m-xxl-16 { + margin: 4rem !important + } + + .m-xxl-17 { + margin: 4.25rem !important + } + + .m-xxl-18 { + margin: 4.5rem !important + } + + .m-xxl-19 { + margin: 4.75rem !important + } + + .m-xxl-20 { + margin: 5rem !important + } + + .m-xxl-auto { + margin: auto !important + } + + .mx-xxl-0 { + margin-right: 0 !important; + margin-left: 0 !important + } + + .mx-xxl-1 { + margin-right: .25rem !important; + margin-left: .25rem !important + } + + .mx-xxl-2 { + margin-right: .5rem !important; + margin-left: .5rem !important + } + + .mx-xxl-3 { + margin-right: .75rem !important; + margin-left: .75rem !important + } + + .mx-xxl-4 { + margin-right: 1rem !important; + margin-left: 1rem !important + } + + .mx-xxl-5 { + margin-right: 1.25rem !important; + margin-left: 1.25rem !important + } + + .mx-xxl-6 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important + } + + .mx-xxl-7 { + margin-right: 1.75rem !important; + margin-left: 1.75rem !important + } + + .mx-xxl-8 { + margin-right: 2rem !important; + margin-left: 2rem !important + } + + .mx-xxl-9 { + margin-right: 2.25rem !important; + margin-left: 2.25rem !important + } + + .mx-xxl-10 { + margin-right: 2.5rem !important; + margin-left: 2.5rem !important + } + + .mx-xxl-11 { + margin-right: 2.75rem !important; + margin-left: 2.75rem !important + } + + .mx-xxl-12 { + margin-right: 3rem !important; + margin-left: 3rem !important + } + + .mx-xxl-13 { + margin-right: 3.25rem !important; + margin-left: 3.25rem !important + } + + .mx-xxl-14 { + margin-right: 3.5rem !important; + margin-left: 3.5rem !important + } + + .mx-xxl-15 { + margin-right: 3.75rem !important; + margin-left: 3.75rem !important + } + + .mx-xxl-16 { + margin-right: 4rem !important; + margin-left: 4rem !important + } + + .mx-xxl-17 { + margin-right: 4.25rem !important; + margin-left: 4.25rem !important + } + + .mx-xxl-18 { + margin-right: 4.5rem !important; + margin-left: 4.5rem !important + } + + .mx-xxl-19 { + margin-right: 4.75rem !important; + margin-left: 4.75rem !important + } + + .mx-xxl-20 { + margin-right: 5rem !important; + margin-left: 5rem !important + } + + .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important + } + + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important + } + + .my-xxl-1 { + margin-top: .25rem !important; + margin-bottom: .25rem !important + } + + .my-xxl-2 { + margin-top: .5rem !important; + margin-bottom: .5rem !important + } + + .my-xxl-3 { + margin-top: .75rem !important; + margin-bottom: .75rem !important + } + + .my-xxl-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important + } + + .my-xxl-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important + } + + .my-xxl-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important + } + + .my-xxl-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important + } + + .my-xxl-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important + } + + .my-xxl-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important + } + + .my-xxl-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important + } + + .my-xxl-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important + } + + .my-xxl-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important + } + + .my-xxl-13 { + margin-top: 3.25rem !important; + margin-bottom: 3.25rem !important + } + + .my-xxl-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important + } + + .my-xxl-15 { + margin-top: 3.75rem !important; + margin-bottom: 3.75rem !important + } + + .my-xxl-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important + } + + .my-xxl-17 { + margin-top: 4.25rem !important; + margin-bottom: 4.25rem !important + } + + .my-xxl-18 { + margin-top: 4.5rem !important; + margin-bottom: 4.5rem !important + } + + .my-xxl-19 { + margin-top: 4.75rem !important; + margin-bottom: 4.75rem !important + } + + .my-xxl-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important + } + + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important + } + + .mt-xxl-0 { + margin-top: 0 !important + } + + .mt-xxl-1 { + margin-top: .25rem !important + } + + .mt-xxl-2 { + margin-top: .5rem !important + } + + .mt-xxl-3 { + margin-top: .75rem !important + } + + .mt-xxl-4 { + margin-top: 1rem !important + } + + .mt-xxl-5 { + margin-top: 1.25rem !important + } + + .mt-xxl-6 { + margin-top: 1.5rem !important + } + + .mt-xxl-7 { + margin-top: 1.75rem !important + } + + .mt-xxl-8 { + margin-top: 2rem !important + } + + .mt-xxl-9 { + margin-top: 2.25rem !important + } + + .mt-xxl-10 { + margin-top: 2.5rem !important + } + + .mt-xxl-11 { + margin-top: 2.75rem !important + } + + .mt-xxl-12 { + margin-top: 3rem !important + } + + .mt-xxl-13 { + margin-top: 3.25rem !important + } + + .mt-xxl-14 { + margin-top: 3.5rem !important + } + + .mt-xxl-15 { + margin-top: 3.75rem !important + } + + .mt-xxl-16 { + margin-top: 4rem !important + } + + .mt-xxl-17 { + margin-top: 4.25rem !important + } + + .mt-xxl-18 { + margin-top: 4.5rem !important + } + + .mt-xxl-19 { + margin-top: 4.75rem !important + } + + .mt-xxl-20 { + margin-top: 5rem !important + } + + .mt-xxl-auto { + margin-top: auto !important + } + + .me-xxl-0 { + margin-right: 0 !important + } + + .me-xxl-1 { + margin-right: .25rem !important + } + + .me-xxl-2 { + margin-right: .5rem !important + } + + .me-xxl-3 { + margin-right: .75rem !important + } + + .me-xxl-4 { + margin-right: 1rem !important + } + + .me-xxl-5 { + margin-right: 1.25rem !important + } + + .me-xxl-6 { + margin-right: 1.5rem !important + } + + .me-xxl-7 { + margin-right: 1.75rem !important + } + + .me-xxl-8 { + margin-right: 2rem !important + } + + .me-xxl-9 { + margin-right: 2.25rem !important + } + + .me-xxl-10 { + margin-right: 2.5rem !important + } + + .me-xxl-11 { + margin-right: 2.75rem !important + } + + .me-xxl-12 { + margin-right: 3rem !important + } + + .me-xxl-13 { + margin-right: 3.25rem !important + } + + .me-xxl-14 { + margin-right: 3.5rem !important + } + + .me-xxl-15 { + margin-right: 3.75rem !important + } + + .me-xxl-16 { + margin-right: 4rem !important + } + + .me-xxl-17 { + margin-right: 4.25rem !important + } + + .me-xxl-18 { + margin-right: 4.5rem !important + } + + .me-xxl-19 { + margin-right: 4.75rem !important + } + + .me-xxl-20 { + margin-right: 5rem !important + } + + .me-xxl-auto { + margin-right: auto !important + } + + .mb-xxl-0 { + margin-bottom: 0 !important + } + + .mb-xxl-1 { + margin-bottom: .25rem !important + } + + .mb-xxl-2 { + margin-bottom: .5rem !important + } + + .mb-xxl-3 { + margin-bottom: .75rem !important + } + + .mb-xxl-4 { + margin-bottom: 1rem !important + } + + .mb-xxl-5 { + margin-bottom: 1.25rem !important + } + + .mb-xxl-6 { + margin-bottom: 1.5rem !important + } + + .mb-xxl-7 { + margin-bottom: 1.75rem !important + } + + .mb-xxl-8 { + margin-bottom: 2rem !important + } + + .mb-xxl-9 { + margin-bottom: 2.25rem !important + } + + .mb-xxl-10 { + margin-bottom: 2.5rem !important + } + + .mb-xxl-11 { + margin-bottom: 2.75rem !important + } + + .mb-xxl-12 { + margin-bottom: 3rem !important + } + + .mb-xxl-13 { + margin-bottom: 3.25rem !important + } + + .mb-xxl-14 { + margin-bottom: 3.5rem !important + } + + .mb-xxl-15 { + margin-bottom: 3.75rem !important + } + + .mb-xxl-16 { + margin-bottom: 4rem !important + } + + .mb-xxl-17 { + margin-bottom: 4.25rem !important + } + + .mb-xxl-18 { + margin-bottom: 4.5rem !important + } + + .mb-xxl-19 { + margin-bottom: 4.75rem !important + } + + .mb-xxl-20 { + margin-bottom: 5rem !important + } + + .mb-xxl-auto { + margin-bottom: auto !important + } + + .ms-xxl-0 { + margin-left: 0 !important + } + + .ms-xxl-1 { + margin-left: .25rem !important + } + + .ms-xxl-2 { + margin-left: .5rem !important + } + + .ms-xxl-3 { + margin-left: .75rem !important + } + + .ms-xxl-4 { + margin-left: 1rem !important + } + + .ms-xxl-5 { + margin-left: 1.25rem !important + } + + .ms-xxl-6 { + margin-left: 1.5rem !important + } + + .ms-xxl-7 { + margin-left: 1.75rem !important + } + + .ms-xxl-8 { + margin-left: 2rem !important + } + + .ms-xxl-9 { + margin-left: 2.25rem !important + } + + .ms-xxl-10 { + margin-left: 2.5rem !important + } + + .ms-xxl-11 { + margin-left: 2.75rem !important + } + + .ms-xxl-12 { + margin-left: 3rem !important + } + + .ms-xxl-13 { + margin-left: 3.25rem !important + } + + .ms-xxl-14 { + margin-left: 3.5rem !important + } + + .ms-xxl-15 { + margin-left: 3.75rem !important + } + + .ms-xxl-16 { + margin-left: 4rem !important + } + + .ms-xxl-17 { + margin-left: 4.25rem !important + } + + .ms-xxl-18 { + margin-left: 4.5rem !important + } + + .ms-xxl-19 { + margin-left: 4.75rem !important + } + + .ms-xxl-20 { + margin-left: 5rem !important + } + + .ms-xxl-auto { + margin-left: auto !important + } + + .m-xxl-n1 { + margin: -.25rem !important + } + + .m-xxl-n2 { + margin: -.5rem !important + } + + .m-xxl-n3 { + margin: -.75rem !important + } + + .m-xxl-n4 { + margin: -1rem !important + } + + .m-xxl-n5 { + margin: -1.25rem !important + } + + .m-xxl-n6 { + margin: -1.5rem !important + } + + .m-xxl-n7 { + margin: -1.75rem !important + } + + .m-xxl-n8 { + margin: -2rem !important + } + + .m-xxl-n9 { + margin: -2.25rem !important + } + + .m-xxl-n10 { + margin: -2.5rem !important + } + + .m-xxl-n11 { + margin: -2.75rem !important + } + + .m-xxl-n12 { + margin: -3rem !important + } + + .m-xxl-n13 { + margin: -3.25rem !important + } + + .m-xxl-n14 { + margin: -3.5rem !important + } + + .m-xxl-n15 { + margin: -3.75rem !important + } + + .m-xxl-n16 { + margin: -4rem !important + } + + .m-xxl-n17 { + margin: -4.25rem !important + } + + .m-xxl-n18 { + margin: -4.5rem !important + } + + .m-xxl-n19 { + margin: -4.75rem !important + } + + .m-xxl-n20 { + margin: -5rem !important + } + + .mx-xxl-n1 { + margin-right: -.25rem !important; + margin-left: -.25rem !important + } + + .mx-xxl-n2 { + margin-right: -.5rem !important; + margin-left: -.5rem !important + } + + .mx-xxl-n3 { + margin-right: -.75rem !important; + margin-left: -.75rem !important + } + + .mx-xxl-n4 { + margin-right: -1rem !important; + margin-left: -1rem !important + } + + .mx-xxl-n5 { + margin-right: -1.25rem !important; + margin-left: -1.25rem !important + } + + .mx-xxl-n6 { + margin-right: -1.5rem !important; + margin-left: -1.5rem !important + } + + .mx-xxl-n7 { + margin-right: -1.75rem !important; + margin-left: -1.75rem !important + } + + .mx-xxl-n8 { + margin-right: -2rem !important; + margin-left: -2rem !important + } + + .mx-xxl-n9 { + margin-right: -2.25rem !important; + margin-left: -2.25rem !important + } + + .mx-xxl-n10 { + margin-right: -2.5rem !important; + margin-left: -2.5rem !important + } + + .mx-xxl-n11 { + margin-right: -2.75rem !important; + margin-left: -2.75rem !important + } + + .mx-xxl-n12 { + margin-right: -3rem !important; + margin-left: -3rem !important + } + + .mx-xxl-n13 { + margin-right: -3.25rem !important; + margin-left: -3.25rem !important + } + + .mx-xxl-n14 { + margin-right: -3.5rem !important; + margin-left: -3.5rem !important + } + + .mx-xxl-n15 { + margin-right: -3.75rem !important; + margin-left: -3.75rem !important + } + + .mx-xxl-n16 { + margin-right: -4rem !important; + margin-left: -4rem !important + } + + .mx-xxl-n17 { + margin-right: -4.25rem !important; + margin-left: -4.25rem !important + } + + .mx-xxl-n18 { + margin-right: -4.5rem !important; + margin-left: -4.5rem !important + } + + .mx-xxl-n19 { + margin-right: -4.75rem !important; + margin-left: -4.75rem !important + } + + .mx-xxl-n20 { + margin-right: -5rem !important; + margin-left: -5rem !important + } + + .my-xxl-n1 { + margin-top: -.25rem !important; + margin-bottom: -.25rem !important + } + + .my-xxl-n2 { + margin-top: -.5rem !important; + margin-bottom: -.5rem !important + } + + .my-xxl-n3 { + margin-top: -.75rem !important; + margin-bottom: -.75rem !important + } + + .my-xxl-n4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important + } + + .my-xxl-n5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important + } + + .my-xxl-n6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important + } + + .my-xxl-n7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important + } + + .my-xxl-n8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important + } + + .my-xxl-n9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important + } + + .my-xxl-n10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important + } + + .my-xxl-n11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important + } + + .my-xxl-n12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important + } + + .my-xxl-n13 { + margin-top: -3.25rem !important; + margin-bottom: -3.25rem !important + } + + .my-xxl-n14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important + } + + .my-xxl-n15 { + margin-top: -3.75rem !important; + margin-bottom: -3.75rem !important + } + + .my-xxl-n16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important + } + + .my-xxl-n17 { + margin-top: -4.25rem !important; + margin-bottom: -4.25rem !important + } + + .my-xxl-n18 { + margin-top: -4.5rem !important; + margin-bottom: -4.5rem !important + } + + .my-xxl-n19 { + margin-top: -4.75rem !important; + margin-bottom: -4.75rem !important + } + + .my-xxl-n20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important + } + + .mt-xxl-n1 { + margin-top: -.25rem !important + } + + .mt-xxl-n2 { + margin-top: -.5rem !important + } + + .mt-xxl-n3 { + margin-top: -.75rem !important + } + + .mt-xxl-n4 { + margin-top: -1rem !important + } + + .mt-xxl-n5 { + margin-top: -1.25rem !important + } + + .mt-xxl-n6 { + margin-top: -1.5rem !important + } + + .mt-xxl-n7 { + margin-top: -1.75rem !important + } + + .mt-xxl-n8 { + margin-top: -2rem !important + } + + .mt-xxl-n9 { + margin-top: -2.25rem !important + } + + .mt-xxl-n10 { + margin-top: -2.5rem !important + } + + .mt-xxl-n11 { + margin-top: -2.75rem !important + } + + .mt-xxl-n12 { + margin-top: -3rem !important + } + + .mt-xxl-n13 { + margin-top: -3.25rem !important + } + + .mt-xxl-n14 { + margin-top: -3.5rem !important + } + + .mt-xxl-n15 { + margin-top: -3.75rem !important + } + + .mt-xxl-n16 { + margin-top: -4rem !important + } + + .mt-xxl-n17 { + margin-top: -4.25rem !important + } + + .mt-xxl-n18 { + margin-top: -4.5rem !important + } + + .mt-xxl-n19 { + margin-top: -4.75rem !important + } + + .mt-xxl-n20 { + margin-top: -5rem !important + } + + .me-xxl-n1 { + margin-right: -.25rem !important + } + + .me-xxl-n2 { + margin-right: -.5rem !important + } + + .me-xxl-n3 { + margin-right: -.75rem !important + } + + .me-xxl-n4 { + margin-right: -1rem !important + } + + .me-xxl-n5 { + margin-right: -1.25rem !important + } + + .me-xxl-n6 { + margin-right: -1.5rem !important + } + + .me-xxl-n7 { + margin-right: -1.75rem !important + } + + .me-xxl-n8 { + margin-right: -2rem !important + } + + .me-xxl-n9 { + margin-right: -2.25rem !important + } + + .me-xxl-n10 { + margin-right: -2.5rem !important + } + + .me-xxl-n11 { + margin-right: -2.75rem !important + } + + .me-xxl-n12 { + margin-right: -3rem !important + } + + .me-xxl-n13 { + margin-right: -3.25rem !important + } + + .me-xxl-n14 { + margin-right: -3.5rem !important + } + + .me-xxl-n15 { + margin-right: -3.75rem !important + } + + .me-xxl-n16 { + margin-right: -4rem !important + } + + .me-xxl-n17 { + margin-right: -4.25rem !important + } + + .me-xxl-n18 { + margin-right: -4.5rem !important + } + + .me-xxl-n19 { + margin-right: -4.75rem !important + } + + .me-xxl-n20 { + margin-right: -5rem !important + } + + .mb-xxl-n1 { + margin-bottom: -.25rem !important + } + + .mb-xxl-n2 { + margin-bottom: -.5rem !important + } + + .mb-xxl-n3 { + margin-bottom: -.75rem !important + } + + .mb-xxl-n4 { + margin-bottom: -1rem !important + } + + .mb-xxl-n5 { + margin-bottom: -1.25rem !important + } + + .mb-xxl-n6 { + margin-bottom: -1.5rem !important + } + + .mb-xxl-n7 { + margin-bottom: -1.75rem !important + } + + .mb-xxl-n8 { + margin-bottom: -2rem !important + } + + .mb-xxl-n9 { + margin-bottom: -2.25rem !important + } + + .mb-xxl-n10 { + margin-bottom: -2.5rem !important + } + + .mb-xxl-n11 { + margin-bottom: -2.75rem !important + } + + .mb-xxl-n12 { + margin-bottom: -3rem !important + } + + .mb-xxl-n13 { + margin-bottom: -3.25rem !important + } + + .mb-xxl-n14 { + margin-bottom: -3.5rem !important + } + + .mb-xxl-n15 { + margin-bottom: -3.75rem !important + } + + .mb-xxl-n16 { + margin-bottom: -4rem !important + } + + .mb-xxl-n17 { + margin-bottom: -4.25rem !important + } + + .mb-xxl-n18 { + margin-bottom: -4.5rem !important + } + + .mb-xxl-n19 { + margin-bottom: -4.75rem !important + } + + .mb-xxl-n20 { + margin-bottom: -5rem !important + } + + .ms-xxl-n1 { + margin-left: -.25rem !important + } + + .ms-xxl-n2 { + margin-left: -.5rem !important + } + + .ms-xxl-n3 { + margin-left: -.75rem !important + } + + .ms-xxl-n4 { + margin-left: -1rem !important + } + + .ms-xxl-n5 { + margin-left: -1.25rem !important + } + + .ms-xxl-n6 { + margin-left: -1.5rem !important + } + + .ms-xxl-n7 { + margin-left: -1.75rem !important + } + + .ms-xxl-n8 { + margin-left: -2rem !important + } + + .ms-xxl-n9 { + margin-left: -2.25rem !important + } + + .ms-xxl-n10 { + margin-left: -2.5rem !important + } + + .ms-xxl-n11 { + margin-left: -2.75rem !important + } + + .ms-xxl-n12 { + margin-left: -3rem !important + } + + .ms-xxl-n13 { + margin-left: -3.25rem !important + } + + .ms-xxl-n14 { + margin-left: -3.5rem !important + } + + .ms-xxl-n15 { + margin-left: -3.75rem !important + } + + .ms-xxl-n16 { + margin-left: -4rem !important + } + + .ms-xxl-n17 { + margin-left: -4.25rem !important + } + + .ms-xxl-n18 { + margin-left: -4.5rem !important + } + + .ms-xxl-n19 { + margin-left: -4.75rem !important + } + + .ms-xxl-n20 { + margin-left: -5rem !important + } + + .p-xxl-0 { + padding: 0 !important + } + + .p-xxl-1 { + padding: .25rem !important + } + + .p-xxl-2 { + padding: .5rem !important + } + + .p-xxl-3 { + padding: .75rem !important + } + + .p-xxl-4 { + padding: 1rem !important + } + + .p-xxl-5 { + padding: 1.25rem !important + } + + .p-xxl-6 { + padding: 1.5rem !important + } + + .p-xxl-7 { + padding: 1.75rem !important + } + + .p-xxl-8 { + padding: 2rem !important + } + + .p-xxl-9 { + padding: 2.25rem !important + } + + .p-xxl-10 { + padding: 2.5rem !important + } + + .p-xxl-11 { + padding: 2.75rem !important + } + + .p-xxl-12 { + padding: 3rem !important + } + + .p-xxl-13 { + padding: 3.25rem !important + } + + .p-xxl-14 { + padding: 3.5rem !important + } + + .p-xxl-15 { + padding: 3.75rem !important + } + + .p-xxl-16 { + padding: 4rem !important + } + + .p-xxl-17 { + padding: 4.25rem !important + } + + .p-xxl-18 { + padding: 4.5rem !important + } + + .p-xxl-19 { + padding: 4.75rem !important + } + + .p-xxl-20 { + padding: 5rem !important + } + + .px-xxl-0 { + padding-right: 0 !important; + padding-left: 0 !important + } + + .px-xxl-1 { + padding-right: .25rem !important; + padding-left: .25rem !important + } + + .px-xxl-2 { + padding-right: .5rem !important; + padding-left: .5rem !important + } + + .px-xxl-3 { + padding-right: .75rem !important; + padding-left: .75rem !important + } + + .px-xxl-4 { + padding-right: 1rem !important; + padding-left: 1rem !important + } + + .px-xxl-5 { + padding-right: 1.25rem !important; + padding-left: 1.25rem !important + } + + .px-xxl-6 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important + } + + .px-xxl-7 { + padding-right: 1.75rem !important; + padding-left: 1.75rem !important + } + + .px-xxl-8 { + padding-right: 2rem !important; + padding-left: 2rem !important + } + + .px-xxl-9 { + padding-right: 2.25rem !important; + padding-left: 2.25rem !important + } + + .px-xxl-10 { + padding-right: 2.5rem !important; + padding-left: 2.5rem !important + } + + .px-xxl-11 { + padding-right: 2.75rem !important; + padding-left: 2.75rem !important + } + + .px-xxl-12 { + padding-right: 3rem !important; + padding-left: 3rem !important + } + + .px-xxl-13 { + padding-right: 3.25rem !important; + padding-left: 3.25rem !important + } + + .px-xxl-14 { + padding-right: 3.5rem !important; + padding-left: 3.5rem !important + } + + .px-xxl-15 { + padding-right: 3.75rem !important; + padding-left: 3.75rem !important + } + + .px-xxl-16 { + padding-right: 4rem !important; + padding-left: 4rem !important + } + + .px-xxl-17 { + padding-right: 4.25rem !important; + padding-left: 4.25rem !important + } + + .px-xxl-18 { + padding-right: 4.5rem !important; + padding-left: 4.5rem !important + } + + .px-xxl-19 { + padding-right: 4.75rem !important; + padding-left: 4.75rem !important + } + + .px-xxl-20 { + padding-right: 5rem !important; + padding-left: 5rem !important + } + + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important + } + + .py-xxl-1 { + padding-top: .25rem !important; + padding-bottom: .25rem !important + } + + .py-xxl-2 { + padding-top: .5rem !important; + padding-bottom: .5rem !important + } + + .py-xxl-3 { + padding-top: .75rem !important; + padding-bottom: .75rem !important + } + + .py-xxl-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important + } + + .py-xxl-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important + } + + .py-xxl-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important + } + + .py-xxl-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important + } + + .py-xxl-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important + } + + .py-xxl-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important + } + + .py-xxl-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important + } + + .py-xxl-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important + } + + .py-xxl-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important + } + + .py-xxl-13 { + padding-top: 3.25rem !important; + padding-bottom: 3.25rem !important + } + + .py-xxl-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important + } + + .py-xxl-15 { + padding-top: 3.75rem !important; + padding-bottom: 3.75rem !important + } + + .py-xxl-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important + } + + .py-xxl-17 { + padding-top: 4.25rem !important; + padding-bottom: 4.25rem !important + } + + .py-xxl-18 { + padding-top: 4.5rem !important; + padding-bottom: 4.5rem !important + } + + .py-xxl-19 { + padding-top: 4.75rem !important; + padding-bottom: 4.75rem !important + } + + .py-xxl-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important + } + + .pt-xxl-0 { + padding-top: 0 !important + } + + .pt-xxl-1 { + padding-top: .25rem !important + } + + .pt-xxl-2 { + padding-top: .5rem !important + } + + .pt-xxl-3 { + padding-top: .75rem !important + } + + .pt-xxl-4 { + padding-top: 1rem !important + } + + .pt-xxl-5 { + padding-top: 1.25rem !important + } + + .pt-xxl-6 { + padding-top: 1.5rem !important + } + + .pt-xxl-7 { + padding-top: 1.75rem !important + } + + .pt-xxl-8 { + padding-top: 2rem !important + } + + .pt-xxl-9 { + padding-top: 2.25rem !important + } + + .pt-xxl-10 { + padding-top: 2.5rem !important + } + + .pt-xxl-11 { + padding-top: 2.75rem !important + } + + .pt-xxl-12 { + padding-top: 3rem !important + } + + .pt-xxl-13 { + padding-top: 3.25rem !important + } + + .pt-xxl-14 { + padding-top: 3.5rem !important + } + + .pt-xxl-15 { + padding-top: 3.75rem !important + } + + .pt-xxl-16 { + padding-top: 4rem !important + } + + .pt-xxl-17 { + padding-top: 4.25rem !important + } + + .pt-xxl-18 { + padding-top: 4.5rem !important + } + + .pt-xxl-19 { + padding-top: 4.75rem !important + } + + .pt-xxl-20 { + padding-top: 5rem !important + } + + .pe-xxl-0 { + padding-right: 0 !important + } + + .pe-xxl-1 { + padding-right: .25rem !important + } + + .pe-xxl-2 { + padding-right: .5rem !important + } + + .pe-xxl-3 { + padding-right: .75rem !important + } + + .pe-xxl-4 { + padding-right: 1rem !important + } + + .pe-xxl-5 { + padding-right: 1.25rem !important + } + + .pe-xxl-6 { + padding-right: 1.5rem !important + } + + .pe-xxl-7 { + padding-right: 1.75rem !important + } + + .pe-xxl-8 { + padding-right: 2rem !important + } + + .pe-xxl-9 { + padding-right: 2.25rem !important + } + + .pe-xxl-10 { + padding-right: 2.5rem !important + } + + .pe-xxl-11 { + padding-right: 2.75rem !important + } + + .pe-xxl-12 { + padding-right: 3rem !important + } + + .pe-xxl-13 { + padding-right: 3.25rem !important + } + + .pe-xxl-14 { + padding-right: 3.5rem !important + } + + .pe-xxl-15 { + padding-right: 3.75rem !important + } + + .pe-xxl-16 { + padding-right: 4rem !important + } + + .pe-xxl-17 { + padding-right: 4.25rem !important + } + + .pe-xxl-18 { + padding-right: 4.5rem !important + } + + .pe-xxl-19 { + padding-right: 4.75rem !important + } + + .pe-xxl-20 { + padding-right: 5rem !important + } + + .pb-xxl-0 { + padding-bottom: 0 !important + } + + .pb-xxl-1 { + padding-bottom: .25rem !important + } + + .pb-xxl-2 { + padding-bottom: .5rem !important + } + + .pb-xxl-3 { + padding-bottom: .75rem !important + } + + .pb-xxl-4 { + padding-bottom: 1rem !important + } + + .pb-xxl-5 { + padding-bottom: 1.25rem !important + } + + .pb-xxl-6 { + padding-bottom: 1.5rem !important + } + + .pb-xxl-7 { + padding-bottom: 1.75rem !important + } + + .pb-xxl-8 { + padding-bottom: 2rem !important + } + + .pb-xxl-9 { + padding-bottom: 2.25rem !important + } + + .pb-xxl-10 { + padding-bottom: 2.5rem !important + } + + .pb-xxl-11 { + padding-bottom: 2.75rem !important + } + + .pb-xxl-12 { + padding-bottom: 3rem !important + } + + .pb-xxl-13 { + padding-bottom: 3.25rem !important + } + + .pb-xxl-14 { + padding-bottom: 3.5rem !important + } + + .pb-xxl-15 { + padding-bottom: 3.75rem !important + } + + .pb-xxl-16 { + padding-bottom: 4rem !important + } + + .pb-xxl-17 { + padding-bottom: 4.25rem !important + } + + .pb-xxl-18 { + padding-bottom: 4.5rem !important + } + + .pb-xxl-19 { + padding-bottom: 4.75rem !important + } + + .pb-xxl-20 { + padding-bottom: 5rem !important + } + + .ps-xxl-0 { + padding-left: 0 !important + } + + .ps-xxl-1 { + padding-left: .25rem !important + } + + .ps-xxl-2 { + padding-left: .5rem !important + } + + .ps-xxl-3 { + padding-left: .75rem !important + } + + .ps-xxl-4 { + padding-left: 1rem !important + } + + .ps-xxl-5 { + padding-left: 1.25rem !important + } + + .ps-xxl-6 { + padding-left: 1.5rem !important + } + + .ps-xxl-7 { + padding-left: 1.75rem !important + } + + .ps-xxl-8 { + padding-left: 2rem !important + } + + .ps-xxl-9 { + padding-left: 2.25rem !important + } + + .ps-xxl-10 { + padding-left: 2.5rem !important + } + + .ps-xxl-11 { + padding-left: 2.75rem !important + } + + .ps-xxl-12 { + padding-left: 3rem !important + } + + .ps-xxl-13 { + padding-left: 3.25rem !important + } + + .ps-xxl-14 { + padding-left: 3.5rem !important + } + + .ps-xxl-15 { + padding-left: 3.75rem !important + } + + .ps-xxl-16 { + padding-left: 4rem !important + } + + .ps-xxl-17 { + padding-left: 4.25rem !important + } + + .ps-xxl-18 { + padding-left: 4.5rem !important + } + + .ps-xxl-19 { + padding-left: 4.75rem !important + } + + .ps-xxl-20 { + padding-left: 5rem !important + } + + .fs-xxl-1 { + font-size: calc(1.3rem + .6vw) !important + } + + .fs-xxl-2 { + font-size: calc(1.275rem + .3vw) !important + } + + .fs-xxl-3 { + font-size: calc(1.26rem + .12vw) !important + } + + .fs-xxl-4 { + font-size: 1.25rem !important + } + + .fs-xxl-5 { + font-size: 1.15rem !important + } + + .fs-xxl-6 { + font-size: 1.075rem !important + } + + .fs-xxl-7 { + font-size: .95rem !important + } + + .fs-xxl-8 { + font-size: .85rem !important + } + + .fs-xxl-9 { + font-size: .75rem !important + } + + .fs-xxl-10 { + font-size: .5rem !important + } + + .fs-xxl-base { + font-size: 1rem !important + } + + .fs-xxl-fluid { + font-size: 100% !important + } + + .fs-xxl-2x { + font-size: calc(1.325rem + .9vw) !important + } + + .fs-xxl-2qx { + font-size: calc(1.35rem + 1.2vw) !important + } + + .fs-xxl-2hx { + font-size: calc(1.375rem + 1.5vw) !important + } + + .fs-xxl-2tx { + font-size: calc(1.4rem + 1.8vw) !important + } + + .fs-xxl-3x { + font-size: calc(1.425rem + 2.1vw) !important + } + + .fs-xxl-3qx { + font-size: calc(1.45rem + 2.4vw) !important + } + + .fs-xxl-3hx { + font-size: calc(1.475rem + 2.7vw) !important + } + + .fs-xxl-3tx { + font-size: calc(1.5rem + 3vw) !important + } + + .fs-xxl-4x { + font-size: calc(1.525rem + 3.3vw) !important + } + + .fs-xxl-4qx { + font-size: calc(1.55rem + 3.6vw) !important + } + + .fs-xxl-4hx { + font-size: calc(1.575rem + 3.9vw) !important + } + + .fs-xxl-4tx { + font-size: calc(1.6rem + 4.2vw) !important + } + + .fs-xxl-5x { + font-size: calc(1.625rem + 4.5vw) !important + } + + .fs-xxl-5qx { + font-size: calc(1.65rem + 4.8vw) !important + } + + .fs-xxl-5hx { + font-size: calc(1.675rem + 5.1vw) !important + } + + .fs-xxl-5tx { + font-size: calc(1.7rem + 5.4vw) !important + } + + .text-xxl-start { + text-align: left !important + } + + .text-xxl-end { + text-align: right !important + } + + .text-xxl-center { + text-align: center !important + } + + .min-w-xxl-unset { + min-width: unset !important + } + + .min-w-xxl-25 { + min-width: 25% !important + } + + .min-w-xxl-50 { + min-width: 50% !important + } + + .min-w-xxl-75 { + min-width: 75% !important + } + + .min-w-xxl-100 { + min-width: 100% !important + } + + .min-w-xxl-auto { + min-width: auto !important + } + + .min-w-xxl-1px { + min-width: 1px !important + } + + .min-w-xxl-2px { + min-width: 2px !important + } + + .min-w-xxl-3px { + min-width: 3px !important + } + + .min-w-xxl-4px { + min-width: 4px !important + } + + .min-w-xxl-5px { + min-width: 5px !important + } + + .min-w-xxl-6px { + min-width: 6px !important + } + + .min-w-xxl-7px { + min-width: 7px !important + } + + .min-w-xxl-8px { + min-width: 8px !important + } + + .min-w-xxl-9px { + min-width: 9px !important + } + + .min-w-xxl-10px { + min-width: 10px !important + } + + .min-w-xxl-15px { + min-width: 15px !important + } + + .min-w-xxl-20px { + min-width: 20px !important + } + + .min-w-xxl-25px { + min-width: 25px !important + } + + .min-w-xxl-30px { + min-width: 30px !important + } + + .min-w-xxl-35px { + min-width: 35px !important + } + + .min-w-xxl-40px { + min-width: 40px !important + } + + .min-w-xxl-45px { + min-width: 45px !important + } + + .min-w-xxl-50px { + min-width: 50px !important + } + + .min-w-xxl-55px { + min-width: 55px !important + } + + .min-w-xxl-60px { + min-width: 60px !important + } + + .min-w-xxl-65px { + min-width: 65px !important + } + + .min-w-xxl-70px { + min-width: 70px !important + } + + .min-w-xxl-75px { + min-width: 75px !important + } + + .min-w-xxl-80px { + min-width: 80px !important + } + + .min-w-xxl-85px { + min-width: 85px !important + } + + .min-w-xxl-90px { + min-width: 90px !important + } + + .min-w-xxl-95px { + min-width: 95px !important + } + + .min-w-xxl-100px { + min-width: 100px !important + } + + .min-w-xxl-125px { + min-width: 125px !important + } + + .min-w-xxl-150px { + min-width: 150px !important + } + + .min-w-xxl-175px { + min-width: 175px !important + } + + .min-w-xxl-200px { + min-width: 200px !important + } + + .min-w-xxl-225px { + min-width: 225px !important + } + + .min-w-xxl-250px { + min-width: 250px !important + } + + .min-w-xxl-275px { + min-width: 275px !important + } + + .min-w-xxl-300px { + min-width: 300px !important + } + + .min-w-xxl-325px { + min-width: 325px !important + } + + .min-w-xxl-350px { + min-width: 350px !important + } + + .min-w-xxl-375px { + min-width: 375px !important + } + + .min-w-xxl-400px { + min-width: 400px !important + } + + .min-w-xxl-425px { + min-width: 425px !important + } + + .min-w-xxl-450px { + min-width: 450px !important + } + + .min-w-xxl-475px { + min-width: 475px !important + } + + .min-w-xxl-500px { + min-width: 500px !important + } + + .min-w-xxl-550px { + min-width: 550px !important + } + + .min-w-xxl-600px { + min-width: 600px !important + } + + .min-w-xxl-650px { + min-width: 650px !important + } + + .min-w-xxl-700px { + min-width: 700px !important + } + + .min-w-xxl-750px { + min-width: 750px !important + } + + .min-w-xxl-800px { + min-width: 800px !important + } + + .min-w-xxl-850px { + min-width: 850px !important + } + + .min-w-xxl-900px { + min-width: 900px !important + } + + .min-w-xxl-950px { + min-width: 950px !important + } + + .min-w-xxl-1000px { + min-width: 1000px !important + } + + .min-h-xxl-unset { + min-height: unset !important + } + + .min-h-xxl-25 { + min-height: 25% !important + } + + .min-h-xxl-50 { + min-height: 50% !important + } + + .min-h-xxl-75 { + min-height: 75% !important + } + + .min-h-xxl-100 { + min-height: 100% !important + } + + .min-h-xxl-auto { + min-height: auto !important + } + + .min-h-xxl-1px { + min-height: 1px !important + } + + .min-h-xxl-2px { + min-height: 2px !important + } + + .min-h-xxl-3px { + min-height: 3px !important + } + + .min-h-xxl-4px { + min-height: 4px !important + } + + .min-h-xxl-5px { + min-height: 5px !important + } + + .min-h-xxl-6px { + min-height: 6px !important + } + + .min-h-xxl-7px { + min-height: 7px !important + } + + .min-h-xxl-8px { + min-height: 8px !important + } + + .min-h-xxl-9px { + min-height: 9px !important + } + + .min-h-xxl-10px { + min-height: 10px !important + } + + .min-h-xxl-15px { + min-height: 15px !important + } + + .min-h-xxl-20px { + min-height: 20px !important + } + + .min-h-xxl-25px { + min-height: 25px !important + } + + .min-h-xxl-30px { + min-height: 30px !important + } + + .min-h-xxl-35px { + min-height: 35px !important + } + + .min-h-xxl-40px { + min-height: 40px !important + } + + .min-h-xxl-45px { + min-height: 45px !important + } + + .min-h-xxl-50px { + min-height: 50px !important + } + + .min-h-xxl-55px { + min-height: 55px !important + } + + .min-h-xxl-60px { + min-height: 60px !important + } + + .min-h-xxl-65px { + min-height: 65px !important + } + + .min-h-xxl-70px { + min-height: 70px !important + } + + .min-h-xxl-75px { + min-height: 75px !important + } + + .min-h-xxl-80px { + min-height: 80px !important + } + + .min-h-xxl-85px { + min-height: 85px !important + } + + .min-h-xxl-90px { + min-height: 90px !important + } + + .min-h-xxl-95px { + min-height: 95px !important + } + + .min-h-xxl-100px { + min-height: 100px !important + } + + .min-h-xxl-125px { + min-height: 125px !important + } + + .min-h-xxl-150px { + min-height: 150px !important + } + + .min-h-xxl-175px { + min-height: 175px !important + } + + .min-h-xxl-200px { + min-height: 200px !important + } + + .min-h-xxl-225px { + min-height: 225px !important + } + + .min-h-xxl-250px { + min-height: 250px !important + } + + .min-h-xxl-275px { + min-height: 275px !important + } + + .min-h-xxl-300px { + min-height: 300px !important + } + + .min-h-xxl-325px { + min-height: 325px !important + } + + .min-h-xxl-350px { + min-height: 350px !important + } + + .min-h-xxl-375px { + min-height: 375px !important + } + + .min-h-xxl-400px { + min-height: 400px !important + } + + .min-h-xxl-425px { + min-height: 425px !important + } + + .min-h-xxl-450px { + min-height: 450px !important + } + + .min-h-xxl-475px { + min-height: 475px !important + } + + .min-h-xxl-500px { + min-height: 500px !important + } + + .min-h-xxl-550px { + min-height: 550px !important + } + + .min-h-xxl-600px { + min-height: 600px !important + } + + .min-h-xxl-650px { + min-height: 650px !important + } + + .min-h-xxl-700px { + min-height: 700px !important + } + + .min-h-xxl-750px { + min-height: 750px !important + } + + .min-h-xxl-800px { + min-height: 800px !important + } + + .min-h-xxl-850px { + min-height: 850px !important + } + + .min-h-xxl-900px { + min-height: 900px !important + } + + .min-h-xxl-950px { + min-height: 950px !important + } + + .min-h-xxl-1000px { + min-height: 1000px !important + } +} + +@media (min-width:1200px) { + .fs-1 { + font-size: 1.75rem !important + } + + .fs-2 { + font-size: 1.5rem !important + } + + .fs-3 { + font-size: 1.35rem !important + } + + .fs-2x { + font-size: 2rem !important + } + + .fs-2qx { + font-size: 2.25rem !important + } + + .fs-2hx { + font-size: 2.5rem !important + } + + .fs-2tx { + font-size: 2.75rem !important + } + + .fs-3x { + font-size: 3rem !important + } + + .fs-3qx { + font-size: 3.25rem !important + } + + .fs-3hx { + font-size: 3.5rem !important + } + + .fs-3tx { + font-size: 3.75rem !important + } + + .fs-4x { + font-size: 4rem !important + } + + .fs-4qx { + font-size: 4.25rem !important + } + + .fs-4hx { + font-size: 4.5rem !important + } + + .fs-4tx { + font-size: 4.75rem !important + } + + .fs-5x { + font-size: 5rem !important + } + + .fs-5qx { + font-size: 5.25rem !important + } + + .fs-5hx { + font-size: 5.5rem !important + } + + .fs-5tx { + font-size: 5.75rem !important + } + + .fs-sm-1 { + font-size: 1.75rem !important + } + + .fs-sm-2 { + font-size: 1.5rem !important + } + + .fs-sm-3 { + font-size: 1.35rem !important + } + + .fs-sm-2x { + font-size: 2rem !important + } + + .fs-sm-2qx { + font-size: 2.25rem !important + } + + .fs-sm-2hx { + font-size: 2.5rem !important + } + + .fs-sm-2tx { + font-size: 2.75rem !important + } + + .fs-sm-3x { + font-size: 3rem !important + } + + .fs-sm-3qx { + font-size: 3.25rem !important + } + + .fs-sm-3hx { + font-size: 3.5rem !important + } + + .fs-sm-3tx { + font-size: 3.75rem !important + } + + .fs-sm-4x { + font-size: 4rem !important + } + + .fs-sm-4qx { + font-size: 4.25rem !important + } + + .fs-sm-4hx { + font-size: 4.5rem !important + } + + .fs-sm-4tx { + font-size: 4.75rem !important + } + + .fs-sm-5x { + font-size: 5rem !important + } + + .fs-sm-5qx { + font-size: 5.25rem !important + } + + .fs-sm-5hx { + font-size: 5.5rem !important + } + + .fs-sm-5tx { + font-size: 5.75rem !important + } + + .fs-md-1 { + font-size: 1.75rem !important + } + + .fs-md-2 { + font-size: 1.5rem !important + } + + .fs-md-3 { + font-size: 1.35rem !important + } + + .fs-md-2x { + font-size: 2rem !important + } + + .fs-md-2qx { + font-size: 2.25rem !important + } + + .fs-md-2hx { + font-size: 2.5rem !important + } + + .fs-md-2tx { + font-size: 2.75rem !important + } + + .fs-md-3x { + font-size: 3rem !important + } + + .fs-md-3qx { + font-size: 3.25rem !important + } + + .fs-md-3hx { + font-size: 3.5rem !important + } + + .fs-md-3tx { + font-size: 3.75rem !important + } + + .fs-md-4x { + font-size: 4rem !important + } + + .fs-md-4qx { + font-size: 4.25rem !important + } + + .fs-md-4hx { + font-size: 4.5rem !important + } + + .fs-md-4tx { + font-size: 4.75rem !important + } + + .fs-md-5x { + font-size: 5rem !important + } + + .fs-md-5qx { + font-size: 5.25rem !important + } + + .fs-md-5hx { + font-size: 5.5rem !important + } + + .fs-md-5tx { + font-size: 5.75rem !important + } + + .fs-lg-1 { + font-size: 1.75rem !important + } + + .fs-lg-2 { + font-size: 1.5rem !important + } + + .fs-lg-3 { + font-size: 1.35rem !important + } + + .fs-lg-2x { + font-size: 2rem !important + } + + .fs-lg-2qx { + font-size: 2.25rem !important + } + + .fs-lg-2hx { + font-size: 2.5rem !important + } + + .fs-lg-2tx { + font-size: 2.75rem !important + } + + .fs-lg-3x { + font-size: 3rem !important + } + + .fs-lg-3qx { + font-size: 3.25rem !important + } + + .fs-lg-3hx { + font-size: 3.5rem !important + } + + .fs-lg-3tx { + font-size: 3.75rem !important + } + + .fs-lg-4x { + font-size: 4rem !important + } + + .fs-lg-4qx { + font-size: 4.25rem !important + } + + .fs-lg-4hx { + font-size: 4.5rem !important + } + + .fs-lg-4tx { + font-size: 4.75rem !important + } + + .fs-lg-5x { + font-size: 5rem !important + } + + .fs-lg-5qx { + font-size: 5.25rem !important + } + + .fs-lg-5hx { + font-size: 5.5rem !important + } + + .fs-lg-5tx { + font-size: 5.75rem !important + } +} + +@media print { + .d-print-inline { + display: inline !important + } + + .d-print-inline-block { + display: inline-block !important + } + + .d-print-block { + display: block !important + } + + .d-print-grid { + display: grid !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 + } + + .d-print-none { + display: none !important + } +} + +:root { + --bs-light-primary: #F1FAFF; + --bs-active-primary: #0095E8; + --bs-light-success: #E8FFF3; + --bs-active-success: #47BE7D; + --bs-light-info: #F8F5FF; + --bs-active-info: #5014D0; + --bs-light-warning: #FFF8DD; + --bs-active-warning: #F1BC00; + --bs-light-danger: #FFF5F8; + --bs-active-danger: #D9214E; + --bs-light-dark: #EFF2F5; + --bs-active-dark: #131628; + --bs-gray-100: #F5F8FA; + --bs-gray-200: #EFF2F5; + --bs-gray-300: #E4E6EF; + --bs-gray-400: #B5B5C3; + --bs-gray-500: #A1A5B7; + --bs-gray-600: #7E8299; + --bs-gray-700: #5E6278; + --bs-gray-800: #3F4254; + --bs-gray-900: #181C32; + --bs-xs: 0; + --bs-sm: 576px; + --bs-md: 768px; + --bs-lg: 992px; + --bs-xl: 1200px; + --bs-xxl: 1400px; + --bs-border-color: #EFF2F5; + --bs-border-dashed-color: #E4E6EF +} + +.bg-white { + background-color: #fff !important; + --bg-color: 255, 255, 255 !important +} + +.bg-white.hoverable:hover { + background-color: #f5f8fa !important +} + +.bg-hover-white { + cursor: pointer +} + +.bg-hover-white:hover { + --bg-color: 255, 255, 255; + background-color: #fff !important +} + +.bg-active-white.active { + --bg-color: 255, 255, 255; + background-color: #fff !important +} + +.bg-state-white { + cursor: pointer +} + +.bg-state-white.active, +.bg-state-white:hover { + --bg-color: 255, 255, 255; + background-color: #fff !important +} + +.bg-light { + background-color: #f5f8fa !important; + --bg-color: 245, 248, 250 !important +} + +.bg-light.hoverable:hover { + background-color: #eff2f5 !important +} + +.bg-hover-light { + cursor: pointer +} + +.bg-hover-light:hover { + --bg-color: 245, 248, 250; + background-color: #f5f8fa !important +} + +.bg-active-light.active { + --bg-color: 245, 248, 250; + background-color: #f5f8fa !important +} + +.bg-state-light { + cursor: pointer +} + +.bg-state-light.active, +.bg-state-light:hover { + --bg-color: 245, 248, 250; + background-color: #f5f8fa !important +} + +.bg-light-primary { + background-color: #f1faff !important +} + +.bg-light-primary.hoverable:hover { + background-color: #d2efff !important +} + +.bg-primary { + background-color: #009ef7 !important; + --bg-color: 0, 158, 247 !important +} + +.bg-primary.hoverable:hover { + background-color: #0095e8 !important +} + +.bg-hover-light-primary { + cursor: pointer +} + +.bg-hover-light-primary:hover { + background-color: #f1faff !important +} + +.bg-state-light-primary { + cursor: pointer +} + +.bg-state-light-primary.active, +.bg-state-light-primary:hover { + background-color: #f1faff !important +} + +.bg-hover-primary { + cursor: pointer +} + +.bg-hover-primary:hover { + --bg-color: 0, 158, 247; + background-color: #009ef7 !important +} + +.bg-active-primary.active { + --bg-color: 0, 158, 247; + background-color: #009ef7 !important +} + +.bg-state-primary { + cursor: pointer +} + +.bg-state-primary.active, +.bg-state-primary:hover { + --bg-color: 0, 158, 247; + background-color: #009ef7 !important +} + +.bg-secondary { + background-color: #e4e6ef !important; + --bg-color: 228, 230, 239 !important +} + +.bg-secondary.hoverable:hover { + background-color: #b5b5c3 !important +} + +.bg-hover-secondary { + cursor: pointer +} + +.bg-hover-secondary:hover { + --bg-color: 228, 230, 239; + background-color: #e4e6ef !important +} + +.bg-active-secondary.active { + --bg-color: 228, 230, 239; + background-color: #e4e6ef !important +} + +.bg-state-secondary { + cursor: pointer +} + +.bg-state-secondary.active, +.bg-state-secondary:hover { + --bg-color: 228, 230, 239; + background-color: #e4e6ef !important +} + +.bg-light-success { + background-color: #e8fff3 !important +} + +.bg-light-success.hoverable:hover { + background-color: #c9ffe3 !important +} + +.bg-success { + background-color: #50cd89 !important; + --bg-color: 80, 205, 137 !important +} + +.bg-success.hoverable:hover { + background-color: #47be7d !important +} + +.bg-hover-light-success { + cursor: pointer +} + +.bg-hover-light-success:hover { + background-color: #e8fff3 !important +} + +.bg-state-light-success { + cursor: pointer +} + +.bg-state-light-success.active, +.bg-state-light-success:hover { + background-color: #e8fff3 !important +} + +.bg-hover-success { + cursor: pointer +} + +.bg-hover-success:hover { + --bg-color: 80, 205, 137; + background-color: #50cd89 !important +} + +.bg-active-success.active { + --bg-color: 80, 205, 137; + background-color: #50cd89 !important +} + +.bg-state-success { + cursor: pointer +} + +.bg-state-success.active, +.bg-state-success:hover { + --bg-color: 80, 205, 137; + background-color: #50cd89 !important +} + +.bg-light-info { + background-color: #f8f5ff !important +} + +.bg-light-info.hoverable:hover { + background-color: #e3d6ff !important +} + +.bg-info { + background-color: #7239ea !important; + --bg-color: 114, 57, 234 !important +} + +.bg-info.hoverable:hover { + background-color: #5014d0 !important +} + +.bg-hover-light-info { + cursor: pointer +} + +.bg-hover-light-info:hover { + background-color: #f8f5ff !important +} + +.bg-state-light-info { + cursor: pointer +} + +.bg-state-light-info.active, +.bg-state-light-info:hover { + background-color: #f8f5ff !important +} + +.bg-hover-info { + cursor: pointer +} + +.bg-hover-info:hover { + --bg-color: 114, 57, 234; + background-color: #7239ea !important +} + +.bg-active-info.active { + --bg-color: 114, 57, 234; + background-color: #7239ea !important +} + +.bg-state-info { + cursor: pointer +} + +.bg-state-info.active, +.bg-state-info:hover { + --bg-color: 114, 57, 234; + background-color: #7239ea !important +} + +.bg-light-warning { + background-color: #fff8dd !important +} + +.bg-light-warning.hoverable:hover { + background-color: #fff2be !important +} + +.bg-warning { + background-color: #ffc700 !important; + --bg-color: 255, 199, 0 !important +} + +.bg-warning.hoverable:hover { + background-color: #f1bc00 !important +} + +.bg-hover-light-warning { + cursor: pointer +} + +.bg-hover-light-warning:hover { + background-color: #fff8dd !important +} + +.bg-state-light-warning { + cursor: pointer +} + +.bg-state-light-warning.active, +.bg-state-light-warning:hover { + background-color: #fff8dd !important +} + +.bg-hover-warning { + cursor: pointer +} + +.bg-hover-warning:hover { + --bg-color: 255, 199, 0; + background-color: #ffc700 !important +} + +.bg-active-warning.active { + --bg-color: 255, 199, 0; + background-color: #ffc700 !important +} + +.bg-state-warning { + cursor: pointer +} + +.bg-state-warning.active, +.bg-state-warning:hover { + --bg-color: 255, 199, 0; + background-color: #ffc700 !important +} + +.bg-light-danger { + background-color: #fff5f8 !important +} + +.bg-light-danger.hoverable:hover { + background-color: #ffd6e3 !important +} + +.bg-danger { + background-color: #f1416c !important; + --bg-color: 241, 65, 108 !important +} + +.bg-danger.hoverable:hover { + background-color: #d9214e !important +} + +.bg-hover-light-danger { + cursor: pointer +} + +.bg-hover-light-danger:hover { + background-color: #fff5f8 !important +} + +.bg-state-light-danger { + cursor: pointer +} + +.bg-state-light-danger.active, +.bg-state-light-danger:hover { + background-color: #fff5f8 !important +} + +.bg-hover-danger { + cursor: pointer +} + +.bg-hover-danger:hover { + --bg-color: 241, 65, 108; + background-color: #f1416c !important +} + +.bg-active-danger.active { + --bg-color: 241, 65, 108; + background-color: #f1416c !important +} + +.bg-state-danger { + cursor: pointer +} + +.bg-state-danger.active, +.bg-state-danger:hover { + --bg-color: 241, 65, 108; + background-color: #f1416c !important +} + +.bg-light-dark { + background-color: #eff2f5 !important +} + +.bg-light-dark.hoverable:hover { + background-color: #dce3e9 !important +} + +.bg-dark { + background-color: #181c32 !important; + --bg-color: 24, 28, 50 !important +} + +.bg-dark.hoverable:hover { + background-color: #131628 !important +} + +.bg-hover-light-dark { + cursor: pointer +} + +.bg-hover-light-dark:hover { + background-color: #eff2f5 !important +} + +.bg-state-light-dark { + cursor: pointer +} + +.bg-state-light-dark.active, +.bg-state-light-dark:hover { + background-color: #eff2f5 !important +} + +.bg-hover-dark { + cursor: pointer +} + +.bg-hover-dark:hover { + --bg-color: 24, 28, 50; + background-color: #181c32 !important +} + +.bg-active-dark.active { + --bg-color: 24, 28, 50; + background-color: #181c32 !important +} + +.bg-state-dark { + cursor: pointer +} + +.bg-state-dark.active, +.bg-state-dark:hover { + --bg-color: 24, 28, 50; + background-color: #181c32 !important +} + +.bg-gray-100 { + background-color: #f5f8fa +} + +.bg-gray-200 { + background-color: #eff2f5 +} + +.bg-gray-300 { + background-color: #e4e6ef +} + +.bg-gray-400 { + background-color: #b5b5c3 +} + +.bg-gray-500 { + background-color: #a1a5b7 +} + +.bg-gray-600 { + background-color: #7e8299 +} + +.bg-gray-700 { + background-color: #5e6278 +} + +.bg-gray-800 { + background-color: #3f4254 +} + +.bg-gray-900 { + background-color: #181c32 +} + +.bg-opacity-0 { + background-color: rgba(var(--bg-color), 0) !important +} + +.bg-hover-opacity-0:hover { + background-color: rgba(var(--bg-color), 0) !important +} + +.bg-active-opacity-0.active { + background-color: rgba(var(--bg-color), 0) !important +} + +.bg-state-opacity-0 .active, +.bg-state-opacity-0:hover { + background-color: rgba(var(--bg-color), 0) !important +} + +.bg-opacity-5 { + background-color: rgba(var(--bg-color), .05) !important +} + +.bg-hover-opacity-5:hover { + background-color: rgba(var(--bg-color), .05) !important +} + +.bg-active-opacity-5.active { + background-color: rgba(var(--bg-color), .05) !important +} + +.bg-state-opacity-5 .active, +.bg-state-opacity-5:hover { + background-color: rgba(var(--bg-color), .05) !important +} + +.bg-opacity-10 { + background-color: rgba(var(--bg-color), .1) !important +} + +.bg-hover-opacity-10:hover { + background-color: rgba(var(--bg-color), .1) !important +} + +.bg-active-opacity-10.active { + background-color: rgba(var(--bg-color), .1) !important +} + +.bg-state-opacity-10 .active, +.bg-state-opacity-10:hover { + background-color: rgba(var(--bg-color), .1) !important +} + +.bg-opacity-15 { + background-color: rgba(var(--bg-color), .15) !important +} + +.bg-hover-opacity-15:hover { + background-color: rgba(var(--bg-color), .15) !important +} + +.bg-active-opacity-15.active { + background-color: rgba(var(--bg-color), .15) !important +} + +.bg-state-opacity-15 .active, +.bg-state-opacity-15:hover { + background-color: rgba(var(--bg-color), .15) !important +} + +.bg-opacity-20 { + background-color: rgba(var(--bg-color), .2) !important +} + +.bg-hover-opacity-20:hover { + background-color: rgba(var(--bg-color), .2) !important +} + +.bg-active-opacity-20.active { + background-color: rgba(var(--bg-color), .2) !important +} + +.bg-state-opacity-20 .active, +.bg-state-opacity-20:hover { + background-color: rgba(var(--bg-color), .2) !important +} + +.bg-opacity-25 { + background-color: rgba(var(--bg-color), .25) !important +} + +.bg-hover-opacity-25:hover { + background-color: rgba(var(--bg-color), .25) !important +} + +.bg-active-opacity-25.active { + background-color: rgba(var(--bg-color), .25) !important +} + +.bg-state-opacity-25 .active, +.bg-state-opacity-25:hover { + background-color: rgba(var(--bg-color), .25) !important +} + +.bg-opacity-50 { + background-color: rgba(var(--bg-color), .5) !important +} + +.bg-hover-opacity-50:hover { + background-color: rgba(var(--bg-color), .5) !important +} + +.bg-active-opacity-50.active { + background-color: rgba(var(--bg-color), .5) !important +} + +.bg-state-opacity-50 .active, +.bg-state-opacity-50:hover { + background-color: rgba(var(--bg-color), .5) !important +} + +.bg-opacity-75 { + background-color: rgba(var(--bg-color), .75) !important +} + +.bg-hover-opacity-75:hover { + background-color: rgba(var(--bg-color), .75) !important +} + +.bg-active-opacity-75.active { + background-color: rgba(var(--bg-color), .75) !important +} + +.bg-state-opacity-75 .active, +.bg-state-opacity-75:hover { + background-color: rgba(var(--bg-color), .75) !important +} + +.bg-opacity-100 { + background-color: rgba(var(--bg-color), 1) !important +} + +.bg-hover-opacity-100:hover { + background-color: rgba(var(--bg-color), 1) !important +} + +.bg-active-opacity-100.active { + background-color: rgba(var(--bg-color), 1) !important +} + +.bg-state-opacity-100 .active, +.bg-state-opacity-100:hover { + background-color: rgba(var(--bg-color), 1) !important +} + +.bg-black { + background-color: #000 +} + +.bg-body { + --bg-color: 255, 255, 255; + background-color: #fff +} + +.bg-lighten { + background-color: rgba(245, 248, 250, .5) +} + +.bg-hover-lighten { + cursor: pointer +} + +.bg-hover-lighten:hover { + background-color: rgba(245, 248, 250, .5) +} + +.bg-active-lighten.active { + background-color: rgba(245, 248, 250, .5) +} + +.bg-state-lighten { + cursor: pointer +} + +.bg-state-lighten.active, +.bg-state-lighten:hover { + background-color: rgba(245, 248, 250, .5) +} + +.hoverable { + cursor: pointer; + transition: all .2s ease +} + +.hoverable:hover { + transition: all .2s ease +} + +.bgi-no-repeat { + background-repeat: no-repeat +} + +.bgi-position-y-top { + background-position-y: top +} + +.bgi-position-y-bottom { + background-position-y: bottom +} + +.bgi-position-y-center { + background-position-y: center +} + +.bgi-position-x-start { + background-position-x: left +} + +.bgi-position-x-end { + background-position-x: right +} + +.bgi-position-x-center { + background-position-x: center +} + +.bgi-position-top { + background-position: 0 top +} + +.bgi-position-bottom { + background-position: 0 bottom +} + +.bgi-position-center { + background-position: center +} + +.bgi-size-auto { + background-size: auto +} + +.bgi-size-cover { + background-size: cover +} + +.bgi-size-contain { + background-size: contain +} + +.bgi-attachment-fixed { + background-attachment: fixed +} + +.bgi-attachment-scroll { + background-attachment: scroll +} + +@media (min-width:576px) { + .bgi-size-sm-auto { + background-size: auto + } + + .bgi-size-sm-cover { + background-size: cover + } + + .bgi-size-sm-contain { + background-size: contain + } + + .bgi-attachment-sm-fixed { + background-attachment: fixed + } + + .bgi-attachment-sm-scroll { + background-attachment: scroll + } +} + +@media (min-width:768px) { + .bgi-size-md-auto { + background-size: auto + } + + .bgi-size-md-cover { + background-size: cover + } + + .bgi-size-md-contain { + background-size: contain + } + + .bgi-attachment-md-fixed { + background-attachment: fixed + } + + .bgi-attachment-md-scroll { + background-attachment: scroll + } +} + +@media (min-width:992px) { + .bgi-size-lg-auto { + background-size: auto + } + + .bgi-size-lg-cover { + background-size: cover + } + + .bgi-size-lg-contain { + background-size: contain + } + + .bgi-attachment-lg-fixed { + background-attachment: fixed + } + + .bgi-attachment-lg-scroll { + background-attachment: scroll + } +} + +@media (min-width:1200px) { + .bgi-size-xl-auto { + background-size: auto + } + + .bgi-size-xl-cover { + background-size: cover + } + + .bgi-size-xl-contain { + background-size: contain + } + + .bgi-attachment-xl-fixed { + background-attachment: fixed + } + + .bgi-attachment-xl-scroll { + background-attachment: scroll + } +} + +@media (min-width:1400px) { + .bgi-size-xxl-auto { + background-size: auto + } + + .bgi-size-xxl-cover { + background-size: cover + } + + .bgi-size-xxl-contain { + background-size: contain + } + + .bgi-attachment-xxl-fixed { + background-attachment: fixed + } + + .bgi-attachment-xxl-scroll { + background-attachment: scroll + } +} + +.border-active:not(.active):not(:active):not(:hover):not(:focus) { + border-color: transparent !important +} + +.border-hover:not(:hover):not(:focus):not(.active):not(:active) { + cursor: pointer; + border-color: transparent !important +} + +.border-gray-100 { + border-color: #f5f8fa !important +} + +.border-gray-200 { + border-color: #eff2f5 !important +} + +.border-gray-300 { + border-color: #e4e6ef !important +} + +.border-gray-400 { + border-color: #b5b5c3 !important +} + +.border-gray-500 { + border-color: #a1a5b7 !important +} + +.border-gray-600 { + border-color: #7e8299 !important +} + +.border-gray-700 { + border-color: #5e6278 !important +} + +.border-gray-800 { + border-color: #3f4254 !important +} + +.border-gray-900 { + border-color: #181c32 !important +} + +.border-hover-white:hover { + border-color: #fff !important +} + +.border-active-white.active { + border-color: #fff !important +} + +.border-hover-light:hover { + border-color: #f5f8fa !important +} + +.border-active-light.active { + border-color: #f5f8fa !important +} + +.border-hover-primary:hover { + border-color: #009ef7 !important +} + +.border-active-primary.active { + border-color: #009ef7 !important +} + +.border-hover-secondary:hover { + border-color: #e4e6ef !important +} + +.border-active-secondary.active { + border-color: #e4e6ef !important +} + +.border-hover-success:hover { + border-color: #50cd89 !important +} + +.border-active-success.active { + border-color: #50cd89 !important +} + +.border-hover-info:hover { + border-color: #7239ea !important +} + +.border-active-info.active { + border-color: #7239ea !important +} + +.border-hover-warning:hover { + border-color: #ffc700 !important +} + +.border-active-warning.active { + border-color: #ffc700 !important +} + +.border-hover-danger:hover { + border-color: #f1416c !important +} + +.border-active-danger.active { + border-color: #f1416c !important +} + +.border-hover-dark:hover { + border-color: #181c32 !important +} + +.border-active-dark.active { + border-color: #181c32 !important +} + +.border-hover-transparent:hover { + border-color: transparent !important +} + +.border-dashed { + border-style: dashed !important; + border-color: #e4e6ef +} + +.border-top-dashed { + border-top-style: dashed !important +} + +.border-bottom-dashed { + border-bottom-style: dashed !important +} + +.border-start-dashed { + border-left-style: dashed !important +} + +.border-end-dashed { + border-right-style: dashed !important +} + +.border-dotted { + border-style: dotted !important +} + +.border-top-dotted { + border-top-style: dotted !important +} + +.border-bottom-dotted { + border-bottom-style: dotted !important +} + +.border-start-dotted { + border-left-style: dotted !important +} + +.border-end-dotted { + border-right-style: dotted !important +} + +.border-transparent { + border-color: transparent !important +} + +.border-body { + border-color: #fff !important +} + +.rounded-top-0 { + border-top-left-radius: 0 !important; + border-top-right-radius: 0 !important +} + +.rounded-bottom-0 { + border-bottom-left-radius: 0 !important; + border-bottom-right-radius: 0 !important +} + +.rounded-start-0 { + border-top-left-radius: 0 !important; + border-bottom-left-radius: 0 !important +} + +.rounded-end-0 { + border-top-right-radius: 0 !important; + border-bottom-right-radius: 0 !important +} + +.rounded-circle { + border-radius: 50% !important +} + +.flex-root { + flex: 1 +} + +.flex-column-auto { + flex: none +} + +.flex-column-fluid { + flex: 1 0 auto +} + +.flex-row-auto { + flex: 0 0 auto +} + +.flex-row-fluid { + flex: 1 auto; + min-width: 0 +} + +.flex-center { + justify-content: center; + align-items: center +} + +.flex-stack { + justify-content: space-between; + align-items: center +} + +@media (min-width:576px) { + .flex-sm-root { + flex: 1 + } + + .flex-sm-column-auto { + flex: none + } + + .flex-sm-column-fluid { + flex: 1 0 auto + } + + .flex-sm-row-auto { + flex: 0 0 auto + } + + .flex-sm-row-fluid { + flex: 1 auto; + min-width: 0 + } + + .flex-sm-center { + justify-content: center; + align-items: center + } + + .flex-sm-stack { + justify-content: space-between; + align-items: center + } +} + +@media (min-width:768px) { + .flex-md-root { + flex: 1 + } + + .flex-md-column-auto { + flex: none + } + + .flex-md-column-fluid { + flex: 1 0 auto + } + + .flex-md-row-auto { + flex: 0 0 auto + } + + .flex-md-row-fluid { + flex: 1 auto; + min-width: 0 + } + + .flex-md-center { + justify-content: center; + align-items: center + } + + .flex-md-stack { + justify-content: space-between; + align-items: center + } +} + +@media (min-width:992px) { + .flex-lg-root { + flex: 1 + } + + .flex-lg-column-auto { + flex: none + } + + .flex-lg-column-fluid { + flex: 1 0 auto + } + + .flex-lg-row-auto { + flex: 0 0 auto + } + + .flex-lg-row-fluid { + flex: 1 auto; + min-width: 0 + } + + .flex-lg-center { + justify-content: center; + align-items: center + } + + .flex-lg-stack { + justify-content: space-between; + align-items: center + } +} + +@media (min-width:1200px) { + .flex-xl-root { + flex: 1 + } + + .flex-xl-column-auto { + flex: none + } + + .flex-xl-column-fluid { + flex: 1 0 auto + } + + .flex-xl-row-auto { + flex: 0 0 auto + } + + .flex-xl-row-fluid { + flex: 1 auto; + min-width: 0 + } + + .flex-xl-center { + justify-content: center; + align-items: center + } + + .flex-xl-stack { + justify-content: space-between; + align-items: center + } +} + +@media (min-width:1400px) { + .flex-xxl-root { + flex: 1 + } + + .flex-xxl-column-auto { + flex: none + } + + .flex-xxl-column-fluid { + flex: 1 0 auto + } + + .flex-xxl-row-auto { + flex: 0 0 auto + } + + .flex-xxl-row-fluid { + flex: 1 auto; + min-width: 0 + } + + .flex-xxl-center { + justify-content: center; + align-items: center + } + + .flex-xxl-stack { + justify-content: space-between; + align-items: center + } +} + +.flex-equal { + flex-grow: 1; + flex-basis: 0; + flex-shrink: 0 +} + +.shadow-xs { + box-shadow: 0 .1rem .75rem .25rem rgba(0, 0, 0, .05) +} + +.text-white { + color: #fff !important +} + +.text-inverse-white { + color: #7e8299 !important +} + +.text-hover-white { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-white i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-white:hover { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-white:hover i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-white:hover .svg-icon { + color: #fff !important +} + +.text-hover-inverse-white { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-white i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-white:hover { + transition: color .2s ease, background-color .2s ease; + color: #7e8299 !important +} + +.text-hover-inverse-white:hover i { + transition: color .2s ease, background-color .2s ease; + color: #7e8299 !important +} + +.text-hover-inverse-white:hover .svg-icon { + color: #7e8299 !important +} + +.text-active-white { + transition: color .2s ease, background-color .2s ease +} + +.text-active-white i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-white.active { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-white.active i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-white.active .svg-icon { + color: #fff !important +} + +.text-active-inverse-white { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-white i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-white.active { + transition: color .2s ease, background-color .2s ease; + color: #7e8299 !important +} + +.text-active-inverse-white.active i { + transition: color .2s ease, background-color .2s ease; + color: #7e8299 !important +} + +.text-active-inverse-white.active .svg-icon { + color: #7e8299 !important +} + +.text-primary { + color: #009ef7 !important +} + +.text-inverse-primary { + color: #fff !important +} + +.text-light-primary { + color: #f1faff !important +} + +.text-hover-primary { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-primary i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-primary:hover { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 !important +} + +.text-hover-primary:hover i { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 !important +} + +.text-hover-primary:hover .svg-icon { + color: #009ef7 !important +} + +.text-hover-inverse-primary { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-primary i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-primary:hover { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-inverse-primary:hover i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-inverse-primary:hover .svg-icon { + color: #fff !important +} + +.text-active-primary { + transition: color .2s ease, background-color .2s ease +} + +.text-active-primary i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-primary.active { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 !important +} + +.text-active-primary.active i { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 !important +} + +.text-active-primary.active .svg-icon { + color: #009ef7 !important +} + +.text-active-inverse-primary { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-primary i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-primary.active { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-inverse-primary.active i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-inverse-primary.active .svg-icon { + color: #fff !important +} + +.text-secondary { + color: #e4e6ef !important +} + +.text-inverse-secondary { + color: #3f4254 !important +} + +.text-hover-secondary { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-secondary i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-secondary:hover { + transition: color .2s ease, background-color .2s ease; + color: #e4e6ef !important +} + +.text-hover-secondary:hover i { + transition: color .2s ease, background-color .2s ease; + color: #e4e6ef !important +} + +.text-hover-secondary:hover .svg-icon { + color: #e4e6ef !important +} + +.text-hover-inverse-secondary { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-secondary i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-secondary:hover { + transition: color .2s ease, background-color .2s ease; + color: #3f4254 !important +} + +.text-hover-inverse-secondary:hover i { + transition: color .2s ease, background-color .2s ease; + color: #3f4254 !important +} + +.text-hover-inverse-secondary:hover .svg-icon { + color: #3f4254 !important +} + +.text-active-secondary { + transition: color .2s ease, background-color .2s ease +} + +.text-active-secondary i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-secondary.active { + transition: color .2s ease, background-color .2s ease; + color: #e4e6ef !important +} + +.text-active-secondary.active i { + transition: color .2s ease, background-color .2s ease; + color: #e4e6ef !important +} + +.text-active-secondary.active .svg-icon { + color: #e4e6ef !important +} + +.text-active-inverse-secondary { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-secondary i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-secondary.active { + transition: color .2s ease, background-color .2s ease; + color: #3f4254 !important +} + +.text-active-inverse-secondary.active i { + transition: color .2s ease, background-color .2s ease; + color: #3f4254 !important +} + +.text-active-inverse-secondary.active .svg-icon { + color: #3f4254 !important +} + +.text-light { + color: #f5f8fa !important +} + +.text-inverse-light { + color: #7e8299 !important +} + +.text-hover-light { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-light i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-light:hover { + transition: color .2s ease, background-color .2s ease; + color: #f5f8fa !important +} + +.text-hover-light:hover i { + transition: color .2s ease, background-color .2s ease; + color: #f5f8fa !important +} + +.text-hover-light:hover .svg-icon { + color: #f5f8fa !important +} + +.text-hover-inverse-light { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-light i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-light:hover { + transition: color .2s ease, background-color .2s ease; + color: #7e8299 !important +} + +.text-hover-inverse-light:hover i { + transition: color .2s ease, background-color .2s ease; + color: #7e8299 !important +} + +.text-hover-inverse-light:hover .svg-icon { + color: #7e8299 !important +} + +.text-active-light { + transition: color .2s ease, background-color .2s ease +} + +.text-active-light i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-light.active { + transition: color .2s ease, background-color .2s ease; + color: #f5f8fa !important +} + +.text-active-light.active i { + transition: color .2s ease, background-color .2s ease; + color: #f5f8fa !important +} + +.text-active-light.active .svg-icon { + color: #f5f8fa !important +} + +.text-active-inverse-light { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-light i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-light.active { + transition: color .2s ease, background-color .2s ease; + color: #7e8299 !important +} + +.text-active-inverse-light.active i { + transition: color .2s ease, background-color .2s ease; + color: #7e8299 !important +} + +.text-active-inverse-light.active .svg-icon { + color: #7e8299 !important +} + +.text-success { + color: #50cd89 !important +} + +.text-inverse-success { + color: #fff !important +} + +.text-light-success { + color: #e8fff3 !important +} + +.text-hover-success { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-success i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-success:hover { + transition: color .2s ease, background-color .2s ease; + color: #50cd89 !important +} + +.text-hover-success:hover i { + transition: color .2s ease, background-color .2s ease; + color: #50cd89 !important +} + +.text-hover-success:hover .svg-icon { + color: #50cd89 !important +} + +.text-hover-inverse-success { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-success i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-success:hover { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-inverse-success:hover i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-inverse-success:hover .svg-icon { + color: #fff !important +} + +.text-active-success { + transition: color .2s ease, background-color .2s ease +} + +.text-active-success i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-success.active { + transition: color .2s ease, background-color .2s ease; + color: #50cd89 !important +} + +.text-active-success.active i { + transition: color .2s ease, background-color .2s ease; + color: #50cd89 !important +} + +.text-active-success.active .svg-icon { + color: #50cd89 !important +} + +.text-active-inverse-success { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-success i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-success.active { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-inverse-success.active i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-inverse-success.active .svg-icon { + color: #fff !important +} + +.text-info { + color: #7239ea !important +} + +.text-inverse-info { + color: #fff !important +} + +.text-light-info { + color: #f8f5ff !important +} + +.text-hover-info { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-info i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-info:hover { + transition: color .2s ease, background-color .2s ease; + color: #7239ea !important +} + +.text-hover-info:hover i { + transition: color .2s ease, background-color .2s ease; + color: #7239ea !important +} + +.text-hover-info:hover .svg-icon { + color: #7239ea !important +} + +.text-hover-inverse-info { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-info i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-info:hover { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-inverse-info:hover i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-inverse-info:hover .svg-icon { + color: #fff !important +} + +.text-active-info { + transition: color .2s ease, background-color .2s ease +} + +.text-active-info i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-info.active { + transition: color .2s ease, background-color .2s ease; + color: #7239ea !important +} + +.text-active-info.active i { + transition: color .2s ease, background-color .2s ease; + color: #7239ea !important +} + +.text-active-info.active .svg-icon { + color: #7239ea !important +} + +.text-active-inverse-info { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-info i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-info.active { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-inverse-info.active i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-inverse-info.active .svg-icon { + color: #fff !important +} + +.text-warning { + color: #ffc700 !important +} + +.text-inverse-warning { + color: #fff !important +} + +.text-light-warning { + color: #fff8dd !important +} + +.text-hover-warning { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-warning i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-warning:hover { + transition: color .2s ease, background-color .2s ease; + color: #ffc700 !important +} + +.text-hover-warning:hover i { + transition: color .2s ease, background-color .2s ease; + color: #ffc700 !important +} + +.text-hover-warning:hover .svg-icon { + color: #ffc700 !important +} + +.text-hover-inverse-warning { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-warning i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-warning:hover { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-inverse-warning:hover i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-inverse-warning:hover .svg-icon { + color: #fff !important +} + +.text-active-warning { + transition: color .2s ease, background-color .2s ease +} + +.text-active-warning i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-warning.active { + transition: color .2s ease, background-color .2s ease; + color: #ffc700 !important +} + +.text-active-warning.active i { + transition: color .2s ease, background-color .2s ease; + color: #ffc700 !important +} + +.text-active-warning.active .svg-icon { + color: #ffc700 !important +} + +.text-active-inverse-warning { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-warning i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-warning.active { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-inverse-warning.active i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-inverse-warning.active .svg-icon { + color: #fff !important +} + +.text-danger { + color: #f1416c !important +} + +.text-inverse-danger { + color: #fff !important +} + +.text-light-danger { + color: #fff5f8 !important +} + +.text-hover-danger { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-danger i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-danger:hover { + transition: color .2s ease, background-color .2s ease; + color: #f1416c !important +} + +.text-hover-danger:hover i { + transition: color .2s ease, background-color .2s ease; + color: #f1416c !important +} + +.text-hover-danger:hover .svg-icon { + color: #f1416c !important +} + +.text-hover-inverse-danger { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-danger i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-danger:hover { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-inverse-danger:hover i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-inverse-danger:hover .svg-icon { + color: #fff !important +} + +.text-active-danger { + transition: color .2s ease, background-color .2s ease +} + +.text-active-danger i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-danger.active { + transition: color .2s ease, background-color .2s ease; + color: #f1416c !important +} + +.text-active-danger.active i { + transition: color .2s ease, background-color .2s ease; + color: #f1416c !important +} + +.text-active-danger.active .svg-icon { + color: #f1416c !important +} + +.text-active-inverse-danger { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-danger i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-danger.active { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-inverse-danger.active i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-inverse-danger.active .svg-icon { + color: #fff !important +} + +.text-dark { + color: #181c32 !important +} + +.text-inverse-dark { + color: #fff !important +} + +.text-light-dark { + color: #eff2f5 !important +} + +.text-hover-dark { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-dark i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-dark:hover { + transition: color .2s ease, background-color .2s ease; + color: #181c32 !important +} + +.text-hover-dark:hover i { + transition: color .2s ease, background-color .2s ease; + color: #181c32 !important +} + +.text-hover-dark:hover .svg-icon { + color: #181c32 !important +} + +.text-hover-inverse-dark { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-dark i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-inverse-dark:hover { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-inverse-dark:hover i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-hover-inverse-dark:hover .svg-icon { + color: #fff !important +} + +.text-active-dark { + transition: color .2s ease, background-color .2s ease +} + +.text-active-dark i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-dark.active { + transition: color .2s ease, background-color .2s ease; + color: #181c32 !important +} + +.text-active-dark.active i { + transition: color .2s ease, background-color .2s ease; + color: #181c32 !important +} + +.text-active-dark.active .svg-icon { + color: #181c32 !important +} + +.text-active-inverse-dark { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-dark i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-inverse-dark.active { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-inverse-dark.active i { + transition: color .2s ease, background-color .2s ease; + color: #fff !important +} + +.text-active-inverse-dark.active .svg-icon { + color: #fff !important +} + +.text-muted { + color: #a1a5b7 !important +} + +.text-hover-muted { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-muted i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-muted:hover { + transition: color .2s ease, background-color .2s ease; + color: #a1a5b7 !important +} + +.text-hover-muted:hover i { + transition: color .2s ease, background-color .2s ease; + color: #a1a5b7 !important +} + +.text-hover-muted:hover .svg-icon { + color: #a1a5b7 !important +} + +.text-active-muted { + transition: color .2s ease, background-color .2s ease +} + +.text-active-muted i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-muted.active { + transition: color .2s ease, background-color .2s ease; + color: #a1a5b7 !important +} + +.text-active-muted.active i { + transition: color .2s ease, background-color .2s ease; + color: #a1a5b7 !important +} + +.text-active-muted.active .svg-icon { + color: #a1a5b7 !important +} + +.text-gray-100 { + color: #f5f8fa !important +} + +.text-hover-gray-100 { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-100 i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-100:hover { + transition: color .2s ease, background-color .2s ease; + color: #f5f8fa !important +} + +.text-hover-gray-100:hover i { + transition: color .2s ease, background-color .2s ease; + color: #f5f8fa !important +} + +.text-hover-gray-100:hover .svg-icon { + color: #f5f8fa !important +} + +.text-active-gray-100 { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-100 i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-100.active { + transition: color .2s ease, background-color .2s ease; + color: #f5f8fa !important +} + +.text-active-gray-100.active i { + transition: color .2s ease, background-color .2s ease; + color: #f5f8fa !important +} + +.text-active-gray-100.active .svg-icon { + color: #f5f8fa !important +} + +.text-gray-200 { + color: #eff2f5 !important +} + +.text-hover-gray-200 { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-200 i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-200:hover { + transition: color .2s ease, background-color .2s ease; + color: #eff2f5 !important +} + +.text-hover-gray-200:hover i { + transition: color .2s ease, background-color .2s ease; + color: #eff2f5 !important +} + +.text-hover-gray-200:hover .svg-icon { + color: #eff2f5 !important +} + +.text-active-gray-200 { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-200 i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-200.active { + transition: color .2s ease, background-color .2s ease; + color: #eff2f5 !important +} + +.text-active-gray-200.active i { + transition: color .2s ease, background-color .2s ease; + color: #eff2f5 !important +} + +.text-active-gray-200.active .svg-icon { + color: #eff2f5 !important +} + +.text-gray-300 { + color: #e4e6ef !important +} + +.text-hover-gray-300 { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-300 i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-300:hover { + transition: color .2s ease, background-color .2s ease; + color: #e4e6ef !important +} + +.text-hover-gray-300:hover i { + transition: color .2s ease, background-color .2s ease; + color: #e4e6ef !important +} + +.text-hover-gray-300:hover .svg-icon { + color: #e4e6ef !important +} + +.text-active-gray-300 { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-300 i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-300.active { + transition: color .2s ease, background-color .2s ease; + color: #e4e6ef !important +} + +.text-active-gray-300.active i { + transition: color .2s ease, background-color .2s ease; + color: #e4e6ef !important +} + +.text-active-gray-300.active .svg-icon { + color: #e4e6ef !important +} + +.text-gray-400 { + color: #b5b5c3 !important +} + +.text-hover-gray-400 { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-400 i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-400:hover { + transition: color .2s ease, background-color .2s ease; + color: #b5b5c3 !important +} + +.text-hover-gray-400:hover i { + transition: color .2s ease, background-color .2s ease; + color: #b5b5c3 !important +} + +.text-hover-gray-400:hover .svg-icon { + color: #b5b5c3 !important +} + +.text-active-gray-400 { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-400 i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-400.active { + transition: color .2s ease, background-color .2s ease; + color: #b5b5c3 !important +} + +.text-active-gray-400.active i { + transition: color .2s ease, background-color .2s ease; + color: #b5b5c3 !important +} + +.text-active-gray-400.active .svg-icon { + color: #b5b5c3 !important +} + +.text-gray-500 { + color: #a1a5b7 !important +} + +.text-hover-gray-500 { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-500 i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-500:hover { + transition: color .2s ease, background-color .2s ease; + color: #a1a5b7 !important +} + +.text-hover-gray-500:hover i { + transition: color .2s ease, background-color .2s ease; + color: #a1a5b7 !important +} + +.text-hover-gray-500:hover .svg-icon { + color: #a1a5b7 !important +} + +.text-active-gray-500 { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-500 i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-500.active { + transition: color .2s ease, background-color .2s ease; + color: #a1a5b7 !important +} + +.text-active-gray-500.active i { + transition: color .2s ease, background-color .2s ease; + color: #a1a5b7 !important +} + +.text-active-gray-500.active .svg-icon { + color: #a1a5b7 !important +} + +.text-gray-600 { + color: #7e8299 !important +} + +.text-hover-gray-600 { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-600 i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-600:hover { + transition: color .2s ease, background-color .2s ease; + color: #7e8299 !important +} + +.text-hover-gray-600:hover i { + transition: color .2s ease, background-color .2s ease; + color: #7e8299 !important +} + +.text-hover-gray-600:hover .svg-icon { + color: #7e8299 !important +} + +.text-active-gray-600 { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-600 i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-600.active { + transition: color .2s ease, background-color .2s ease; + color: #7e8299 !important +} + +.text-active-gray-600.active i { + transition: color .2s ease, background-color .2s ease; + color: #7e8299 !important +} + +.text-active-gray-600.active .svg-icon { + color: #7e8299 !important +} + +.text-gray-700 { + color: #5e6278 !important +} + +.text-hover-gray-700 { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-700 i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-700:hover { + transition: color .2s ease, background-color .2s ease; + color: #5e6278 !important +} + +.text-hover-gray-700:hover i { + transition: color .2s ease, background-color .2s ease; + color: #5e6278 !important +} + +.text-hover-gray-700:hover .svg-icon { + color: #5e6278 !important +} + +.text-active-gray-700 { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-700 i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-700.active { + transition: color .2s ease, background-color .2s ease; + color: #5e6278 !important +} + +.text-active-gray-700.active i { + transition: color .2s ease, background-color .2s ease; + color: #5e6278 !important +} + +.text-active-gray-700.active .svg-icon { + color: #5e6278 !important +} + +.text-gray-800 { + color: #3f4254 !important +} + +.text-hover-gray-800 { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-800 i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-800:hover { + transition: color .2s ease, background-color .2s ease; + color: #3f4254 !important +} + +.text-hover-gray-800:hover i { + transition: color .2s ease, background-color .2s ease; + color: #3f4254 !important +} + +.text-hover-gray-800:hover .svg-icon { + color: #3f4254 !important +} + +.text-active-gray-800 { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-800 i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-800.active { + transition: color .2s ease, background-color .2s ease; + color: #3f4254 !important +} + +.text-active-gray-800.active i { + transition: color .2s ease, background-color .2s ease; + color: #3f4254 !important +} + +.text-active-gray-800.active .svg-icon { + color: #3f4254 !important +} + +.text-gray-900 { + color: #181c32 !important +} + +.text-hover-gray-900 { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-900 i { + transition: color .2s ease, background-color .2s ease +} + +.text-hover-gray-900:hover { + transition: color .2s ease, background-color .2s ease; + color: #181c32 !important +} + +.text-hover-gray-900:hover i { + transition: color .2s ease, background-color .2s ease; + color: #181c32 !important +} + +.text-hover-gray-900:hover .svg-icon { + color: #181c32 !important +} + +.text-active-gray-900 { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-900 i { + transition: color .2s ease, background-color .2s ease +} + +.text-active-gray-900.active { + transition: color .2s ease, background-color .2s ease; + color: #181c32 !important +} + +.text-active-gray-900.active i { + transition: color .2s ease, background-color .2s ease; + color: #181c32 !important +} + +.text-active-gray-900.active .svg-icon { + color: #181c32 !important +} + +.fw-boldest { + font-weight: 700 !important +} + +.text-transparent { + color: transparent +} + +.cursor-pointer { + cursor: pointer +} + +.cursor-default { + cursor: default +} + +.cursor-move { + cursor: move +} + +i { + line-height: 1; + font-size: 1rem; + color: #a1a5b7 +} + +a { + transition: color .2s ease, background-color .2s ease +} + +a:hover { + transition: color .2s ease, background-color .2s ease +} + +.opacity-active-0.active { + opacity: 0 !important +} + +.opacity-state-0.active, +.opacity-state-0:hover { + opacity: 0 !important +} + +.opacity-active-5.active { + opacity: .05 !important +} + +.opacity-state-5.active, +.opacity-state-5:hover { + opacity: .05 !important +} + +.opacity-active-10.active { + opacity: .1 !important +} + +.opacity-state-10.active, +.opacity-state-10:hover { + opacity: .1 !important +} + +.opacity-active-15.active { + opacity: .15 !important +} + +.opacity-state-15.active, +.opacity-state-15:hover { + opacity: .15 !important +} + +.opacity-active-20.active { + opacity: .2 !important +} + +.opacity-state-20.active, +.opacity-state-20:hover { + opacity: .2 !important +} + +.opacity-active-25.active { + opacity: .25 !important +} + +.opacity-state-25.active, +.opacity-state-25:hover { + opacity: .25 !important +} + +.opacity-active-50.active { + opacity: .5 !important +} + +.opacity-state-50.active, +.opacity-state-50:hover { + opacity: .5 !important +} + +.opacity-active-75.active { + opacity: .75 !important +} + +.opacity-state-75.active, +.opacity-state-75:hover { + opacity: .75 !important +} + +.opacity-active-100.active { + opacity: 1 !important +} + +.opacity-state-100.active, +.opacity-state-100:hover { + opacity: 1 !important +} + +.transform-90 { + transform: rotate(90deg); + transform-origin: right top +} + +.animation { + animation-duration: 1s; + animation-fill-mode: both +} + +@keyframes animationSlideInDown { + from { + transform: translate3d(0, -100%, 0); + visibility: visible + } + + to { + transform: translate3d(0, 0, 0) + } +} + +.animation-slide-in-down { + animation-name: animationSlideInDown +} + +@keyframes animationSlideInUp { + from { + transform: translate3d(0, 100%, 0); + visibility: visible + } + + to { + transform: translate3d(0, 0, 0) + } +} + +.animation-slide-in-up { + animation-name: animationSlideInUp +} + +@keyframes animationFadeIn { + from { + opacity: 0 + } + + to { + opacity: 1 + } +} + +.animation-fade-in { + animation-name: animationFadeIn +} + +@keyframes animationFadeOut { + from { + opacity: 1 + } + + to { + opacity: 0 + } +} + +.animation-fade-out { + animation-name: animationFadeOut +} + +.animation-blink { + animation: animationBlink 1s steps(5, start) infinite +} + +@keyframes animationBlink { + to { + visibility: hidden + } +} + +.nav-line-tabs { + border-bottom-width: 1px; + border-bottom-style: solid; + border-bottom-color: #eff2f5 +} + +.nav-line-tabs .nav-item { + margin-bottom: -1px +} + +.nav-line-tabs .nav-item .nav-link { + color: #a1a5b7; + border: 0; + border-bottom: 1px solid transparent; + transition: color .2s ease, background-color .2s ease; + padding: .5rem 0; + margin: 0 1rem +} + +.nav-line-tabs .nav-item:first-child .nav-link { + margin-left: 0 +} + +.nav-line-tabs .nav-item:last-child .nav-link { + margin-right: 0 +} + +.nav-line-tabs .nav-item .nav-link.active, +.nav-line-tabs .nav-item .nav-link:hover:not(.disabled), +.nav-line-tabs .nav-item.show .nav-link { + background-color: transparent; + border: 0; + border-bottom: 1px solid #009ef7; + transition: color .2s ease, background-color .2s ease +} + +.nav-line-tabs.nav-line-tabs-2x { + border-bottom-width: 2px +} + +.nav-line-tabs.nav-line-tabs-2x .nav-item { + margin-bottom: -2px +} + +.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link { + border-bottom-width: 2px +} + +.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link.active, +.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link:hover:not(.disabled), +.nav-line-tabs.nav-line-tabs-2x .nav-item.show .nav-link { + border-bottom-width: 2px +} + +.nav-pills .nav-item { + margin-right: .5rem +} + +.nav-pills .nav-item:last-child { + margin-right: 0 +} + +.nav-stretch { + align-items: stretch; + padding-top: 0 !important; + padding-bottom: 0 !important +} + +.nav-stretch .nav-item { + display: flex; + align-items: stretch; + padding-top: 0 !important; + padding-bottom: 0 !important +} + +.nav-stretch .nav-link { + display: flex; + align-items: center +} + +.nav-group { + padding: .35rem; + border-radius: .475rem; + background-color: #f5f8fa +} + +.nav-group.nav-group-outline { + background-color: transparent; + border: 1px solid #eff2f5 +} + +.nav-group.nav-group-fluid { + display: flex +} + +.nav-group.nav-group-fluid>.btn, +.nav-group.nav-group-fluid>label { + position: relative; + flex-shrink: 0; + flex-grow: 1; + flex-basis: 0 +} + +.nav-group.nav-group-fluid>label { + margin-right: .1rem +} + +.nav-group.nav-group-fluid>label>.btn { + width: 100% +} + +.nav-group.nav-group-fluid>label:last-child { + margin-right: 0 +} + +.nav.nav-pills.nav-pills-custom .nav-link, +.nav.nav-pills.nav-pills-custom .show>.nav-link { + border: 1px dashed #e4e6ef; + border-radius: 12px +} + +.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img, +.nav.nav-pills.nav-pills-custom .show>.nav-link .nav-icon img { + width: 30px; + transition: color .2s ease, background-color .2s ease +} + +.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img.default, +.nav.nav-pills.nav-pills-custom .show>.nav-link .nav-icon img.default { + display: inline-block +} + +.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img.active, +.nav.nav-pills.nav-pills-custom .show>.nav-link .nav-icon img.active { + display: none +} + +.nav.nav-pills.nav-pills-custom .nav-link.active, +.nav.nav-pills.nav-pills-custom .show>.nav-link.active { + background-color: transparent; + border: 1px solid #e4e6ef; + transition-duration: 1ms; + position: relative +} + +.nav.nav-pills.nav-pills-custom .nav-link.active .nav-text, +.nav.nav-pills.nav-pills-custom .show>.nav-link.active .nav-text { + color: #3f4254 !important; + transition: color .2s ease, background-color .2s ease +} + +.nav.nav-pills.nav-pills-custom .nav-link.active .bullet-custom, +.nav.nav-pills.nav-pills-custom .show>.nav-link.active .bullet-custom { + display: block +} + +.nav.nav-pills.nav-pills-custom .nav-link .bullet-custom, +.nav.nav-pills.nav-pills-custom .show>.nav-link .bullet-custom { + display: none +} + +.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:not(:active) span:nth-child(1) { + color: #b5b5c3 +} + +.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:not(:active) span:nth-child(2) { + color: #3f4254 +} + +.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:hover span:nth-child(1) { + color: #fff !important +} + +.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:hover span:nth-child(2) { + color: #fff !important +} + +.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link.active span:nth-child(1) { + color: #fff !important +} + +.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link.active span:nth-child(2) { + color: #fff !important +} + +.pagination { + display: flex; + flex-wrap: wrap; + justify-content: center; + margin: 0 +} + +.pagination.pagination-circle .page-link { + border-radius: 50% +} + +.pagination.pagination-outline .page-link { + border: 1px solid #eff2f5 +} + +.pagination.pagination-outline .page-item.active .page-link, +.pagination.pagination-outline .page-item:hover .page-link { + border-color: #f1faff +} + +.page-item { + margin-right: .5rem +} + +.page-item:last-child { + margin-right: 0 +} + +.page-item .page-link { + display: flex; + justify-content: center; + align-items: center; + border-radius: .475rem; + height: 2.5rem; + min-width: 2.5rem; + font-weight: 500; + font-size: 1.075rem +} + +.page-item .page-link i { + font-size: .85rem +} + +.page-item .page-link .next, +.page-item .page-link .previous { + display: block; + height: .875rem; + width: .875rem +} + +.page-item .page-link .previous { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e") +} + +.page-item .page-link .next { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.page-item.next .page-link, +.page-item.previous .page-link { + background-color: #fff; + color: #5e6278 +} + +.page-item.next .page-link i, +.page-item.previous .page-link i { + color: #5e6278 +} + +.page-item:focus .page-link { + color: #009ef7 +} + +.page-item:focus .page-link i { + color: #009ef7 +} + +.page-item:focus .page-link .previous { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e") +} + +.page-item:focus .page-link .next { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.page-item:hover:not(.offset) .page-link { + color: #009ef7 +} + +.page-item:hover:not(.offset) .page-link i { + color: #009ef7 +} + +.page-item:hover:not(.offset) .page-link .previous { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e") +} + +.page-item:hover:not(.offset) .page-link .next { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.page-item.active .page-link { + color: #fff +} + +.page-item.active .page-link i { + color: #fff +} + +.page-item.active .page-link .previous { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e") +} + +.page-item.active .page-link .next { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.page-item.disabled .page-link { + color: #b5b5c3 +} + +.page-item.disabled .page-link i { + color: #b5b5c3 +} + +.page-item.disabled .page-link .previous { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e") +} + +.page-item.disabled .page-link .next { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +@media (max-width:991.98px) { + .page-item { + margin-right: .25rem + } + + .page-item:last-child { + margin-right: 0 + } +} + +.separator { + display: block; + height: 0; + border-bottom: 1px solid #eff2f5 +} + +.separator.separator-dotted { + border-bottom-style: dotted; + border-bottom-color: #e4e6ef +} + +.separator.separator-dashed { + border-bottom-style: dashed; + border-bottom-color: #e4e6ef +} + +.separator.separator-content { + display: flex; + align-items: center; + border-bottom: 0; + text-align: center +} + +.separator.separator-content::after, +.separator.separator-content::before { + content: " "; + width: 50%; + border-bottom: 1px solid #eff2f5 +} + +.separator.separator-content::before { + margin-right: 1.25rem +} + +.separator.separator-content::after { + margin-left: 1.25rem +} + +.separator.separator-content.separator-dotted::after, +.separator.separator-content.separator-dotted::before { + border-bottom-style: dotted; + border-bottom-color: #e4e6ef +} + +.separator.separator-content.separator-dashed::after, +.separator.separator-content.separator-dashed::before { + border-bottom-style: dashed; + border-bottom-color: #e4e6ef +} + +.separator.separator-content.border-white::after, +.separator.separator-content.border-white::before { + border-color: #fff !important +} + +.separator.separator-content.border-light::after, +.separator.separator-content.border-light::before { + border-color: #f5f8fa !important +} + +.separator.separator-content.border-primary::after, +.separator.separator-content.border-primary::before { + border-color: #009ef7 !important +} + +.separator.separator-content.border-secondary::after, +.separator.separator-content.border-secondary::before { + border-color: #e4e6ef !important +} + +.separator.separator-content.border-success::after, +.separator.separator-content.border-success::before { + border-color: #50cd89 !important +} + +.separator.separator-content.border-info::after, +.separator.separator-content.border-info::before { + border-color: #7239ea !important +} + +.separator.separator-content.border-warning::after, +.separator.separator-content.border-warning::before { + border-color: #ffc700 !important +} + +.separator.separator-content.border-danger::after, +.separator.separator-content.border-danger::before { + border-color: #f1416c !important +} + +.separator.separator-content.border-dark::after, +.separator.separator-content.border-dark::before { + border-color: #181c32 !important +} + +.carousel.carousel-custom .carousel-indicators { + align-items: center; + position: static; + z-index: auto; + margin: 0; + padding: 0; + list-style: none +} + +.carousel.carousel-custom .carousel-indicators li { + transform: none; + opacity: 1 +} + +.carousel.carousel-custom .carousel-indicators li.active { + transform: none; + opacity: 1 +} + +.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li { + border-radius: 0; + background-color: transparent; + height: 13px; + width: 13px; + display: flex; + align-items: center; + justify-content: center; + text-align: center +} + +.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li:after { + display: inline-block; + content: " "; + border-radius: 50%; + transition: all .3s ease; + background-color: #eff2f5; + height: 9px; + width: 9px +} + +.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li.active { + background-color: transparent +} + +.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li.active:after { + transition: all .3s ease; + height: 13px; + width: 13px; + background-color: #b5b5c3 +} + +.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li { + transition: all .3s ease; + background-color: transparent; + border-radius: 6px; + height: 6px; + width: 6px; + display: flex; + align-items: center; + justify-content: center; + text-align: center +} + +.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li:after { + display: inline-block; + content: " "; + transition: all .3s ease; + background-color: #b5b5c3; + border-radius: 6px; + height: 6px; + width: 6px +} + +.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li.active { + transition: all .3s ease; + background-color: transparent; + height: 6px; + width: 16px +} + +.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li.active:after { + transition: all .3s ease; + height: 6px; + width: 16px; + background-color: #7e8299 +} + +.carousel.carousel-custom .carousel-indicators-active-white li.active:after { + background-color: #fff !important +} + +.carousel.carousel-custom .carousel-indicators-active-light li.active:after { + background-color: #f5f8fa !important +} + +.carousel.carousel-custom .carousel-indicators-active-primary li.active:after { + background-color: #009ef7 !important +} + +.carousel.carousel-custom .carousel-indicators-active-secondary li.active:after { + background-color: #e4e6ef !important +} + +.carousel.carousel-custom .carousel-indicators-active-success li.active:after { + background-color: #50cd89 !important +} + +.carousel.carousel-custom .carousel-indicators-active-info li.active:after { + background-color: #7239ea !important +} + +.carousel.carousel-custom .carousel-indicators-active-warning li.active:after { + background-color: #ffc700 !important +} + +.carousel.carousel-custom .carousel-indicators-active-danger li.active:after { + background-color: #f1416c !important +} + +.carousel.carousel-custom .carousel-indicators-active-dark li.active:after { + background-color: #181c32 !important +} + +.carousel.carousel-custom.carousel-stretch { + height: 100%; + display: flex; + flex-direction: column +} + +.carousel.carousel-custom.carousel-stretch .carousel-inner { + flex-grow: 1 +} + +.carousel.carousel-custom.carousel-stretch .carousel-item { + height: 100% +} + +.carousel.carousel-custom.carousel-stretch .carousel-wrapper { + display: flex; + flex-direction: column; + height: 100% +} + +.menu-group { + display: flex +} + +.menu, +.menu-wrapper { + display: flex; + padding: 0; + margin: 0; + list-style: none +} + +.menu-inner { + padding: 0; + margin: 0; + list-style: none +} + +.menu-sub { + display: none; + padding: 0; + margin: 0; + list-style: none; + flex-direction: column +} + +.menu-item { + display: block; + padding: 0 +} + +.menu-item .menu-link { + cursor: pointer; + display: flex; + align-items: center; + padding: 0; + flex: 0 0 100%; + padding: .65rem 1rem; + transition: none; + outline: 0 !important +} + +.menu-item .menu-link .menu-icon { + flex-shrink: 0; + display: flex; + align-items: center; + justify-content: center; + width: 2rem; + margin-right: .5rem +} + +.menu-item .menu-link .menu-icon .svg-icon { + line-height: 1 +} + +.menu-item .menu-link .menu-bullet { + flex-shrink: 0; + display: flex; + align-items: center; + justify-content: center; + width: 1.25rem; + margin-right: .5rem +} + +.menu-item .menu-link .menu-title { + display: flex; + align-items: center; + flex-grow: 1 +} + +.menu-item .menu-link .menu-badge { + display: flex; + align-items: center; + flex-shrink: 0; + margin-left: .5rem +} + +.menu-item .menu-link .menu-arrow { + display: flex; + align-items: stretch; + position: relative; + overflow: hidden; + flex-shrink: 0; + margin-left: .5rem; + width: .8rem; + height: .8rem +} + +.menu-item .menu-link .menu-arrow:after { + display: block; + width: 100%; + content: " "; + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-item .menu-content { + padding: .65rem 1rem +} + +.menu-item.show .menu-link .menu-arrow:after { + backface-visibility: hidden; + transition: transform .3s ease +} + +.menu-center { + justify-content: center +} + +.menu-item.menu-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, +.menu-item.menu-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease +} + +[direction=rtl] .menu-item.menu-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, +[direction=rtl] .menu-item.menu-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) +} + +.menu-sub-dropdown { + display: none; + border-radius: .475rem; + background-color: #fff; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + z-index: 107 +} + +.menu-sub-dropdown.menu.show, +.menu-sub-dropdown.show[data-popper-placement], +.show.menu-dropdown>.menu-sub-dropdown { + display: flex; + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1 +} + +.menu-sub-dropdown.menu.show[data-popper-placement=top-end], +.menu-sub-dropdown.menu.show[data-popper-placement=top-start], +.menu-sub-dropdown.menu.show[data-popper-placement=top], +.menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top-end], +.menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top-start], +.menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top], +.show.menu-dropdown>.menu-sub-dropdown[data-popper-placement=top-end], +.show.menu-dropdown>.menu-sub-dropdown[data-popper-placement=top-start], +.show.menu-dropdown>.menu-sub-dropdown[data-popper-placement=top] { + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-down .3s ease 1 +} + +.menu-sub-accordion { + display: none +} + +.menu-sub-accordion.show, +.show:not(.menu-dropdown)>.menu-sub-accordion { + display: flex +} + +.menu-inline { + display: flex +} + +.menu-fit>.menu-item>.menu-content, +.menu-fit>.menu-item>.menu-link { + padding-left: 0 !important; + padding-right: 0 !important +} + +.menu-column { + flex-direction: column; + width: 100% +} + +.menu-row { + flex-direction: row +} + +.menu-row>.menu-item { + display: flex; + align-items: center +} + +.menu-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease +} + +[direction=rtl] .menu-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) +} + +.menu-rounded .menu-link { + border-radius: .475rem +} + +.menu-pill .menu-link { + border-radius: 50px +} + +.menu-rounded-0 .menu-link { + border-radius: 0 !important +} + +@media (min-width:576px) { + + .menu-item.menu-sm-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + .menu-item.menu-sm-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-item.menu-sm-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + [direction=rtl] .menu-item.menu-sm-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-sub-sm-dropdown { + display: none; + border-radius: .475rem; + background-color: #fff; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + z-index: 107 + } + + .menu-sub-sm-dropdown.menu.show, + .menu-sub-sm-dropdown.show[data-popper-placement], + .show.menu-dropdown>.menu-sub-sm-dropdown { + display: flex; + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1 + } + + .menu-sub-sm-dropdown.menu.show[data-popper-placement=top-end], + .menu-sub-sm-dropdown.menu.show[data-popper-placement=top-start], + .menu-sub-sm-dropdown.menu.show[data-popper-placement=top], + .menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top-end], + .menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top-start], + .menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top], + .show.menu-dropdown>.menu-sub-sm-dropdown[data-popper-placement=top-end], + .show.menu-dropdown>.menu-sub-sm-dropdown[data-popper-placement=top-start], + .show.menu-dropdown>.menu-sub-sm-dropdown[data-popper-placement=top] { + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-down .3s ease 1 + } + + .menu-sub-sm-accordion { + display: none + } + + .menu-sub-sm-accordion.show, + .show:not(.menu-dropdown)>.menu-sub-sm-accordion { + display: flex + } + + .menu-sm-inline { + display: flex + } + + .menu-sm-fit>.menu-item>.menu-content, + .menu-sm-fit>.menu-item>.menu-link { + padding-left: 0 !important; + padding-right: 0 !important + } + + .menu-sm-column { + flex-direction: column; + width: 100% + } + + .menu-sm-row { + flex-direction: row + } + + .menu-sm-row>.menu-item { + display: flex; + align-items: center + } + + .menu-sm-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-sm-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-sm-rounded .menu-link { + border-radius: .475rem + } + + .menu-sm-pill .menu-link { + border-radius: 50px + } + + .menu-sm-rounded-0 .menu-link { + border-radius: 0 !important + } +} + +@media (min-width:768px) { + + .menu-item.menu-md-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + .menu-item.menu-md-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-item.menu-md-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + [direction=rtl] .menu-item.menu-md-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-sub-md-dropdown { + display: none; + border-radius: .475rem; + background-color: #fff; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + z-index: 107 + } + + .menu-sub-md-dropdown.menu.show, + .menu-sub-md-dropdown.show[data-popper-placement], + .show.menu-dropdown>.menu-sub-md-dropdown { + display: flex; + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1 + } + + .menu-sub-md-dropdown.menu.show[data-popper-placement=top-end], + .menu-sub-md-dropdown.menu.show[data-popper-placement=top-start], + .menu-sub-md-dropdown.menu.show[data-popper-placement=top], + .menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top-end], + .menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top-start], + .menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top], + .show.menu-dropdown>.menu-sub-md-dropdown[data-popper-placement=top-end], + .show.menu-dropdown>.menu-sub-md-dropdown[data-popper-placement=top-start], + .show.menu-dropdown>.menu-sub-md-dropdown[data-popper-placement=top] { + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-down .3s ease 1 + } + + .menu-sub-md-accordion { + display: none + } + + .menu-sub-md-accordion.show, + .show:not(.menu-dropdown)>.menu-sub-md-accordion { + display: flex + } + + .menu-md-inline { + display: flex + } + + .menu-md-fit>.menu-item>.menu-content, + .menu-md-fit>.menu-item>.menu-link { + padding-left: 0 !important; + padding-right: 0 !important + } + + .menu-md-column { + flex-direction: column; + width: 100% + } + + .menu-md-row { + flex-direction: row + } + + .menu-md-row>.menu-item { + display: flex; + align-items: center + } + + .menu-md-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-md-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-md-rounded .menu-link { + border-radius: .475rem + } + + .menu-md-pill .menu-link { + border-radius: 50px + } + + .menu-md-rounded-0 .menu-link { + border-radius: 0 !important + } +} + +@media (min-width:992px) { + + .menu-item.menu-lg-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + .menu-item.menu-lg-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-item.menu-lg-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + [direction=rtl] .menu-item.menu-lg-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-sub-lg-dropdown { + display: none; + border-radius: .475rem; + background-color: #fff; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + z-index: 107 + } + + .menu-sub-lg-dropdown.menu.show, + .menu-sub-lg-dropdown.show[data-popper-placement], + .show.menu-dropdown>.menu-sub-lg-dropdown { + display: flex; + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1 + } + + .menu-sub-lg-dropdown.menu.show[data-popper-placement=top-end], + .menu-sub-lg-dropdown.menu.show[data-popper-placement=top-start], + .menu-sub-lg-dropdown.menu.show[data-popper-placement=top], + .menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top-end], + .menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top-start], + .menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top], + .show.menu-dropdown>.menu-sub-lg-dropdown[data-popper-placement=top-end], + .show.menu-dropdown>.menu-sub-lg-dropdown[data-popper-placement=top-start], + .show.menu-dropdown>.menu-sub-lg-dropdown[data-popper-placement=top] { + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-down .3s ease 1 + } + + .menu-sub-lg-accordion { + display: none + } + + .menu-sub-lg-accordion.show, + .show:not(.menu-dropdown)>.menu-sub-lg-accordion { + display: flex + } + + .menu-lg-inline { + display: flex + } + + .menu-lg-fit>.menu-item>.menu-content, + .menu-lg-fit>.menu-item>.menu-link { + padding-left: 0 !important; + padding-right: 0 !important + } + + .menu-lg-column { + flex-direction: column; + width: 100% + } + + .menu-lg-row { + flex-direction: row + } + + .menu-lg-row>.menu-item { + display: flex; + align-items: center + } + + .menu-lg-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-lg-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-lg-rounded .menu-link { + border-radius: .475rem + } + + .menu-lg-pill .menu-link { + border-radius: 50px + } + + .menu-lg-rounded-0 .menu-link { + border-radius: 0 !important + } +} + +@media (min-width:1200px) { + + .menu-item.menu-xl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + .menu-item.menu-xl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-item.menu-xl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + [direction=rtl] .menu-item.menu-xl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-sub-xl-dropdown { + display: none; + border-radius: .475rem; + background-color: #fff; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + z-index: 107 + } + + .menu-sub-xl-dropdown.menu.show, + .menu-sub-xl-dropdown.show[data-popper-placement], + .show.menu-dropdown>.menu-sub-xl-dropdown { + display: flex; + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1 + } + + .menu-sub-xl-dropdown.menu.show[data-popper-placement=top-end], + .menu-sub-xl-dropdown.menu.show[data-popper-placement=top-start], + .menu-sub-xl-dropdown.menu.show[data-popper-placement=top], + .menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top-end], + .menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top-start], + .menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top], + .show.menu-dropdown>.menu-sub-xl-dropdown[data-popper-placement=top-end], + .show.menu-dropdown>.menu-sub-xl-dropdown[data-popper-placement=top-start], + .show.menu-dropdown>.menu-sub-xl-dropdown[data-popper-placement=top] { + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-down .3s ease 1 + } + + .menu-sub-xl-accordion { + display: none + } + + .menu-sub-xl-accordion.show, + .show:not(.menu-dropdown)>.menu-sub-xl-accordion { + display: flex + } + + .menu-xl-inline { + display: flex + } + + .menu-xl-fit>.menu-item>.menu-content, + .menu-xl-fit>.menu-item>.menu-link { + padding-left: 0 !important; + padding-right: 0 !important + } + + .menu-xl-column { + flex-direction: column; + width: 100% + } + + .menu-xl-row { + flex-direction: row + } + + .menu-xl-row>.menu-item { + display: flex; + align-items: center + } + + .menu-xl-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-xl-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-xl-rounded .menu-link { + border-radius: .475rem + } + + .menu-xl-pill .menu-link { + border-radius: 50px + } + + .menu-xl-rounded-0 .menu-link { + border-radius: 0 !important + } +} + +@media (min-width:1400px) { + + .menu-item.menu-xxl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + .menu-item.menu-xxl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-item.menu-xxl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + [direction=rtl] .menu-item.menu-xxl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-sub-xxl-dropdown { + display: none; + border-radius: .475rem; + background-color: #fff; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + z-index: 107 + } + + .menu-sub-xxl-dropdown.menu.show, + .menu-sub-xxl-dropdown.show[data-popper-placement], + .show.menu-dropdown>.menu-sub-xxl-dropdown { + display: flex; + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1 + } + + .menu-sub-xxl-dropdown.menu.show[data-popper-placement=top-end], + .menu-sub-xxl-dropdown.menu.show[data-popper-placement=top-start], + .menu-sub-xxl-dropdown.menu.show[data-popper-placement=top], + .menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top-end], + .menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top-start], + .menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top], + .show.menu-dropdown>.menu-sub-xxl-dropdown[data-popper-placement=top-end], + .show.menu-dropdown>.menu-sub-xxl-dropdown[data-popper-placement=top-start], + .show.menu-dropdown>.menu-sub-xxl-dropdown[data-popper-placement=top] { + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-down .3s ease 1 + } + + .menu-sub-xxl-accordion { + display: none + } + + .menu-sub-xxl-accordion.show, + .show:not(.menu-dropdown)>.menu-sub-xxl-accordion { + display: flex + } + + .menu-xxl-inline { + display: flex + } + + .menu-xxl-fit>.menu-item>.menu-content, + .menu-xxl-fit>.menu-item>.menu-link { + padding-left: 0 !important; + padding-right: 0 !important + } + + .menu-xxl-column { + flex-direction: column; + width: 100% + } + + .menu-xxl-row { + flex-direction: row + } + + .menu-xxl-row>.menu-item { + display: flex; + align-items: center + } + + .menu-xxl-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-xxl-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-xxl-rounded .menu-link { + border-radius: .475rem + } + + .menu-xxl-pill .menu-link { + border-radius: 50px + } + + .menu-xxl-rounded-0 .menu-link { + border-radius: 0 !important + } +} + +@media (max-width:575.98px) { + + .menu-item.menu-sm-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + .menu-item.menu-sm-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-item.menu-sm-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + [direction=rtl] .menu-item.menu-sm-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-sub-sm-down-dropdown { + display: none; + border-radius: .475rem; + background-color: #fff; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + z-index: 107 + } + + .menu-sub-sm-down-dropdown.menu.show, + .menu-sub-sm-down-dropdown.show[data-popper-placement], + .show.menu-dropdown>.menu-sub-sm-down-dropdown { + display: flex; + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1 + } + + .menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top-end], + .menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top-start], + .menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top], + .menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top-end], + .menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top-start], + .menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top], + .show.menu-dropdown>.menu-sub-sm-down-dropdown[data-popper-placement=top-end], + .show.menu-dropdown>.menu-sub-sm-down-dropdown[data-popper-placement=top-start], + .show.menu-dropdown>.menu-sub-sm-down-dropdown[data-popper-placement=top] { + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-down .3s ease 1 + } + + .menu-sub-sm-down-accordion { + display: none + } + + .menu-sub-sm-down-accordion.show, + .show:not(.menu-dropdown)>.menu-sub-sm-down-accordion { + display: flex + } + + .menu-sm-down-inline { + display: flex + } + + .menu-sm-down-fit>.menu-item>.menu-content, + .menu-sm-down-fit>.menu-item>.menu-link { + padding-left: 0 !important; + padding-right: 0 !important + } + + .menu-sm-down-column { + flex-direction: column; + width: 100% + } + + .menu-sm-down-row { + flex-direction: row + } + + .menu-sm-down-row>.menu-item { + display: flex; + align-items: center + } + + .menu-sm-down-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-sm-down-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-sm-down-rounded .menu-link { + border-radius: .475rem + } + + .menu-sm-down-pill .menu-link { + border-radius: 50px + } + + .menu-sm-down-rounded-0 .menu-link { + border-radius: 0 !important + } +} + +@media (max-width:767.98px) { + + .menu-item.menu-md-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + .menu-item.menu-md-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-item.menu-md-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + [direction=rtl] .menu-item.menu-md-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-sub-md-down-dropdown { + display: none; + border-radius: .475rem; + background-color: #fff; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + z-index: 107 + } + + .menu-sub-md-down-dropdown.menu.show, + .menu-sub-md-down-dropdown.show[data-popper-placement], + .show.menu-dropdown>.menu-sub-md-down-dropdown { + display: flex; + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1 + } + + .menu-sub-md-down-dropdown.menu.show[data-popper-placement=top-end], + .menu-sub-md-down-dropdown.menu.show[data-popper-placement=top-start], + .menu-sub-md-down-dropdown.menu.show[data-popper-placement=top], + .menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top-end], + .menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top-start], + .menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top], + .show.menu-dropdown>.menu-sub-md-down-dropdown[data-popper-placement=top-end], + .show.menu-dropdown>.menu-sub-md-down-dropdown[data-popper-placement=top-start], + .show.menu-dropdown>.menu-sub-md-down-dropdown[data-popper-placement=top] { + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-down .3s ease 1 + } + + .menu-sub-md-down-accordion { + display: none + } + + .menu-sub-md-down-accordion.show, + .show:not(.menu-dropdown)>.menu-sub-md-down-accordion { + display: flex + } + + .menu-md-down-inline { + display: flex + } + + .menu-md-down-fit>.menu-item>.menu-content, + .menu-md-down-fit>.menu-item>.menu-link { + padding-left: 0 !important; + padding-right: 0 !important + } + + .menu-md-down-column { + flex-direction: column; + width: 100% + } + + .menu-md-down-row { + flex-direction: row + } + + .menu-md-down-row>.menu-item { + display: flex; + align-items: center + } + + .menu-md-down-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-md-down-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-md-down-rounded .menu-link { + border-radius: .475rem + } + + .menu-md-down-pill .menu-link { + border-radius: 50px + } + + .menu-md-down-rounded-0 .menu-link { + border-radius: 0 !important + } +} + +@media (max-width:991.98px) { + + .menu-item.menu-lg-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + .menu-item.menu-lg-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-item.menu-lg-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + [direction=rtl] .menu-item.menu-lg-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-sub-lg-down-dropdown { + display: none; + border-radius: .475rem; + background-color: #fff; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + z-index: 107 + } + + .menu-sub-lg-down-dropdown.menu.show, + .menu-sub-lg-down-dropdown.show[data-popper-placement], + .show.menu-dropdown>.menu-sub-lg-down-dropdown { + display: flex; + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1 + } + + .menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top-end], + .menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top-start], + .menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top], + .menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top-end], + .menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top-start], + .menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top], + .show.menu-dropdown>.menu-sub-lg-down-dropdown[data-popper-placement=top-end], + .show.menu-dropdown>.menu-sub-lg-down-dropdown[data-popper-placement=top-start], + .show.menu-dropdown>.menu-sub-lg-down-dropdown[data-popper-placement=top] { + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-down .3s ease 1 + } + + .menu-sub-lg-down-accordion { + display: none + } + + .menu-sub-lg-down-accordion.show, + .show:not(.menu-dropdown)>.menu-sub-lg-down-accordion { + display: flex + } + + .menu-lg-down-inline { + display: flex + } + + .menu-lg-down-fit>.menu-item>.menu-content, + .menu-lg-down-fit>.menu-item>.menu-link { + padding-left: 0 !important; + padding-right: 0 !important + } + + .menu-lg-down-column { + flex-direction: column; + width: 100% + } + + .menu-lg-down-row { + flex-direction: row + } + + .menu-lg-down-row>.menu-item { + display: flex; + align-items: center + } + + .menu-lg-down-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-lg-down-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-lg-down-rounded .menu-link { + border-radius: .475rem + } + + .menu-lg-down-pill .menu-link { + border-radius: 50px + } + + .menu-lg-down-rounded-0 .menu-link { + border-radius: 0 !important + } +} + +@media (max-width:1199.98px) { + + .menu-item.menu-xl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + .menu-item.menu-xl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-item.menu-xl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + [direction=rtl] .menu-item.menu-xl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-sub-xl-down-dropdown { + display: none; + border-radius: .475rem; + background-color: #fff; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + z-index: 107 + } + + .menu-sub-xl-down-dropdown.menu.show, + .menu-sub-xl-down-dropdown.show[data-popper-placement], + .show.menu-dropdown>.menu-sub-xl-down-dropdown { + display: flex; + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1 + } + + .menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top-end], + .menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top-start], + .menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top], + .menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top-end], + .menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top-start], + .menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top], + .show.menu-dropdown>.menu-sub-xl-down-dropdown[data-popper-placement=top-end], + .show.menu-dropdown>.menu-sub-xl-down-dropdown[data-popper-placement=top-start], + .show.menu-dropdown>.menu-sub-xl-down-dropdown[data-popper-placement=top] { + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-down .3s ease 1 + } + + .menu-sub-xl-down-accordion { + display: none + } + + .menu-sub-xl-down-accordion.show, + .show:not(.menu-dropdown)>.menu-sub-xl-down-accordion { + display: flex + } + + .menu-xl-down-inline { + display: flex + } + + .menu-xl-down-fit>.menu-item>.menu-content, + .menu-xl-down-fit>.menu-item>.menu-link { + padding-left: 0 !important; + padding-right: 0 !important + } + + .menu-xl-down-column { + flex-direction: column; + width: 100% + } + + .menu-xl-down-row { + flex-direction: row + } + + .menu-xl-down-row>.menu-item { + display: flex; + align-items: center + } + + .menu-xl-down-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-xl-down-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-xl-down-rounded .menu-link { + border-radius: .475rem + } + + .menu-xl-down-pill .menu-link { + border-radius: 50px + } + + .menu-xl-down-rounded-0 .menu-link { + border-radius: 0 !important + } +} + +@media (max-width:1399.98px) { + + .menu-item.menu-xxl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + .menu-item.menu-xxl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-item.menu-xxl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after, + [direction=rtl] .menu-item.menu-xxl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-sub-xxl-down-dropdown { + display: none; + border-radius: .475rem; + background-color: #fff; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + z-index: 107 + } + + .menu-sub-xxl-down-dropdown.menu.show, + .menu-sub-xxl-down-dropdown.show[data-popper-placement], + .show.menu-dropdown>.menu-sub-xxl-down-dropdown { + display: flex; + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1 + } + + .menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top-end], + .menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top-start], + .menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top], + .menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top-end], + .menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top-start], + .menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top], + .show.menu-dropdown>.menu-sub-xxl-down-dropdown[data-popper-placement=top-end], + .show.menu-dropdown>.menu-sub-xxl-down-dropdown[data-popper-placement=top-start], + .show.menu-dropdown>.menu-sub-xxl-down-dropdown[data-popper-placement=top] { + animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-down .3s ease 1 + } + + .menu-sub-xxl-down-accordion { + display: none + } + + .menu-sub-xxl-down-accordion.show, + .show:not(.menu-dropdown)>.menu-sub-xxl-down-accordion { + display: flex + } + + .menu-xxl-down-inline { + display: flex + } + + .menu-xxl-down-fit>.menu-item>.menu-content, + .menu-xxl-down-fit>.menu-item>.menu-link { + padding-left: 0 !important; + padding-right: 0 !important + } + + .menu-xxl-down-column { + flex-direction: column; + width: 100% + } + + .menu-xxl-down-row { + flex-direction: row + } + + .menu-xxl-down-row>.menu-item { + display: flex; + align-items: center + } + + .menu-xxl-down-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(90deg); + transition: transform .3s ease + } + + [direction=rtl] .menu-xxl-down-row>.menu-item>.menu-link .menu-arrow:after { + transform: rotateZ(-90deg) + } + + .menu-xxl-down-rounded .menu-link { + border-radius: .475rem + } + + .menu-xxl-down-pill .menu-link { + border-radius: 50px + } + + .menu-xxl-down-rounded-0 .menu-link { + border-radius: 0 !important + } +} + +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(1rem + 1rem) +} + +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(2rem + 1rem) +} + +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(3rem + 1rem) +} + +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(4rem + 1rem) +} + +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: 1rem; + padding-right: 0 +} + +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(2rem); + padding-right: 0 +} + +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(3rem); + padding-right: 0 +} + +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(4rem); + padding-right: 0 +} + +@keyframes menu-sub-dropdown-animation-fade-in { + from { + opacity: 0 + } + + to { + opacity: 1 + } +} + +@keyframes menu-sub-dropdown-animation-move-up { + from { + margin-top: .75rem + } + + to { + margin-top: 0 + } +} + +@keyframes menu-sub-dropdown-animation-move-down { + from { + margin-bottom: .75rem + } + + to { + margin-bottom: 0 + } +} + +.menu-white .menu-item .menu-link { + color: #fff +} + +.menu-white .menu-item .menu-link .menu-title { + color: #fff +} + +.menu-white .menu-item .menu-link .menu-icon, +.menu-white .menu-item .menu-link .menu-icon .svg-icon, +.menu-white .menu-item .menu-link .menu-icon i { + color: #fff +} + +.menu-white .menu-item .menu-link .menu-bullet .bullet { + background-color: #fff +} + +.menu-white .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-white .menu-item .menu-link { + color: #fff +} + +.menu-title-white .menu-item .menu-link .menu-title { + color: #fff +} + +.menu-icon-white .menu-item .menu-link .menu-icon, +.menu-icon-white .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-white .menu-item .menu-link .menu-icon i { + color: #fff +} + +.menu-bullet-white .menu-item .menu-link .menu-bullet .bullet { + background-color: #fff +} + +.menu-arrow-white .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-primary .menu-item .menu-link { + color: #009ef7 +} + +.menu-primary .menu-item .menu-link .menu-title { + color: #009ef7 +} + +.menu-primary .menu-item .menu-link .menu-icon, +.menu-primary .menu-item .menu-link .menu-icon .svg-icon, +.menu-primary .menu-item .menu-link .menu-icon i { + color: #009ef7 +} + +.menu-primary .menu-item .menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-primary .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-primary .menu-item .menu-link { + color: #009ef7 +} + +.menu-title-primary .menu-item .menu-link .menu-title { + color: #009ef7 +} + +.menu-icon-primary .menu-item .menu-link .menu-icon, +.menu-icon-primary .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-primary .menu-item .menu-link .menu-icon i { + color: #009ef7 +} + +.menu-bullet-primary .menu-item .menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-arrow-primary .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-secondary .menu-item .menu-link { + color: #e4e6ef +} + +.menu-secondary .menu-item .menu-link .menu-title { + color: #e4e6ef +} + +.menu-secondary .menu-item .menu-link .menu-icon, +.menu-secondary .menu-item .menu-link .menu-icon .svg-icon, +.menu-secondary .menu-item .menu-link .menu-icon i { + color: #e4e6ef +} + +.menu-secondary .menu-item .menu-link .menu-bullet .bullet { + background-color: #e4e6ef +} + +.menu-secondary .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-secondary .menu-item .menu-link { + color: #e4e6ef +} + +.menu-title-secondary .menu-item .menu-link .menu-title { + color: #e4e6ef +} + +.menu-icon-secondary .menu-item .menu-link .menu-icon, +.menu-icon-secondary .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-secondary .menu-item .menu-link .menu-icon i { + color: #e4e6ef +} + +.menu-bullet-secondary .menu-item .menu-link .menu-bullet .bullet { + background-color: #e4e6ef +} + +.menu-arrow-secondary .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-light .menu-item .menu-link { + color: #f5f8fa +} + +.menu-light .menu-item .menu-link .menu-title { + color: #f5f8fa +} + +.menu-light .menu-item .menu-link .menu-icon, +.menu-light .menu-item .menu-link .menu-icon .svg-icon, +.menu-light .menu-item .menu-link .menu-icon i { + color: #f5f8fa +} + +.menu-light .menu-item .menu-link .menu-bullet .bullet { + background-color: #f5f8fa +} + +.menu-light .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-light .menu-item .menu-link { + color: #f5f8fa +} + +.menu-title-light .menu-item .menu-link .menu-title { + color: #f5f8fa +} + +.menu-icon-light .menu-item .menu-link .menu-icon, +.menu-icon-light .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-light .menu-item .menu-link .menu-icon i { + color: #f5f8fa +} + +.menu-bullet-light .menu-item .menu-link .menu-bullet .bullet { + background-color: #f5f8fa +} + +.menu-arrow-light .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-success .menu-item .menu-link { + color: #50cd89 +} + +.menu-success .menu-item .menu-link .menu-title { + color: #50cd89 +} + +.menu-success .menu-item .menu-link .menu-icon, +.menu-success .menu-item .menu-link .menu-icon .svg-icon, +.menu-success .menu-item .menu-link .menu-icon i { + color: #50cd89 +} + +.menu-success .menu-item .menu-link .menu-bullet .bullet { + background-color: #50cd89 +} + +.menu-success .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2350CD89'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2350CD89'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-success .menu-item .menu-link { + color: #50cd89 +} + +.menu-title-success .menu-item .menu-link .menu-title { + color: #50cd89 +} + +.menu-icon-success .menu-item .menu-link .menu-icon, +.menu-icon-success .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-success .menu-item .menu-link .menu-icon i { + color: #50cd89 +} + +.menu-bullet-success .menu-item .menu-link .menu-bullet .bullet { + background-color: #50cd89 +} + +.menu-arrow-success .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2350CD89'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2350CD89'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-info .menu-item .menu-link { + color: #7239ea +} + +.menu-info .menu-item .menu-link .menu-title { + color: #7239ea +} + +.menu-info .menu-item .menu-link .menu-icon, +.menu-info .menu-item .menu-link .menu-icon .svg-icon, +.menu-info .menu-item .menu-link .menu-icon i { + color: #7239ea +} + +.menu-info .menu-item .menu-link .menu-bullet .bullet { + background-color: #7239ea +} + +.menu-info .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237239EA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237239EA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-info .menu-item .menu-link { + color: #7239ea +} + +.menu-title-info .menu-item .menu-link .menu-title { + color: #7239ea +} + +.menu-icon-info .menu-item .menu-link .menu-icon, +.menu-icon-info .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-info .menu-item .menu-link .menu-icon i { + color: #7239ea +} + +.menu-bullet-info .menu-item .menu-link .menu-bullet .bullet { + background-color: #7239ea +} + +.menu-arrow-info .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237239EA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237239EA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-warning .menu-item .menu-link { + color: #ffc700 +} + +.menu-warning .menu-item .menu-link .menu-title { + color: #ffc700 +} + +.menu-warning .menu-item .menu-link .menu-icon, +.menu-warning .menu-item .menu-link .menu-icon .svg-icon, +.menu-warning .menu-item .menu-link .menu-icon i { + color: #ffc700 +} + +.menu-warning .menu-item .menu-link .menu-bullet .bullet { + background-color: #ffc700 +} + +.menu-warning .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFC700'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFC700'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-warning .menu-item .menu-link { + color: #ffc700 +} + +.menu-title-warning .menu-item .menu-link .menu-title { + color: #ffc700 +} + +.menu-icon-warning .menu-item .menu-link .menu-icon, +.menu-icon-warning .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-warning .menu-item .menu-link .menu-icon i { + color: #ffc700 +} + +.menu-bullet-warning .menu-item .menu-link .menu-bullet .bullet { + background-color: #ffc700 +} + +.menu-arrow-warning .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFC700'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFC700'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-danger .menu-item .menu-link { + color: #f1416c +} + +.menu-danger .menu-item .menu-link .menu-title { + color: #f1416c +} + +.menu-danger .menu-item .menu-link .menu-icon, +.menu-danger .menu-item .menu-link .menu-icon .svg-icon, +.menu-danger .menu-item .menu-link .menu-icon i { + color: #f1416c +} + +.menu-danger .menu-item .menu-link .menu-bullet .bullet { + background-color: #f1416c +} + +.menu-danger .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F1416C'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F1416C'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-danger .menu-item .menu-link { + color: #f1416c +} + +.menu-title-danger .menu-item .menu-link .menu-title { + color: #f1416c +} + +.menu-icon-danger .menu-item .menu-link .menu-icon, +.menu-icon-danger .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-danger .menu-item .menu-link .menu-icon i { + color: #f1416c +} + +.menu-bullet-danger .menu-item .menu-link .menu-bullet .bullet { + background-color: #f1416c +} + +.menu-arrow-danger .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F1416C'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F1416C'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-dark .menu-item .menu-link { + color: #181c32 +} + +.menu-dark .menu-item .menu-link .menu-title { + color: #181c32 +} + +.menu-dark .menu-item .menu-link .menu-icon, +.menu-dark .menu-item .menu-link .menu-icon .svg-icon, +.menu-dark .menu-item .menu-link .menu-icon i { + color: #181c32 +} + +.menu-dark .menu-item .menu-link .menu-bullet .bullet { + background-color: #181c32 +} + +.menu-dark .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-dark .menu-item .menu-link { + color: #181c32 +} + +.menu-title-dark .menu-item .menu-link .menu-title { + color: #181c32 +} + +.menu-icon-dark .menu-item .menu-link .menu-icon, +.menu-icon-dark .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-dark .menu-item .menu-link .menu-icon i { + color: #181c32 +} + +.menu-bullet-dark .menu-item .menu-link .menu-bullet .bullet { + background-color: #181c32 +} + +.menu-arrow-dark .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-muted .menu-item .menu-link { + color: #a1a5b7 +} + +.menu-muted .menu-item .menu-link .menu-title { + color: #a1a5b7 +} + +.menu-muted .menu-item .menu-link .menu-icon, +.menu-muted .menu-item .menu-link .menu-icon .svg-icon, +.menu-muted .menu-item .menu-link .menu-icon i { + color: #a1a5b7 +} + +.menu-muted .menu-item .menu-link .menu-bullet .bullet { + background-color: #a1a5b7 +} + +.menu-muted .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-muted .menu-item .menu-link { + color: #a1a5b7 +} + +.menu-title-muted .menu-item .menu-link .menu-title { + color: #a1a5b7 +} + +.menu-icon-muted .menu-item .menu-link .menu-icon, +.menu-icon-muted .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-muted .menu-item .menu-link .menu-icon i { + color: #a1a5b7 +} + +.menu-bullet-muted .menu-item .menu-link .menu-bullet .bullet { + background-color: #a1a5b7 +} + +.menu-arrow-muted .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-gray-100 .menu-item .menu-link { + color: #f5f8fa +} + +.menu-gray-100 .menu-item .menu-link .menu-title { + color: #f5f8fa +} + +.menu-gray-100 .menu-item .menu-link .menu-icon, +.menu-gray-100 .menu-item .menu-link .menu-icon .svg-icon, +.menu-gray-100 .menu-item .menu-link .menu-icon i { + color: #f5f8fa +} + +.menu-gray-100 .menu-item .menu-link .menu-bullet .bullet { + background-color: #f5f8fa +} + +.menu-gray-100 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-gray-100 .menu-item .menu-link { + color: #f5f8fa +} + +.menu-title-gray-100 .menu-item .menu-link .menu-title { + color: #f5f8fa +} + +.menu-icon-gray-100 .menu-item .menu-link .menu-icon, +.menu-icon-gray-100 .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-gray-100 .menu-item .menu-link .menu-icon i { + color: #f5f8fa +} + +.menu-bullet-gray-100 .menu-item .menu-link .menu-bullet .bullet { + background-color: #f5f8fa +} + +.menu-arrow-gray-100 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-gray-200 .menu-item .menu-link { + color: #eff2f5 +} + +.menu-gray-200 .menu-item .menu-link .menu-title { + color: #eff2f5 +} + +.menu-gray-200 .menu-item .menu-link .menu-icon, +.menu-gray-200 .menu-item .menu-link .menu-icon .svg-icon, +.menu-gray-200 .menu-item .menu-link .menu-icon i { + color: #eff2f5 +} + +.menu-gray-200 .menu-item .menu-link .menu-bullet .bullet { + background-color: #eff2f5 +} + +.menu-gray-200 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23EFF2F5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23EFF2F5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-gray-200 .menu-item .menu-link { + color: #eff2f5 +} + +.menu-title-gray-200 .menu-item .menu-link .menu-title { + color: #eff2f5 +} + +.menu-icon-gray-200 .menu-item .menu-link .menu-icon, +.menu-icon-gray-200 .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-gray-200 .menu-item .menu-link .menu-icon i { + color: #eff2f5 +} + +.menu-bullet-gray-200 .menu-item .menu-link .menu-bullet .bullet { + background-color: #eff2f5 +} + +.menu-arrow-gray-200 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23EFF2F5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23EFF2F5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-gray-300 .menu-item .menu-link { + color: #e4e6ef +} + +.menu-gray-300 .menu-item .menu-link .menu-title { + color: #e4e6ef +} + +.menu-gray-300 .menu-item .menu-link .menu-icon, +.menu-gray-300 .menu-item .menu-link .menu-icon .svg-icon, +.menu-gray-300 .menu-item .menu-link .menu-icon i { + color: #e4e6ef +} + +.menu-gray-300 .menu-item .menu-link .menu-bullet .bullet { + background-color: #e4e6ef +} + +.menu-gray-300 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-gray-300 .menu-item .menu-link { + color: #e4e6ef +} + +.menu-title-gray-300 .menu-item .menu-link .menu-title { + color: #e4e6ef +} + +.menu-icon-gray-300 .menu-item .menu-link .menu-icon, +.menu-icon-gray-300 .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-gray-300 .menu-item .menu-link .menu-icon i { + color: #e4e6ef +} + +.menu-bullet-gray-300 .menu-item .menu-link .menu-bullet .bullet { + background-color: #e4e6ef +} + +.menu-arrow-gray-300 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-gray-400 .menu-item .menu-link { + color: #b5b5c3 +} + +.menu-gray-400 .menu-item .menu-link .menu-title { + color: #b5b5c3 +} + +.menu-gray-400 .menu-item .menu-link .menu-icon, +.menu-gray-400 .menu-item .menu-link .menu-icon .svg-icon, +.menu-gray-400 .menu-item .menu-link .menu-icon i { + color: #b5b5c3 +} + +.menu-gray-400 .menu-item .menu-link .menu-bullet .bullet { + background-color: #b5b5c3 +} + +.menu-gray-400 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-gray-400 .menu-item .menu-link { + color: #b5b5c3 +} + +.menu-title-gray-400 .menu-item .menu-link .menu-title { + color: #b5b5c3 +} + +.menu-icon-gray-400 .menu-item .menu-link .menu-icon, +.menu-icon-gray-400 .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-gray-400 .menu-item .menu-link .menu-icon i { + color: #b5b5c3 +} + +.menu-bullet-gray-400 .menu-item .menu-link .menu-bullet .bullet { + background-color: #b5b5c3 +} + +.menu-arrow-gray-400 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-gray-500 .menu-item .menu-link { + color: #a1a5b7 +} + +.menu-gray-500 .menu-item .menu-link .menu-title { + color: #a1a5b7 +} + +.menu-gray-500 .menu-item .menu-link .menu-icon, +.menu-gray-500 .menu-item .menu-link .menu-icon .svg-icon, +.menu-gray-500 .menu-item .menu-link .menu-icon i { + color: #a1a5b7 +} + +.menu-gray-500 .menu-item .menu-link .menu-bullet .bullet { + background-color: #a1a5b7 +} + +.menu-gray-500 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-gray-500 .menu-item .menu-link { + color: #a1a5b7 +} + +.menu-title-gray-500 .menu-item .menu-link .menu-title { + color: #a1a5b7 +} + +.menu-icon-gray-500 .menu-item .menu-link .menu-icon, +.menu-icon-gray-500 .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-gray-500 .menu-item .menu-link .menu-icon i { + color: #a1a5b7 +} + +.menu-bullet-gray-500 .menu-item .menu-link .menu-bullet .bullet { + background-color: #a1a5b7 +} + +.menu-arrow-gray-500 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-gray-600 .menu-item .menu-link { + color: #7e8299 +} + +.menu-gray-600 .menu-item .menu-link .menu-title { + color: #7e8299 +} + +.menu-gray-600 .menu-item .menu-link .menu-icon, +.menu-gray-600 .menu-item .menu-link .menu-icon .svg-icon, +.menu-gray-600 .menu-item .menu-link .menu-icon i { + color: #7e8299 +} + +.menu-gray-600 .menu-item .menu-link .menu-bullet .bullet { + background-color: #7e8299 +} + +.menu-gray-600 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237E8299'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237E8299'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-gray-600 .menu-item .menu-link { + color: #7e8299 +} + +.menu-title-gray-600 .menu-item .menu-link .menu-title { + color: #7e8299 +} + +.menu-icon-gray-600 .menu-item .menu-link .menu-icon, +.menu-icon-gray-600 .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-gray-600 .menu-item .menu-link .menu-icon i { + color: #7e8299 +} + +.menu-bullet-gray-600 .menu-item .menu-link .menu-bullet .bullet { + background-color: #7e8299 +} + +.menu-arrow-gray-600 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237E8299'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237E8299'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-gray-700 .menu-item .menu-link { + color: #5e6278 +} + +.menu-gray-700 .menu-item .menu-link .menu-title { + color: #5e6278 +} + +.menu-gray-700 .menu-item .menu-link .menu-icon, +.menu-gray-700 .menu-item .menu-link .menu-icon .svg-icon, +.menu-gray-700 .menu-item .menu-link .menu-icon i { + color: #5e6278 +} + +.menu-gray-700 .menu-item .menu-link .menu-bullet .bullet { + background-color: #5e6278 +} + +.menu-gray-700 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-gray-700 .menu-item .menu-link { + color: #5e6278 +} + +.menu-title-gray-700 .menu-item .menu-link .menu-title { + color: #5e6278 +} + +.menu-icon-gray-700 .menu-item .menu-link .menu-icon, +.menu-icon-gray-700 .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-gray-700 .menu-item .menu-link .menu-icon i { + color: #5e6278 +} + +.menu-bullet-gray-700 .menu-item .menu-link .menu-bullet .bullet { + background-color: #5e6278 +} + +.menu-arrow-gray-700 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-gray-800 .menu-item .menu-link { + color: #3f4254 +} + +.menu-gray-800 .menu-item .menu-link .menu-title { + color: #3f4254 +} + +.menu-gray-800 .menu-item .menu-link .menu-icon, +.menu-gray-800 .menu-item .menu-link .menu-icon .svg-icon, +.menu-gray-800 .menu-item .menu-link .menu-icon i { + color: #3f4254 +} + +.menu-gray-800 .menu-item .menu-link .menu-bullet .bullet { + background-color: #3f4254 +} + +.menu-gray-800 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233F4254'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233F4254'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-gray-800 .menu-item .menu-link { + color: #3f4254 +} + +.menu-title-gray-800 .menu-item .menu-link .menu-title { + color: #3f4254 +} + +.menu-icon-gray-800 .menu-item .menu-link .menu-icon, +.menu-icon-gray-800 .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-gray-800 .menu-item .menu-link .menu-icon i { + color: #3f4254 +} + +.menu-bullet-gray-800 .menu-item .menu-link .menu-bullet .bullet { + background-color: #3f4254 +} + +.menu-arrow-gray-800 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233F4254'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233F4254'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-gray-900 .menu-item .menu-link { + color: #181c32 +} + +.menu-gray-900 .menu-item .menu-link .menu-title { + color: #181c32 +} + +.menu-gray-900 .menu-item .menu-link .menu-icon, +.menu-gray-900 .menu-item .menu-link .menu-icon .svg-icon, +.menu-gray-900 .menu-item .menu-link .menu-icon i { + color: #181c32 +} + +.menu-gray-900 .menu-item .menu-link .menu-bullet .bullet { + background-color: #181c32 +} + +.menu-gray-900 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-title-gray-900 .menu-item .menu-link { + color: #181c32 +} + +.menu-title-gray-900 .menu-item .menu-link .menu-title { + color: #181c32 +} + +.menu-icon-gray-900 .menu-item .menu-link .menu-icon, +.menu-icon-gray-900 .menu-item .menu-link .menu-icon .svg-icon, +.menu-icon-gray-900 .menu-item .menu-link .menu-icon i { + color: #181c32 +} + +.menu-bullet-gray-900 .menu-item .menu-link .menu-bullet .bullet { + background-color: #181c32 +} + +.menu-arrow-gray-900 .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-hover-bg .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-hover-bg .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease; + background-color: rgba(245, 248, 250, .8) +} + +.menu-here-bg .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: rgba(245, 248, 250, .8) +} + +.menu-show-bg .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: rgba(245, 248, 250, .8) +} + +.menu-active-bg .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease; + background-color: rgba(245, 248, 250, .8) +} + +.menu-state-bg .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-state-bg .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease; + background-color: rgba(245, 248, 250, .8) +} + +.menu-state-bg .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: rgba(245, 248, 250, .8) +} + +.menu-state-bg .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: rgba(245, 248, 250, .8) +} + +.menu-state-bg .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease; + background-color: rgba(245, 248, 250, .8) +} + +.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease; + background-color: #009ef7; + color: #fff +} + +.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title, +.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title { + color: #fff +} + +.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, +.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i { + color: #fff +} + +.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, +.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet { + background-color: #fff +} + +.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, +.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-show-bg-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: #009ef7; + color: #fff +} + +.menu-show-bg-primary .menu-item.show>.menu-link .menu-title { + color: #fff +} + +.menu-show-bg-primary .menu-item.show>.menu-link .menu-icon, +.menu-show-bg-primary .menu-item.show>.menu-link .menu-icon .svg-icon, +.menu-show-bg-primary .menu-item.show>.menu-link .menu-icon i { + color: #fff +} + +.menu-show-bg-primary .menu-item.show>.menu-link .menu-bullet .bullet { + background-color: #fff +} + +.menu-show-bg-primary .menu-item.show>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-here-bg-primary .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: #009ef7; + color: #fff +} + +.menu-here-bg-primary .menu-item.here>.menu-link .menu-title { + color: #fff +} + +.menu-here-bg-primary .menu-item.here>.menu-link .menu-icon, +.menu-here-bg-primary .menu-item.here>.menu-link .menu-icon .svg-icon, +.menu-here-bg-primary .menu-item.here>.menu-link .menu-icon i { + color: #fff +} + +.menu-here-bg-primary .menu-item.here>.menu-link .menu-bullet .bullet { + background-color: #fff +} + +.menu-here-bg-primary .menu-item.here>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-active-bg-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease; + background-color: #009ef7; + color: #fff +} + +.menu-active-bg-primary .menu-item .menu-link.active .menu-title { + color: #fff +} + +.menu-active-bg-primary .menu-item .menu-link.active .menu-icon, +.menu-active-bg-primary .menu-item .menu-link.active .menu-icon .svg-icon, +.menu-active-bg-primary .menu-item .menu-link.active .menu-icon i { + color: #fff +} + +.menu-active-bg-primary .menu-item .menu-link.active .menu-bullet .bullet { + background-color: #fff +} + +.menu-active-bg-primary .menu-item .menu-link.active .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease; + background-color: #009ef7; + color: #fff +} + +.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title, +.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title { + color: #fff +} + +.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, +.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i { + color: #fff +} + +.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, +.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet { + background-color: #fff +} + +.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, +.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-bg-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: #009ef7; + color: #fff +} + +.menu-state-bg-primary .menu-item.show>.menu-link .menu-title { + color: #fff +} + +.menu-state-bg-primary .menu-item.show>.menu-link .menu-icon, +.menu-state-bg-primary .menu-item.show>.menu-link .menu-icon .svg-icon, +.menu-state-bg-primary .menu-item.show>.menu-link .menu-icon i { + color: #fff +} + +.menu-state-bg-primary .menu-item.show>.menu-link .menu-bullet .bullet { + background-color: #fff +} + +.menu-state-bg-primary .menu-item.show>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-bg-primary .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: #009ef7; + color: #fff +} + +.menu-state-bg-primary .menu-item.here>.menu-link .menu-title { + color: #fff +} + +.menu-state-bg-primary .menu-item.here>.menu-link .menu-icon, +.menu-state-bg-primary .menu-item.here>.menu-link .menu-icon .svg-icon, +.menu-state-bg-primary .menu-item.here>.menu-link .menu-icon i { + color: #fff +} + +.menu-state-bg-primary .menu-item.here>.menu-link .menu-bullet .bullet { + background-color: #fff +} + +.menu-state-bg-primary .menu-item.here>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-bg-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease; + background-color: #009ef7; + color: #fff +} + +.menu-state-bg-primary .menu-item .menu-link.active .menu-title { + color: #fff +} + +.menu-state-bg-primary .menu-item .menu-link.active .menu-icon, +.menu-state-bg-primary .menu-item .menu-link.active .menu-icon .svg-icon, +.menu-state-bg-primary .menu-item .menu-link.active .menu-icon i { + color: #fff +} + +.menu-state-bg-primary .menu-item .menu-link.active .menu-bullet .bullet { + background-color: #fff +} + +.menu-state-bg-primary .menu-item .menu-link.active .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-show-bg-light-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: #f1faff; + color: #009ef7 +} + +.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-title { + color: #009ef7 +} + +.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-icon, +.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-icon .svg-icon, +.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-icon i { + color: #009ef7 +} + +.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-here-bg-light-primary .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: #f1faff; + color: #009ef7 +} + +.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-title { + color: #009ef7 +} + +.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-icon, +.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-icon .svg-icon, +.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-icon i { + color: #009ef7 +} + +.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease; + background-color: #f1faff; + color: #009ef7 +} + +.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title, +.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title { + color: #009ef7 +} + +.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, +.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i { + color: #009ef7 +} + +.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, +.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, +.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-active-bg-light-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease; + background-color: #f1faff; + color: #009ef7 +} + +.menu-active-bg-light-primary .menu-item .menu-link.active .menu-title { + color: #009ef7 +} + +.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon, +.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon .svg-icon, +.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon i { + color: #009ef7 +} + +.menu-active-bg-light-primary .menu-item .menu-link.active .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-active-bg-light-primary .menu-item .menu-link.active .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-bg-light-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: #f1faff; + color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-title { + color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-icon, +.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-icon .svg-icon, +.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-icon i { + color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-bg-light-primary .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: #f1faff; + color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-title { + color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-icon, +.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-icon .svg-icon, +.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-icon i { + color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease; + background-color: #f1faff; + color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title, +.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title { + color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, +.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i { + color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, +.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, +.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-bg-light-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease; + background-color: #f1faff; + color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item .menu-link.active .menu-title { + color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon, +.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon .svg-icon, +.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon i { + color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item .menu-link.active .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-state-bg-light-primary .menu-item .menu-link.active .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title, +.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title { + color: #009ef7 +} + +.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, +.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i { + color: #009ef7 +} + +.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, +.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, +.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-show-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-show-primary .menu-item.show>.menu-link .menu-title { + color: #009ef7 +} + +.menu-show-primary .menu-item.show>.menu-link .menu-icon, +.menu-show-primary .menu-item.show>.menu-link .menu-icon .svg-icon, +.menu-show-primary .menu-item.show>.menu-link .menu-icon i { + color: #009ef7 +} + +.menu-show-primary .menu-item.show>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-show-primary .menu-item.show>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-here-primary .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-here-primary .menu-item.here>.menu-link .menu-title { + color: #009ef7 +} + +.menu-here-primary .menu-item.here>.menu-link .menu-icon, +.menu-here-primary .menu-item.here>.menu-link .menu-icon .svg-icon, +.menu-here-primary .menu-item.here>.menu-link .menu-icon i { + color: #009ef7 +} + +.menu-here-primary .menu-item.here>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-here-primary .menu-item.here>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-active-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-active-primary .menu-item .menu-link.active .menu-title { + color: #009ef7 +} + +.menu-active-primary .menu-item .menu-link.active .menu-icon, +.menu-active-primary .menu-item .menu-link.active .menu-icon .svg-icon, +.menu-active-primary .menu-item .menu-link.active .menu-icon i { + color: #009ef7 +} + +.menu-active-primary .menu-item .menu-link.active .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-active-primary .menu-item .menu-link.active .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title, +.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title { + color: #009ef7 +} + +.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, +.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i { + color: #009ef7 +} + +.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, +.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, +.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-state-primary .menu-item.show>.menu-link .menu-title { + color: #009ef7 +} + +.menu-state-primary .menu-item.show>.menu-link .menu-icon, +.menu-state-primary .menu-item.show>.menu-link .menu-icon .svg-icon, +.menu-state-primary .menu-item.show>.menu-link .menu-icon i { + color: #009ef7 +} + +.menu-state-primary .menu-item.show>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-state-primary .menu-item.show>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-primary .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-state-primary .menu-item.here>.menu-link .menu-title { + color: #009ef7 +} + +.menu-state-primary .menu-item.here>.menu-link .menu-icon, +.menu-state-primary .menu-item.here>.menu-link .menu-icon .svg-icon, +.menu-state-primary .menu-item.here>.menu-link .menu-icon i { + color: #009ef7 +} + +.menu-state-primary .menu-item.here>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-state-primary .menu-item.here>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-state-primary .menu-item .menu-link.active .menu-title { + color: #009ef7 +} + +.menu-state-primary .menu-item .menu-link.active .menu-icon, +.menu-state-primary .menu-item .menu-link.active .menu-icon .svg-icon, +.menu-state-primary .menu-item .menu-link.active .menu-icon i { + color: #009ef7 +} + +.menu-state-primary .menu-item .menu-link.active .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-state-primary .menu-item .menu-link.active .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-hover-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-hover-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-hover-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title, +.menu-hover-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title { + color: #009ef7 +} + +.menu-here-title-primary .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-here-title-primary .menu-item.here>.menu-link .menu-title { + color: #009ef7 +} + +.menu-show-title-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-show-title-primary .menu-item.show>.menu-link .menu-title { + color: #009ef7 +} + +.menu-active-title-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-active-title-primary .menu-item .menu-link.active .menu-title { + color: #009ef7 +} + +.menu-state-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-state-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-state-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title, +.menu-state-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title { + color: #009ef7 +} + +.menu-state-title-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-state-title-primary .menu-item.show>.menu-link .menu-title { + color: #009ef7 +} + +.menu-state-title-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease; + color: #009ef7 +} + +.menu-state-title-primary .menu-item .menu-link.active .menu-title { + color: #009ef7 +} + +.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease +} + +.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, +.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i { + color: #009ef7 +} + +.menu-here-icon-primary .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease +} + +.menu-here-icon-primary .menu-item.here>.menu-link .menu-icon, +.menu-here-icon-primary .menu-item.here>.menu-link .menu-icon .svg-icon, +.menu-here-icon-primary .menu-item.here>.menu-link .menu-icon i { + color: #009ef7 +} + +.menu-show-icon-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease +} + +.menu-show-icon-primary .menu-item.show>.menu-link .menu-icon, +.menu-show-icon-primary .menu-item.show>.menu-link .menu-icon .svg-icon, +.menu-show-icon-primary .menu-item.show>.menu-link .menu-icon i { + color: #009ef7 +} + +.menu-active-icon-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease +} + +.menu-active-icon-primary .menu-item .menu-link.active .menu-icon, +.menu-active-icon-primary .menu-item .menu-link.active .menu-icon .svg-icon, +.menu-active-icon-primary .menu-item .menu-link.active .menu-icon i { + color: #009ef7 +} + +.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease +} + +.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, +.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon, +.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i { + color: #009ef7 +} + +.menu-state-icon-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease +} + +.menu-state-icon-primary .menu-item.show>.menu-link .menu-icon, +.menu-state-icon-primary .menu-item.show>.menu-link .menu-icon .svg-icon, +.menu-state-icon-primary .menu-item.show>.menu-link .menu-icon i { + color: #009ef7 +} + +.menu-state-icon-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease +} + +.menu-state-icon-primary .menu-item .menu-link.active .menu-icon, +.menu-state-icon-primary .menu-item .menu-link.active .menu-icon .svg-icon, +.menu-state-icon-primary .menu-item .menu-link.active .menu-icon i { + color: #009ef7 +} + +.menu-hover-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-hover-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease +} + +.menu-hover-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, +.menu-hover-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-show-bullet-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease +} + +.menu-show-bullet-primary .menu-item.show>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-here-bullet-primary .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease +} + +.menu-here-bullet-primary .menu-item.here>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-active-bullet-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease +} + +.menu-active-bullet-primary .menu-item .menu-link.active .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-state-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-state-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease +} + +.menu-state-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, +.menu-state-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-state-bullet-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease +} + +.menu-state-bullet-primary .menu-item.show>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-state-bullet-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease +} + +.menu-state-bullet-primary .menu-item .menu-link.active .menu-bullet .bullet { + background-color: #009ef7 +} + +.menu-hover-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-hover-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease +} + +.menu-hover-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, +.menu-hover-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-here-arrow-primary .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease +} + +.menu-here-arrow-primary .menu-item.here>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-show-arrow-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease +} + +.menu-show-arrow-primary .menu-item.show>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-active-arrow-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease +} + +.menu-active-arrow-primary .menu-item .menu-link.active .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.menu-state-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease +} + +.menu-state-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, +.menu-state-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-arrow-primary .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease +} + +.menu-state-arrow-primary .menu-item.show>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.menu-state-arrow-primary .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease +} + +.menu-state-arrow-primary .menu-item .menu-link.active .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.anchor { + display: flex; + align-items: center +} + +.anchor a { + position: relative; + display: none; + align-items: center; + justify-content: flex-start; + height: 1em; + width: 1.25em; + margin-left: -1.25em; + font-weight: 500; + font-size: .8em; + color: #a1a5b7; + transition: all .2s ease +} + +.anchor a:before { + content: "#" +} + +.anchor:hover a { + display: flex +} + +.anchor:hover a:hover { + color: #009ef7; + transition: all .2s ease +} + +.card { + border: 0; + box-shadow: 0 0 20px 0 rgba(76, 87, 125, .02) +} + +.card .card-header { + display: flex; + justify-content: space-between; + align-items: stretch; + flex-wrap: wrap; + min-height: 70px; + padding: 0 2.25rem; + background-color: transparent; + border-bottom: 1px solid #eff2f5 +} + +.card .card-header .card-title { + display: flex; + align-items: center; + margin: .5rem; + margin-left: 0 +} + +.card .card-header .card-title.flex-column { + align-items: flex-start; + justify-content: center +} + +.card .card-header .card-title .card-icon { + margin-right: .75rem; + line-height: 0 +} + +.card .card-header .card-title .card-icon i { + font-size: 1.25rem; + color: #7e8299; + line-height: 0 +} + +.card .card-header .card-title .card-icon i:after, +.card .card-header .card-title .card-icon i:before { + line-height: 0 +} + +.card .card-header .card-title .card-icon .svg-icon { + color: #7e8299 +} + +.card .card-header .card-title .card-icon .svg-icon svg { + height: 24px; + width: 24px +} + +.card .card-header .card-title, +.card .card-header .card-title .card-label { + font-weight: 500; + font-size: 1.275rem; + color: #181c32 +} + +.card .card-header .card-title .card-label { + margin: 0 .75rem 0 0; + flex-wrap: wrap +} + +.card .card-header .card-title .small, +.card .card-header .card-title small { + color: #a1a5b7; + font-size: 1rem +} + +.card .card-header .card-title .h1, +.card .card-header .card-title .h2, +.card .card-header .card-title .h3, +.card .card-header .card-title .h4, +.card .card-header .card-title .h5, +.card .card-header .card-title .h6, +.card .card-header .card-title h1, +.card .card-header .card-title h2, +.card .card-header .card-title h3, +.card .card-header .card-title h4, +.card .card-header .card-title h5, +.card .card-header .card-title h6 { + margin-bottom: 0 +} + +.card .card-header .card-toolbar { + display: flex; + align-items: center; + margin: .5rem 0; + flex-wrap: wrap +} + +.card .card-body { + padding: 2rem 2.25rem +} + +.card .card-footer { + padding: 2rem 2.25rem; + background-color: transparent; + border-top: 1px solid #eff2f5 +} + +.card .card-scroll { + position: relative; + overflow: auto +} + +.card.card-px-0 .card-body, +.card.card-px-0 .card-footer, +.card.card-px-0 .card-header { + padding-left: 0; + padding-right: 0 +} + +.card.card-py-0 .card-body, +.card.card-py-0 .card-footer, +.card.card-py-0 .card-header { + padding-top: 0; + padding-bottom: 0 +} + +.card.card-p-0 .card-body, +.card.card-p-0 .card-footer, +.card.card-p-0 .card-header { + padding: 0 +} + +.card.card-dashed { + box-shadow: none; + border: 1px dashed #e4e6ef +} + +.card.card-dashed>.card-header { + border-bottom: 1px dashed #e4e6ef +} + +.card.card-dashed>.card-footer { + border-top: 1px dashed #e4e6ef +} + +.card.card-bordered { + box-shadow: none; + border: 1px solid #eff2f5 +} + +.card.card-flush>.card-header { + border-bottom: 0 +} + +.card.card-flush>.card-footer { + border-top: 0 +} + +.card.card-shadow { + box-shadow: 0 0 20px 0 rgba(76, 87, 125, .02); + border: 0 +} + +.card.card-stretch { + height: calc(100% - var(--bs-gutter-y)) +} + +.card.card-stretch-75 { + height: calc(75% - var(--bs-gutter-y)) +} + +.card.card-stretch-50 { + height: calc(50% - var(--bs-gutter-y)) +} + +.card.card-stretch-33 { + height: calc(33.333% - var(--bs-gutter-y)) +} + +.card.card-stretch-25 { + height: calc(25% - var(--bs-gutter-y)) +} + +.card .card-header-stretch { + padding-top: 0 !important; + padding-bottom: 0 !important; + align-items: stretch +} + +.card .card-header-stretch .card-toolbar { + margin: 0; + align-items: stretch +} + +@media (min-width:576px) { + .card.card-sm-stretch { + height: calc(100% - var(--bs-gutter-y)) + } + + .card.card-sm-stretch-75 { + height: calc(75% - var(--bs-gutter-y)) + } + + .card.card-sm-stretch-50 { + height: calc(50% - var(--bs-gutter-y)) + } + + .card.card-sm-stretch-33 { + height: calc(33.333% - var(--bs-gutter-y)) + } + + .card.card-sm-stretch-25 { + height: calc(25% - var(--bs-gutter-y)) + } + + .card .card-header-sm-stretch { + padding-top: 0 !important; + padding-bottom: 0 !important; + align-items: stretch + } + + .card .card-header-sm-stretch .card-toolbar { + margin: 0; + align-items: stretch + } +} + +@media (min-width:768px) { + .card.card-md-stretch { + height: calc(100% - var(--bs-gutter-y)) + } + + .card.card-md-stretch-75 { + height: calc(75% - var(--bs-gutter-y)) + } + + .card.card-md-stretch-50 { + height: calc(50% - var(--bs-gutter-y)) + } + + .card.card-md-stretch-33 { + height: calc(33.333% - var(--bs-gutter-y)) + } + + .card.card-md-stretch-25 { + height: calc(25% - var(--bs-gutter-y)) + } + + .card .card-header-md-stretch { + padding-top: 0 !important; + padding-bottom: 0 !important; + align-items: stretch + } + + .card .card-header-md-stretch .card-toolbar { + margin: 0; + align-items: stretch + } +} + +@media (min-width:992px) { + .card.card-lg-stretch { + height: calc(100% - var(--bs-gutter-y)) + } + + .card.card-lg-stretch-75 { + height: calc(75% - var(--bs-gutter-y)) + } + + .card.card-lg-stretch-50 { + height: calc(50% - var(--bs-gutter-y)) + } + + .card.card-lg-stretch-33 { + height: calc(33.333% - var(--bs-gutter-y)) + } + + .card.card-lg-stretch-25 { + height: calc(25% - var(--bs-gutter-y)) + } + + .card .card-header-lg-stretch { + padding-top: 0 !important; + padding-bottom: 0 !important; + align-items: stretch + } + + .card .card-header-lg-stretch .card-toolbar { + margin: 0; + align-items: stretch + } +} + +@media (min-width:1200px) { + .card.card-xl-stretch { + height: calc(100% - var(--bs-gutter-y)) + } + + .card.card-xl-stretch-75 { + height: calc(75% - var(--bs-gutter-y)) + } + + .card.card-xl-stretch-50 { + height: calc(50% - var(--bs-gutter-y)) + } + + .card.card-xl-stretch-33 { + height: calc(33.333% - var(--bs-gutter-y)) + } + + .card.card-xl-stretch-25 { + height: calc(25% - var(--bs-gutter-y)) + } + + .card .card-header-xl-stretch { + padding-top: 0 !important; + padding-bottom: 0 !important; + align-items: stretch + } + + .card .card-header-xl-stretch .card-toolbar { + margin: 0; + align-items: stretch + } +} + +@media (min-width:1400px) { + .card.card-xxl-stretch { + height: calc(100% - var(--bs-gutter-y)) + } + + .card.card-xxl-stretch-75 { + height: calc(75% - var(--bs-gutter-y)) + } + + .card.card-xxl-stretch-50 { + height: calc(50% - var(--bs-gutter-y)) + } + + .card.card-xxl-stretch-33 { + height: calc(33.333% - var(--bs-gutter-y)) + } + + .card.card-xxl-stretch-25 { + height: calc(25% - var(--bs-gutter-y)) + } + + .card .card-header-xxl-stretch { + padding-top: 0 !important; + padding-bottom: 0 !important; + align-items: stretch + } + + .card .card-header-xxl-stretch .card-toolbar { + margin: 0; + align-items: stretch + } +} + +.card-p { + padding: 2rem 2.25rem !important +} + +.card-px { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important +} + +.card-shadow { + box-shadow: 0 0 20px 0 rgba(76, 87, 125, .02) +} + +.card-py { + padding-top: 2rem !important; + padding-bottom: 2rem !important +} + +.card-rounded { + border-radius: .625rem +} + +.card-rounded-start { + border-top-left-radius: .625rem; + border-bottom-left-radius: .625rem +} + +.card-rounded-end { + border-top-right-radius: .625rem; + border-bottom-right-radius: .625rem +} + +.card-rounded-top { + border-top-left-radius: .625rem; + border-top-right-radius: .625rem +} + +.card-rounded-bottom { + border-bottom-left-radius: .625rem; + border-bottom-right-radius: .625rem +} + +@media (max-width:767.98px) { + .card>.card-header:not(.flex-nowrap) { + padding-top: .5rem; + padding-bottom: .5rem + } +} + +.breadcrumb { + display: flex; + align-items: center; + background-color: transparent; + padding: 0; + margin: 0 +} + +.breadcrumb .breadcrumb-item { + display: flex; + align-items: center; + padding-left: 0; + padding-right: .5rem +} + +.breadcrumb .breadcrumb-item:last-child { + padding-right: 0 +} + +.breadcrumb .breadcrumb-item:after { + content: "/"; + padding-left: .5rem +} + +.breadcrumb .breadcrumb-item:before { + display: none +} + +.breadcrumb .breadcrumb-item:last-child:after { + display: none +} + +.breadcrumb-line .breadcrumb-item:after { + content: "-" +} + +.breadcrumb-dot .breadcrumb-item:after { + content: "•" +} + +.breadcrumb-separatorless .breadcrumb-item:after { + display: none +} + +.btn { + outline: 0 !important +} + +.btn:not(.btn-shadow):not(.shadow):not(.shadow-sm):not(.shadow-lg) { + box-shadow: none !important +} + +.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon) { + border: 0; + padding: calc(.5rem + 1px) calc(1.5rem + 1px) +} + +.btn-group-lg>.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon), +.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon).btn-lg { + padding: calc(.825rem + 1px) calc(1.75rem + 1px) +} + +.btn-group-sm>.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon), +.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon).btn-sm { + padding: calc(.55rem + 1px) calc(1.25rem + 1px) +} + +.btn.btn-link { + border: 0; + border-radius: 0; + padding-left: 0 !important; + padding-right: 0 !important; + text-decoration: none; + font-weight: 500 +} + +.btn.btn-outline-dashed { + border: 1px dashed #e4e6ef +} + +.btn.btn-outline-default { + border: 1px solid #e4e6ef +} + +.btn.btn-flush { + appearance: none; + box-shadow: none; + border-radius: 0; + border: none; + cursor: pointer; + background-color: transparent; + outline: 0 !important; + margin: 0; + padding: 0 +} + +.btn.btn-flex { + display: inline-flex; + align-items: center +} + +.btn.btn-trim-start { + justify-content: flex-start !important; + padding-left: 0 !important +} + +.btn.btn-trim-end { + justify-content: flex-end !important; + padding-right: 0 !important +} + +.btn i { + display: inline-flex; + font-size: 1rem; + padding-right: .35rem; + vertical-align: middle; + line-height: 0 +} + +.btn .svg-icon { + flex-shrink: 0; + line-height: 0; + margin-right: .5rem +} + +.btn.btn-icon { + display: inline-flex; + align-items: center; + justify-content: center; + padding: 0; + height: calc(1.5em + 1.5rem + 2px); + width: calc(1.5em + 1.5rem + 2px) +} + +.btn.btn-icon:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush) { + border: 0 +} + +.btn-group-sm>.btn.btn-icon, +.btn.btn-icon.btn-sm { + height: calc(1.5em + 1.1rem + 2px); + width: calc(1.5em + 1.1rem + 2px) +} + +.btn-group-lg>.btn.btn-icon, +.btn.btn-icon.btn-lg { + height: calc(1.5em + 1.65rem + 2px); + width: calc(1.5em + 1.65rem + 2px) +} + +.btn.btn-icon.btn-circle { + border-radius: 50% +} + +.btn.btn-icon .svg-icon, +.btn.btn-icon i { + padding: 0; + margin: 0; + line-height: 1 +} + +.btn.btn-hover-rise { + transition: transform .3s ease +} + +.btn.btn-hover-rise:hover { + transform: translateY(-10%); + transition: transform .3s ease +} + +.btn.btn-hover-scale { + transition: transform .3s ease +} + +.btn.btn-hover-scale:hover { + transform: scale(1.1); + transition: transform .3s ease +} + +.btn.btn-hover-rotate-end { + transition: transform .3s ease +} + +.btn.btn-hover-rotate-end:hover { + transform: rotate(4deg); + transition: transform .3s ease +} + +.btn.btn-hover-rotate-start { + transition: transform .3s ease +} + +.btn.btn-hover-rotate-start:hover { + transform: rotate(-4deg); + transition: transform .3s ease +} + +.btn.btn-white { + color: #7e8299; + border-color: #fff; + background-color: #fff +} + +.btn.btn-white .svg-icon, +.btn.btn-white i { + color: #7e8299 +} + +.btn.btn-white.dropdown-toggle:after { + color: #7e8299 +} + +.btn-check:active+.btn.btn-white, +.btn-check:checked+.btn.btn-white, +.btn.btn-white.active, +.btn.btn-white.show, +.btn.btn-white:active:not(.btn-active), +.btn.btn-white:focus:not(.btn-active), +.btn.btn-white:hover:not(.btn-active), +.show>.btn.btn-white { + color: #7e8299; + border-color: #f5f8fa; + background-color: #f5f8fa !important +} + +.btn-check:active+.btn.btn-white .svg-icon, +.btn-check:active+.btn.btn-white i, +.btn-check:checked+.btn.btn-white .svg-icon, +.btn-check:checked+.btn.btn-white i, +.btn.btn-white.active .svg-icon, +.btn.btn-white.active i, +.btn.btn-white.show .svg-icon, +.btn.btn-white.show i, +.btn.btn-white:active:not(.btn-active) .svg-icon, +.btn.btn-white:active:not(.btn-active) i, +.btn.btn-white:focus:not(.btn-active) .svg-icon, +.btn.btn-white:focus:not(.btn-active) i, +.btn.btn-white:hover:not(.btn-active) .svg-icon, +.btn.btn-white:hover:not(.btn-active) i, +.show>.btn.btn-white .svg-icon, +.show>.btn.btn-white i { + color: #7e8299 +} + +.btn-check:active+.btn.btn-white.dropdown-toggle:after, +.btn-check:checked+.btn.btn-white.dropdown-toggle:after, +.btn.btn-white.active.dropdown-toggle:after, +.btn.btn-white.show.dropdown-toggle:after, +.btn.btn-white:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-white:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-white:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-white.dropdown-toggle:after { + color: #7e8299 +} + +.btn.btn-bg-white { + border-color: #fff; + background-color: #fff +} + +.btn-check:active+.btn.btn-active-white, +.btn-check:checked+.btn.btn-active-white, +.btn.btn-active-white.active, +.btn.btn-active-white.show, +.btn.btn-active-white:active:not(.btn-active), +.btn.btn-active-white:focus:not(.btn-active), +.btn.btn-active-white:hover:not(.btn-active), +.show>.btn.btn-active-white { + color: #7e8299; + border-color: #fff; + background-color: #fff !important +} + +.btn-check:active+.btn.btn-active-white .svg-icon, +.btn-check:active+.btn.btn-active-white i, +.btn-check:checked+.btn.btn-active-white .svg-icon, +.btn-check:checked+.btn.btn-active-white i, +.btn.btn-active-white.active .svg-icon, +.btn.btn-active-white.active i, +.btn.btn-active-white.show .svg-icon, +.btn.btn-active-white.show i, +.btn.btn-active-white:active:not(.btn-active) .svg-icon, +.btn.btn-active-white:active:not(.btn-active) i, +.btn.btn-active-white:focus:not(.btn-active) .svg-icon, +.btn.btn-active-white:focus:not(.btn-active) i, +.btn.btn-active-white:hover:not(.btn-active) .svg-icon, +.btn.btn-active-white:hover:not(.btn-active) i, +.show>.btn.btn-active-white .svg-icon, +.show>.btn.btn-active-white i { + color: #7e8299 +} + +.btn-check:active+.btn.btn-active-white.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-white.dropdown-toggle:after, +.btn.btn-active-white.active.dropdown-toggle:after, +.btn.btn-active-white.show.dropdown-toggle:after, +.btn.btn-active-white:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-white:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-white:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-white.dropdown-toggle:after { + color: #7e8299 +} + +.btn.btn-light { + color: #7e8299; + border-color: #f5f8fa; + background-color: #f5f8fa +} + +.btn.btn-light .svg-icon, +.btn.btn-light i { + color: #7e8299 +} + +.btn.btn-light.dropdown-toggle:after { + color: #7e8299 +} + +.btn-check:active+.btn.btn-light, +.btn-check:checked+.btn.btn-light, +.btn.btn-light.active, +.btn.btn-light.show, +.btn.btn-light:active:not(.btn-active), +.btn.btn-light:focus:not(.btn-active), +.btn.btn-light:hover:not(.btn-active), +.show>.btn.btn-light { + color: #7e8299; + border-color: #eff2f5; + background-color: #eff2f5 !important +} + +.btn-check:active+.btn.btn-light .svg-icon, +.btn-check:active+.btn.btn-light i, +.btn-check:checked+.btn.btn-light .svg-icon, +.btn-check:checked+.btn.btn-light i, +.btn.btn-light.active .svg-icon, +.btn.btn-light.active i, +.btn.btn-light.show .svg-icon, +.btn.btn-light.show i, +.btn.btn-light:active:not(.btn-active) .svg-icon, +.btn.btn-light:active:not(.btn-active) i, +.btn.btn-light:focus:not(.btn-active) .svg-icon, +.btn.btn-light:focus:not(.btn-active) i, +.btn.btn-light:hover:not(.btn-active) .svg-icon, +.btn.btn-light:hover:not(.btn-active) i, +.show>.btn.btn-light .svg-icon, +.show>.btn.btn-light i { + color: #7e8299 +} + +.btn-check:active+.btn.btn-light.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light.dropdown-toggle:after, +.btn.btn-light.active.dropdown-toggle:after, +.btn.btn-light.show.dropdown-toggle:after, +.btn.btn-light:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light.dropdown-toggle:after { + color: #7e8299 +} + +.btn.btn-bg-light { + border-color: #f5f8fa; + background-color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-light, +.btn-check:checked+.btn.btn-active-light, +.btn.btn-active-light.active, +.btn.btn-active-light.show, +.btn.btn-active-light:active:not(.btn-active), +.btn.btn-active-light:focus:not(.btn-active), +.btn.btn-active-light:hover:not(.btn-active), +.show>.btn.btn-active-light { + color: #7e8299; + border-color: #f5f8fa; + background-color: #f5f8fa !important +} + +.btn-check:active+.btn.btn-active-light .svg-icon, +.btn-check:active+.btn.btn-active-light i, +.btn-check:checked+.btn.btn-active-light .svg-icon, +.btn-check:checked+.btn.btn-active-light i, +.btn.btn-active-light.active .svg-icon, +.btn.btn-active-light.active i, +.btn.btn-active-light.show .svg-icon, +.btn.btn-active-light.show i, +.btn.btn-active-light:active:not(.btn-active) .svg-icon, +.btn.btn-active-light:active:not(.btn-active) i, +.btn.btn-active-light:focus:not(.btn-active) .svg-icon, +.btn.btn-active-light:focus:not(.btn-active) i, +.btn.btn-active-light:hover:not(.btn-active) .svg-icon, +.btn.btn-active-light:hover:not(.btn-active) i, +.show>.btn.btn-active-light .svg-icon, +.show>.btn.btn-active-light i { + color: #7e8299 +} + +.btn-check:active+.btn.btn-active-light.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-light.dropdown-toggle:after, +.btn.btn-active-light.active.dropdown-toggle:after, +.btn.btn-active-light.show.dropdown-toggle:after, +.btn.btn-active-light:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-light.dropdown-toggle:after { + color: #7e8299 +} + +.btn.btn-primary { + color: #fff; + border-color: #009ef7; + background-color: #009ef7 +} + +.btn.btn-primary .svg-icon, +.btn.btn-primary i { + color: #fff +} + +.btn.btn-primary.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-primary, +.btn-check:checked+.btn.btn-primary, +.btn.btn-primary.active, +.btn.btn-primary.show, +.btn.btn-primary:active:not(.btn-active), +.btn.btn-primary:focus:not(.btn-active), +.btn.btn-primary:hover:not(.btn-active), +.show>.btn.btn-primary { + color: #fff; + border-color: #0095e8; + background-color: #0095e8 !important +} + +.btn-check:active+.btn.btn-primary .svg-icon, +.btn-check:active+.btn.btn-primary i, +.btn-check:checked+.btn.btn-primary .svg-icon, +.btn-check:checked+.btn.btn-primary i, +.btn.btn-primary.active .svg-icon, +.btn.btn-primary.active i, +.btn.btn-primary.show .svg-icon, +.btn.btn-primary.show i, +.btn.btn-primary:active:not(.btn-active) .svg-icon, +.btn.btn-primary:active:not(.btn-active) i, +.btn.btn-primary:focus:not(.btn-active) .svg-icon, +.btn.btn-primary:focus:not(.btn-active) i, +.btn.btn-primary:hover:not(.btn-active) .svg-icon, +.btn.btn-primary:hover:not(.btn-active) i, +.show>.btn.btn-primary .svg-icon, +.show>.btn.btn-primary i { + color: #fff +} + +.btn-check:active+.btn.btn-primary.dropdown-toggle:after, +.btn-check:checked+.btn.btn-primary.dropdown-toggle:after, +.btn.btn-primary.active.dropdown-toggle:after, +.btn.btn-primary.show.dropdown-toggle:after, +.btn.btn-primary:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-primary:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-primary:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-primary.dropdown-toggle:after { + color: #fff +} + +.btn.btn-light-primary { + color: #009ef7; + border-color: #f1faff; + background-color: #f1faff +} + +.btn.btn-light-primary .svg-icon, +.btn.btn-light-primary i { + color: #009ef7 +} + +.btn.btn-light-primary.dropdown-toggle:after { + color: #009ef7 +} + +.btn-check:active+.btn.btn-light-primary, +.btn-check:checked+.btn.btn-light-primary, +.btn.btn-light-primary.active, +.btn.btn-light-primary.show, +.btn.btn-light-primary:active:not(.btn-active), +.btn.btn-light-primary:focus:not(.btn-active), +.btn.btn-light-primary:hover:not(.btn-active), +.show>.btn.btn-light-primary { + color: #fff; + border-color: #009ef7; + background-color: #009ef7 !important +} + +.btn-check:active+.btn.btn-light-primary .svg-icon, +.btn-check:active+.btn.btn-light-primary i, +.btn-check:checked+.btn.btn-light-primary .svg-icon, +.btn-check:checked+.btn.btn-light-primary i, +.btn.btn-light-primary.active .svg-icon, +.btn.btn-light-primary.active i, +.btn.btn-light-primary.show .svg-icon, +.btn.btn-light-primary.show i, +.btn.btn-light-primary:active:not(.btn-active) .svg-icon, +.btn.btn-light-primary:active:not(.btn-active) i, +.btn.btn-light-primary:focus:not(.btn-active) .svg-icon, +.btn.btn-light-primary:focus:not(.btn-active) i, +.btn.btn-light-primary:hover:not(.btn-active) .svg-icon, +.btn.btn-light-primary:hover:not(.btn-active) i, +.show>.btn.btn-light-primary .svg-icon, +.show>.btn.btn-light-primary i { + color: #fff +} + +.btn-check:active+.btn.btn-light-primary.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light-primary.dropdown-toggle:after, +.btn.btn-light-primary.active.dropdown-toggle:after, +.btn.btn-light-primary.show.dropdown-toggle:after, +.btn.btn-light-primary:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-primary:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-primary:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light-primary.dropdown-toggle:after { + color: #fff +} + +.btn.btn-bg-primary { + border-color: #009ef7; + background-color: #009ef7 +} + +.btn-check:active+.btn.btn-active-primary, +.btn-check:checked+.btn.btn-active-primary, +.btn.btn-active-primary.active, +.btn.btn-active-primary.show, +.btn.btn-active-primary:active:not(.btn-active), +.btn.btn-active-primary:focus:not(.btn-active), +.btn.btn-active-primary:hover:not(.btn-active), +.show>.btn.btn-active-primary { + color: #fff; + border-color: #009ef7; + background-color: #009ef7 !important +} + +.btn-check:active+.btn.btn-active-primary .svg-icon, +.btn-check:active+.btn.btn-active-primary i, +.btn-check:checked+.btn.btn-active-primary .svg-icon, +.btn-check:checked+.btn.btn-active-primary i, +.btn.btn-active-primary.active .svg-icon, +.btn.btn-active-primary.active i, +.btn.btn-active-primary.show .svg-icon, +.btn.btn-active-primary.show i, +.btn.btn-active-primary:active:not(.btn-active) .svg-icon, +.btn.btn-active-primary:active:not(.btn-active) i, +.btn.btn-active-primary:focus:not(.btn-active) .svg-icon, +.btn.btn-active-primary:focus:not(.btn-active) i, +.btn.btn-active-primary:hover:not(.btn-active) .svg-icon, +.btn.btn-active-primary:hover:not(.btn-active) i, +.show>.btn.btn-active-primary .svg-icon, +.show>.btn.btn-active-primary i { + color: #fff +} + +.btn-check:active+.btn.btn-active-primary.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-primary.dropdown-toggle:after, +.btn.btn-active-primary.active.dropdown-toggle:after, +.btn.btn-active-primary.show.dropdown-toggle:after, +.btn.btn-active-primary:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-primary:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-primary:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-primary.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-active-light-primary, +.btn-check:checked+.btn.btn-active-light-primary, +.btn.btn-active-light-primary.active, +.btn.btn-active-light-primary.show, +.btn.btn-active-light-primary:active:not(.btn-active), +.btn.btn-active-light-primary:focus:not(.btn-active), +.btn.btn-active-light-primary:hover:not(.btn-active), +.show>.btn.btn-active-light-primary { + color: #009ef7; + border-color: #f1faff; + background-color: #f1faff !important +} + +.btn-check:active+.btn.btn-active-light-primary .svg-icon, +.btn-check:active+.btn.btn-active-light-primary i, +.btn-check:checked+.btn.btn-active-light-primary .svg-icon, +.btn-check:checked+.btn.btn-active-light-primary i, +.btn.btn-active-light-primary.active .svg-icon, +.btn.btn-active-light-primary.active i, +.btn.btn-active-light-primary.show .svg-icon, +.btn.btn-active-light-primary.show i, +.btn.btn-active-light-primary:active:not(.btn-active) .svg-icon, +.btn.btn-active-light-primary:active:not(.btn-active) i, +.btn.btn-active-light-primary:focus:not(.btn-active) .svg-icon, +.btn.btn-active-light-primary:focus:not(.btn-active) i, +.btn.btn-active-light-primary:hover:not(.btn-active) .svg-icon, +.btn.btn-active-light-primary:hover:not(.btn-active) i, +.show>.btn.btn-active-light-primary .svg-icon, +.show>.btn.btn-active-light-primary i { + color: #009ef7 +} + +.btn-check:active+.btn.btn-active-light-primary.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-light-primary.dropdown-toggle:after, +.btn.btn-active-light-primary.active.dropdown-toggle:after, +.btn.btn-active-light-primary.show.dropdown-toggle:after, +.btn.btn-active-light-primary:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light-primary:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light-primary:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-light-primary.dropdown-toggle:after { + color: #009ef7 +} + +.btn.btn-active-light-primary.btn-outline:not(.btn-outline-default) { + border-color: #009ef7 !important +} + +.btn.btn-secondary { + color: #3f4254; + border-color: #e4e6ef; + background-color: #e4e6ef +} + +.btn.btn-secondary .svg-icon, +.btn.btn-secondary i { + color: #3f4254 +} + +.btn.btn-secondary.dropdown-toggle:after { + color: #3f4254 +} + +.btn-check:active+.btn.btn-secondary, +.btn-check:checked+.btn.btn-secondary, +.btn.btn-secondary.active, +.btn.btn-secondary.show, +.btn.btn-secondary:active:not(.btn-active), +.btn.btn-secondary:focus:not(.btn-active), +.btn.btn-secondary:hover:not(.btn-active), +.show>.btn.btn-secondary { + color: #3f4254; + border-color: #b5b5c3; + background-color: #b5b5c3 !important +} + +.btn-check:active+.btn.btn-secondary .svg-icon, +.btn-check:active+.btn.btn-secondary i, +.btn-check:checked+.btn.btn-secondary .svg-icon, +.btn-check:checked+.btn.btn-secondary i, +.btn.btn-secondary.active .svg-icon, +.btn.btn-secondary.active i, +.btn.btn-secondary.show .svg-icon, +.btn.btn-secondary.show i, +.btn.btn-secondary:active:not(.btn-active) .svg-icon, +.btn.btn-secondary:active:not(.btn-active) i, +.btn.btn-secondary:focus:not(.btn-active) .svg-icon, +.btn.btn-secondary:focus:not(.btn-active) i, +.btn.btn-secondary:hover:not(.btn-active) .svg-icon, +.btn.btn-secondary:hover:not(.btn-active) i, +.show>.btn.btn-secondary .svg-icon, +.show>.btn.btn-secondary i { + color: #3f4254 +} + +.btn-check:active+.btn.btn-secondary.dropdown-toggle:after, +.btn-check:checked+.btn.btn-secondary.dropdown-toggle:after, +.btn.btn-secondary.active.dropdown-toggle:after, +.btn.btn-secondary.show.dropdown-toggle:after, +.btn.btn-secondary:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-secondary:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-secondary:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-secondary.dropdown-toggle:after { + color: #3f4254 +} + +.btn.btn-bg-secondary { + border-color: #e4e6ef; + background-color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-secondary, +.btn-check:checked+.btn.btn-active-secondary, +.btn.btn-active-secondary.active, +.btn.btn-active-secondary.show, +.btn.btn-active-secondary:active:not(.btn-active), +.btn.btn-active-secondary:focus:not(.btn-active), +.btn.btn-active-secondary:hover:not(.btn-active), +.show>.btn.btn-active-secondary { + color: #3f4254; + border-color: #e4e6ef; + background-color: #e4e6ef !important +} + +.btn-check:active+.btn.btn-active-secondary .svg-icon, +.btn-check:active+.btn.btn-active-secondary i, +.btn-check:checked+.btn.btn-active-secondary .svg-icon, +.btn-check:checked+.btn.btn-active-secondary i, +.btn.btn-active-secondary.active .svg-icon, +.btn.btn-active-secondary.active i, +.btn.btn-active-secondary.show .svg-icon, +.btn.btn-active-secondary.show i, +.btn.btn-active-secondary:active:not(.btn-active) .svg-icon, +.btn.btn-active-secondary:active:not(.btn-active) i, +.btn.btn-active-secondary:focus:not(.btn-active) .svg-icon, +.btn.btn-active-secondary:focus:not(.btn-active) i, +.btn.btn-active-secondary:hover:not(.btn-active) .svg-icon, +.btn.btn-active-secondary:hover:not(.btn-active) i, +.show>.btn.btn-active-secondary .svg-icon, +.show>.btn.btn-active-secondary i { + color: #3f4254 +} + +.btn-check:active+.btn.btn-active-secondary.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-secondary.dropdown-toggle:after, +.btn.btn-active-secondary.active.dropdown-toggle:after, +.btn.btn-active-secondary.show.dropdown-toggle:after, +.btn.btn-active-secondary:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-secondary:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-secondary:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-secondary.dropdown-toggle:after { + color: #3f4254 +} + +.btn.btn-success { + color: #fff; + border-color: #50cd89; + background-color: #50cd89 +} + +.btn.btn-success .svg-icon, +.btn.btn-success i { + color: #fff +} + +.btn.btn-success.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-success, +.btn-check:checked+.btn.btn-success, +.btn.btn-success.active, +.btn.btn-success.show, +.btn.btn-success:active:not(.btn-active), +.btn.btn-success:focus:not(.btn-active), +.btn.btn-success:hover:not(.btn-active), +.show>.btn.btn-success { + color: #fff; + border-color: #47be7d; + background-color: #47be7d !important +} + +.btn-check:active+.btn.btn-success .svg-icon, +.btn-check:active+.btn.btn-success i, +.btn-check:checked+.btn.btn-success .svg-icon, +.btn-check:checked+.btn.btn-success i, +.btn.btn-success.active .svg-icon, +.btn.btn-success.active i, +.btn.btn-success.show .svg-icon, +.btn.btn-success.show i, +.btn.btn-success:active:not(.btn-active) .svg-icon, +.btn.btn-success:active:not(.btn-active) i, +.btn.btn-success:focus:not(.btn-active) .svg-icon, +.btn.btn-success:focus:not(.btn-active) i, +.btn.btn-success:hover:not(.btn-active) .svg-icon, +.btn.btn-success:hover:not(.btn-active) i, +.show>.btn.btn-success .svg-icon, +.show>.btn.btn-success i { + color: #fff +} + +.btn-check:active+.btn.btn-success.dropdown-toggle:after, +.btn-check:checked+.btn.btn-success.dropdown-toggle:after, +.btn.btn-success.active.dropdown-toggle:after, +.btn.btn-success.show.dropdown-toggle:after, +.btn.btn-success:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-success:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-success:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-success.dropdown-toggle:after { + color: #fff +} + +.btn.btn-light-success { + color: #50cd89; + border-color: #e8fff3; + background-color: #e8fff3 +} + +.btn.btn-light-success .svg-icon, +.btn.btn-light-success i { + color: #50cd89 +} + +.btn.btn-light-success.dropdown-toggle:after { + color: #50cd89 +} + +.btn-check:active+.btn.btn-light-success, +.btn-check:checked+.btn.btn-light-success, +.btn.btn-light-success.active, +.btn.btn-light-success.show, +.btn.btn-light-success:active:not(.btn-active), +.btn.btn-light-success:focus:not(.btn-active), +.btn.btn-light-success:hover:not(.btn-active), +.show>.btn.btn-light-success { + color: #fff; + border-color: #50cd89; + background-color: #50cd89 !important +} + +.btn-check:active+.btn.btn-light-success .svg-icon, +.btn-check:active+.btn.btn-light-success i, +.btn-check:checked+.btn.btn-light-success .svg-icon, +.btn-check:checked+.btn.btn-light-success i, +.btn.btn-light-success.active .svg-icon, +.btn.btn-light-success.active i, +.btn.btn-light-success.show .svg-icon, +.btn.btn-light-success.show i, +.btn.btn-light-success:active:not(.btn-active) .svg-icon, +.btn.btn-light-success:active:not(.btn-active) i, +.btn.btn-light-success:focus:not(.btn-active) .svg-icon, +.btn.btn-light-success:focus:not(.btn-active) i, +.btn.btn-light-success:hover:not(.btn-active) .svg-icon, +.btn.btn-light-success:hover:not(.btn-active) i, +.show>.btn.btn-light-success .svg-icon, +.show>.btn.btn-light-success i { + color: #fff +} + +.btn-check:active+.btn.btn-light-success.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light-success.dropdown-toggle:after, +.btn.btn-light-success.active.dropdown-toggle:after, +.btn.btn-light-success.show.dropdown-toggle:after, +.btn.btn-light-success:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-success:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-success:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light-success.dropdown-toggle:after { + color: #fff +} + +.btn.btn-bg-success { + border-color: #50cd89; + background-color: #50cd89 +} + +.btn-check:active+.btn.btn-active-success, +.btn-check:checked+.btn.btn-active-success, +.btn.btn-active-success.active, +.btn.btn-active-success.show, +.btn.btn-active-success:active:not(.btn-active), +.btn.btn-active-success:focus:not(.btn-active), +.btn.btn-active-success:hover:not(.btn-active), +.show>.btn.btn-active-success { + color: #fff; + border-color: #50cd89; + background-color: #50cd89 !important +} + +.btn-check:active+.btn.btn-active-success .svg-icon, +.btn-check:active+.btn.btn-active-success i, +.btn-check:checked+.btn.btn-active-success .svg-icon, +.btn-check:checked+.btn.btn-active-success i, +.btn.btn-active-success.active .svg-icon, +.btn.btn-active-success.active i, +.btn.btn-active-success.show .svg-icon, +.btn.btn-active-success.show i, +.btn.btn-active-success:active:not(.btn-active) .svg-icon, +.btn.btn-active-success:active:not(.btn-active) i, +.btn.btn-active-success:focus:not(.btn-active) .svg-icon, +.btn.btn-active-success:focus:not(.btn-active) i, +.btn.btn-active-success:hover:not(.btn-active) .svg-icon, +.btn.btn-active-success:hover:not(.btn-active) i, +.show>.btn.btn-active-success .svg-icon, +.show>.btn.btn-active-success i { + color: #fff +} + +.btn-check:active+.btn.btn-active-success.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-success.dropdown-toggle:after, +.btn.btn-active-success.active.dropdown-toggle:after, +.btn.btn-active-success.show.dropdown-toggle:after, +.btn.btn-active-success:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-success:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-success:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-success.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-active-light-success, +.btn-check:checked+.btn.btn-active-light-success, +.btn.btn-active-light-success.active, +.btn.btn-active-light-success.show, +.btn.btn-active-light-success:active:not(.btn-active), +.btn.btn-active-light-success:focus:not(.btn-active), +.btn.btn-active-light-success:hover:not(.btn-active), +.show>.btn.btn-active-light-success { + color: #50cd89; + border-color: #e8fff3; + background-color: #e8fff3 !important +} + +.btn-check:active+.btn.btn-active-light-success .svg-icon, +.btn-check:active+.btn.btn-active-light-success i, +.btn-check:checked+.btn.btn-active-light-success .svg-icon, +.btn-check:checked+.btn.btn-active-light-success i, +.btn.btn-active-light-success.active .svg-icon, +.btn.btn-active-light-success.active i, +.btn.btn-active-light-success.show .svg-icon, +.btn.btn-active-light-success.show i, +.btn.btn-active-light-success:active:not(.btn-active) .svg-icon, +.btn.btn-active-light-success:active:not(.btn-active) i, +.btn.btn-active-light-success:focus:not(.btn-active) .svg-icon, +.btn.btn-active-light-success:focus:not(.btn-active) i, +.btn.btn-active-light-success:hover:not(.btn-active) .svg-icon, +.btn.btn-active-light-success:hover:not(.btn-active) i, +.show>.btn.btn-active-light-success .svg-icon, +.show>.btn.btn-active-light-success i { + color: #50cd89 +} + +.btn-check:active+.btn.btn-active-light-success.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-light-success.dropdown-toggle:after, +.btn.btn-active-light-success.active.dropdown-toggle:after, +.btn.btn-active-light-success.show.dropdown-toggle:after, +.btn.btn-active-light-success:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light-success:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light-success:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-light-success.dropdown-toggle:after { + color: #50cd89 +} + +.btn.btn-active-light-success.btn-outline:not(.btn-outline-default) { + border-color: #50cd89 !important +} + +.btn.btn-info { + color: #fff; + border-color: #7239ea; + background-color: #7239ea +} + +.btn.btn-info .svg-icon, +.btn.btn-info i { + color: #fff +} + +.btn.btn-info.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-info, +.btn-check:checked+.btn.btn-info, +.btn.btn-info.active, +.btn.btn-info.show, +.btn.btn-info:active:not(.btn-active), +.btn.btn-info:focus:not(.btn-active), +.btn.btn-info:hover:not(.btn-active), +.show>.btn.btn-info { + color: #fff; + border-color: #5014d0; + background-color: #5014d0 !important +} + +.btn-check:active+.btn.btn-info .svg-icon, +.btn-check:active+.btn.btn-info i, +.btn-check:checked+.btn.btn-info .svg-icon, +.btn-check:checked+.btn.btn-info i, +.btn.btn-info.active .svg-icon, +.btn.btn-info.active i, +.btn.btn-info.show .svg-icon, +.btn.btn-info.show i, +.btn.btn-info:active:not(.btn-active) .svg-icon, +.btn.btn-info:active:not(.btn-active) i, +.btn.btn-info:focus:not(.btn-active) .svg-icon, +.btn.btn-info:focus:not(.btn-active) i, +.btn.btn-info:hover:not(.btn-active) .svg-icon, +.btn.btn-info:hover:not(.btn-active) i, +.show>.btn.btn-info .svg-icon, +.show>.btn.btn-info i { + color: #fff +} + +.btn-check:active+.btn.btn-info.dropdown-toggle:after, +.btn-check:checked+.btn.btn-info.dropdown-toggle:after, +.btn.btn-info.active.dropdown-toggle:after, +.btn.btn-info.show.dropdown-toggle:after, +.btn.btn-info:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-info:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-info:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-info.dropdown-toggle:after { + color: #fff +} + +.btn.btn-light-info { + color: #7239ea; + border-color: #f8f5ff; + background-color: #f8f5ff +} + +.btn.btn-light-info .svg-icon, +.btn.btn-light-info i { + color: #7239ea +} + +.btn.btn-light-info.dropdown-toggle:after { + color: #7239ea +} + +.btn-check:active+.btn.btn-light-info, +.btn-check:checked+.btn.btn-light-info, +.btn.btn-light-info.active, +.btn.btn-light-info.show, +.btn.btn-light-info:active:not(.btn-active), +.btn.btn-light-info:focus:not(.btn-active), +.btn.btn-light-info:hover:not(.btn-active), +.show>.btn.btn-light-info { + color: #fff; + border-color: #7239ea; + background-color: #7239ea !important +} + +.btn-check:active+.btn.btn-light-info .svg-icon, +.btn-check:active+.btn.btn-light-info i, +.btn-check:checked+.btn.btn-light-info .svg-icon, +.btn-check:checked+.btn.btn-light-info i, +.btn.btn-light-info.active .svg-icon, +.btn.btn-light-info.active i, +.btn.btn-light-info.show .svg-icon, +.btn.btn-light-info.show i, +.btn.btn-light-info:active:not(.btn-active) .svg-icon, +.btn.btn-light-info:active:not(.btn-active) i, +.btn.btn-light-info:focus:not(.btn-active) .svg-icon, +.btn.btn-light-info:focus:not(.btn-active) i, +.btn.btn-light-info:hover:not(.btn-active) .svg-icon, +.btn.btn-light-info:hover:not(.btn-active) i, +.show>.btn.btn-light-info .svg-icon, +.show>.btn.btn-light-info i { + color: #fff +} + +.btn-check:active+.btn.btn-light-info.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light-info.dropdown-toggle:after, +.btn.btn-light-info.active.dropdown-toggle:after, +.btn.btn-light-info.show.dropdown-toggle:after, +.btn.btn-light-info:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-info:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-info:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light-info.dropdown-toggle:after { + color: #fff +} + +.btn.btn-bg-info { + border-color: #7239ea; + background-color: #7239ea +} + +.btn-check:active+.btn.btn-active-info, +.btn-check:checked+.btn.btn-active-info, +.btn.btn-active-info.active, +.btn.btn-active-info.show, +.btn.btn-active-info:active:not(.btn-active), +.btn.btn-active-info:focus:not(.btn-active), +.btn.btn-active-info:hover:not(.btn-active), +.show>.btn.btn-active-info { + color: #fff; + border-color: #7239ea; + background-color: #7239ea !important +} + +.btn-check:active+.btn.btn-active-info .svg-icon, +.btn-check:active+.btn.btn-active-info i, +.btn-check:checked+.btn.btn-active-info .svg-icon, +.btn-check:checked+.btn.btn-active-info i, +.btn.btn-active-info.active .svg-icon, +.btn.btn-active-info.active i, +.btn.btn-active-info.show .svg-icon, +.btn.btn-active-info.show i, +.btn.btn-active-info:active:not(.btn-active) .svg-icon, +.btn.btn-active-info:active:not(.btn-active) i, +.btn.btn-active-info:focus:not(.btn-active) .svg-icon, +.btn.btn-active-info:focus:not(.btn-active) i, +.btn.btn-active-info:hover:not(.btn-active) .svg-icon, +.btn.btn-active-info:hover:not(.btn-active) i, +.show>.btn.btn-active-info .svg-icon, +.show>.btn.btn-active-info i { + color: #fff +} + +.btn-check:active+.btn.btn-active-info.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-info.dropdown-toggle:after, +.btn.btn-active-info.active.dropdown-toggle:after, +.btn.btn-active-info.show.dropdown-toggle:after, +.btn.btn-active-info:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-info:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-info:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-info.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-active-light-info, +.btn-check:checked+.btn.btn-active-light-info, +.btn.btn-active-light-info.active, +.btn.btn-active-light-info.show, +.btn.btn-active-light-info:active:not(.btn-active), +.btn.btn-active-light-info:focus:not(.btn-active), +.btn.btn-active-light-info:hover:not(.btn-active), +.show>.btn.btn-active-light-info { + color: #7239ea; + border-color: #f8f5ff; + background-color: #f8f5ff !important +} + +.btn-check:active+.btn.btn-active-light-info .svg-icon, +.btn-check:active+.btn.btn-active-light-info i, +.btn-check:checked+.btn.btn-active-light-info .svg-icon, +.btn-check:checked+.btn.btn-active-light-info i, +.btn.btn-active-light-info.active .svg-icon, +.btn.btn-active-light-info.active i, +.btn.btn-active-light-info.show .svg-icon, +.btn.btn-active-light-info.show i, +.btn.btn-active-light-info:active:not(.btn-active) .svg-icon, +.btn.btn-active-light-info:active:not(.btn-active) i, +.btn.btn-active-light-info:focus:not(.btn-active) .svg-icon, +.btn.btn-active-light-info:focus:not(.btn-active) i, +.btn.btn-active-light-info:hover:not(.btn-active) .svg-icon, +.btn.btn-active-light-info:hover:not(.btn-active) i, +.show>.btn.btn-active-light-info .svg-icon, +.show>.btn.btn-active-light-info i { + color: #7239ea +} + +.btn-check:active+.btn.btn-active-light-info.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-light-info.dropdown-toggle:after, +.btn.btn-active-light-info.active.dropdown-toggle:after, +.btn.btn-active-light-info.show.dropdown-toggle:after, +.btn.btn-active-light-info:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light-info:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light-info:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-light-info.dropdown-toggle:after { + color: #7239ea +} + +.btn.btn-active-light-info.btn-outline:not(.btn-outline-default) { + border-color: #7239ea !important +} + +.btn.btn-warning { + color: #fff; + border-color: #ffc700; + background-color: #ffc700 +} + +.btn.btn-warning .svg-icon, +.btn.btn-warning i { + color: #fff +} + +.btn.btn-warning.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-warning, +.btn-check:checked+.btn.btn-warning, +.btn.btn-warning.active, +.btn.btn-warning.show, +.btn.btn-warning:active:not(.btn-active), +.btn.btn-warning:focus:not(.btn-active), +.btn.btn-warning:hover:not(.btn-active), +.show>.btn.btn-warning { + color: #fff; + border-color: #f1bc00; + background-color: #f1bc00 !important +} + +.btn-check:active+.btn.btn-warning .svg-icon, +.btn-check:active+.btn.btn-warning i, +.btn-check:checked+.btn.btn-warning .svg-icon, +.btn-check:checked+.btn.btn-warning i, +.btn.btn-warning.active .svg-icon, +.btn.btn-warning.active i, +.btn.btn-warning.show .svg-icon, +.btn.btn-warning.show i, +.btn.btn-warning:active:not(.btn-active) .svg-icon, +.btn.btn-warning:active:not(.btn-active) i, +.btn.btn-warning:focus:not(.btn-active) .svg-icon, +.btn.btn-warning:focus:not(.btn-active) i, +.btn.btn-warning:hover:not(.btn-active) .svg-icon, +.btn.btn-warning:hover:not(.btn-active) i, +.show>.btn.btn-warning .svg-icon, +.show>.btn.btn-warning i { + color: #fff +} + +.btn-check:active+.btn.btn-warning.dropdown-toggle:after, +.btn-check:checked+.btn.btn-warning.dropdown-toggle:after, +.btn.btn-warning.active.dropdown-toggle:after, +.btn.btn-warning.show.dropdown-toggle:after, +.btn.btn-warning:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-warning:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-warning:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-warning.dropdown-toggle:after { + color: #fff +} + +.btn.btn-light-warning { + color: #ffc700; + border-color: #fff8dd; + background-color: #fff8dd +} + +.btn.btn-light-warning .svg-icon, +.btn.btn-light-warning i { + color: #ffc700 +} + +.btn.btn-light-warning.dropdown-toggle:after { + color: #ffc700 +} + +.btn-check:active+.btn.btn-light-warning, +.btn-check:checked+.btn.btn-light-warning, +.btn.btn-light-warning.active, +.btn.btn-light-warning.show, +.btn.btn-light-warning:active:not(.btn-active), +.btn.btn-light-warning:focus:not(.btn-active), +.btn.btn-light-warning:hover:not(.btn-active), +.show>.btn.btn-light-warning { + color: #fff; + border-color: #ffc700; + background-color: #ffc700 !important +} + +.btn-check:active+.btn.btn-light-warning .svg-icon, +.btn-check:active+.btn.btn-light-warning i, +.btn-check:checked+.btn.btn-light-warning .svg-icon, +.btn-check:checked+.btn.btn-light-warning i, +.btn.btn-light-warning.active .svg-icon, +.btn.btn-light-warning.active i, +.btn.btn-light-warning.show .svg-icon, +.btn.btn-light-warning.show i, +.btn.btn-light-warning:active:not(.btn-active) .svg-icon, +.btn.btn-light-warning:active:not(.btn-active) i, +.btn.btn-light-warning:focus:not(.btn-active) .svg-icon, +.btn.btn-light-warning:focus:not(.btn-active) i, +.btn.btn-light-warning:hover:not(.btn-active) .svg-icon, +.btn.btn-light-warning:hover:not(.btn-active) i, +.show>.btn.btn-light-warning .svg-icon, +.show>.btn.btn-light-warning i { + color: #fff +} + +.btn-check:active+.btn.btn-light-warning.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light-warning.dropdown-toggle:after, +.btn.btn-light-warning.active.dropdown-toggle:after, +.btn.btn-light-warning.show.dropdown-toggle:after, +.btn.btn-light-warning:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-warning:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-warning:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light-warning.dropdown-toggle:after { + color: #fff +} + +.btn.btn-bg-warning { + border-color: #ffc700; + background-color: #ffc700 +} + +.btn-check:active+.btn.btn-active-warning, +.btn-check:checked+.btn.btn-active-warning, +.btn.btn-active-warning.active, +.btn.btn-active-warning.show, +.btn.btn-active-warning:active:not(.btn-active), +.btn.btn-active-warning:focus:not(.btn-active), +.btn.btn-active-warning:hover:not(.btn-active), +.show>.btn.btn-active-warning { + color: #fff; + border-color: #ffc700; + background-color: #ffc700 !important +} + +.btn-check:active+.btn.btn-active-warning .svg-icon, +.btn-check:active+.btn.btn-active-warning i, +.btn-check:checked+.btn.btn-active-warning .svg-icon, +.btn-check:checked+.btn.btn-active-warning i, +.btn.btn-active-warning.active .svg-icon, +.btn.btn-active-warning.active i, +.btn.btn-active-warning.show .svg-icon, +.btn.btn-active-warning.show i, +.btn.btn-active-warning:active:not(.btn-active) .svg-icon, +.btn.btn-active-warning:active:not(.btn-active) i, +.btn.btn-active-warning:focus:not(.btn-active) .svg-icon, +.btn.btn-active-warning:focus:not(.btn-active) i, +.btn.btn-active-warning:hover:not(.btn-active) .svg-icon, +.btn.btn-active-warning:hover:not(.btn-active) i, +.show>.btn.btn-active-warning .svg-icon, +.show>.btn.btn-active-warning i { + color: #fff +} + +.btn-check:active+.btn.btn-active-warning.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-warning.dropdown-toggle:after, +.btn.btn-active-warning.active.dropdown-toggle:after, +.btn.btn-active-warning.show.dropdown-toggle:after, +.btn.btn-active-warning:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-warning:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-warning:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-warning.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-active-light-warning, +.btn-check:checked+.btn.btn-active-light-warning, +.btn.btn-active-light-warning.active, +.btn.btn-active-light-warning.show, +.btn.btn-active-light-warning:active:not(.btn-active), +.btn.btn-active-light-warning:focus:not(.btn-active), +.btn.btn-active-light-warning:hover:not(.btn-active), +.show>.btn.btn-active-light-warning { + color: #ffc700; + border-color: #fff8dd; + background-color: #fff8dd !important +} + +.btn-check:active+.btn.btn-active-light-warning .svg-icon, +.btn-check:active+.btn.btn-active-light-warning i, +.btn-check:checked+.btn.btn-active-light-warning .svg-icon, +.btn-check:checked+.btn.btn-active-light-warning i, +.btn.btn-active-light-warning.active .svg-icon, +.btn.btn-active-light-warning.active i, +.btn.btn-active-light-warning.show .svg-icon, +.btn.btn-active-light-warning.show i, +.btn.btn-active-light-warning:active:not(.btn-active) .svg-icon, +.btn.btn-active-light-warning:active:not(.btn-active) i, +.btn.btn-active-light-warning:focus:not(.btn-active) .svg-icon, +.btn.btn-active-light-warning:focus:not(.btn-active) i, +.btn.btn-active-light-warning:hover:not(.btn-active) .svg-icon, +.btn.btn-active-light-warning:hover:not(.btn-active) i, +.show>.btn.btn-active-light-warning .svg-icon, +.show>.btn.btn-active-light-warning i { + color: #ffc700 +} + +.btn-check:active+.btn.btn-active-light-warning.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-light-warning.dropdown-toggle:after, +.btn.btn-active-light-warning.active.dropdown-toggle:after, +.btn.btn-active-light-warning.show.dropdown-toggle:after, +.btn.btn-active-light-warning:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light-warning:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light-warning:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-light-warning.dropdown-toggle:after { + color: #ffc700 +} + +.btn.btn-active-light-warning.btn-outline:not(.btn-outline-default) { + border-color: #ffc700 !important +} + +.btn.btn-danger { + color: #fff; + border-color: #f1416c; + background-color: #f1416c +} + +.btn.btn-danger .svg-icon, +.btn.btn-danger i { + color: #fff +} + +.btn.btn-danger.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-danger, +.btn-check:checked+.btn.btn-danger, +.btn.btn-danger.active, +.btn.btn-danger.show, +.btn.btn-danger:active:not(.btn-active), +.btn.btn-danger:focus:not(.btn-active), +.btn.btn-danger:hover:not(.btn-active), +.show>.btn.btn-danger { + color: #fff; + border-color: #d9214e; + background-color: #d9214e !important +} + +.btn-check:active+.btn.btn-danger .svg-icon, +.btn-check:active+.btn.btn-danger i, +.btn-check:checked+.btn.btn-danger .svg-icon, +.btn-check:checked+.btn.btn-danger i, +.btn.btn-danger.active .svg-icon, +.btn.btn-danger.active i, +.btn.btn-danger.show .svg-icon, +.btn.btn-danger.show i, +.btn.btn-danger:active:not(.btn-active) .svg-icon, +.btn.btn-danger:active:not(.btn-active) i, +.btn.btn-danger:focus:not(.btn-active) .svg-icon, +.btn.btn-danger:focus:not(.btn-active) i, +.btn.btn-danger:hover:not(.btn-active) .svg-icon, +.btn.btn-danger:hover:not(.btn-active) i, +.show>.btn.btn-danger .svg-icon, +.show>.btn.btn-danger i { + color: #fff +} + +.btn-check:active+.btn.btn-danger.dropdown-toggle:after, +.btn-check:checked+.btn.btn-danger.dropdown-toggle:after, +.btn.btn-danger.active.dropdown-toggle:after, +.btn.btn-danger.show.dropdown-toggle:after, +.btn.btn-danger:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-danger:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-danger:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-danger.dropdown-toggle:after { + color: #fff +} + +.btn.btn-light-danger { + color: #f1416c; + border-color: #fff5f8; + background-color: #fff5f8 +} + +.btn.btn-light-danger .svg-icon, +.btn.btn-light-danger i { + color: #f1416c +} + +.btn.btn-light-danger.dropdown-toggle:after { + color: #f1416c +} + +.btn-check:active+.btn.btn-light-danger, +.btn-check:checked+.btn.btn-light-danger, +.btn.btn-light-danger.active, +.btn.btn-light-danger.show, +.btn.btn-light-danger:active:not(.btn-active), +.btn.btn-light-danger:focus:not(.btn-active), +.btn.btn-light-danger:hover:not(.btn-active), +.show>.btn.btn-light-danger { + color: #fff; + border-color: #f1416c; + background-color: #f1416c !important +} + +.btn-check:active+.btn.btn-light-danger .svg-icon, +.btn-check:active+.btn.btn-light-danger i, +.btn-check:checked+.btn.btn-light-danger .svg-icon, +.btn-check:checked+.btn.btn-light-danger i, +.btn.btn-light-danger.active .svg-icon, +.btn.btn-light-danger.active i, +.btn.btn-light-danger.show .svg-icon, +.btn.btn-light-danger.show i, +.btn.btn-light-danger:active:not(.btn-active) .svg-icon, +.btn.btn-light-danger:active:not(.btn-active) i, +.btn.btn-light-danger:focus:not(.btn-active) .svg-icon, +.btn.btn-light-danger:focus:not(.btn-active) i, +.btn.btn-light-danger:hover:not(.btn-active) .svg-icon, +.btn.btn-light-danger:hover:not(.btn-active) i, +.show>.btn.btn-light-danger .svg-icon, +.show>.btn.btn-light-danger i { + color: #fff +} + +.btn-check:active+.btn.btn-light-danger.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light-danger.dropdown-toggle:after, +.btn.btn-light-danger.active.dropdown-toggle:after, +.btn.btn-light-danger.show.dropdown-toggle:after, +.btn.btn-light-danger:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-danger:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-danger:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light-danger.dropdown-toggle:after { + color: #fff +} + +.btn.btn-bg-danger { + border-color: #f1416c; + background-color: #f1416c +} + +.btn-check:active+.btn.btn-active-danger, +.btn-check:checked+.btn.btn-active-danger, +.btn.btn-active-danger.active, +.btn.btn-active-danger.show, +.btn.btn-active-danger:active:not(.btn-active), +.btn.btn-active-danger:focus:not(.btn-active), +.btn.btn-active-danger:hover:not(.btn-active), +.show>.btn.btn-active-danger { + color: #fff; + border-color: #f1416c; + background-color: #f1416c !important +} + +.btn-check:active+.btn.btn-active-danger .svg-icon, +.btn-check:active+.btn.btn-active-danger i, +.btn-check:checked+.btn.btn-active-danger .svg-icon, +.btn-check:checked+.btn.btn-active-danger i, +.btn.btn-active-danger.active .svg-icon, +.btn.btn-active-danger.active i, +.btn.btn-active-danger.show .svg-icon, +.btn.btn-active-danger.show i, +.btn.btn-active-danger:active:not(.btn-active) .svg-icon, +.btn.btn-active-danger:active:not(.btn-active) i, +.btn.btn-active-danger:focus:not(.btn-active) .svg-icon, +.btn.btn-active-danger:focus:not(.btn-active) i, +.btn.btn-active-danger:hover:not(.btn-active) .svg-icon, +.btn.btn-active-danger:hover:not(.btn-active) i, +.show>.btn.btn-active-danger .svg-icon, +.show>.btn.btn-active-danger i { + color: #fff +} + +.btn-check:active+.btn.btn-active-danger.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-danger.dropdown-toggle:after, +.btn.btn-active-danger.active.dropdown-toggle:after, +.btn.btn-active-danger.show.dropdown-toggle:after, +.btn.btn-active-danger:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-danger:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-danger:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-danger.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-active-light-danger, +.btn-check:checked+.btn.btn-active-light-danger, +.btn.btn-active-light-danger.active, +.btn.btn-active-light-danger.show, +.btn.btn-active-light-danger:active:not(.btn-active), +.btn.btn-active-light-danger:focus:not(.btn-active), +.btn.btn-active-light-danger:hover:not(.btn-active), +.show>.btn.btn-active-light-danger { + color: #f1416c; + border-color: #fff5f8; + background-color: #fff5f8 !important +} + +.btn-check:active+.btn.btn-active-light-danger .svg-icon, +.btn-check:active+.btn.btn-active-light-danger i, +.btn-check:checked+.btn.btn-active-light-danger .svg-icon, +.btn-check:checked+.btn.btn-active-light-danger i, +.btn.btn-active-light-danger.active .svg-icon, +.btn.btn-active-light-danger.active i, +.btn.btn-active-light-danger.show .svg-icon, +.btn.btn-active-light-danger.show i, +.btn.btn-active-light-danger:active:not(.btn-active) .svg-icon, +.btn.btn-active-light-danger:active:not(.btn-active) i, +.btn.btn-active-light-danger:focus:not(.btn-active) .svg-icon, +.btn.btn-active-light-danger:focus:not(.btn-active) i, +.btn.btn-active-light-danger:hover:not(.btn-active) .svg-icon, +.btn.btn-active-light-danger:hover:not(.btn-active) i, +.show>.btn.btn-active-light-danger .svg-icon, +.show>.btn.btn-active-light-danger i { + color: #f1416c +} + +.btn-check:active+.btn.btn-active-light-danger.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-light-danger.dropdown-toggle:after, +.btn.btn-active-light-danger.active.dropdown-toggle:after, +.btn.btn-active-light-danger.show.dropdown-toggle:after, +.btn.btn-active-light-danger:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light-danger:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light-danger:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-light-danger.dropdown-toggle:after { + color: #f1416c +} + +.btn.btn-active-light-danger.btn-outline:not(.btn-outline-default) { + border-color: #f1416c !important +} + +.btn.btn-dark { + color: #fff; + border-color: #181c32; + background-color: #181c32 +} + +.btn.btn-dark .svg-icon, +.btn.btn-dark i { + color: #fff +} + +.btn.btn-dark.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-dark, +.btn-check:checked+.btn.btn-dark, +.btn.btn-dark.active, +.btn.btn-dark.show, +.btn.btn-dark:active:not(.btn-active), +.btn.btn-dark:focus:not(.btn-active), +.btn.btn-dark:hover:not(.btn-active), +.show>.btn.btn-dark { + color: #fff; + border-color: #131628; + background-color: #131628 !important +} + +.btn-check:active+.btn.btn-dark .svg-icon, +.btn-check:active+.btn.btn-dark i, +.btn-check:checked+.btn.btn-dark .svg-icon, +.btn-check:checked+.btn.btn-dark i, +.btn.btn-dark.active .svg-icon, +.btn.btn-dark.active i, +.btn.btn-dark.show .svg-icon, +.btn.btn-dark.show i, +.btn.btn-dark:active:not(.btn-active) .svg-icon, +.btn.btn-dark:active:not(.btn-active) i, +.btn.btn-dark:focus:not(.btn-active) .svg-icon, +.btn.btn-dark:focus:not(.btn-active) i, +.btn.btn-dark:hover:not(.btn-active) .svg-icon, +.btn.btn-dark:hover:not(.btn-active) i, +.show>.btn.btn-dark .svg-icon, +.show>.btn.btn-dark i { + color: #fff +} + +.btn-check:active+.btn.btn-dark.dropdown-toggle:after, +.btn-check:checked+.btn.btn-dark.dropdown-toggle:after, +.btn.btn-dark.active.dropdown-toggle:after, +.btn.btn-dark.show.dropdown-toggle:after, +.btn.btn-dark:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-dark:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-dark:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-dark.dropdown-toggle:after { + color: #fff +} + +.btn.btn-light-dark { + color: #181c32; + border-color: #eff2f5; + background-color: #eff2f5 +} + +.btn.btn-light-dark .svg-icon, +.btn.btn-light-dark i { + color: #181c32 +} + +.btn.btn-light-dark.dropdown-toggle:after { + color: #181c32 +} + +.btn-check:active+.btn.btn-light-dark, +.btn-check:checked+.btn.btn-light-dark, +.btn.btn-light-dark.active, +.btn.btn-light-dark.show, +.btn.btn-light-dark:active:not(.btn-active), +.btn.btn-light-dark:focus:not(.btn-active), +.btn.btn-light-dark:hover:not(.btn-active), +.show>.btn.btn-light-dark { + color: #fff; + border-color: #181c32; + background-color: #181c32 !important +} + +.btn-check:active+.btn.btn-light-dark .svg-icon, +.btn-check:active+.btn.btn-light-dark i, +.btn-check:checked+.btn.btn-light-dark .svg-icon, +.btn-check:checked+.btn.btn-light-dark i, +.btn.btn-light-dark.active .svg-icon, +.btn.btn-light-dark.active i, +.btn.btn-light-dark.show .svg-icon, +.btn.btn-light-dark.show i, +.btn.btn-light-dark:active:not(.btn-active) .svg-icon, +.btn.btn-light-dark:active:not(.btn-active) i, +.btn.btn-light-dark:focus:not(.btn-active) .svg-icon, +.btn.btn-light-dark:focus:not(.btn-active) i, +.btn.btn-light-dark:hover:not(.btn-active) .svg-icon, +.btn.btn-light-dark:hover:not(.btn-active) i, +.show>.btn.btn-light-dark .svg-icon, +.show>.btn.btn-light-dark i { + color: #fff +} + +.btn-check:active+.btn.btn-light-dark.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light-dark.dropdown-toggle:after, +.btn.btn-light-dark.active.dropdown-toggle:after, +.btn.btn-light-dark.show.dropdown-toggle:after, +.btn.btn-light-dark:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-dark:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-dark:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light-dark.dropdown-toggle:after { + color: #fff +} + +.btn.btn-bg-dark { + border-color: #181c32; + background-color: #181c32 +} + +.btn-check:active+.btn.btn-active-dark, +.btn-check:checked+.btn.btn-active-dark, +.btn.btn-active-dark.active, +.btn.btn-active-dark.show, +.btn.btn-active-dark:active:not(.btn-active), +.btn.btn-active-dark:focus:not(.btn-active), +.btn.btn-active-dark:hover:not(.btn-active), +.show>.btn.btn-active-dark { + color: #fff; + border-color: #181c32; + background-color: #181c32 !important +} + +.btn-check:active+.btn.btn-active-dark .svg-icon, +.btn-check:active+.btn.btn-active-dark i, +.btn-check:checked+.btn.btn-active-dark .svg-icon, +.btn-check:checked+.btn.btn-active-dark i, +.btn.btn-active-dark.active .svg-icon, +.btn.btn-active-dark.active i, +.btn.btn-active-dark.show .svg-icon, +.btn.btn-active-dark.show i, +.btn.btn-active-dark:active:not(.btn-active) .svg-icon, +.btn.btn-active-dark:active:not(.btn-active) i, +.btn.btn-active-dark:focus:not(.btn-active) .svg-icon, +.btn.btn-active-dark:focus:not(.btn-active) i, +.btn.btn-active-dark:hover:not(.btn-active) .svg-icon, +.btn.btn-active-dark:hover:not(.btn-active) i, +.show>.btn.btn-active-dark .svg-icon, +.show>.btn.btn-active-dark i { + color: #fff +} + +.btn-check:active+.btn.btn-active-dark.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-dark.dropdown-toggle:after, +.btn.btn-active-dark.active.dropdown-toggle:after, +.btn.btn-active-dark.show.dropdown-toggle:after, +.btn.btn-active-dark:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-dark:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-dark:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-dark.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-active-light-dark, +.btn-check:checked+.btn.btn-active-light-dark, +.btn.btn-active-light-dark.active, +.btn.btn-active-light-dark.show, +.btn.btn-active-light-dark:active:not(.btn-active), +.btn.btn-active-light-dark:focus:not(.btn-active), +.btn.btn-active-light-dark:hover:not(.btn-active), +.show>.btn.btn-active-light-dark { + color: #181c32; + border-color: #eff2f5; + background-color: #eff2f5 !important +} + +.btn-check:active+.btn.btn-active-light-dark .svg-icon, +.btn-check:active+.btn.btn-active-light-dark i, +.btn-check:checked+.btn.btn-active-light-dark .svg-icon, +.btn-check:checked+.btn.btn-active-light-dark i, +.btn.btn-active-light-dark.active .svg-icon, +.btn.btn-active-light-dark.active i, +.btn.btn-active-light-dark.show .svg-icon, +.btn.btn-active-light-dark.show i, +.btn.btn-active-light-dark:active:not(.btn-active) .svg-icon, +.btn.btn-active-light-dark:active:not(.btn-active) i, +.btn.btn-active-light-dark:focus:not(.btn-active) .svg-icon, +.btn.btn-active-light-dark:focus:not(.btn-active) i, +.btn.btn-active-light-dark:hover:not(.btn-active) .svg-icon, +.btn.btn-active-light-dark:hover:not(.btn-active) i, +.show>.btn.btn-active-light-dark .svg-icon, +.show>.btn.btn-active-light-dark i { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-light-dark.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-light-dark.dropdown-toggle:after, +.btn.btn-active-light-dark.active.dropdown-toggle:after, +.btn.btn-active-light-dark.show.dropdown-toggle:after, +.btn.btn-active-light-dark:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light-dark:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-light-dark:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-light-dark.dropdown-toggle:after { + color: #181c32 +} + +.btn.btn-active-light-dark.btn-outline:not(.btn-outline-default) { + border-color: #181c32 !important +} + +.btn.btn-color-white { + color: #fff +} + +.btn.btn-color-white .svg-icon, +.btn.btn-color-white i { + color: #fff +} + +.btn.btn-color-white.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-active-color-white, +.btn-check:checked+.btn.btn-active-color-white, +.btn.btn-active-color-white.active, +.btn.btn-active-color-white.show, +.btn.btn-active-color-white:active:not(.btn-active), +.btn.btn-active-color-white:focus:not(.btn-active), +.btn.btn-active-color-white:hover:not(.btn-active), +.show>.btn.btn-active-color-white { + color: #fff +} + +.btn-check:active+.btn.btn-active-color-white .svg-icon, +.btn-check:active+.btn.btn-active-color-white i, +.btn-check:checked+.btn.btn-active-color-white .svg-icon, +.btn-check:checked+.btn.btn-active-color-white i, +.btn.btn-active-color-white.active .svg-icon, +.btn.btn-active-color-white.active i, +.btn.btn-active-color-white.show .svg-icon, +.btn.btn-active-color-white.show i, +.btn.btn-active-color-white:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-white:active:not(.btn-active) i, +.btn.btn-active-color-white:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-white:focus:not(.btn-active) i, +.btn.btn-active-color-white:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-white:hover:not(.btn-active) i, +.show>.btn.btn-active-color-white .svg-icon, +.show>.btn.btn-active-color-white i { + color: #fff +} + +.btn-check:active+.btn.btn-active-color-white.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-white.dropdown-toggle:after, +.btn.btn-active-color-white.active.dropdown-toggle:after, +.btn.btn-active-color-white.show.dropdown-toggle:after, +.btn.btn-active-color-white:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-white:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-white:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-white.dropdown-toggle:after { + color: #fff +} + +.btn.btn-icon-white .svg-icon, +.btn.btn-icon-white i { + color: #fff +} + +.btn.btn-icon-white.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-active-icon-white .svg-icon, +.btn-check:active+.btn.btn-active-icon-white i, +.btn-check:checked+.btn.btn-active-icon-white .svg-icon, +.btn-check:checked+.btn.btn-active-icon-white i, +.btn.btn-active-icon-white.active .svg-icon, +.btn.btn-active-icon-white.active i, +.btn.btn-active-icon-white.show .svg-icon, +.btn.btn-active-icon-white.show i, +.btn.btn-active-icon-white:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-white:active:not(.btn-active) i, +.btn.btn-active-icon-white:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-white:focus:not(.btn-active) i, +.btn.btn-active-icon-white:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-white:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-white .svg-icon, +.show>.btn.btn-active-icon-white i { + color: #fff +} + +.btn-check:active+.btn.btn-active-icon-white.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-white.dropdown-toggle:after, +.btn.btn-active-icon-white.active.dropdown-toggle:after, +.btn.btn-active-icon-white.show.dropdown-toggle:after, +.btn.btn-active-icon-white:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-white:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-white:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-white.dropdown-toggle:after { + color: #fff +} + +.btn.btn-text-white { + color: #fff +} + +.btn-check:active+.btn.btn-active-text-white, +.btn-check:checked+.btn.btn-active-text-white, +.btn.btn-active-text-white.active, +.btn.btn-active-text-white.show, +.btn.btn-active-text-white:active:not(.btn-active), +.btn.btn-active-text-white:focus:not(.btn-active), +.btn.btn-active-text-white:hover:not(.btn-active), +.show>.btn.btn-active-text-white { + color: #fff +} + +.btn.btn-color-primary { + color: #009ef7 +} + +.btn.btn-color-primary .svg-icon, +.btn.btn-color-primary i { + color: #009ef7 +} + +.btn.btn-color-primary.dropdown-toggle:after { + color: #009ef7 +} + +.btn-check:active+.btn.btn-active-color-primary, +.btn-check:checked+.btn.btn-active-color-primary, +.btn.btn-active-color-primary.active, +.btn.btn-active-color-primary.show, +.btn.btn-active-color-primary:active:not(.btn-active), +.btn.btn-active-color-primary:focus:not(.btn-active), +.btn.btn-active-color-primary:hover:not(.btn-active), +.show>.btn.btn-active-color-primary { + color: #009ef7 +} + +.btn-check:active+.btn.btn-active-color-primary .svg-icon, +.btn-check:active+.btn.btn-active-color-primary i, +.btn-check:checked+.btn.btn-active-color-primary .svg-icon, +.btn-check:checked+.btn.btn-active-color-primary i, +.btn.btn-active-color-primary.active .svg-icon, +.btn.btn-active-color-primary.active i, +.btn.btn-active-color-primary.show .svg-icon, +.btn.btn-active-color-primary.show i, +.btn.btn-active-color-primary:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-primary:active:not(.btn-active) i, +.btn.btn-active-color-primary:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-primary:focus:not(.btn-active) i, +.btn.btn-active-color-primary:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-primary:hover:not(.btn-active) i, +.show>.btn.btn-active-color-primary .svg-icon, +.show>.btn.btn-active-color-primary i { + color: #009ef7 +} + +.btn-check:active+.btn.btn-active-color-primary.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-primary.dropdown-toggle:after, +.btn.btn-active-color-primary.active.dropdown-toggle:after, +.btn.btn-active-color-primary.show.dropdown-toggle:after, +.btn.btn-active-color-primary:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-primary:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-primary:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-primary.dropdown-toggle:after { + color: #009ef7 +} + +.btn.btn-icon-primary .svg-icon, +.btn.btn-icon-primary i { + color: #009ef7 +} + +.btn.btn-icon-primary.dropdown-toggle:after { + color: #009ef7 +} + +.btn-check:active+.btn.btn-active-icon-primary .svg-icon, +.btn-check:active+.btn.btn-active-icon-primary i, +.btn-check:checked+.btn.btn-active-icon-primary .svg-icon, +.btn-check:checked+.btn.btn-active-icon-primary i, +.btn.btn-active-icon-primary.active .svg-icon, +.btn.btn-active-icon-primary.active i, +.btn.btn-active-icon-primary.show .svg-icon, +.btn.btn-active-icon-primary.show i, +.btn.btn-active-icon-primary:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-primary:active:not(.btn-active) i, +.btn.btn-active-icon-primary:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-primary:focus:not(.btn-active) i, +.btn.btn-active-icon-primary:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-primary:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-primary .svg-icon, +.show>.btn.btn-active-icon-primary i { + color: #009ef7 +} + +.btn-check:active+.btn.btn-active-icon-primary.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-primary.dropdown-toggle:after, +.btn.btn-active-icon-primary.active.dropdown-toggle:after, +.btn.btn-active-icon-primary.show.dropdown-toggle:after, +.btn.btn-active-icon-primary:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-primary:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-primary:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-primary.dropdown-toggle:after { + color: #009ef7 +} + +.btn.btn-text-primary { + color: #009ef7 +} + +.btn-check:active+.btn.btn-active-text-primary, +.btn-check:checked+.btn.btn-active-text-primary, +.btn.btn-active-text-primary.active, +.btn.btn-active-text-primary.show, +.btn.btn-active-text-primary:active:not(.btn-active), +.btn.btn-active-text-primary:focus:not(.btn-active), +.btn.btn-active-text-primary:hover:not(.btn-active), +.show>.btn.btn-active-text-primary { + color: #009ef7 +} + +.btn.btn-color-secondary { + color: #e4e6ef +} + +.btn.btn-color-secondary .svg-icon, +.btn.btn-color-secondary i { + color: #e4e6ef +} + +.btn.btn-color-secondary.dropdown-toggle:after { + color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-color-secondary, +.btn-check:checked+.btn.btn-active-color-secondary, +.btn.btn-active-color-secondary.active, +.btn.btn-active-color-secondary.show, +.btn.btn-active-color-secondary:active:not(.btn-active), +.btn.btn-active-color-secondary:focus:not(.btn-active), +.btn.btn-active-color-secondary:hover:not(.btn-active), +.show>.btn.btn-active-color-secondary { + color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-color-secondary .svg-icon, +.btn-check:active+.btn.btn-active-color-secondary i, +.btn-check:checked+.btn.btn-active-color-secondary .svg-icon, +.btn-check:checked+.btn.btn-active-color-secondary i, +.btn.btn-active-color-secondary.active .svg-icon, +.btn.btn-active-color-secondary.active i, +.btn.btn-active-color-secondary.show .svg-icon, +.btn.btn-active-color-secondary.show i, +.btn.btn-active-color-secondary:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-secondary:active:not(.btn-active) i, +.btn.btn-active-color-secondary:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-secondary:focus:not(.btn-active) i, +.btn.btn-active-color-secondary:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-secondary:hover:not(.btn-active) i, +.show>.btn.btn-active-color-secondary .svg-icon, +.show>.btn.btn-active-color-secondary i { + color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-color-secondary.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-secondary.dropdown-toggle:after, +.btn.btn-active-color-secondary.active.dropdown-toggle:after, +.btn.btn-active-color-secondary.show.dropdown-toggle:after, +.btn.btn-active-color-secondary:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-secondary:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-secondary:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-secondary.dropdown-toggle:after { + color: #e4e6ef +} + +.btn.btn-icon-secondary .svg-icon, +.btn.btn-icon-secondary i { + color: #e4e6ef +} + +.btn.btn-icon-secondary.dropdown-toggle:after { + color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-icon-secondary .svg-icon, +.btn-check:active+.btn.btn-active-icon-secondary i, +.btn-check:checked+.btn.btn-active-icon-secondary .svg-icon, +.btn-check:checked+.btn.btn-active-icon-secondary i, +.btn.btn-active-icon-secondary.active .svg-icon, +.btn.btn-active-icon-secondary.active i, +.btn.btn-active-icon-secondary.show .svg-icon, +.btn.btn-active-icon-secondary.show i, +.btn.btn-active-icon-secondary:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-secondary:active:not(.btn-active) i, +.btn.btn-active-icon-secondary:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-secondary:focus:not(.btn-active) i, +.btn.btn-active-icon-secondary:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-secondary:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-secondary .svg-icon, +.show>.btn.btn-active-icon-secondary i { + color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-icon-secondary.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-secondary.dropdown-toggle:after, +.btn.btn-active-icon-secondary.active.dropdown-toggle:after, +.btn.btn-active-icon-secondary.show.dropdown-toggle:after, +.btn.btn-active-icon-secondary:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-secondary:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-secondary:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-secondary.dropdown-toggle:after { + color: #e4e6ef +} + +.btn.btn-text-secondary { + color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-text-secondary, +.btn-check:checked+.btn.btn-active-text-secondary, +.btn.btn-active-text-secondary.active, +.btn.btn-active-text-secondary.show, +.btn.btn-active-text-secondary:active:not(.btn-active), +.btn.btn-active-text-secondary:focus:not(.btn-active), +.btn.btn-active-text-secondary:hover:not(.btn-active), +.show>.btn.btn-active-text-secondary { + color: #e4e6ef +} + +.btn.btn-color-light { + color: #f5f8fa +} + +.btn.btn-color-light .svg-icon, +.btn.btn-color-light i { + color: #f5f8fa +} + +.btn.btn-color-light.dropdown-toggle:after { + color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-color-light, +.btn-check:checked+.btn.btn-active-color-light, +.btn.btn-active-color-light.active, +.btn.btn-active-color-light.show, +.btn.btn-active-color-light:active:not(.btn-active), +.btn.btn-active-color-light:focus:not(.btn-active), +.btn.btn-active-color-light:hover:not(.btn-active), +.show>.btn.btn-active-color-light { + color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-color-light .svg-icon, +.btn-check:active+.btn.btn-active-color-light i, +.btn-check:checked+.btn.btn-active-color-light .svg-icon, +.btn-check:checked+.btn.btn-active-color-light i, +.btn.btn-active-color-light.active .svg-icon, +.btn.btn-active-color-light.active i, +.btn.btn-active-color-light.show .svg-icon, +.btn.btn-active-color-light.show i, +.btn.btn-active-color-light:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-light:active:not(.btn-active) i, +.btn.btn-active-color-light:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-light:focus:not(.btn-active) i, +.btn.btn-active-color-light:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-light:hover:not(.btn-active) i, +.show>.btn.btn-active-color-light .svg-icon, +.show>.btn.btn-active-color-light i { + color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-color-light.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-light.dropdown-toggle:after, +.btn.btn-active-color-light.active.dropdown-toggle:after, +.btn.btn-active-color-light.show.dropdown-toggle:after, +.btn.btn-active-color-light:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-light:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-light:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-light.dropdown-toggle:after { + color: #f5f8fa +} + +.btn.btn-icon-light .svg-icon, +.btn.btn-icon-light i { + color: #f5f8fa +} + +.btn.btn-icon-light.dropdown-toggle:after { + color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-icon-light .svg-icon, +.btn-check:active+.btn.btn-active-icon-light i, +.btn-check:checked+.btn.btn-active-icon-light .svg-icon, +.btn-check:checked+.btn.btn-active-icon-light i, +.btn.btn-active-icon-light.active .svg-icon, +.btn.btn-active-icon-light.active i, +.btn.btn-active-icon-light.show .svg-icon, +.btn.btn-active-icon-light.show i, +.btn.btn-active-icon-light:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-light:active:not(.btn-active) i, +.btn.btn-active-icon-light:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-light:focus:not(.btn-active) i, +.btn.btn-active-icon-light:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-light:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-light .svg-icon, +.show>.btn.btn-active-icon-light i { + color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-icon-light.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-light.dropdown-toggle:after, +.btn.btn-active-icon-light.active.dropdown-toggle:after, +.btn.btn-active-icon-light.show.dropdown-toggle:after, +.btn.btn-active-icon-light:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-light:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-light:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-light.dropdown-toggle:after { + color: #f5f8fa +} + +.btn.btn-text-light { + color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-text-light, +.btn-check:checked+.btn.btn-active-text-light, +.btn.btn-active-text-light.active, +.btn.btn-active-text-light.show, +.btn.btn-active-text-light:active:not(.btn-active), +.btn.btn-active-text-light:focus:not(.btn-active), +.btn.btn-active-text-light:hover:not(.btn-active), +.show>.btn.btn-active-text-light { + color: #f5f8fa +} + +.btn.btn-color-success { + color: #50cd89 +} + +.btn.btn-color-success .svg-icon, +.btn.btn-color-success i { + color: #50cd89 +} + +.btn.btn-color-success.dropdown-toggle:after { + color: #50cd89 +} + +.btn-check:active+.btn.btn-active-color-success, +.btn-check:checked+.btn.btn-active-color-success, +.btn.btn-active-color-success.active, +.btn.btn-active-color-success.show, +.btn.btn-active-color-success:active:not(.btn-active), +.btn.btn-active-color-success:focus:not(.btn-active), +.btn.btn-active-color-success:hover:not(.btn-active), +.show>.btn.btn-active-color-success { + color: #50cd89 +} + +.btn-check:active+.btn.btn-active-color-success .svg-icon, +.btn-check:active+.btn.btn-active-color-success i, +.btn-check:checked+.btn.btn-active-color-success .svg-icon, +.btn-check:checked+.btn.btn-active-color-success i, +.btn.btn-active-color-success.active .svg-icon, +.btn.btn-active-color-success.active i, +.btn.btn-active-color-success.show .svg-icon, +.btn.btn-active-color-success.show i, +.btn.btn-active-color-success:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-success:active:not(.btn-active) i, +.btn.btn-active-color-success:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-success:focus:not(.btn-active) i, +.btn.btn-active-color-success:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-success:hover:not(.btn-active) i, +.show>.btn.btn-active-color-success .svg-icon, +.show>.btn.btn-active-color-success i { + color: #50cd89 +} + +.btn-check:active+.btn.btn-active-color-success.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-success.dropdown-toggle:after, +.btn.btn-active-color-success.active.dropdown-toggle:after, +.btn.btn-active-color-success.show.dropdown-toggle:after, +.btn.btn-active-color-success:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-success:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-success:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-success.dropdown-toggle:after { + color: #50cd89 +} + +.btn.btn-icon-success .svg-icon, +.btn.btn-icon-success i { + color: #50cd89 +} + +.btn.btn-icon-success.dropdown-toggle:after { + color: #50cd89 +} + +.btn-check:active+.btn.btn-active-icon-success .svg-icon, +.btn-check:active+.btn.btn-active-icon-success i, +.btn-check:checked+.btn.btn-active-icon-success .svg-icon, +.btn-check:checked+.btn.btn-active-icon-success i, +.btn.btn-active-icon-success.active .svg-icon, +.btn.btn-active-icon-success.active i, +.btn.btn-active-icon-success.show .svg-icon, +.btn.btn-active-icon-success.show i, +.btn.btn-active-icon-success:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-success:active:not(.btn-active) i, +.btn.btn-active-icon-success:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-success:focus:not(.btn-active) i, +.btn.btn-active-icon-success:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-success:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-success .svg-icon, +.show>.btn.btn-active-icon-success i { + color: #50cd89 +} + +.btn-check:active+.btn.btn-active-icon-success.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-success.dropdown-toggle:after, +.btn.btn-active-icon-success.active.dropdown-toggle:after, +.btn.btn-active-icon-success.show.dropdown-toggle:after, +.btn.btn-active-icon-success:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-success:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-success:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-success.dropdown-toggle:after { + color: #50cd89 +} + +.btn.btn-text-success { + color: #50cd89 +} + +.btn-check:active+.btn.btn-active-text-success, +.btn-check:checked+.btn.btn-active-text-success, +.btn.btn-active-text-success.active, +.btn.btn-active-text-success.show, +.btn.btn-active-text-success:active:not(.btn-active), +.btn.btn-active-text-success:focus:not(.btn-active), +.btn.btn-active-text-success:hover:not(.btn-active), +.show>.btn.btn-active-text-success { + color: #50cd89 +} + +.btn.btn-color-info { + color: #7239ea +} + +.btn.btn-color-info .svg-icon, +.btn.btn-color-info i { + color: #7239ea +} + +.btn.btn-color-info.dropdown-toggle:after { + color: #7239ea +} + +.btn-check:active+.btn.btn-active-color-info, +.btn-check:checked+.btn.btn-active-color-info, +.btn.btn-active-color-info.active, +.btn.btn-active-color-info.show, +.btn.btn-active-color-info:active:not(.btn-active), +.btn.btn-active-color-info:focus:not(.btn-active), +.btn.btn-active-color-info:hover:not(.btn-active), +.show>.btn.btn-active-color-info { + color: #7239ea +} + +.btn-check:active+.btn.btn-active-color-info .svg-icon, +.btn-check:active+.btn.btn-active-color-info i, +.btn-check:checked+.btn.btn-active-color-info .svg-icon, +.btn-check:checked+.btn.btn-active-color-info i, +.btn.btn-active-color-info.active .svg-icon, +.btn.btn-active-color-info.active i, +.btn.btn-active-color-info.show .svg-icon, +.btn.btn-active-color-info.show i, +.btn.btn-active-color-info:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-info:active:not(.btn-active) i, +.btn.btn-active-color-info:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-info:focus:not(.btn-active) i, +.btn.btn-active-color-info:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-info:hover:not(.btn-active) i, +.show>.btn.btn-active-color-info .svg-icon, +.show>.btn.btn-active-color-info i { + color: #7239ea +} + +.btn-check:active+.btn.btn-active-color-info.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-info.dropdown-toggle:after, +.btn.btn-active-color-info.active.dropdown-toggle:after, +.btn.btn-active-color-info.show.dropdown-toggle:after, +.btn.btn-active-color-info:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-info:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-info:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-info.dropdown-toggle:after { + color: #7239ea +} + +.btn.btn-icon-info .svg-icon, +.btn.btn-icon-info i { + color: #7239ea +} + +.btn.btn-icon-info.dropdown-toggle:after { + color: #7239ea +} + +.btn-check:active+.btn.btn-active-icon-info .svg-icon, +.btn-check:active+.btn.btn-active-icon-info i, +.btn-check:checked+.btn.btn-active-icon-info .svg-icon, +.btn-check:checked+.btn.btn-active-icon-info i, +.btn.btn-active-icon-info.active .svg-icon, +.btn.btn-active-icon-info.active i, +.btn.btn-active-icon-info.show .svg-icon, +.btn.btn-active-icon-info.show i, +.btn.btn-active-icon-info:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-info:active:not(.btn-active) i, +.btn.btn-active-icon-info:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-info:focus:not(.btn-active) i, +.btn.btn-active-icon-info:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-info:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-info .svg-icon, +.show>.btn.btn-active-icon-info i { + color: #7239ea +} + +.btn-check:active+.btn.btn-active-icon-info.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-info.dropdown-toggle:after, +.btn.btn-active-icon-info.active.dropdown-toggle:after, +.btn.btn-active-icon-info.show.dropdown-toggle:after, +.btn.btn-active-icon-info:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-info:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-info:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-info.dropdown-toggle:after { + color: #7239ea +} + +.btn.btn-text-info { + color: #7239ea +} + +.btn-check:active+.btn.btn-active-text-info, +.btn-check:checked+.btn.btn-active-text-info, +.btn.btn-active-text-info.active, +.btn.btn-active-text-info.show, +.btn.btn-active-text-info:active:not(.btn-active), +.btn.btn-active-text-info:focus:not(.btn-active), +.btn.btn-active-text-info:hover:not(.btn-active), +.show>.btn.btn-active-text-info { + color: #7239ea +} + +.btn.btn-color-warning { + color: #ffc700 +} + +.btn.btn-color-warning .svg-icon, +.btn.btn-color-warning i { + color: #ffc700 +} + +.btn.btn-color-warning.dropdown-toggle:after { + color: #ffc700 +} + +.btn-check:active+.btn.btn-active-color-warning, +.btn-check:checked+.btn.btn-active-color-warning, +.btn.btn-active-color-warning.active, +.btn.btn-active-color-warning.show, +.btn.btn-active-color-warning:active:not(.btn-active), +.btn.btn-active-color-warning:focus:not(.btn-active), +.btn.btn-active-color-warning:hover:not(.btn-active), +.show>.btn.btn-active-color-warning { + color: #ffc700 +} + +.btn-check:active+.btn.btn-active-color-warning .svg-icon, +.btn-check:active+.btn.btn-active-color-warning i, +.btn-check:checked+.btn.btn-active-color-warning .svg-icon, +.btn-check:checked+.btn.btn-active-color-warning i, +.btn.btn-active-color-warning.active .svg-icon, +.btn.btn-active-color-warning.active i, +.btn.btn-active-color-warning.show .svg-icon, +.btn.btn-active-color-warning.show i, +.btn.btn-active-color-warning:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-warning:active:not(.btn-active) i, +.btn.btn-active-color-warning:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-warning:focus:not(.btn-active) i, +.btn.btn-active-color-warning:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-warning:hover:not(.btn-active) i, +.show>.btn.btn-active-color-warning .svg-icon, +.show>.btn.btn-active-color-warning i { + color: #ffc700 +} + +.btn-check:active+.btn.btn-active-color-warning.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-warning.dropdown-toggle:after, +.btn.btn-active-color-warning.active.dropdown-toggle:after, +.btn.btn-active-color-warning.show.dropdown-toggle:after, +.btn.btn-active-color-warning:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-warning:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-warning:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-warning.dropdown-toggle:after { + color: #ffc700 +} + +.btn.btn-icon-warning .svg-icon, +.btn.btn-icon-warning i { + color: #ffc700 +} + +.btn.btn-icon-warning.dropdown-toggle:after { + color: #ffc700 +} + +.btn-check:active+.btn.btn-active-icon-warning .svg-icon, +.btn-check:active+.btn.btn-active-icon-warning i, +.btn-check:checked+.btn.btn-active-icon-warning .svg-icon, +.btn-check:checked+.btn.btn-active-icon-warning i, +.btn.btn-active-icon-warning.active .svg-icon, +.btn.btn-active-icon-warning.active i, +.btn.btn-active-icon-warning.show .svg-icon, +.btn.btn-active-icon-warning.show i, +.btn.btn-active-icon-warning:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-warning:active:not(.btn-active) i, +.btn.btn-active-icon-warning:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-warning:focus:not(.btn-active) i, +.btn.btn-active-icon-warning:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-warning:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-warning .svg-icon, +.show>.btn.btn-active-icon-warning i { + color: #ffc700 +} + +.btn-check:active+.btn.btn-active-icon-warning.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-warning.dropdown-toggle:after, +.btn.btn-active-icon-warning.active.dropdown-toggle:after, +.btn.btn-active-icon-warning.show.dropdown-toggle:after, +.btn.btn-active-icon-warning:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-warning:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-warning:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-warning.dropdown-toggle:after { + color: #ffc700 +} + +.btn.btn-text-warning { + color: #ffc700 +} + +.btn-check:active+.btn.btn-active-text-warning, +.btn-check:checked+.btn.btn-active-text-warning, +.btn.btn-active-text-warning.active, +.btn.btn-active-text-warning.show, +.btn.btn-active-text-warning:active:not(.btn-active), +.btn.btn-active-text-warning:focus:not(.btn-active), +.btn.btn-active-text-warning:hover:not(.btn-active), +.show>.btn.btn-active-text-warning { + color: #ffc700 +} + +.btn.btn-color-danger { + color: #f1416c +} + +.btn.btn-color-danger .svg-icon, +.btn.btn-color-danger i { + color: #f1416c +} + +.btn.btn-color-danger.dropdown-toggle:after { + color: #f1416c +} + +.btn-check:active+.btn.btn-active-color-danger, +.btn-check:checked+.btn.btn-active-color-danger, +.btn.btn-active-color-danger.active, +.btn.btn-active-color-danger.show, +.btn.btn-active-color-danger:active:not(.btn-active), +.btn.btn-active-color-danger:focus:not(.btn-active), +.btn.btn-active-color-danger:hover:not(.btn-active), +.show>.btn.btn-active-color-danger { + color: #f1416c +} + +.btn-check:active+.btn.btn-active-color-danger .svg-icon, +.btn-check:active+.btn.btn-active-color-danger i, +.btn-check:checked+.btn.btn-active-color-danger .svg-icon, +.btn-check:checked+.btn.btn-active-color-danger i, +.btn.btn-active-color-danger.active .svg-icon, +.btn.btn-active-color-danger.active i, +.btn.btn-active-color-danger.show .svg-icon, +.btn.btn-active-color-danger.show i, +.btn.btn-active-color-danger:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-danger:active:not(.btn-active) i, +.btn.btn-active-color-danger:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-danger:focus:not(.btn-active) i, +.btn.btn-active-color-danger:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-danger:hover:not(.btn-active) i, +.show>.btn.btn-active-color-danger .svg-icon, +.show>.btn.btn-active-color-danger i { + color: #f1416c +} + +.btn-check:active+.btn.btn-active-color-danger.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-danger.dropdown-toggle:after, +.btn.btn-active-color-danger.active.dropdown-toggle:after, +.btn.btn-active-color-danger.show.dropdown-toggle:after, +.btn.btn-active-color-danger:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-danger:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-danger:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-danger.dropdown-toggle:after { + color: #f1416c +} + +.btn.btn-icon-danger .svg-icon, +.btn.btn-icon-danger i { + color: #f1416c +} + +.btn.btn-icon-danger.dropdown-toggle:after { + color: #f1416c +} + +.btn-check:active+.btn.btn-active-icon-danger .svg-icon, +.btn-check:active+.btn.btn-active-icon-danger i, +.btn-check:checked+.btn.btn-active-icon-danger .svg-icon, +.btn-check:checked+.btn.btn-active-icon-danger i, +.btn.btn-active-icon-danger.active .svg-icon, +.btn.btn-active-icon-danger.active i, +.btn.btn-active-icon-danger.show .svg-icon, +.btn.btn-active-icon-danger.show i, +.btn.btn-active-icon-danger:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-danger:active:not(.btn-active) i, +.btn.btn-active-icon-danger:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-danger:focus:not(.btn-active) i, +.btn.btn-active-icon-danger:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-danger:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-danger .svg-icon, +.show>.btn.btn-active-icon-danger i { + color: #f1416c +} + +.btn-check:active+.btn.btn-active-icon-danger.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-danger.dropdown-toggle:after, +.btn.btn-active-icon-danger.active.dropdown-toggle:after, +.btn.btn-active-icon-danger.show.dropdown-toggle:after, +.btn.btn-active-icon-danger:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-danger:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-danger:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-danger.dropdown-toggle:after { + color: #f1416c +} + +.btn.btn-text-danger { + color: #f1416c +} + +.btn-check:active+.btn.btn-active-text-danger, +.btn-check:checked+.btn.btn-active-text-danger, +.btn.btn-active-text-danger.active, +.btn.btn-active-text-danger.show, +.btn.btn-active-text-danger:active:not(.btn-active), +.btn.btn-active-text-danger:focus:not(.btn-active), +.btn.btn-active-text-danger:hover:not(.btn-active), +.show>.btn.btn-active-text-danger { + color: #f1416c +} + +.btn.btn-color-dark { + color: #181c32 +} + +.btn.btn-color-dark .svg-icon, +.btn.btn-color-dark i { + color: #181c32 +} + +.btn.btn-color-dark.dropdown-toggle:after { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-color-dark, +.btn-check:checked+.btn.btn-active-color-dark, +.btn.btn-active-color-dark.active, +.btn.btn-active-color-dark.show, +.btn.btn-active-color-dark:active:not(.btn-active), +.btn.btn-active-color-dark:focus:not(.btn-active), +.btn.btn-active-color-dark:hover:not(.btn-active), +.show>.btn.btn-active-color-dark { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-color-dark .svg-icon, +.btn-check:active+.btn.btn-active-color-dark i, +.btn-check:checked+.btn.btn-active-color-dark .svg-icon, +.btn-check:checked+.btn.btn-active-color-dark i, +.btn.btn-active-color-dark.active .svg-icon, +.btn.btn-active-color-dark.active i, +.btn.btn-active-color-dark.show .svg-icon, +.btn.btn-active-color-dark.show i, +.btn.btn-active-color-dark:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-dark:active:not(.btn-active) i, +.btn.btn-active-color-dark:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-dark:focus:not(.btn-active) i, +.btn.btn-active-color-dark:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-dark:hover:not(.btn-active) i, +.show>.btn.btn-active-color-dark .svg-icon, +.show>.btn.btn-active-color-dark i { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-color-dark.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-dark.dropdown-toggle:after, +.btn.btn-active-color-dark.active.dropdown-toggle:after, +.btn.btn-active-color-dark.show.dropdown-toggle:after, +.btn.btn-active-color-dark:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-dark:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-dark:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-dark.dropdown-toggle:after { + color: #181c32 +} + +.btn.btn-icon-dark .svg-icon, +.btn.btn-icon-dark i { + color: #181c32 +} + +.btn.btn-icon-dark.dropdown-toggle:after { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-icon-dark .svg-icon, +.btn-check:active+.btn.btn-active-icon-dark i, +.btn-check:checked+.btn.btn-active-icon-dark .svg-icon, +.btn-check:checked+.btn.btn-active-icon-dark i, +.btn.btn-active-icon-dark.active .svg-icon, +.btn.btn-active-icon-dark.active i, +.btn.btn-active-icon-dark.show .svg-icon, +.btn.btn-active-icon-dark.show i, +.btn.btn-active-icon-dark:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-dark:active:not(.btn-active) i, +.btn.btn-active-icon-dark:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-dark:focus:not(.btn-active) i, +.btn.btn-active-icon-dark:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-dark:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-dark .svg-icon, +.show>.btn.btn-active-icon-dark i { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-icon-dark.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-dark.dropdown-toggle:after, +.btn.btn-active-icon-dark.active.dropdown-toggle:after, +.btn.btn-active-icon-dark.show.dropdown-toggle:after, +.btn.btn-active-icon-dark:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-dark:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-dark:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-dark.dropdown-toggle:after { + color: #181c32 +} + +.btn.btn-text-dark { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-text-dark, +.btn-check:checked+.btn.btn-active-text-dark, +.btn.btn-active-text-dark.active, +.btn.btn-active-text-dark.show, +.btn.btn-active-text-dark:active:not(.btn-active), +.btn.btn-active-text-dark:focus:not(.btn-active), +.btn.btn-active-text-dark:hover:not(.btn-active), +.show>.btn.btn-active-text-dark { + color: #181c32 +} + +.btn.btn-color-muted { + color: #a1a5b7 +} + +.btn.btn-color-muted .svg-icon, +.btn.btn-color-muted i { + color: #a1a5b7 +} + +.btn.btn-color-muted.dropdown-toggle:after { + color: #a1a5b7 +} + +.btn-check:active+.btn.btn-active-color-muted, +.btn-check:checked+.btn.btn-active-color-muted, +.btn.btn-active-color-muted.active, +.btn.btn-active-color-muted.show, +.btn.btn-active-color-muted:active:not(.btn-active), +.btn.btn-active-color-muted:focus:not(.btn-active), +.btn.btn-active-color-muted:hover:not(.btn-active), +.show>.btn.btn-active-color-muted { + color: #a1a5b7 +} + +.btn-check:active+.btn.btn-active-color-muted .svg-icon, +.btn-check:active+.btn.btn-active-color-muted i, +.btn-check:checked+.btn.btn-active-color-muted .svg-icon, +.btn-check:checked+.btn.btn-active-color-muted i, +.btn.btn-active-color-muted.active .svg-icon, +.btn.btn-active-color-muted.active i, +.btn.btn-active-color-muted.show .svg-icon, +.btn.btn-active-color-muted.show i, +.btn.btn-active-color-muted:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-muted:active:not(.btn-active) i, +.btn.btn-active-color-muted:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-muted:focus:not(.btn-active) i, +.btn.btn-active-color-muted:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-muted:hover:not(.btn-active) i, +.show>.btn.btn-active-color-muted .svg-icon, +.show>.btn.btn-active-color-muted i { + color: #a1a5b7 +} + +.btn-check:active+.btn.btn-active-color-muted.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-muted.dropdown-toggle:after, +.btn.btn-active-color-muted.active.dropdown-toggle:after, +.btn.btn-active-color-muted.show.dropdown-toggle:after, +.btn.btn-active-color-muted:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-muted:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-muted:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-muted.dropdown-toggle:after { + color: #a1a5b7 +} + +.btn.btn-icon-muted .svg-icon, +.btn.btn-icon-muted i { + color: #a1a5b7 +} + +.btn.btn-icon-muted.dropdown-toggle:after { + color: #a1a5b7 +} + +.btn-check:active+.btn.btn-active-icon-muted .svg-icon, +.btn-check:active+.btn.btn-active-icon-muted i, +.btn-check:checked+.btn.btn-active-icon-muted .svg-icon, +.btn-check:checked+.btn.btn-active-icon-muted i, +.btn.btn-active-icon-muted.active .svg-icon, +.btn.btn-active-icon-muted.active i, +.btn.btn-active-icon-muted.show .svg-icon, +.btn.btn-active-icon-muted.show i, +.btn.btn-active-icon-muted:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-muted:active:not(.btn-active) i, +.btn.btn-active-icon-muted:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-muted:focus:not(.btn-active) i, +.btn.btn-active-icon-muted:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-muted:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-muted .svg-icon, +.show>.btn.btn-active-icon-muted i { + color: #a1a5b7 +} + +.btn-check:active+.btn.btn-active-icon-muted.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-muted.dropdown-toggle:after, +.btn.btn-active-icon-muted.active.dropdown-toggle:after, +.btn.btn-active-icon-muted.show.dropdown-toggle:after, +.btn.btn-active-icon-muted:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-muted:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-muted:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-muted.dropdown-toggle:after { + color: #a1a5b7 +} + +.btn.btn-text-muted { + color: #a1a5b7 +} + +.btn-check:active+.btn.btn-active-text-muted, +.btn-check:checked+.btn.btn-active-text-muted, +.btn.btn-active-text-muted.active, +.btn.btn-active-text-muted.show, +.btn.btn-active-text-muted:active:not(.btn-active), +.btn.btn-active-text-muted:focus:not(.btn-active), +.btn.btn-active-text-muted:hover:not(.btn-active), +.show>.btn.btn-active-text-muted { + color: #a1a5b7 +} + +.btn.btn-color-gray-100 { + color: #f5f8fa +} + +.btn.btn-color-gray-100 .svg-icon, +.btn.btn-color-gray-100 i { + color: #f5f8fa +} + +.btn.btn-color-gray-100.dropdown-toggle:after { + color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-color-gray-100, +.btn-check:checked+.btn.btn-active-color-gray-100, +.btn.btn-active-color-gray-100.active, +.btn.btn-active-color-gray-100.show, +.btn.btn-active-color-gray-100:active:not(.btn-active), +.btn.btn-active-color-gray-100:focus:not(.btn-active), +.btn.btn-active-color-gray-100:hover:not(.btn-active), +.show>.btn.btn-active-color-gray-100 { + color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-color-gray-100 .svg-icon, +.btn-check:active+.btn.btn-active-color-gray-100 i, +.btn-check:checked+.btn.btn-active-color-gray-100 .svg-icon, +.btn-check:checked+.btn.btn-active-color-gray-100 i, +.btn.btn-active-color-gray-100.active .svg-icon, +.btn.btn-active-color-gray-100.active i, +.btn.btn-active-color-gray-100.show .svg-icon, +.btn.btn-active-color-gray-100.show i, +.btn.btn-active-color-gray-100:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-100:active:not(.btn-active) i, +.btn.btn-active-color-gray-100:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-100:focus:not(.btn-active) i, +.btn.btn-active-color-gray-100:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-100:hover:not(.btn-active) i, +.show>.btn.btn-active-color-gray-100 .svg-icon, +.show>.btn.btn-active-color-gray-100 i { + color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-color-gray-100.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-gray-100.dropdown-toggle:after, +.btn.btn-active-color-gray-100.active.dropdown-toggle:after, +.btn.btn-active-color-gray-100.show.dropdown-toggle:after, +.btn.btn-active-color-gray-100:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-100:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-100:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-gray-100.dropdown-toggle:after { + color: #f5f8fa +} + +.btn.btn-icon-gray-100 .svg-icon, +.btn.btn-icon-gray-100 i { + color: #f5f8fa +} + +.btn.btn-icon-gray-100.dropdown-toggle:after { + color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-icon-gray-100 .svg-icon, +.btn-check:active+.btn.btn-active-icon-gray-100 i, +.btn-check:checked+.btn.btn-active-icon-gray-100 .svg-icon, +.btn-check:checked+.btn.btn-active-icon-gray-100 i, +.btn.btn-active-icon-gray-100.active .svg-icon, +.btn.btn-active-icon-gray-100.active i, +.btn.btn-active-icon-gray-100.show .svg-icon, +.btn.btn-active-icon-gray-100.show i, +.btn.btn-active-icon-gray-100:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-100:active:not(.btn-active) i, +.btn.btn-active-icon-gray-100:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-100:focus:not(.btn-active) i, +.btn.btn-active-icon-gray-100:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-100:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-gray-100 .svg-icon, +.show>.btn.btn-active-icon-gray-100 i { + color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-icon-gray-100.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-gray-100.dropdown-toggle:after, +.btn.btn-active-icon-gray-100.active.dropdown-toggle:after, +.btn.btn-active-icon-gray-100.show.dropdown-toggle:after, +.btn.btn-active-icon-gray-100:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-100:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-100:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-gray-100.dropdown-toggle:after { + color: #f5f8fa +} + +.btn.btn-text-gray-100 { + color: #f5f8fa +} + +.btn-check:active+.btn.btn-active-text-gray-100, +.btn-check:checked+.btn.btn-active-text-gray-100, +.btn.btn-active-text-gray-100.active, +.btn.btn-active-text-gray-100.show, +.btn.btn-active-text-gray-100:active:not(.btn-active), +.btn.btn-active-text-gray-100:focus:not(.btn-active), +.btn.btn-active-text-gray-100:hover:not(.btn-active), +.show>.btn.btn-active-text-gray-100 { + color: #f5f8fa +} + +.btn.btn-color-gray-200 { + color: #eff2f5 +} + +.btn.btn-color-gray-200 .svg-icon, +.btn.btn-color-gray-200 i { + color: #eff2f5 +} + +.btn.btn-color-gray-200.dropdown-toggle:after { + color: #eff2f5 +} + +.btn-check:active+.btn.btn-active-color-gray-200, +.btn-check:checked+.btn.btn-active-color-gray-200, +.btn.btn-active-color-gray-200.active, +.btn.btn-active-color-gray-200.show, +.btn.btn-active-color-gray-200:active:not(.btn-active), +.btn.btn-active-color-gray-200:focus:not(.btn-active), +.btn.btn-active-color-gray-200:hover:not(.btn-active), +.show>.btn.btn-active-color-gray-200 { + color: #eff2f5 +} + +.btn-check:active+.btn.btn-active-color-gray-200 .svg-icon, +.btn-check:active+.btn.btn-active-color-gray-200 i, +.btn-check:checked+.btn.btn-active-color-gray-200 .svg-icon, +.btn-check:checked+.btn.btn-active-color-gray-200 i, +.btn.btn-active-color-gray-200.active .svg-icon, +.btn.btn-active-color-gray-200.active i, +.btn.btn-active-color-gray-200.show .svg-icon, +.btn.btn-active-color-gray-200.show i, +.btn.btn-active-color-gray-200:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-200:active:not(.btn-active) i, +.btn.btn-active-color-gray-200:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-200:focus:not(.btn-active) i, +.btn.btn-active-color-gray-200:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-200:hover:not(.btn-active) i, +.show>.btn.btn-active-color-gray-200 .svg-icon, +.show>.btn.btn-active-color-gray-200 i { + color: #eff2f5 +} + +.btn-check:active+.btn.btn-active-color-gray-200.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-gray-200.dropdown-toggle:after, +.btn.btn-active-color-gray-200.active.dropdown-toggle:after, +.btn.btn-active-color-gray-200.show.dropdown-toggle:after, +.btn.btn-active-color-gray-200:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-200:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-200:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-gray-200.dropdown-toggle:after { + color: #eff2f5 +} + +.btn.btn-icon-gray-200 .svg-icon, +.btn.btn-icon-gray-200 i { + color: #eff2f5 +} + +.btn.btn-icon-gray-200.dropdown-toggle:after { + color: #eff2f5 +} + +.btn-check:active+.btn.btn-active-icon-gray-200 .svg-icon, +.btn-check:active+.btn.btn-active-icon-gray-200 i, +.btn-check:checked+.btn.btn-active-icon-gray-200 .svg-icon, +.btn-check:checked+.btn.btn-active-icon-gray-200 i, +.btn.btn-active-icon-gray-200.active .svg-icon, +.btn.btn-active-icon-gray-200.active i, +.btn.btn-active-icon-gray-200.show .svg-icon, +.btn.btn-active-icon-gray-200.show i, +.btn.btn-active-icon-gray-200:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-200:active:not(.btn-active) i, +.btn.btn-active-icon-gray-200:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-200:focus:not(.btn-active) i, +.btn.btn-active-icon-gray-200:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-200:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-gray-200 .svg-icon, +.show>.btn.btn-active-icon-gray-200 i { + color: #eff2f5 +} + +.btn-check:active+.btn.btn-active-icon-gray-200.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-gray-200.dropdown-toggle:after, +.btn.btn-active-icon-gray-200.active.dropdown-toggle:after, +.btn.btn-active-icon-gray-200.show.dropdown-toggle:after, +.btn.btn-active-icon-gray-200:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-200:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-200:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-gray-200.dropdown-toggle:after { + color: #eff2f5 +} + +.btn.btn-text-gray-200 { + color: #eff2f5 +} + +.btn-check:active+.btn.btn-active-text-gray-200, +.btn-check:checked+.btn.btn-active-text-gray-200, +.btn.btn-active-text-gray-200.active, +.btn.btn-active-text-gray-200.show, +.btn.btn-active-text-gray-200:active:not(.btn-active), +.btn.btn-active-text-gray-200:focus:not(.btn-active), +.btn.btn-active-text-gray-200:hover:not(.btn-active), +.show>.btn.btn-active-text-gray-200 { + color: #eff2f5 +} + +.btn.btn-color-gray-300 { + color: #e4e6ef +} + +.btn.btn-color-gray-300 .svg-icon, +.btn.btn-color-gray-300 i { + color: #e4e6ef +} + +.btn.btn-color-gray-300.dropdown-toggle:after { + color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-color-gray-300, +.btn-check:checked+.btn.btn-active-color-gray-300, +.btn.btn-active-color-gray-300.active, +.btn.btn-active-color-gray-300.show, +.btn.btn-active-color-gray-300:active:not(.btn-active), +.btn.btn-active-color-gray-300:focus:not(.btn-active), +.btn.btn-active-color-gray-300:hover:not(.btn-active), +.show>.btn.btn-active-color-gray-300 { + color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-color-gray-300 .svg-icon, +.btn-check:active+.btn.btn-active-color-gray-300 i, +.btn-check:checked+.btn.btn-active-color-gray-300 .svg-icon, +.btn-check:checked+.btn.btn-active-color-gray-300 i, +.btn.btn-active-color-gray-300.active .svg-icon, +.btn.btn-active-color-gray-300.active i, +.btn.btn-active-color-gray-300.show .svg-icon, +.btn.btn-active-color-gray-300.show i, +.btn.btn-active-color-gray-300:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-300:active:not(.btn-active) i, +.btn.btn-active-color-gray-300:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-300:focus:not(.btn-active) i, +.btn.btn-active-color-gray-300:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-300:hover:not(.btn-active) i, +.show>.btn.btn-active-color-gray-300 .svg-icon, +.show>.btn.btn-active-color-gray-300 i { + color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-color-gray-300.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-gray-300.dropdown-toggle:after, +.btn.btn-active-color-gray-300.active.dropdown-toggle:after, +.btn.btn-active-color-gray-300.show.dropdown-toggle:after, +.btn.btn-active-color-gray-300:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-300:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-300:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-gray-300.dropdown-toggle:after { + color: #e4e6ef +} + +.btn.btn-icon-gray-300 .svg-icon, +.btn.btn-icon-gray-300 i { + color: #e4e6ef +} + +.btn.btn-icon-gray-300.dropdown-toggle:after { + color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-icon-gray-300 .svg-icon, +.btn-check:active+.btn.btn-active-icon-gray-300 i, +.btn-check:checked+.btn.btn-active-icon-gray-300 .svg-icon, +.btn-check:checked+.btn.btn-active-icon-gray-300 i, +.btn.btn-active-icon-gray-300.active .svg-icon, +.btn.btn-active-icon-gray-300.active i, +.btn.btn-active-icon-gray-300.show .svg-icon, +.btn.btn-active-icon-gray-300.show i, +.btn.btn-active-icon-gray-300:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-300:active:not(.btn-active) i, +.btn.btn-active-icon-gray-300:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-300:focus:not(.btn-active) i, +.btn.btn-active-icon-gray-300:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-300:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-gray-300 .svg-icon, +.show>.btn.btn-active-icon-gray-300 i { + color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-icon-gray-300.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-gray-300.dropdown-toggle:after, +.btn.btn-active-icon-gray-300.active.dropdown-toggle:after, +.btn.btn-active-icon-gray-300.show.dropdown-toggle:after, +.btn.btn-active-icon-gray-300:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-300:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-300:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-gray-300.dropdown-toggle:after { + color: #e4e6ef +} + +.btn.btn-text-gray-300 { + color: #e4e6ef +} + +.btn-check:active+.btn.btn-active-text-gray-300, +.btn-check:checked+.btn.btn-active-text-gray-300, +.btn.btn-active-text-gray-300.active, +.btn.btn-active-text-gray-300.show, +.btn.btn-active-text-gray-300:active:not(.btn-active), +.btn.btn-active-text-gray-300:focus:not(.btn-active), +.btn.btn-active-text-gray-300:hover:not(.btn-active), +.show>.btn.btn-active-text-gray-300 { + color: #e4e6ef +} + +.btn.btn-color-gray-400 { + color: #b5b5c3 +} + +.btn.btn-color-gray-400 .svg-icon, +.btn.btn-color-gray-400 i { + color: #b5b5c3 +} + +.btn.btn-color-gray-400.dropdown-toggle:after { + color: #b5b5c3 +} + +.btn-check:active+.btn.btn-active-color-gray-400, +.btn-check:checked+.btn.btn-active-color-gray-400, +.btn.btn-active-color-gray-400.active, +.btn.btn-active-color-gray-400.show, +.btn.btn-active-color-gray-400:active:not(.btn-active), +.btn.btn-active-color-gray-400:focus:not(.btn-active), +.btn.btn-active-color-gray-400:hover:not(.btn-active), +.show>.btn.btn-active-color-gray-400 { + color: #b5b5c3 +} + +.btn-check:active+.btn.btn-active-color-gray-400 .svg-icon, +.btn-check:active+.btn.btn-active-color-gray-400 i, +.btn-check:checked+.btn.btn-active-color-gray-400 .svg-icon, +.btn-check:checked+.btn.btn-active-color-gray-400 i, +.btn.btn-active-color-gray-400.active .svg-icon, +.btn.btn-active-color-gray-400.active i, +.btn.btn-active-color-gray-400.show .svg-icon, +.btn.btn-active-color-gray-400.show i, +.btn.btn-active-color-gray-400:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-400:active:not(.btn-active) i, +.btn.btn-active-color-gray-400:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-400:focus:not(.btn-active) i, +.btn.btn-active-color-gray-400:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-400:hover:not(.btn-active) i, +.show>.btn.btn-active-color-gray-400 .svg-icon, +.show>.btn.btn-active-color-gray-400 i { + color: #b5b5c3 +} + +.btn-check:active+.btn.btn-active-color-gray-400.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-gray-400.dropdown-toggle:after, +.btn.btn-active-color-gray-400.active.dropdown-toggle:after, +.btn.btn-active-color-gray-400.show.dropdown-toggle:after, +.btn.btn-active-color-gray-400:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-400:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-400:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-gray-400.dropdown-toggle:after { + color: #b5b5c3 +} + +.btn.btn-icon-gray-400 .svg-icon, +.btn.btn-icon-gray-400 i { + color: #b5b5c3 +} + +.btn.btn-icon-gray-400.dropdown-toggle:after { + color: #b5b5c3 +} + +.btn-check:active+.btn.btn-active-icon-gray-400 .svg-icon, +.btn-check:active+.btn.btn-active-icon-gray-400 i, +.btn-check:checked+.btn.btn-active-icon-gray-400 .svg-icon, +.btn-check:checked+.btn.btn-active-icon-gray-400 i, +.btn.btn-active-icon-gray-400.active .svg-icon, +.btn.btn-active-icon-gray-400.active i, +.btn.btn-active-icon-gray-400.show .svg-icon, +.btn.btn-active-icon-gray-400.show i, +.btn.btn-active-icon-gray-400:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-400:active:not(.btn-active) i, +.btn.btn-active-icon-gray-400:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-400:focus:not(.btn-active) i, +.btn.btn-active-icon-gray-400:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-400:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-gray-400 .svg-icon, +.show>.btn.btn-active-icon-gray-400 i { + color: #b5b5c3 +} + +.btn-check:active+.btn.btn-active-icon-gray-400.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-gray-400.dropdown-toggle:after, +.btn.btn-active-icon-gray-400.active.dropdown-toggle:after, +.btn.btn-active-icon-gray-400.show.dropdown-toggle:after, +.btn.btn-active-icon-gray-400:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-400:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-400:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-gray-400.dropdown-toggle:after { + color: #b5b5c3 +} + +.btn.btn-text-gray-400 { + color: #b5b5c3 +} + +.btn-check:active+.btn.btn-active-text-gray-400, +.btn-check:checked+.btn.btn-active-text-gray-400, +.btn.btn-active-text-gray-400.active, +.btn.btn-active-text-gray-400.show, +.btn.btn-active-text-gray-400:active:not(.btn-active), +.btn.btn-active-text-gray-400:focus:not(.btn-active), +.btn.btn-active-text-gray-400:hover:not(.btn-active), +.show>.btn.btn-active-text-gray-400 { + color: #b5b5c3 +} + +.btn.btn-color-gray-500 { + color: #a1a5b7 +} + +.btn.btn-color-gray-500 .svg-icon, +.btn.btn-color-gray-500 i { + color: #a1a5b7 +} + +.btn.btn-color-gray-500.dropdown-toggle:after { + color: #a1a5b7 +} + +.btn-check:active+.btn.btn-active-color-gray-500, +.btn-check:checked+.btn.btn-active-color-gray-500, +.btn.btn-active-color-gray-500.active, +.btn.btn-active-color-gray-500.show, +.btn.btn-active-color-gray-500:active:not(.btn-active), +.btn.btn-active-color-gray-500:focus:not(.btn-active), +.btn.btn-active-color-gray-500:hover:not(.btn-active), +.show>.btn.btn-active-color-gray-500 { + color: #a1a5b7 +} + +.btn-check:active+.btn.btn-active-color-gray-500 .svg-icon, +.btn-check:active+.btn.btn-active-color-gray-500 i, +.btn-check:checked+.btn.btn-active-color-gray-500 .svg-icon, +.btn-check:checked+.btn.btn-active-color-gray-500 i, +.btn.btn-active-color-gray-500.active .svg-icon, +.btn.btn-active-color-gray-500.active i, +.btn.btn-active-color-gray-500.show .svg-icon, +.btn.btn-active-color-gray-500.show i, +.btn.btn-active-color-gray-500:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-500:active:not(.btn-active) i, +.btn.btn-active-color-gray-500:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-500:focus:not(.btn-active) i, +.btn.btn-active-color-gray-500:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-500:hover:not(.btn-active) i, +.show>.btn.btn-active-color-gray-500 .svg-icon, +.show>.btn.btn-active-color-gray-500 i { + color: #a1a5b7 +} + +.btn-check:active+.btn.btn-active-color-gray-500.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-gray-500.dropdown-toggle:after, +.btn.btn-active-color-gray-500.active.dropdown-toggle:after, +.btn.btn-active-color-gray-500.show.dropdown-toggle:after, +.btn.btn-active-color-gray-500:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-500:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-500:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-gray-500.dropdown-toggle:after { + color: #a1a5b7 +} + +.btn.btn-icon-gray-500 .svg-icon, +.btn.btn-icon-gray-500 i { + color: #a1a5b7 +} + +.btn.btn-icon-gray-500.dropdown-toggle:after { + color: #a1a5b7 +} + +.btn-check:active+.btn.btn-active-icon-gray-500 .svg-icon, +.btn-check:active+.btn.btn-active-icon-gray-500 i, +.btn-check:checked+.btn.btn-active-icon-gray-500 .svg-icon, +.btn-check:checked+.btn.btn-active-icon-gray-500 i, +.btn.btn-active-icon-gray-500.active .svg-icon, +.btn.btn-active-icon-gray-500.active i, +.btn.btn-active-icon-gray-500.show .svg-icon, +.btn.btn-active-icon-gray-500.show i, +.btn.btn-active-icon-gray-500:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-500:active:not(.btn-active) i, +.btn.btn-active-icon-gray-500:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-500:focus:not(.btn-active) i, +.btn.btn-active-icon-gray-500:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-500:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-gray-500 .svg-icon, +.show>.btn.btn-active-icon-gray-500 i { + color: #a1a5b7 +} + +.btn-check:active+.btn.btn-active-icon-gray-500.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-gray-500.dropdown-toggle:after, +.btn.btn-active-icon-gray-500.active.dropdown-toggle:after, +.btn.btn-active-icon-gray-500.show.dropdown-toggle:after, +.btn.btn-active-icon-gray-500:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-500:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-500:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-gray-500.dropdown-toggle:after { + color: #a1a5b7 +} + +.btn.btn-text-gray-500 { + color: #a1a5b7 +} + +.btn-check:active+.btn.btn-active-text-gray-500, +.btn-check:checked+.btn.btn-active-text-gray-500, +.btn.btn-active-text-gray-500.active, +.btn.btn-active-text-gray-500.show, +.btn.btn-active-text-gray-500:active:not(.btn-active), +.btn.btn-active-text-gray-500:focus:not(.btn-active), +.btn.btn-active-text-gray-500:hover:not(.btn-active), +.show>.btn.btn-active-text-gray-500 { + color: #a1a5b7 +} + +.btn.btn-color-gray-600 { + color: #7e8299 +} + +.btn.btn-color-gray-600 .svg-icon, +.btn.btn-color-gray-600 i { + color: #7e8299 +} + +.btn.btn-color-gray-600.dropdown-toggle:after { + color: #7e8299 +} + +.btn-check:active+.btn.btn-active-color-gray-600, +.btn-check:checked+.btn.btn-active-color-gray-600, +.btn.btn-active-color-gray-600.active, +.btn.btn-active-color-gray-600.show, +.btn.btn-active-color-gray-600:active:not(.btn-active), +.btn.btn-active-color-gray-600:focus:not(.btn-active), +.btn.btn-active-color-gray-600:hover:not(.btn-active), +.show>.btn.btn-active-color-gray-600 { + color: #7e8299 +} + +.btn-check:active+.btn.btn-active-color-gray-600 .svg-icon, +.btn-check:active+.btn.btn-active-color-gray-600 i, +.btn-check:checked+.btn.btn-active-color-gray-600 .svg-icon, +.btn-check:checked+.btn.btn-active-color-gray-600 i, +.btn.btn-active-color-gray-600.active .svg-icon, +.btn.btn-active-color-gray-600.active i, +.btn.btn-active-color-gray-600.show .svg-icon, +.btn.btn-active-color-gray-600.show i, +.btn.btn-active-color-gray-600:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-600:active:not(.btn-active) i, +.btn.btn-active-color-gray-600:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-600:focus:not(.btn-active) i, +.btn.btn-active-color-gray-600:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-600:hover:not(.btn-active) i, +.show>.btn.btn-active-color-gray-600 .svg-icon, +.show>.btn.btn-active-color-gray-600 i { + color: #7e8299 +} + +.btn-check:active+.btn.btn-active-color-gray-600.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-gray-600.dropdown-toggle:after, +.btn.btn-active-color-gray-600.active.dropdown-toggle:after, +.btn.btn-active-color-gray-600.show.dropdown-toggle:after, +.btn.btn-active-color-gray-600:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-600:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-600:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-gray-600.dropdown-toggle:after { + color: #7e8299 +} + +.btn.btn-icon-gray-600 .svg-icon, +.btn.btn-icon-gray-600 i { + color: #7e8299 +} + +.btn.btn-icon-gray-600.dropdown-toggle:after { + color: #7e8299 +} + +.btn-check:active+.btn.btn-active-icon-gray-600 .svg-icon, +.btn-check:active+.btn.btn-active-icon-gray-600 i, +.btn-check:checked+.btn.btn-active-icon-gray-600 .svg-icon, +.btn-check:checked+.btn.btn-active-icon-gray-600 i, +.btn.btn-active-icon-gray-600.active .svg-icon, +.btn.btn-active-icon-gray-600.active i, +.btn.btn-active-icon-gray-600.show .svg-icon, +.btn.btn-active-icon-gray-600.show i, +.btn.btn-active-icon-gray-600:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-600:active:not(.btn-active) i, +.btn.btn-active-icon-gray-600:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-600:focus:not(.btn-active) i, +.btn.btn-active-icon-gray-600:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-600:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-gray-600 .svg-icon, +.show>.btn.btn-active-icon-gray-600 i { + color: #7e8299 +} + +.btn-check:active+.btn.btn-active-icon-gray-600.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-gray-600.dropdown-toggle:after, +.btn.btn-active-icon-gray-600.active.dropdown-toggle:after, +.btn.btn-active-icon-gray-600.show.dropdown-toggle:after, +.btn.btn-active-icon-gray-600:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-600:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-600:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-gray-600.dropdown-toggle:after { + color: #7e8299 +} + +.btn.btn-text-gray-600 { + color: #7e8299 +} + +.btn-check:active+.btn.btn-active-text-gray-600, +.btn-check:checked+.btn.btn-active-text-gray-600, +.btn.btn-active-text-gray-600.active, +.btn.btn-active-text-gray-600.show, +.btn.btn-active-text-gray-600:active:not(.btn-active), +.btn.btn-active-text-gray-600:focus:not(.btn-active), +.btn.btn-active-text-gray-600:hover:not(.btn-active), +.show>.btn.btn-active-text-gray-600 { + color: #7e8299 +} + +.btn.btn-color-gray-700 { + color: #5e6278 +} + +.btn.btn-color-gray-700 .svg-icon, +.btn.btn-color-gray-700 i { + color: #5e6278 +} + +.btn.btn-color-gray-700.dropdown-toggle:after { + color: #5e6278 +} + +.btn-check:active+.btn.btn-active-color-gray-700, +.btn-check:checked+.btn.btn-active-color-gray-700, +.btn.btn-active-color-gray-700.active, +.btn.btn-active-color-gray-700.show, +.btn.btn-active-color-gray-700:active:not(.btn-active), +.btn.btn-active-color-gray-700:focus:not(.btn-active), +.btn.btn-active-color-gray-700:hover:not(.btn-active), +.show>.btn.btn-active-color-gray-700 { + color: #5e6278 +} + +.btn-check:active+.btn.btn-active-color-gray-700 .svg-icon, +.btn-check:active+.btn.btn-active-color-gray-700 i, +.btn-check:checked+.btn.btn-active-color-gray-700 .svg-icon, +.btn-check:checked+.btn.btn-active-color-gray-700 i, +.btn.btn-active-color-gray-700.active .svg-icon, +.btn.btn-active-color-gray-700.active i, +.btn.btn-active-color-gray-700.show .svg-icon, +.btn.btn-active-color-gray-700.show i, +.btn.btn-active-color-gray-700:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-700:active:not(.btn-active) i, +.btn.btn-active-color-gray-700:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-700:focus:not(.btn-active) i, +.btn.btn-active-color-gray-700:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-700:hover:not(.btn-active) i, +.show>.btn.btn-active-color-gray-700 .svg-icon, +.show>.btn.btn-active-color-gray-700 i { + color: #5e6278 +} + +.btn-check:active+.btn.btn-active-color-gray-700.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-gray-700.dropdown-toggle:after, +.btn.btn-active-color-gray-700.active.dropdown-toggle:after, +.btn.btn-active-color-gray-700.show.dropdown-toggle:after, +.btn.btn-active-color-gray-700:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-700:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-700:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-gray-700.dropdown-toggle:after { + color: #5e6278 +} + +.btn.btn-icon-gray-700 .svg-icon, +.btn.btn-icon-gray-700 i { + color: #5e6278 +} + +.btn.btn-icon-gray-700.dropdown-toggle:after { + color: #5e6278 +} + +.btn-check:active+.btn.btn-active-icon-gray-700 .svg-icon, +.btn-check:active+.btn.btn-active-icon-gray-700 i, +.btn-check:checked+.btn.btn-active-icon-gray-700 .svg-icon, +.btn-check:checked+.btn.btn-active-icon-gray-700 i, +.btn.btn-active-icon-gray-700.active .svg-icon, +.btn.btn-active-icon-gray-700.active i, +.btn.btn-active-icon-gray-700.show .svg-icon, +.btn.btn-active-icon-gray-700.show i, +.btn.btn-active-icon-gray-700:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-700:active:not(.btn-active) i, +.btn.btn-active-icon-gray-700:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-700:focus:not(.btn-active) i, +.btn.btn-active-icon-gray-700:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-700:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-gray-700 .svg-icon, +.show>.btn.btn-active-icon-gray-700 i { + color: #5e6278 +} + +.btn-check:active+.btn.btn-active-icon-gray-700.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-gray-700.dropdown-toggle:after, +.btn.btn-active-icon-gray-700.active.dropdown-toggle:after, +.btn.btn-active-icon-gray-700.show.dropdown-toggle:after, +.btn.btn-active-icon-gray-700:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-700:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-700:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-gray-700.dropdown-toggle:after { + color: #5e6278 +} + +.btn.btn-text-gray-700 { + color: #5e6278 +} + +.btn-check:active+.btn.btn-active-text-gray-700, +.btn-check:checked+.btn.btn-active-text-gray-700, +.btn.btn-active-text-gray-700.active, +.btn.btn-active-text-gray-700.show, +.btn.btn-active-text-gray-700:active:not(.btn-active), +.btn.btn-active-text-gray-700:focus:not(.btn-active), +.btn.btn-active-text-gray-700:hover:not(.btn-active), +.show>.btn.btn-active-text-gray-700 { + color: #5e6278 +} + +.btn.btn-color-gray-800 { + color: #3f4254 +} + +.btn.btn-color-gray-800 .svg-icon, +.btn.btn-color-gray-800 i { + color: #3f4254 +} + +.btn.btn-color-gray-800.dropdown-toggle:after { + color: #3f4254 +} + +.btn-check:active+.btn.btn-active-color-gray-800, +.btn-check:checked+.btn.btn-active-color-gray-800, +.btn.btn-active-color-gray-800.active, +.btn.btn-active-color-gray-800.show, +.btn.btn-active-color-gray-800:active:not(.btn-active), +.btn.btn-active-color-gray-800:focus:not(.btn-active), +.btn.btn-active-color-gray-800:hover:not(.btn-active), +.show>.btn.btn-active-color-gray-800 { + color: #3f4254 +} + +.btn-check:active+.btn.btn-active-color-gray-800 .svg-icon, +.btn-check:active+.btn.btn-active-color-gray-800 i, +.btn-check:checked+.btn.btn-active-color-gray-800 .svg-icon, +.btn-check:checked+.btn.btn-active-color-gray-800 i, +.btn.btn-active-color-gray-800.active .svg-icon, +.btn.btn-active-color-gray-800.active i, +.btn.btn-active-color-gray-800.show .svg-icon, +.btn.btn-active-color-gray-800.show i, +.btn.btn-active-color-gray-800:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-800:active:not(.btn-active) i, +.btn.btn-active-color-gray-800:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-800:focus:not(.btn-active) i, +.btn.btn-active-color-gray-800:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-800:hover:not(.btn-active) i, +.show>.btn.btn-active-color-gray-800 .svg-icon, +.show>.btn.btn-active-color-gray-800 i { + color: #3f4254 +} + +.btn-check:active+.btn.btn-active-color-gray-800.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-gray-800.dropdown-toggle:after, +.btn.btn-active-color-gray-800.active.dropdown-toggle:after, +.btn.btn-active-color-gray-800.show.dropdown-toggle:after, +.btn.btn-active-color-gray-800:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-800:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-800:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-gray-800.dropdown-toggle:after { + color: #3f4254 +} + +.btn.btn-icon-gray-800 .svg-icon, +.btn.btn-icon-gray-800 i { + color: #3f4254 +} + +.btn.btn-icon-gray-800.dropdown-toggle:after { + color: #3f4254 +} + +.btn-check:active+.btn.btn-active-icon-gray-800 .svg-icon, +.btn-check:active+.btn.btn-active-icon-gray-800 i, +.btn-check:checked+.btn.btn-active-icon-gray-800 .svg-icon, +.btn-check:checked+.btn.btn-active-icon-gray-800 i, +.btn.btn-active-icon-gray-800.active .svg-icon, +.btn.btn-active-icon-gray-800.active i, +.btn.btn-active-icon-gray-800.show .svg-icon, +.btn.btn-active-icon-gray-800.show i, +.btn.btn-active-icon-gray-800:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-800:active:not(.btn-active) i, +.btn.btn-active-icon-gray-800:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-800:focus:not(.btn-active) i, +.btn.btn-active-icon-gray-800:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-800:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-gray-800 .svg-icon, +.show>.btn.btn-active-icon-gray-800 i { + color: #3f4254 +} + +.btn-check:active+.btn.btn-active-icon-gray-800.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-gray-800.dropdown-toggle:after, +.btn.btn-active-icon-gray-800.active.dropdown-toggle:after, +.btn.btn-active-icon-gray-800.show.dropdown-toggle:after, +.btn.btn-active-icon-gray-800:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-800:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-800:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-gray-800.dropdown-toggle:after { + color: #3f4254 +} + +.btn.btn-text-gray-800 { + color: #3f4254 +} + +.btn-check:active+.btn.btn-active-text-gray-800, +.btn-check:checked+.btn.btn-active-text-gray-800, +.btn.btn-active-text-gray-800.active, +.btn.btn-active-text-gray-800.show, +.btn.btn-active-text-gray-800:active:not(.btn-active), +.btn.btn-active-text-gray-800:focus:not(.btn-active), +.btn.btn-active-text-gray-800:hover:not(.btn-active), +.show>.btn.btn-active-text-gray-800 { + color: #3f4254 +} + +.btn.btn-color-gray-900 { + color: #181c32 +} + +.btn.btn-color-gray-900 .svg-icon, +.btn.btn-color-gray-900 i { + color: #181c32 +} + +.btn.btn-color-gray-900.dropdown-toggle:after { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-color-gray-900, +.btn-check:checked+.btn.btn-active-color-gray-900, +.btn.btn-active-color-gray-900.active, +.btn.btn-active-color-gray-900.show, +.btn.btn-active-color-gray-900:active:not(.btn-active), +.btn.btn-active-color-gray-900:focus:not(.btn-active), +.btn.btn-active-color-gray-900:hover:not(.btn-active), +.show>.btn.btn-active-color-gray-900 { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-color-gray-900 .svg-icon, +.btn-check:active+.btn.btn-active-color-gray-900 i, +.btn-check:checked+.btn.btn-active-color-gray-900 .svg-icon, +.btn-check:checked+.btn.btn-active-color-gray-900 i, +.btn.btn-active-color-gray-900.active .svg-icon, +.btn.btn-active-color-gray-900.active i, +.btn.btn-active-color-gray-900.show .svg-icon, +.btn.btn-active-color-gray-900.show i, +.btn.btn-active-color-gray-900:active:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-900:active:not(.btn-active) i, +.btn.btn-active-color-gray-900:focus:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-900:focus:not(.btn-active) i, +.btn.btn-active-color-gray-900:hover:not(.btn-active) .svg-icon, +.btn.btn-active-color-gray-900:hover:not(.btn-active) i, +.show>.btn.btn-active-color-gray-900 .svg-icon, +.show>.btn.btn-active-color-gray-900 i { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-color-gray-900.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-color-gray-900.dropdown-toggle:after, +.btn.btn-active-color-gray-900.active.dropdown-toggle:after, +.btn.btn-active-color-gray-900.show.dropdown-toggle:after, +.btn.btn-active-color-gray-900:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-900:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-color-gray-900:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-color-gray-900.dropdown-toggle:after { + color: #181c32 +} + +.btn.btn-icon-gray-900 .svg-icon, +.btn.btn-icon-gray-900 i { + color: #181c32 +} + +.btn.btn-icon-gray-900.dropdown-toggle:after { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-icon-gray-900 .svg-icon, +.btn-check:active+.btn.btn-active-icon-gray-900 i, +.btn-check:checked+.btn.btn-active-icon-gray-900 .svg-icon, +.btn-check:checked+.btn.btn-active-icon-gray-900 i, +.btn.btn-active-icon-gray-900.active .svg-icon, +.btn.btn-active-icon-gray-900.active i, +.btn.btn-active-icon-gray-900.show .svg-icon, +.btn.btn-active-icon-gray-900.show i, +.btn.btn-active-icon-gray-900:active:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-900:active:not(.btn-active) i, +.btn.btn-active-icon-gray-900:focus:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-900:focus:not(.btn-active) i, +.btn.btn-active-icon-gray-900:hover:not(.btn-active) .svg-icon, +.btn.btn-active-icon-gray-900:hover:not(.btn-active) i, +.show>.btn.btn-active-icon-gray-900 .svg-icon, +.show>.btn.btn-active-icon-gray-900 i { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-icon-gray-900.dropdown-toggle:after, +.btn-check:checked+.btn.btn-active-icon-gray-900.dropdown-toggle:after, +.btn.btn-active-icon-gray-900.active.dropdown-toggle:after, +.btn.btn-active-icon-gray-900.show.dropdown-toggle:after, +.btn.btn-active-icon-gray-900:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-900:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-active-icon-gray-900:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-active-icon-gray-900.dropdown-toggle:after { + color: #181c32 +} + +.btn.btn-text-gray-900 { + color: #181c32 +} + +.btn-check:active+.btn.btn-active-text-gray-900, +.btn-check:checked+.btn.btn-active-text-gray-900, +.btn.btn-active-text-gray-900.active, +.btn.btn-active-text-gray-900.show, +.btn.btn-active-text-gray-900:active:not(.btn-active), +.btn.btn-active-text-gray-900:focus:not(.btn-active), +.btn.btn-active-text-gray-900:hover:not(.btn-active), +.show>.btn.btn-active-text-gray-900 { + color: #181c32 +} + +.btn.btn-facebook { + color: #fff; + border-color: #3b5998; + background-color: #3b5998 +} + +.btn.btn-facebook .svg-icon, +.btn.btn-facebook i { + color: #fff +} + +.btn.btn-facebook.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-facebook, +.btn-check:checked+.btn.btn-facebook, +.btn.btn-facebook.active, +.btn.btn-facebook.show, +.btn.btn-facebook:active:not(.btn-active), +.btn.btn-facebook:focus:not(.btn-active), +.btn.btn-facebook:hover:not(.btn-active), +.show>.btn.btn-facebook { + border-color: #30497c; + background-color: #30497c !important +} + +.btn.btn-light-facebook { + color: #3b5998; + border-color: rgba(59, 89, 152, .1); + background-color: rgba(59, 89, 152, .1) +} + +.btn.btn-light-facebook .svg-icon, +.btn.btn-light-facebook i { + color: #3b5998 +} + +.btn.btn-light-facebook.dropdown-toggle:after { + color: #3b5998 +} + +.btn-check:active+.btn.btn-light-facebook, +.btn-check:checked+.btn.btn-light-facebook, +.btn.btn-light-facebook.active, +.btn.btn-light-facebook.show, +.btn.btn-light-facebook:active:not(.btn-active), +.btn.btn-light-facebook:focus:not(.btn-active), +.btn.btn-light-facebook:hover:not(.btn-active), +.show>.btn.btn-light-facebook { + color: #fff; + border-color: #3b5998; + background-color: #3b5998 !important +} + +.btn-check:active+.btn.btn-light-facebook .svg-icon, +.btn-check:active+.btn.btn-light-facebook i, +.btn-check:checked+.btn.btn-light-facebook .svg-icon, +.btn-check:checked+.btn.btn-light-facebook i, +.btn.btn-light-facebook.active .svg-icon, +.btn.btn-light-facebook.active i, +.btn.btn-light-facebook.show .svg-icon, +.btn.btn-light-facebook.show i, +.btn.btn-light-facebook:active:not(.btn-active) .svg-icon, +.btn.btn-light-facebook:active:not(.btn-active) i, +.btn.btn-light-facebook:focus:not(.btn-active) .svg-icon, +.btn.btn-light-facebook:focus:not(.btn-active) i, +.btn.btn-light-facebook:hover:not(.btn-active) .svg-icon, +.btn.btn-light-facebook:hover:not(.btn-active) i, +.show>.btn.btn-light-facebook .svg-icon, +.show>.btn.btn-light-facebook i { + color: #fff +} + +.btn-check:active+.btn.btn-light-facebook.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light-facebook.dropdown-toggle:after, +.btn.btn-light-facebook.active.dropdown-toggle:after, +.btn.btn-light-facebook.show.dropdown-toggle:after, +.btn.btn-light-facebook:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-facebook:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-facebook:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light-facebook.dropdown-toggle:after { + color: #fff +} + +.btn.btn-google { + color: #fff; + border-color: #dd4b39; + background-color: #dd4b39 +} + +.btn.btn-google .svg-icon, +.btn.btn-google i { + color: #fff +} + +.btn.btn-google.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-google, +.btn-check:checked+.btn.btn-google, +.btn.btn-google.active, +.btn.btn-google.show, +.btn.btn-google:active:not(.btn-active), +.btn.btn-google:focus:not(.btn-active), +.btn.btn-google:hover:not(.btn-active), +.show>.btn.btn-google { + border-color: #cd3623; + background-color: #cd3623 !important +} + +.btn.btn-light-google { + color: #dd4b39; + border-color: rgba(221, 75, 57, .1); + background-color: rgba(221, 75, 57, .1) +} + +.btn.btn-light-google .svg-icon, +.btn.btn-light-google i { + color: #dd4b39 +} + +.btn.btn-light-google.dropdown-toggle:after { + color: #dd4b39 +} + +.btn-check:active+.btn.btn-light-google, +.btn-check:checked+.btn.btn-light-google, +.btn.btn-light-google.active, +.btn.btn-light-google.show, +.btn.btn-light-google:active:not(.btn-active), +.btn.btn-light-google:focus:not(.btn-active), +.btn.btn-light-google:hover:not(.btn-active), +.show>.btn.btn-light-google { + color: #fff; + border-color: #dd4b39; + background-color: #dd4b39 !important +} + +.btn-check:active+.btn.btn-light-google .svg-icon, +.btn-check:active+.btn.btn-light-google i, +.btn-check:checked+.btn.btn-light-google .svg-icon, +.btn-check:checked+.btn.btn-light-google i, +.btn.btn-light-google.active .svg-icon, +.btn.btn-light-google.active i, +.btn.btn-light-google.show .svg-icon, +.btn.btn-light-google.show i, +.btn.btn-light-google:active:not(.btn-active) .svg-icon, +.btn.btn-light-google:active:not(.btn-active) i, +.btn.btn-light-google:focus:not(.btn-active) .svg-icon, +.btn.btn-light-google:focus:not(.btn-active) i, +.btn.btn-light-google:hover:not(.btn-active) .svg-icon, +.btn.btn-light-google:hover:not(.btn-active) i, +.show>.btn.btn-light-google .svg-icon, +.show>.btn.btn-light-google i { + color: #fff +} + +.btn-check:active+.btn.btn-light-google.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light-google.dropdown-toggle:after, +.btn.btn-light-google.active.dropdown-toggle:after, +.btn.btn-light-google.show.dropdown-toggle:after, +.btn.btn-light-google:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-google:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-google:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light-google.dropdown-toggle:after { + color: #fff +} + +.btn.btn-twitter { + color: #fff; + border-color: #1da1f2; + background-color: #1da1f2 +} + +.btn.btn-twitter .svg-icon, +.btn.btn-twitter i { + color: #fff +} + +.btn.btn-twitter.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-twitter, +.btn-check:checked+.btn.btn-twitter, +.btn.btn-twitter.active, +.btn.btn-twitter.show, +.btn.btn-twitter:active:not(.btn-active), +.btn.btn-twitter:focus:not(.btn-active), +.btn.btn-twitter:hover:not(.btn-active), +.show>.btn.btn-twitter { + border-color: #0d8ddc; + background-color: #0d8ddc !important +} + +.btn.btn-light-twitter { + color: #1da1f2; + border-color: rgba(29, 161, 242, .1); + background-color: rgba(29, 161, 242, .1) +} + +.btn.btn-light-twitter .svg-icon, +.btn.btn-light-twitter i { + color: #1da1f2 +} + +.btn.btn-light-twitter.dropdown-toggle:after { + color: #1da1f2 +} + +.btn-check:active+.btn.btn-light-twitter, +.btn-check:checked+.btn.btn-light-twitter, +.btn.btn-light-twitter.active, +.btn.btn-light-twitter.show, +.btn.btn-light-twitter:active:not(.btn-active), +.btn.btn-light-twitter:focus:not(.btn-active), +.btn.btn-light-twitter:hover:not(.btn-active), +.show>.btn.btn-light-twitter { + color: #fff; + border-color: #1da1f2; + background-color: #1da1f2 !important +} + +.btn-check:active+.btn.btn-light-twitter .svg-icon, +.btn-check:active+.btn.btn-light-twitter i, +.btn-check:checked+.btn.btn-light-twitter .svg-icon, +.btn-check:checked+.btn.btn-light-twitter i, +.btn.btn-light-twitter.active .svg-icon, +.btn.btn-light-twitter.active i, +.btn.btn-light-twitter.show .svg-icon, +.btn.btn-light-twitter.show i, +.btn.btn-light-twitter:active:not(.btn-active) .svg-icon, +.btn.btn-light-twitter:active:not(.btn-active) i, +.btn.btn-light-twitter:focus:not(.btn-active) .svg-icon, +.btn.btn-light-twitter:focus:not(.btn-active) i, +.btn.btn-light-twitter:hover:not(.btn-active) .svg-icon, +.btn.btn-light-twitter:hover:not(.btn-active) i, +.show>.btn.btn-light-twitter .svg-icon, +.show>.btn.btn-light-twitter i { + color: #fff +} + +.btn-check:active+.btn.btn-light-twitter.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light-twitter.dropdown-toggle:after, +.btn.btn-light-twitter.active.dropdown-toggle:after, +.btn.btn-light-twitter.show.dropdown-toggle:after, +.btn.btn-light-twitter:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-twitter:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-twitter:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light-twitter.dropdown-toggle:after { + color: #fff +} + +.btn.btn-instagram { + color: #fff; + border-color: #e1306c; + background-color: #e1306c +} + +.btn.btn-instagram .svg-icon, +.btn.btn-instagram i { + color: #fff +} + +.btn.btn-instagram.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-instagram, +.btn-check:checked+.btn.btn-instagram, +.btn.btn-instagram.active, +.btn.btn-instagram.show, +.btn.btn-instagram:active:not(.btn-active), +.btn.btn-instagram:focus:not(.btn-active), +.btn.btn-instagram:hover:not(.btn-active), +.show>.btn.btn-instagram { + border-color: #cd1e59; + background-color: #cd1e59 !important +} + +.btn.btn-light-instagram { + color: #e1306c; + border-color: rgba(225, 48, 108, .1); + background-color: rgba(225, 48, 108, .1) +} + +.btn.btn-light-instagram .svg-icon, +.btn.btn-light-instagram i { + color: #e1306c +} + +.btn.btn-light-instagram.dropdown-toggle:after { + color: #e1306c +} + +.btn-check:active+.btn.btn-light-instagram, +.btn-check:checked+.btn.btn-light-instagram, +.btn.btn-light-instagram.active, +.btn.btn-light-instagram.show, +.btn.btn-light-instagram:active:not(.btn-active), +.btn.btn-light-instagram:focus:not(.btn-active), +.btn.btn-light-instagram:hover:not(.btn-active), +.show>.btn.btn-light-instagram { + color: #fff; + border-color: #e1306c; + background-color: #e1306c !important +} + +.btn-check:active+.btn.btn-light-instagram .svg-icon, +.btn-check:active+.btn.btn-light-instagram i, +.btn-check:checked+.btn.btn-light-instagram .svg-icon, +.btn-check:checked+.btn.btn-light-instagram i, +.btn.btn-light-instagram.active .svg-icon, +.btn.btn-light-instagram.active i, +.btn.btn-light-instagram.show .svg-icon, +.btn.btn-light-instagram.show i, +.btn.btn-light-instagram:active:not(.btn-active) .svg-icon, +.btn.btn-light-instagram:active:not(.btn-active) i, +.btn.btn-light-instagram:focus:not(.btn-active) .svg-icon, +.btn.btn-light-instagram:focus:not(.btn-active) i, +.btn.btn-light-instagram:hover:not(.btn-active) .svg-icon, +.btn.btn-light-instagram:hover:not(.btn-active) i, +.show>.btn.btn-light-instagram .svg-icon, +.show>.btn.btn-light-instagram i { + color: #fff +} + +.btn-check:active+.btn.btn-light-instagram.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light-instagram.dropdown-toggle:after, +.btn.btn-light-instagram.active.dropdown-toggle:after, +.btn.btn-light-instagram.show.dropdown-toggle:after, +.btn.btn-light-instagram:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-instagram:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-instagram:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light-instagram.dropdown-toggle:after { + color: #fff +} + +.btn.btn-youtube { + color: #fff; + border-color: red; + background-color: red +} + +.btn.btn-youtube .svg-icon, +.btn.btn-youtube i { + color: #fff +} + +.btn.btn-youtube.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-youtube, +.btn-check:checked+.btn.btn-youtube, +.btn.btn-youtube.active, +.btn.btn-youtube.show, +.btn.btn-youtube:active:not(.btn-active), +.btn.btn-youtube:focus:not(.btn-active), +.btn.btn-youtube:hover:not(.btn-active), +.show>.btn.btn-youtube { + border-color: #d90000; + background-color: #d90000 !important +} + +.btn.btn-light-youtube { + color: red; + border-color: rgba(255, 0, 0, .1); + background-color: rgba(255, 0, 0, .1) +} + +.btn.btn-light-youtube .svg-icon, +.btn.btn-light-youtube i { + color: red +} + +.btn.btn-light-youtube.dropdown-toggle:after { + color: red +} + +.btn-check:active+.btn.btn-light-youtube, +.btn-check:checked+.btn.btn-light-youtube, +.btn.btn-light-youtube.active, +.btn.btn-light-youtube.show, +.btn.btn-light-youtube:active:not(.btn-active), +.btn.btn-light-youtube:focus:not(.btn-active), +.btn.btn-light-youtube:hover:not(.btn-active), +.show>.btn.btn-light-youtube { + color: #fff; + border-color: red; + background-color: red !important +} + +.btn-check:active+.btn.btn-light-youtube .svg-icon, +.btn-check:active+.btn.btn-light-youtube i, +.btn-check:checked+.btn.btn-light-youtube .svg-icon, +.btn-check:checked+.btn.btn-light-youtube i, +.btn.btn-light-youtube.active .svg-icon, +.btn.btn-light-youtube.active i, +.btn.btn-light-youtube.show .svg-icon, +.btn.btn-light-youtube.show i, +.btn.btn-light-youtube:active:not(.btn-active) .svg-icon, +.btn.btn-light-youtube:active:not(.btn-active) i, +.btn.btn-light-youtube:focus:not(.btn-active) .svg-icon, +.btn.btn-light-youtube:focus:not(.btn-active) i, +.btn.btn-light-youtube:hover:not(.btn-active) .svg-icon, +.btn.btn-light-youtube:hover:not(.btn-active) i, +.show>.btn.btn-light-youtube .svg-icon, +.show>.btn.btn-light-youtube i { + color: #fff +} + +.btn-check:active+.btn.btn-light-youtube.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light-youtube.dropdown-toggle:after, +.btn.btn-light-youtube.active.dropdown-toggle:after, +.btn.btn-light-youtube.show.dropdown-toggle:after, +.btn.btn-light-youtube:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-youtube:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-youtube:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light-youtube.dropdown-toggle:after { + color: #fff +} + +.btn.btn-linkedin { + color: #fff; + border-color: #0077b5; + background-color: #0077b5 +} + +.btn.btn-linkedin .svg-icon, +.btn.btn-linkedin i { + color: #fff +} + +.btn.btn-linkedin.dropdown-toggle:after { + color: #fff +} + +.btn-check:active+.btn.btn-linkedin, +.btn-check:checked+.btn.btn-linkedin, +.btn.btn-linkedin.active, +.btn.btn-linkedin.show, +.btn.btn-linkedin:active:not(.btn-active), +.btn.btn-linkedin:focus:not(.btn-active), +.btn.btn-linkedin:hover:not(.btn-active), +.show>.btn.btn-linkedin { + border-color: #005e8f; + background-color: #005e8f !important +} + +.btn.btn-light-linkedin { + color: #0077b5; + border-color: rgba(0, 119, 181, .1); + background-color: rgba(0, 119, 181, .1) +} + +.btn.btn-light-linkedin .svg-icon, +.btn.btn-light-linkedin i { + color: #0077b5 +} + +.btn.btn-light-linkedin.dropdown-toggle:after { + color: #0077b5 +} + +.btn-check:active+.btn.btn-light-linkedin, +.btn-check:checked+.btn.btn-light-linkedin, +.btn.btn-light-linkedin.active, +.btn.btn-light-linkedin.show, +.btn.btn-light-linkedin:active:not(.btn-active), +.btn.btn-light-linkedin:focus:not(.btn-active), +.btn.btn-light-linkedin:hover:not(.btn-active), +.show>.btn.btn-light-linkedin { + color: #fff; + border-color: #0077b5; + background-color: #0077b5 !important +} + +.btn-check:active+.btn.btn-light-linkedin .svg-icon, +.btn-check:active+.btn.btn-light-linkedin i, +.btn-check:checked+.btn.btn-light-linkedin .svg-icon, +.btn-check:checked+.btn.btn-light-linkedin i, +.btn.btn-light-linkedin.active .svg-icon, +.btn.btn-light-linkedin.active i, +.btn.btn-light-linkedin.show .svg-icon, +.btn.btn-light-linkedin.show i, +.btn.btn-light-linkedin:active:not(.btn-active) .svg-icon, +.btn.btn-light-linkedin:active:not(.btn-active) i, +.btn.btn-light-linkedin:focus:not(.btn-active) .svg-icon, +.btn.btn-light-linkedin:focus:not(.btn-active) i, +.btn.btn-light-linkedin:hover:not(.btn-active) .svg-icon, +.btn.btn-light-linkedin:hover:not(.btn-active) i, +.show>.btn.btn-light-linkedin .svg-icon, +.show>.btn.btn-light-linkedin i { + color: #fff +} + +.btn-check:active+.btn.btn-light-linkedin.dropdown-toggle:after, +.btn-check:checked+.btn.btn-light-linkedin.dropdown-toggle:after, +.btn.btn-light-linkedin.active.dropdown-toggle:after, +.btn.btn-light-linkedin.show.dropdown-toggle:after, +.btn.btn-light-linkedin:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-linkedin:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-light-linkedin:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-light-linkedin.dropdown-toggle:after { + color: #fff +} + +.btn.btn-outline.btn-outline-dashed { + border-width: 1px; + border-style: dashed +} + +.btn-check:active+.btn.btn-outline.btn-outline-dashed, +.btn-check:checked+.btn.btn-outline.btn-outline-dashed, +.btn.btn-outline.btn-outline-dashed.active, +.btn.btn-outline.btn-outline-dashed.show, +.btn.btn-outline.btn-outline-dashed:active:not(.btn-active), +.btn.btn-outline.btn-outline-dashed:focus:not(.btn-active), +.btn.btn-outline.btn-outline-dashed:hover:not(.btn-active), +.show>.btn.btn-outline.btn-outline-dashed { + border-color: #009ef7 +} + +.btn.btn-outline.btn-outline-dashed.btn-outline-default { + border-width: 1px; + border-style: dashed; + color: #7e8299; + border-color: #e4e6ef +} + +.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon, +.btn.btn-outline.btn-outline-dashed.btn-outline-default i { + color: #7e8299 +} + +.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after { + color: #7e8299 +} + +.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default, +.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default, +.btn.btn-outline.btn-outline-dashed.btn-outline-default.active, +.btn.btn-outline.btn-outline-dashed.btn-outline-default.show, +.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active), +.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active), +.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active), +.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default { + color: #009ef7; + border-color: #009ef7; + background-color: #f1faff !important +} + +.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon, +.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default i, +.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon, +.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default i, +.btn.btn-outline.btn-outline-dashed.btn-outline-default.active .svg-icon, +.btn.btn-outline.btn-outline-dashed.btn-outline-default.active i, +.btn.btn-outline.btn-outline-dashed.btn-outline-default.show .svg-icon, +.btn.btn-outline.btn-outline-dashed.btn-outline-default.show i, +.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active) .svg-icon, +.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active) i, +.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active) .svg-icon, +.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active) i, +.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active) .svg-icon, +.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active) i, +.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon, +.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default i { + color: #009ef7 +} + +.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after, +.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after, +.btn.btn-outline.btn-outline-dashed.btn-outline-default.active.dropdown-toggle:after, +.btn.btn-outline.btn-outline-dashed.btn-outline-default.show.dropdown-toggle:after, +.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active).dropdown-toggle:after, +.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active).dropdown-toggle:after, +.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active).dropdown-toggle:after, +.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after { + color: #009ef7 +} + +code:not([class*=language-]) { + font-weight: 400; + color: #b93993; + line-height: inherit; + font-size: inherit; + background-color: #f1f3f8; + padding: .1rem .4rem; + margin: 0 .5rem; + box-shadow: 0 3px 9px rgba(0, 0, 0, .08); + border-radius: .3rem +} + +.form-control { + box-shadow: none !important +} + +.dropdown.show>.form-control { + color: #5e6278; + background-color: #fff; + border-color: #b5b5c3 +} + +.form-control[readonly] { + background-color: #fff +} + +.form-control.form-control-solid { + background-color: #f5f8fa; + border-color: #f5f8fa; + color: #5e6278; + transition: color .2s ease, background-color .2s ease +} + +.form-control.form-control-solid::placeholder { + color: #a1a5b7 +} + +.form-control.form-control-solid::-moz-placeholder { + color: #a1a5b7; + opacity: 1 +} + +.dropdown.show>.form-control.form-control-solid, +.form-control.form-control-solid.active, +.form-control.form-control-solid.focus, +.form-control.form-control-solid:active, +.form-control.form-control-solid:focus { + background-color: #eef3f7; + border-color: #eef3f7; + color: #5e6278; + transition: color .2s ease, background-color .2s ease +} + +.form-control.form-control-transparent { + background-color: transparent; + border-color: transparent +} + +.dropdown.show>.form-control.form-control-transparent, +.form-control.form-control-transparent.active, +.form-control.form-control-transparent.focus, +.form-control.form-control-transparent:active, +.form-control.form-control-transparent:focus { + background-color: transparent; + border-color: transparent +} + +.form-control.form-control-flush { + border: 0; + background-color: transparent; + outline: 0 !important; + box-shadow: none; + border-radius: 0 +} + +.placeholder-gray-500::placeholder { + color: #a1a5b7 +} + +.placeholder-gray-500::-moz-placeholder { + color: #a1a5b7; + opacity: 1 +} + +.placeholder-white::placeholder { + color: #fff +} + +.placeholder-white::-moz-placeholder { + color: #fff; + opacity: 1 +} + +.resize-none { + resize: none +} + +.form-control-solid-bg { + background-color: #f5f8fa +} + +.form-select { + box-shadow: none !important +} + +.form-select.form-select-solid { + background-color: #f5f8fa; + border-color: #f5f8fa; + color: #5e6278; + transition: color .2s ease, background-color .2s ease +} + +.form-select.form-select-solid::placeholder { + color: #a1a5b7 +} + +.form-select.form-select-solid::-moz-placeholder { + color: #a1a5b7; + opacity: 1 +} + +.dropdown.show>.form-select.form-select-solid, +.form-select.form-select-solid.active, +.form-select.form-select-solid.focus, +.form-select.form-select-solid:active, +.form-select.form-select-solid:focus { + background-color: #eef3f7; + border-color: #eef3f7 !important; + color: #5e6278; + transition: color .2s ease, background-color .2s ease +} + +.form-select.form-select-transparent { + background-color: transparent; + border-color: transparent; + color: #5e6278 +} + +.form-select.form-select-transparent::placeholder { + color: #a1a5b7 +} + +.form-select.form-select-transparent::-moz-placeholder { + color: #a1a5b7; + opacity: 1 +} + +.dropdown.show>.form-select.form-select-transparent, +.form-select.form-select-transparent.active, +.form-select.form-select-transparent.focus, +.form-select.form-select-transparent:active, +.form-select.form-select-transparent:focus { + background-color: transparent; + border-color: transparent !important; + color: #5e6278 +} + +.form-check .form-check-label { + cursor: pointer +} + +.form-check .form-check-input { + cursor: pointer; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none +} + +.form-check.form-check-custom { + display: flex; + align-items: center; + padding-left: 0; + margin: 0 +} + +.form-check.form-check-custom .form-check-input { + margin: 0; + float: none; + flex-shrink: 0 +} + +.form-check.form-check-custom .form-check-label { + margin-left: .55rem +} + +.form-check:not(.form-switch) .form-check-input[type=checkbox] { + background-size: 60% 60% +} + +.form-check.form-check-solid .form-check-input { + border: 0; + background-color: #eff2f5 +} + +.form-check.form-check-solid .form-check-input:active, +.form-check.form-check-solid .form-check-input:focus { + filter: none; + background-color: #eff2f5 +} + +.form-check.form-check-solid .form-check-input:checked { + background-color: #009ef7 +} + +.form-check.form-check-success .form-check-input:checked { + background-color: #50cd89 +} + +.form-check.form-check-danger .form-check-input:checked { + background-color: #f1416c +} + +.form-check.form-check-warning .form-check-input:checked { + background-color: #ffc700 +} + +.form-check.form-check-custom.form-check-sm .form-check-input { + height: 1.5rem; + width: 1.5rem +} + +.form-check.form-check-custom.form-check-lg .form-check-input { + height: 2.25rem; + width: 2.25rem +} + +.form-switch.form-check-solid .form-check-input { + height: 2.25rem; + 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='%23ffffff'/%3e%3c/svg%3e"); + border-radius: 3.25rem +} + +.form-switch.form-check-solid .form-check-input:checked { + filter: none; + 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='%23FFFFFF'/%3e%3c/svg%3e") +} + +.form-switch.form-check-solid.form-switch-sm .form-check-input { + height: 1.5rem; + width: 2.5rem +} + +.form-switch.form-check-solid.form-switch-lg .form-check-input { + height: 2.75rem; + width: 3.75rem +} + +.form-floating .form-control.form-control-solid::placeholder { + color: transparent +} + +.input-group.input-group-solid { + border-radius: .475rem +} + +.input-group.input-group-solid.input-group-sm { + border-radius: .325rem +} + +.input-group.input-group-solid.input-group-lg { + border-radius: .625rem +} + +.input-group.input-group-solid .input-group-text { + background-color: #f5f8fa; + border-color: #f5f8fa +} + +.input-group.input-group-solid .input-group-text+.form-control { + border-left-color: #e4e6ef +} + +.input-group.input-group-solid .form-control { + background-color: #f5f8fa; + border-color: #f5f8fa +} + +.input-group.input-group-solid .form-control+.input-group-text { + border-left-color: #e4e6ef +} + +.required:after { + content: "*"; + position: relative; + font-size: inherit; + color: #f1416c; + padding-left: .25rem; + font-weight: 700 +} + +.modal .modal-header { + align-items: center; + justify-content: space-between; + border-top-left-radius: .475rem; + border-top-right-radius: .475rem +} + +.modal .modal-header .h1, +.modal .modal-header .h2, +.modal .modal-header .h3, +.modal .modal-header .h4, +.modal .modal-header .h5, +.modal .modal-header .h6, +.modal .modal-header h1, +.modal .modal-header h2, +.modal .modal-header h3, +.modal .modal-header h4, +.modal .modal-header h5, +.modal .modal-header h6 { + margin-bottom: 0 +} + +.modal .modal-dialog { + outline: 0 !important +} + +.modal-rounded { + border-radius: .475rem !important +} + +.progress-vertical { + display: flex; + align-items: stretch; + justify-content: space-between +} + +.progress-vertical .progress { + height: 100%; + border-radius: .475rem; + display: flex; + align-items: flex-end; + margin-right: 1rem +} + +.progress-vertical .progress:last-child { + margin-right: 0 +} + +.progress-vertical .progress .progress-bar { + width: 8px; + border-radius: .475rem +} + +.table>:not(:first-child) { + border-color: transparent; + border-width: 0; + border-style: none +} + +.table>:not(:last-child)>:last-child>* { + border-bottom-color: inherit +} + +.table td, +.table th, +.table tr { + border-color: inherit; + border-width: inherit; + border-style: inherit; + text-transform: inherit; + font-weight: inherit; + font-size: inherit; + color: inherit; + height: inherit; + min-height: inherit +} + +.table td:first-child, +.table th:first-child, +.table tr:first-child { + padding-left: 0 +} + +.table td:last-child, +.table th:last-child, +.table tr:last-child { + padding-right: 0 +} + +.table tbody tr:last-child, +.table tfoot tr:last-child { + border-bottom: 0 !important +} + +.table tbody tr:last-child td, +.table tbody tr:last-child th, +.table tfoot tr:last-child td, +.table tfoot tr:last-child th { + border-bottom: 0 !important +} + +.table tfoot td, +.table tfoot th { + border-top: inherit +} + +.table.table-rounded { + border-radius: .475rem; + border-spacing: 0; + border-collapse: separate +} + +.table.table-flush td, +.table.table-flush th, +.table.table-flush tr { + padding: inherit +} + +.table.table-row-bordered tr { + border-bottom-width: 1px; + border-bottom-style: solid; + border-bottom-color: #eff2f5 +} + +.table.table-row-bordered tfoot td, +.table.table-row-bordered tfoot th { + border-top-width: 1px !important +} + +.table.table-row-dashed tr { + border-bottom-width: 1px; + border-bottom-style: dashed; + border-bottom-color: #eff2f5 +} + +.table.table-row-dashed tfoot td, +.table.table-row-dashed tfoot th { + border-top-width: 1px !important +} + +.table.table-row-gray-100 tr { + border-bottom-color: #f5f8fa +} + +.table.table-row-gray-200 tr { + border-bottom-color: #eff2f5 +} + +.table.table-row-gray-300 tr { + border-bottom-color: #e4e6ef +} + +.table.table-row-gray-400 tr { + border-bottom-color: #b5b5c3 +} + +.table.table-row-gray-500 tr { + border-bottom-color: #a1a5b7 +} + +.table.table-row-gray-600 tr { + border-bottom-color: #7e8299 +} + +.table.table-row-gray-700 tr { + border-bottom-color: #5e6278 +} + +.table.table-row-gray-800 tr { + border-bottom-color: #3f4254 +} + +.table.table-row-gray-900 tr { + border-bottom-color: #181c32 +} + +.table-sort:after { + opacity: 0 +} + +.table-sort, +.table-sort-asc, +.table-sort-desc { + vertical-align: middle +} + +.table-sort-asc:after, +.table-sort-desc:after, +.table-sort:after { + position: relative; + display: inline-block; + width: .75rem; + height: .75rem; + content: " "; + bottom: auto; + right: auto; + left: auto; + margin-left: .5rem +} + +.table-sort-asc:after { + opacity: 1; + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 8' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.42111 2.06463C4.22088 1.96161 3.9637 1.9809 3.78597 2.12863L0.177181 5.12847C-0.046034 5.31402 -0.0602611 5.63049 0.145404 5.83532C0.351069 6.04015 0.698744 6.05578 0.921959 5.87023L4.14137 3.19406L7.06417 5.84414C7.27904 6.03896 7.62686 6.03835 7.84105 5.84278C8.05524 5.64721 8.05469 5.33073 7.83982 5.13591L4.54449 2.14806C4.50704 2.1141 4.46541 2.08629 4.42111 2.06463Z'/%3e%3c/svg%3e") +} + +.table-sort-desc:after { + opacity: 1; + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 8' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.42111 5.93537C4.22088 6.03839 3.9637 6.0191 3.78597 5.87137L0.177181 2.87153C-0.046034 2.68598 -0.060261 2.36951 0.145404 2.16468C0.351069 1.95985 0.698744 1.94422 0.921959 2.12977L4.14137 4.80594L7.06417 2.15586C7.27904 1.96104 7.62686 1.96165 7.84105 2.15722C8.05524 2.35279 8.05469 2.66927 7.83982 2.86409L4.54449 5.85194C4.50704 5.8859 4.46541 5.91371 4.42111 5.93537Z'/%3e%3c/svg%3e") +} + +.table-loading-message { + display: none; + position: absolute; + top: 50%; + left: 50%; + border-radius: .475rem; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + background-color: #fff; + color: #7e8299; + font-weight: 500; + margin: 0 !important; + width: auto; + padding: 1rem 2rem !important; + transform: translateX(-50%) translateY(-50%) +} + +.table-loading { + position: relative +} + +.table-loading .table-loading-message { + display: block +} + +.table.g-0 td, +.table.g-0 th { + padding: 0 +} + +.table.g-0 td.dtr-control, +.table.g-0 th.dtr-control { + padding-left: 0 !important +} + +.table.gy-0 td, +.table.gy-0 th { + padding-top: 0; + padding-bottom: 0 +} + +.table.gx-0 td, +.table.gx-0 th { + padding-left: 0; + padding-right: 0 +} + +.table.gx-0 td.dtr-control, +.table.gx-0 th.dtr-control { + padding-left: 0 !important +} + +.table.gs-0 td:first-child, +.table.gs-0 th:first-child { + padding-left: 0 +} + +.table.gs-0 td:last-child, +.table.gs-0 th:last-child { + padding-right: 0 +} + +.table.gs-0 td.dtr-control:first-child, +.table.gs-0 th.dtr-control:first-child { + padding-left: 0 !important +} + +.table.g-1 td, +.table.g-1 th { + padding: .25rem +} + +.table.g-1 td.dtr-control, +.table.g-1 th.dtr-control { + padding-left: .25rem !important +} + +.table.gy-1 td, +.table.gy-1 th { + padding-top: .25rem; + padding-bottom: .25rem +} + +.table.gx-1 td, +.table.gx-1 th { + padding-left: .25rem; + padding-right: .25rem +} + +.table.gx-1 td.dtr-control, +.table.gx-1 th.dtr-control { + padding-left: .25rem !important +} + +.table.gs-1 td:first-child, +.table.gs-1 th:first-child { + padding-left: .25rem +} + +.table.gs-1 td:last-child, +.table.gs-1 th:last-child { + padding-right: .25rem +} + +.table.gs-1 td.dtr-control:first-child, +.table.gs-1 th.dtr-control:first-child { + padding-left: .25rem !important +} + +.table.g-2 td, +.table.g-2 th { + padding: .5rem +} + +.table.g-2 td.dtr-control, +.table.g-2 th.dtr-control { + padding-left: .5rem !important +} + +.table.gy-2 td, +.table.gy-2 th { + padding-top: .5rem; + padding-bottom: .5rem +} + +.table.gx-2 td, +.table.gx-2 th { + padding-left: .5rem; + padding-right: .5rem +} + +.table.gx-2 td.dtr-control, +.table.gx-2 th.dtr-control { + padding-left: .5rem !important +} + +.table.gs-2 td:first-child, +.table.gs-2 th:first-child { + padding-left: .5rem +} + +.table.gs-2 td:last-child, +.table.gs-2 th:last-child { + padding-right: .5rem +} + +.table.gs-2 td.dtr-control:first-child, +.table.gs-2 th.dtr-control:first-child { + padding-left: .5rem !important +} + +.table.g-3 td, +.table.g-3 th { + padding: .75rem +} + +.table.g-3 td.dtr-control, +.table.g-3 th.dtr-control { + padding-left: .75rem !important +} + +.table.gy-3 td, +.table.gy-3 th { + padding-top: .75rem; + padding-bottom: .75rem +} + +.table.gx-3 td, +.table.gx-3 th { + padding-left: .75rem; + padding-right: .75rem +} + +.table.gx-3 td.dtr-control, +.table.gx-3 th.dtr-control { + padding-left: .75rem !important +} + +.table.gs-3 td:first-child, +.table.gs-3 th:first-child { + padding-left: .75rem +} + +.table.gs-3 td:last-child, +.table.gs-3 th:last-child { + padding-right: .75rem +} + +.table.gs-3 td.dtr-control:first-child, +.table.gs-3 th.dtr-control:first-child { + padding-left: .75rem !important +} + +.table.g-4 td, +.table.g-4 th { + padding: 1rem +} + +.table.g-4 td.dtr-control, +.table.g-4 th.dtr-control { + padding-left: 1rem !important +} + +.table.gy-4 td, +.table.gy-4 th { + padding-top: 1rem; + padding-bottom: 1rem +} + +.table.gx-4 td, +.table.gx-4 th { + padding-left: 1rem; + padding-right: 1rem +} + +.table.gx-4 td.dtr-control, +.table.gx-4 th.dtr-control { + padding-left: 1rem !important +} + +.table.gs-4 td:first-child, +.table.gs-4 th:first-child { + padding-left: 1rem +} + +.table.gs-4 td:last-child, +.table.gs-4 th:last-child { + padding-right: 1rem +} + +.table.gs-4 td.dtr-control:first-child, +.table.gs-4 th.dtr-control:first-child { + padding-left: 1rem !important +} + +.table.g-5 td, +.table.g-5 th { + padding: 1.25rem +} + +.table.g-5 td.dtr-control, +.table.g-5 th.dtr-control { + padding-left: 1.25rem !important +} + +.table.gy-5 td, +.table.gy-5 th { + padding-top: 1.25rem; + padding-bottom: 1.25rem +} + +.table.gx-5 td, +.table.gx-5 th { + padding-left: 1.25rem; + padding-right: 1.25rem +} + +.table.gx-5 td.dtr-control, +.table.gx-5 th.dtr-control { + padding-left: 1.25rem !important +} + +.table.gs-5 td:first-child, +.table.gs-5 th:first-child { + padding-left: 1.25rem +} + +.table.gs-5 td:last-child, +.table.gs-5 th:last-child { + padding-right: 1.25rem +} + +.table.gs-5 td.dtr-control:first-child, +.table.gs-5 th.dtr-control:first-child { + padding-left: 1.25rem !important +} + +.table.g-6 td, +.table.g-6 th { + padding: 1.5rem +} + +.table.g-6 td.dtr-control, +.table.g-6 th.dtr-control { + padding-left: 1.5rem !important +} + +.table.gy-6 td, +.table.gy-6 th { + padding-top: 1.5rem; + padding-bottom: 1.5rem +} + +.table.gx-6 td, +.table.gx-6 th { + padding-left: 1.5rem; + padding-right: 1.5rem +} + +.table.gx-6 td.dtr-control, +.table.gx-6 th.dtr-control { + padding-left: 1.5rem !important +} + +.table.gs-6 td:first-child, +.table.gs-6 th:first-child { + padding-left: 1.5rem +} + +.table.gs-6 td:last-child, +.table.gs-6 th:last-child { + padding-right: 1.5rem +} + +.table.gs-6 td.dtr-control:first-child, +.table.gs-6 th.dtr-control:first-child { + padding-left: 1.5rem !important +} + +.table.g-7 td, +.table.g-7 th { + padding: 1.75rem +} + +.table.g-7 td.dtr-control, +.table.g-7 th.dtr-control { + padding-left: 1.75rem !important +} + +.table.gy-7 td, +.table.gy-7 th { + padding-top: 1.75rem; + padding-bottom: 1.75rem +} + +.table.gx-7 td, +.table.gx-7 th { + padding-left: 1.75rem; + padding-right: 1.75rem +} + +.table.gx-7 td.dtr-control, +.table.gx-7 th.dtr-control { + padding-left: 1.75rem !important +} + +.table.gs-7 td:first-child, +.table.gs-7 th:first-child { + padding-left: 1.75rem +} + +.table.gs-7 td:last-child, +.table.gs-7 th:last-child { + padding-right: 1.75rem +} + +.table.gs-7 td.dtr-control:first-child, +.table.gs-7 th.dtr-control:first-child { + padding-left: 1.75rem !important +} + +.table.g-8 td, +.table.g-8 th { + padding: 2rem +} + +.table.g-8 td.dtr-control, +.table.g-8 th.dtr-control { + padding-left: 2rem !important +} + +.table.gy-8 td, +.table.gy-8 th { + padding-top: 2rem; + padding-bottom: 2rem +} + +.table.gx-8 td, +.table.gx-8 th { + padding-left: 2rem; + padding-right: 2rem +} + +.table.gx-8 td.dtr-control, +.table.gx-8 th.dtr-control { + padding-left: 2rem !important +} + +.table.gs-8 td:first-child, +.table.gs-8 th:first-child { + padding-left: 2rem +} + +.table.gs-8 td:last-child, +.table.gs-8 th:last-child { + padding-right: 2rem +} + +.table.gs-8 td.dtr-control:first-child, +.table.gs-8 th.dtr-control:first-child { + padding-left: 2rem !important +} + +.table.g-9 td, +.table.g-9 th { + padding: 2.25rem +} + +.table.g-9 td.dtr-control, +.table.g-9 th.dtr-control { + padding-left: 2.25rem !important +} + +.table.gy-9 td, +.table.gy-9 th { + padding-top: 2.25rem; + padding-bottom: 2.25rem +} + +.table.gx-9 td, +.table.gx-9 th { + padding-left: 2.25rem; + padding-right: 2.25rem +} + +.table.gx-9 td.dtr-control, +.table.gx-9 th.dtr-control { + padding-left: 2.25rem !important +} + +.table.gs-9 td:first-child, +.table.gs-9 th:first-child { + padding-left: 2.25rem +} + +.table.gs-9 td:last-child, +.table.gs-9 th:last-child { + padding-right: 2.25rem +} + +.table.gs-9 td.dtr-control:first-child, +.table.gs-9 th.dtr-control:first-child { + padding-left: 2.25rem !important +} + +.table.g-10 td, +.table.g-10 th { + padding: 2.5rem +} + +.table.g-10 td.dtr-control, +.table.g-10 th.dtr-control { + padding-left: 2.5rem !important +} + +.table.gy-10 td, +.table.gy-10 th { + padding-top: 2.5rem; + padding-bottom: 2.5rem +} + +.table.gx-10 td, +.table.gx-10 th { + padding-left: 2.5rem; + padding-right: 2.5rem +} + +.table.gx-10 td.dtr-control, +.table.gx-10 th.dtr-control { + padding-left: 2.5rem !important +} + +.table.gs-10 td:first-child, +.table.gs-10 th:first-child { + padding-left: 2.5rem +} + +.table.gs-10 td:last-child, +.table.gs-10 th:last-child { + padding-right: 2.5rem +} + +.table.gs-10 td.dtr-control:first-child, +.table.gs-10 th.dtr-control:first-child { + padding-left: 2.5rem !important +} + +@media (min-width:576px) { + + .table.g-sm-0 td, + .table.g-sm-0 th { + padding: 0 + } + + .table.g-sm-0 td.dtr-control, + .table.g-sm-0 th.dtr-control { + padding-left: 0 !important + } + + .table.gy-sm-0 td, + .table.gy-sm-0 th { + padding-top: 0; + padding-bottom: 0 + } + + .table.gx-sm-0 td, + .table.gx-sm-0 th { + padding-left: 0; + padding-right: 0 + } + + .table.gx-sm-0 td.dtr-control, + .table.gx-sm-0 th.dtr-control { + padding-left: 0 !important + } + + .table.gs-sm-0 td:first-child, + .table.gs-sm-0 th:first-child { + padding-left: 0 + } + + .table.gs-sm-0 td:last-child, + .table.gs-sm-0 th:last-child { + padding-right: 0 + } + + .table.gs-sm-0 td.dtr-control:first-child, + .table.gs-sm-0 th.dtr-control:first-child { + padding-left: 0 !important + } + + .table.g-sm-1 td, + .table.g-sm-1 th { + padding: .25rem + } + + .table.g-sm-1 td.dtr-control, + .table.g-sm-1 th.dtr-control { + padding-left: .25rem !important + } + + .table.gy-sm-1 td, + .table.gy-sm-1 th { + padding-top: .25rem; + padding-bottom: .25rem + } + + .table.gx-sm-1 td, + .table.gx-sm-1 th { + padding-left: .25rem; + padding-right: .25rem + } + + .table.gx-sm-1 td.dtr-control, + .table.gx-sm-1 th.dtr-control { + padding-left: .25rem !important + } + + .table.gs-sm-1 td:first-child, + .table.gs-sm-1 th:first-child { + padding-left: .25rem + } + + .table.gs-sm-1 td:last-child, + .table.gs-sm-1 th:last-child { + padding-right: .25rem + } + + .table.gs-sm-1 td.dtr-control:first-child, + .table.gs-sm-1 th.dtr-control:first-child { + padding-left: .25rem !important + } + + .table.g-sm-2 td, + .table.g-sm-2 th { + padding: .5rem + } + + .table.g-sm-2 td.dtr-control, + .table.g-sm-2 th.dtr-control { + padding-left: .5rem !important + } + + .table.gy-sm-2 td, + .table.gy-sm-2 th { + padding-top: .5rem; + padding-bottom: .5rem + } + + .table.gx-sm-2 td, + .table.gx-sm-2 th { + padding-left: .5rem; + padding-right: .5rem + } + + .table.gx-sm-2 td.dtr-control, + .table.gx-sm-2 th.dtr-control { + padding-left: .5rem !important + } + + .table.gs-sm-2 td:first-child, + .table.gs-sm-2 th:first-child { + padding-left: .5rem + } + + .table.gs-sm-2 td:last-child, + .table.gs-sm-2 th:last-child { + padding-right: .5rem + } + + .table.gs-sm-2 td.dtr-control:first-child, + .table.gs-sm-2 th.dtr-control:first-child { + padding-left: .5rem !important + } + + .table.g-sm-3 td, + .table.g-sm-3 th { + padding: .75rem + } + + .table.g-sm-3 td.dtr-control, + .table.g-sm-3 th.dtr-control { + padding-left: .75rem !important + } + + .table.gy-sm-3 td, + .table.gy-sm-3 th { + padding-top: .75rem; + padding-bottom: .75rem + } + + .table.gx-sm-3 td, + .table.gx-sm-3 th { + padding-left: .75rem; + padding-right: .75rem + } + + .table.gx-sm-3 td.dtr-control, + .table.gx-sm-3 th.dtr-control { + padding-left: .75rem !important + } + + .table.gs-sm-3 td:first-child, + .table.gs-sm-3 th:first-child { + padding-left: .75rem + } + + .table.gs-sm-3 td:last-child, + .table.gs-sm-3 th:last-child { + padding-right: .75rem + } + + .table.gs-sm-3 td.dtr-control:first-child, + .table.gs-sm-3 th.dtr-control:first-child { + padding-left: .75rem !important + } + + .table.g-sm-4 td, + .table.g-sm-4 th { + padding: 1rem + } + + .table.g-sm-4 td.dtr-control, + .table.g-sm-4 th.dtr-control { + padding-left: 1rem !important + } + + .table.gy-sm-4 td, + .table.gy-sm-4 th { + padding-top: 1rem; + padding-bottom: 1rem + } + + .table.gx-sm-4 td, + .table.gx-sm-4 th { + padding-left: 1rem; + padding-right: 1rem + } + + .table.gx-sm-4 td.dtr-control, + .table.gx-sm-4 th.dtr-control { + padding-left: 1rem !important + } + + .table.gs-sm-4 td:first-child, + .table.gs-sm-4 th:first-child { + padding-left: 1rem + } + + .table.gs-sm-4 td:last-child, + .table.gs-sm-4 th:last-child { + padding-right: 1rem + } + + .table.gs-sm-4 td.dtr-control:first-child, + .table.gs-sm-4 th.dtr-control:first-child { + padding-left: 1rem !important + } + + .table.g-sm-5 td, + .table.g-sm-5 th { + padding: 1.25rem + } + + .table.g-sm-5 td.dtr-control, + .table.g-sm-5 th.dtr-control { + padding-left: 1.25rem !important + } + + .table.gy-sm-5 td, + .table.gy-sm-5 th { + padding-top: 1.25rem; + padding-bottom: 1.25rem + } + + .table.gx-sm-5 td, + .table.gx-sm-5 th { + padding-left: 1.25rem; + padding-right: 1.25rem + } + + .table.gx-sm-5 td.dtr-control, + .table.gx-sm-5 th.dtr-control { + padding-left: 1.25rem !important + } + + .table.gs-sm-5 td:first-child, + .table.gs-sm-5 th:first-child { + padding-left: 1.25rem + } + + .table.gs-sm-5 td:last-child, + .table.gs-sm-5 th:last-child { + padding-right: 1.25rem + } + + .table.gs-sm-5 td.dtr-control:first-child, + .table.gs-sm-5 th.dtr-control:first-child { + padding-left: 1.25rem !important + } + + .table.g-sm-6 td, + .table.g-sm-6 th { + padding: 1.5rem + } + + .table.g-sm-6 td.dtr-control, + .table.g-sm-6 th.dtr-control { + padding-left: 1.5rem !important + } + + .table.gy-sm-6 td, + .table.gy-sm-6 th { + padding-top: 1.5rem; + padding-bottom: 1.5rem + } + + .table.gx-sm-6 td, + .table.gx-sm-6 th { + padding-left: 1.5rem; + padding-right: 1.5rem + } + + .table.gx-sm-6 td.dtr-control, + .table.gx-sm-6 th.dtr-control { + padding-left: 1.5rem !important + } + + .table.gs-sm-6 td:first-child, + .table.gs-sm-6 th:first-child { + padding-left: 1.5rem + } + + .table.gs-sm-6 td:last-child, + .table.gs-sm-6 th:last-child { + padding-right: 1.5rem + } + + .table.gs-sm-6 td.dtr-control:first-child, + .table.gs-sm-6 th.dtr-control:first-child { + padding-left: 1.5rem !important + } + + .table.g-sm-7 td, + .table.g-sm-7 th { + padding: 1.75rem + } + + .table.g-sm-7 td.dtr-control, + .table.g-sm-7 th.dtr-control { + padding-left: 1.75rem !important + } + + .table.gy-sm-7 td, + .table.gy-sm-7 th { + padding-top: 1.75rem; + padding-bottom: 1.75rem + } + + .table.gx-sm-7 td, + .table.gx-sm-7 th { + padding-left: 1.75rem; + padding-right: 1.75rem + } + + .table.gx-sm-7 td.dtr-control, + .table.gx-sm-7 th.dtr-control { + padding-left: 1.75rem !important + } + + .table.gs-sm-7 td:first-child, + .table.gs-sm-7 th:first-child { + padding-left: 1.75rem + } + + .table.gs-sm-7 td:last-child, + .table.gs-sm-7 th:last-child { + padding-right: 1.75rem + } + + .table.gs-sm-7 td.dtr-control:first-child, + .table.gs-sm-7 th.dtr-control:first-child { + padding-left: 1.75rem !important + } + + .table.g-sm-8 td, + .table.g-sm-8 th { + padding: 2rem + } + + .table.g-sm-8 td.dtr-control, + .table.g-sm-8 th.dtr-control { + padding-left: 2rem !important + } + + .table.gy-sm-8 td, + .table.gy-sm-8 th { + padding-top: 2rem; + padding-bottom: 2rem + } + + .table.gx-sm-8 td, + .table.gx-sm-8 th { + padding-left: 2rem; + padding-right: 2rem + } + + .table.gx-sm-8 td.dtr-control, + .table.gx-sm-8 th.dtr-control { + padding-left: 2rem !important + } + + .table.gs-sm-8 td:first-child, + .table.gs-sm-8 th:first-child { + padding-left: 2rem + } + + .table.gs-sm-8 td:last-child, + .table.gs-sm-8 th:last-child { + padding-right: 2rem + } + + .table.gs-sm-8 td.dtr-control:first-child, + .table.gs-sm-8 th.dtr-control:first-child { + padding-left: 2rem !important + } + + .table.g-sm-9 td, + .table.g-sm-9 th { + padding: 2.25rem + } + + .table.g-sm-9 td.dtr-control, + .table.g-sm-9 th.dtr-control { + padding-left: 2.25rem !important + } + + .table.gy-sm-9 td, + .table.gy-sm-9 th { + padding-top: 2.25rem; + padding-bottom: 2.25rem + } + + .table.gx-sm-9 td, + .table.gx-sm-9 th { + padding-left: 2.25rem; + padding-right: 2.25rem + } + + .table.gx-sm-9 td.dtr-control, + .table.gx-sm-9 th.dtr-control { + padding-left: 2.25rem !important + } + + .table.gs-sm-9 td:first-child, + .table.gs-sm-9 th:first-child { + padding-left: 2.25rem + } + + .table.gs-sm-9 td:last-child, + .table.gs-sm-9 th:last-child { + padding-right: 2.25rem + } + + .table.gs-sm-9 td.dtr-control:first-child, + .table.gs-sm-9 th.dtr-control:first-child { + padding-left: 2.25rem !important + } + + .table.g-sm-10 td, + .table.g-sm-10 th { + padding: 2.5rem + } + + .table.g-sm-10 td.dtr-control, + .table.g-sm-10 th.dtr-control { + padding-left: 2.5rem !important + } + + .table.gy-sm-10 td, + .table.gy-sm-10 th { + padding-top: 2.5rem; + padding-bottom: 2.5rem + } + + .table.gx-sm-10 td, + .table.gx-sm-10 th { + padding-left: 2.5rem; + padding-right: 2.5rem + } + + .table.gx-sm-10 td.dtr-control, + .table.gx-sm-10 th.dtr-control { + padding-left: 2.5rem !important + } + + .table.gs-sm-10 td:first-child, + .table.gs-sm-10 th:first-child { + padding-left: 2.5rem + } + + .table.gs-sm-10 td:last-child, + .table.gs-sm-10 th:last-child { + padding-right: 2.5rem + } + + .table.gs-sm-10 td.dtr-control:first-child, + .table.gs-sm-10 th.dtr-control:first-child { + padding-left: 2.5rem !important + } +} + +@media (min-width:768px) { + + .table.g-md-0 td, + .table.g-md-0 th { + padding: 0 + } + + .table.g-md-0 td.dtr-control, + .table.g-md-0 th.dtr-control { + padding-left: 0 !important + } + + .table.gy-md-0 td, + .table.gy-md-0 th { + padding-top: 0; + padding-bottom: 0 + } + + .table.gx-md-0 td, + .table.gx-md-0 th { + padding-left: 0; + padding-right: 0 + } + + .table.gx-md-0 td.dtr-control, + .table.gx-md-0 th.dtr-control { + padding-left: 0 !important + } + + .table.gs-md-0 td:first-child, + .table.gs-md-0 th:first-child { + padding-left: 0 + } + + .table.gs-md-0 td:last-child, + .table.gs-md-0 th:last-child { + padding-right: 0 + } + + .table.gs-md-0 td.dtr-control:first-child, + .table.gs-md-0 th.dtr-control:first-child { + padding-left: 0 !important + } + + .table.g-md-1 td, + .table.g-md-1 th { + padding: .25rem + } + + .table.g-md-1 td.dtr-control, + .table.g-md-1 th.dtr-control { + padding-left: .25rem !important + } + + .table.gy-md-1 td, + .table.gy-md-1 th { + padding-top: .25rem; + padding-bottom: .25rem + } + + .table.gx-md-1 td, + .table.gx-md-1 th { + padding-left: .25rem; + padding-right: .25rem + } + + .table.gx-md-1 td.dtr-control, + .table.gx-md-1 th.dtr-control { + padding-left: .25rem !important + } + + .table.gs-md-1 td:first-child, + .table.gs-md-1 th:first-child { + padding-left: .25rem + } + + .table.gs-md-1 td:last-child, + .table.gs-md-1 th:last-child { + padding-right: .25rem + } + + .table.gs-md-1 td.dtr-control:first-child, + .table.gs-md-1 th.dtr-control:first-child { + padding-left: .25rem !important + } + + .table.g-md-2 td, + .table.g-md-2 th { + padding: .5rem + } + + .table.g-md-2 td.dtr-control, + .table.g-md-2 th.dtr-control { + padding-left: .5rem !important + } + + .table.gy-md-2 td, + .table.gy-md-2 th { + padding-top: .5rem; + padding-bottom: .5rem + } + + .table.gx-md-2 td, + .table.gx-md-2 th { + padding-left: .5rem; + padding-right: .5rem + } + + .table.gx-md-2 td.dtr-control, + .table.gx-md-2 th.dtr-control { + padding-left: .5rem !important + } + + .table.gs-md-2 td:first-child, + .table.gs-md-2 th:first-child { + padding-left: .5rem + } + + .table.gs-md-2 td:last-child, + .table.gs-md-2 th:last-child { + padding-right: .5rem + } + + .table.gs-md-2 td.dtr-control:first-child, + .table.gs-md-2 th.dtr-control:first-child { + padding-left: .5rem !important + } + + .table.g-md-3 td, + .table.g-md-3 th { + padding: .75rem + } + + .table.g-md-3 td.dtr-control, + .table.g-md-3 th.dtr-control { + padding-left: .75rem !important + } + + .table.gy-md-3 td, + .table.gy-md-3 th { + padding-top: .75rem; + padding-bottom: .75rem + } + + .table.gx-md-3 td, + .table.gx-md-3 th { + padding-left: .75rem; + padding-right: .75rem + } + + .table.gx-md-3 td.dtr-control, + .table.gx-md-3 th.dtr-control { + padding-left: .75rem !important + } + + .table.gs-md-3 td:first-child, + .table.gs-md-3 th:first-child { + padding-left: .75rem + } + + .table.gs-md-3 td:last-child, + .table.gs-md-3 th:last-child { + padding-right: .75rem + } + + .table.gs-md-3 td.dtr-control:first-child, + .table.gs-md-3 th.dtr-control:first-child { + padding-left: .75rem !important + } + + .table.g-md-4 td, + .table.g-md-4 th { + padding: 1rem + } + + .table.g-md-4 td.dtr-control, + .table.g-md-4 th.dtr-control { + padding-left: 1rem !important + } + + .table.gy-md-4 td, + .table.gy-md-4 th { + padding-top: 1rem; + padding-bottom: 1rem + } + + .table.gx-md-4 td, + .table.gx-md-4 th { + padding-left: 1rem; + padding-right: 1rem + } + + .table.gx-md-4 td.dtr-control, + .table.gx-md-4 th.dtr-control { + padding-left: 1rem !important + } + + .table.gs-md-4 td:first-child, + .table.gs-md-4 th:first-child { + padding-left: 1rem + } + + .table.gs-md-4 td:last-child, + .table.gs-md-4 th:last-child { + padding-right: 1rem + } + + .table.gs-md-4 td.dtr-control:first-child, + .table.gs-md-4 th.dtr-control:first-child { + padding-left: 1rem !important + } + + .table.g-md-5 td, + .table.g-md-5 th { + padding: 1.25rem + } + + .table.g-md-5 td.dtr-control, + .table.g-md-5 th.dtr-control { + padding-left: 1.25rem !important + } + + .table.gy-md-5 td, + .table.gy-md-5 th { + padding-top: 1.25rem; + padding-bottom: 1.25rem + } + + .table.gx-md-5 td, + .table.gx-md-5 th { + padding-left: 1.25rem; + padding-right: 1.25rem + } + + .table.gx-md-5 td.dtr-control, + .table.gx-md-5 th.dtr-control { + padding-left: 1.25rem !important + } + + .table.gs-md-5 td:first-child, + .table.gs-md-5 th:first-child { + padding-left: 1.25rem + } + + .table.gs-md-5 td:last-child, + .table.gs-md-5 th:last-child { + padding-right: 1.25rem + } + + .table.gs-md-5 td.dtr-control:first-child, + .table.gs-md-5 th.dtr-control:first-child { + padding-left: 1.25rem !important + } + + .table.g-md-6 td, + .table.g-md-6 th { + padding: 1.5rem + } + + .table.g-md-6 td.dtr-control, + .table.g-md-6 th.dtr-control { + padding-left: 1.5rem !important + } + + .table.gy-md-6 td, + .table.gy-md-6 th { + padding-top: 1.5rem; + padding-bottom: 1.5rem + } + + .table.gx-md-6 td, + .table.gx-md-6 th { + padding-left: 1.5rem; + padding-right: 1.5rem + } + + .table.gx-md-6 td.dtr-control, + .table.gx-md-6 th.dtr-control { + padding-left: 1.5rem !important + } + + .table.gs-md-6 td:first-child, + .table.gs-md-6 th:first-child { + padding-left: 1.5rem + } + + .table.gs-md-6 td:last-child, + .table.gs-md-6 th:last-child { + padding-right: 1.5rem + } + + .table.gs-md-6 td.dtr-control:first-child, + .table.gs-md-6 th.dtr-control:first-child { + padding-left: 1.5rem !important + } + + .table.g-md-7 td, + .table.g-md-7 th { + padding: 1.75rem + } + + .table.g-md-7 td.dtr-control, + .table.g-md-7 th.dtr-control { + padding-left: 1.75rem !important + } + + .table.gy-md-7 td, + .table.gy-md-7 th { + padding-top: 1.75rem; + padding-bottom: 1.75rem + } + + .table.gx-md-7 td, + .table.gx-md-7 th { + padding-left: 1.75rem; + padding-right: 1.75rem + } + + .table.gx-md-7 td.dtr-control, + .table.gx-md-7 th.dtr-control { + padding-left: 1.75rem !important + } + + .table.gs-md-7 td:first-child, + .table.gs-md-7 th:first-child { + padding-left: 1.75rem + } + + .table.gs-md-7 td:last-child, + .table.gs-md-7 th:last-child { + padding-right: 1.75rem + } + + .table.gs-md-7 td.dtr-control:first-child, + .table.gs-md-7 th.dtr-control:first-child { + padding-left: 1.75rem !important + } + + .table.g-md-8 td, + .table.g-md-8 th { + padding: 2rem + } + + .table.g-md-8 td.dtr-control, + .table.g-md-8 th.dtr-control { + padding-left: 2rem !important + } + + .table.gy-md-8 td, + .table.gy-md-8 th { + padding-top: 2rem; + padding-bottom: 2rem + } + + .table.gx-md-8 td, + .table.gx-md-8 th { + padding-left: 2rem; + padding-right: 2rem + } + + .table.gx-md-8 td.dtr-control, + .table.gx-md-8 th.dtr-control { + padding-left: 2rem !important + } + + .table.gs-md-8 td:first-child, + .table.gs-md-8 th:first-child { + padding-left: 2rem + } + + .table.gs-md-8 td:last-child, + .table.gs-md-8 th:last-child { + padding-right: 2rem + } + + .table.gs-md-8 td.dtr-control:first-child, + .table.gs-md-8 th.dtr-control:first-child { + padding-left: 2rem !important + } + + .table.g-md-9 td, + .table.g-md-9 th { + padding: 2.25rem + } + + .table.g-md-9 td.dtr-control, + .table.g-md-9 th.dtr-control { + padding-left: 2.25rem !important + } + + .table.gy-md-9 td, + .table.gy-md-9 th { + padding-top: 2.25rem; + padding-bottom: 2.25rem + } + + .table.gx-md-9 td, + .table.gx-md-9 th { + padding-left: 2.25rem; + padding-right: 2.25rem + } + + .table.gx-md-9 td.dtr-control, + .table.gx-md-9 th.dtr-control { + padding-left: 2.25rem !important + } + + .table.gs-md-9 td:first-child, + .table.gs-md-9 th:first-child { + padding-left: 2.25rem + } + + .table.gs-md-9 td:last-child, + .table.gs-md-9 th:last-child { + padding-right: 2.25rem + } + + .table.gs-md-9 td.dtr-control:first-child, + .table.gs-md-9 th.dtr-control:first-child { + padding-left: 2.25rem !important + } + + .table.g-md-10 td, + .table.g-md-10 th { + padding: 2.5rem + } + + .table.g-md-10 td.dtr-control, + .table.g-md-10 th.dtr-control { + padding-left: 2.5rem !important + } + + .table.gy-md-10 td, + .table.gy-md-10 th { + padding-top: 2.5rem; + padding-bottom: 2.5rem + } + + .table.gx-md-10 td, + .table.gx-md-10 th { + padding-left: 2.5rem; + padding-right: 2.5rem + } + + .table.gx-md-10 td.dtr-control, + .table.gx-md-10 th.dtr-control { + padding-left: 2.5rem !important + } + + .table.gs-md-10 td:first-child, + .table.gs-md-10 th:first-child { + padding-left: 2.5rem + } + + .table.gs-md-10 td:last-child, + .table.gs-md-10 th:last-child { + padding-right: 2.5rem + } + + .table.gs-md-10 td.dtr-control:first-child, + .table.gs-md-10 th.dtr-control:first-child { + padding-left: 2.5rem !important + } +} + +@media (min-width:992px) { + + .table.g-lg-0 td, + .table.g-lg-0 th { + padding: 0 + } + + .table.g-lg-0 td.dtr-control, + .table.g-lg-0 th.dtr-control { + padding-left: 0 !important + } + + .table.gy-lg-0 td, + .table.gy-lg-0 th { + padding-top: 0; + padding-bottom: 0 + } + + .table.gx-lg-0 td, + .table.gx-lg-0 th { + padding-left: 0; + padding-right: 0 + } + + .table.gx-lg-0 td.dtr-control, + .table.gx-lg-0 th.dtr-control { + padding-left: 0 !important + } + + .table.gs-lg-0 td:first-child, + .table.gs-lg-0 th:first-child { + padding-left: 0 + } + + .table.gs-lg-0 td:last-child, + .table.gs-lg-0 th:last-child { + padding-right: 0 + } + + .table.gs-lg-0 td.dtr-control:first-child, + .table.gs-lg-0 th.dtr-control:first-child { + padding-left: 0 !important + } + + .table.g-lg-1 td, + .table.g-lg-1 th { + padding: .25rem + } + + .table.g-lg-1 td.dtr-control, + .table.g-lg-1 th.dtr-control { + padding-left: .25rem !important + } + + .table.gy-lg-1 td, + .table.gy-lg-1 th { + padding-top: .25rem; + padding-bottom: .25rem + } + + .table.gx-lg-1 td, + .table.gx-lg-1 th { + padding-left: .25rem; + padding-right: .25rem + } + + .table.gx-lg-1 td.dtr-control, + .table.gx-lg-1 th.dtr-control { + padding-left: .25rem !important + } + + .table.gs-lg-1 td:first-child, + .table.gs-lg-1 th:first-child { + padding-left: .25rem + } + + .table.gs-lg-1 td:last-child, + .table.gs-lg-1 th:last-child { + padding-right: .25rem + } + + .table.gs-lg-1 td.dtr-control:first-child, + .table.gs-lg-1 th.dtr-control:first-child { + padding-left: .25rem !important + } + + .table.g-lg-2 td, + .table.g-lg-2 th { + padding: .5rem + } + + .table.g-lg-2 td.dtr-control, + .table.g-lg-2 th.dtr-control { + padding-left: .5rem !important + } + + .table.gy-lg-2 td, + .table.gy-lg-2 th { + padding-top: .5rem; + padding-bottom: .5rem + } + + .table.gx-lg-2 td, + .table.gx-lg-2 th { + padding-left: .5rem; + padding-right: .5rem + } + + .table.gx-lg-2 td.dtr-control, + .table.gx-lg-2 th.dtr-control { + padding-left: .5rem !important + } + + .table.gs-lg-2 td:first-child, + .table.gs-lg-2 th:first-child { + padding-left: .5rem + } + + .table.gs-lg-2 td:last-child, + .table.gs-lg-2 th:last-child { + padding-right: .5rem + } + + .table.gs-lg-2 td.dtr-control:first-child, + .table.gs-lg-2 th.dtr-control:first-child { + padding-left: .5rem !important + } + + .table.g-lg-3 td, + .table.g-lg-3 th { + padding: .75rem + } + + .table.g-lg-3 td.dtr-control, + .table.g-lg-3 th.dtr-control { + padding-left: .75rem !important + } + + .table.gy-lg-3 td, + .table.gy-lg-3 th { + padding-top: .75rem; + padding-bottom: .75rem + } + + .table.gx-lg-3 td, + .table.gx-lg-3 th { + padding-left: .75rem; + padding-right: .75rem + } + + .table.gx-lg-3 td.dtr-control, + .table.gx-lg-3 th.dtr-control { + padding-left: .75rem !important + } + + .table.gs-lg-3 td:first-child, + .table.gs-lg-3 th:first-child { + padding-left: .75rem + } + + .table.gs-lg-3 td:last-child, + .table.gs-lg-3 th:last-child { + padding-right: .75rem + } + + .table.gs-lg-3 td.dtr-control:first-child, + .table.gs-lg-3 th.dtr-control:first-child { + padding-left: .75rem !important + } + + .table.g-lg-4 td, + .table.g-lg-4 th { + padding: 1rem + } + + .table.g-lg-4 td.dtr-control, + .table.g-lg-4 th.dtr-control { + padding-left: 1rem !important + } + + .table.gy-lg-4 td, + .table.gy-lg-4 th { + padding-top: 1rem; + padding-bottom: 1rem + } + + .table.gx-lg-4 td, + .table.gx-lg-4 th { + padding-left: 1rem; + padding-right: 1rem + } + + .table.gx-lg-4 td.dtr-control, + .table.gx-lg-4 th.dtr-control { + padding-left: 1rem !important + } + + .table.gs-lg-4 td:first-child, + .table.gs-lg-4 th:first-child { + padding-left: 1rem + } + + .table.gs-lg-4 td:last-child, + .table.gs-lg-4 th:last-child { + padding-right: 1rem + } + + .table.gs-lg-4 td.dtr-control:first-child, + .table.gs-lg-4 th.dtr-control:first-child { + padding-left: 1rem !important + } + + .table.g-lg-5 td, + .table.g-lg-5 th { + padding: 1.25rem + } + + .table.g-lg-5 td.dtr-control, + .table.g-lg-5 th.dtr-control { + padding-left: 1.25rem !important + } + + .table.gy-lg-5 td, + .table.gy-lg-5 th { + padding-top: 1.25rem; + padding-bottom: 1.25rem + } + + .table.gx-lg-5 td, + .table.gx-lg-5 th { + padding-left: 1.25rem; + padding-right: 1.25rem + } + + .table.gx-lg-5 td.dtr-control, + .table.gx-lg-5 th.dtr-control { + padding-left: 1.25rem !important + } + + .table.gs-lg-5 td:first-child, + .table.gs-lg-5 th:first-child { + padding-left: 1.25rem + } + + .table.gs-lg-5 td:last-child, + .table.gs-lg-5 th:last-child { + padding-right: 1.25rem + } + + .table.gs-lg-5 td.dtr-control:first-child, + .table.gs-lg-5 th.dtr-control:first-child { + padding-left: 1.25rem !important + } + + .table.g-lg-6 td, + .table.g-lg-6 th { + padding: 1.5rem + } + + .table.g-lg-6 td.dtr-control, + .table.g-lg-6 th.dtr-control { + padding-left: 1.5rem !important + } + + .table.gy-lg-6 td, + .table.gy-lg-6 th { + padding-top: 1.5rem; + padding-bottom: 1.5rem + } + + .table.gx-lg-6 td, + .table.gx-lg-6 th { + padding-left: 1.5rem; + padding-right: 1.5rem + } + + .table.gx-lg-6 td.dtr-control, + .table.gx-lg-6 th.dtr-control { + padding-left: 1.5rem !important + } + + .table.gs-lg-6 td:first-child, + .table.gs-lg-6 th:first-child { + padding-left: 1.5rem + } + + .table.gs-lg-6 td:last-child, + .table.gs-lg-6 th:last-child { + padding-right: 1.5rem + } + + .table.gs-lg-6 td.dtr-control:first-child, + .table.gs-lg-6 th.dtr-control:first-child { + padding-left: 1.5rem !important + } + + .table.g-lg-7 td, + .table.g-lg-7 th { + padding: 1.75rem + } + + .table.g-lg-7 td.dtr-control, + .table.g-lg-7 th.dtr-control { + padding-left: 1.75rem !important + } + + .table.gy-lg-7 td, + .table.gy-lg-7 th { + padding-top: 1.75rem; + padding-bottom: 1.75rem + } + + .table.gx-lg-7 td, + .table.gx-lg-7 th { + padding-left: 1.75rem; + padding-right: 1.75rem + } + + .table.gx-lg-7 td.dtr-control, + .table.gx-lg-7 th.dtr-control { + padding-left: 1.75rem !important + } + + .table.gs-lg-7 td:first-child, + .table.gs-lg-7 th:first-child { + padding-left: 1.75rem + } + + .table.gs-lg-7 td:last-child, + .table.gs-lg-7 th:last-child { + padding-right: 1.75rem + } + + .table.gs-lg-7 td.dtr-control:first-child, + .table.gs-lg-7 th.dtr-control:first-child { + padding-left: 1.75rem !important + } + + .table.g-lg-8 td, + .table.g-lg-8 th { + padding: 2rem + } + + .table.g-lg-8 td.dtr-control, + .table.g-lg-8 th.dtr-control { + padding-left: 2rem !important + } + + .table.gy-lg-8 td, + .table.gy-lg-8 th { + padding-top: 2rem; + padding-bottom: 2rem + } + + .table.gx-lg-8 td, + .table.gx-lg-8 th { + padding-left: 2rem; + padding-right: 2rem + } + + .table.gx-lg-8 td.dtr-control, + .table.gx-lg-8 th.dtr-control { + padding-left: 2rem !important + } + + .table.gs-lg-8 td:first-child, + .table.gs-lg-8 th:first-child { + padding-left: 2rem + } + + .table.gs-lg-8 td:last-child, + .table.gs-lg-8 th:last-child { + padding-right: 2rem + } + + .table.gs-lg-8 td.dtr-control:first-child, + .table.gs-lg-8 th.dtr-control:first-child { + padding-left: 2rem !important + } + + .table.g-lg-9 td, + .table.g-lg-9 th { + padding: 2.25rem + } + + .table.g-lg-9 td.dtr-control, + .table.g-lg-9 th.dtr-control { + padding-left: 2.25rem !important + } + + .table.gy-lg-9 td, + .table.gy-lg-9 th { + padding-top: 2.25rem; + padding-bottom: 2.25rem + } + + .table.gx-lg-9 td, + .table.gx-lg-9 th { + padding-left: 2.25rem; + padding-right: 2.25rem + } + + .table.gx-lg-9 td.dtr-control, + .table.gx-lg-9 th.dtr-control { + padding-left: 2.25rem !important + } + + .table.gs-lg-9 td:first-child, + .table.gs-lg-9 th:first-child { + padding-left: 2.25rem + } + + .table.gs-lg-9 td:last-child, + .table.gs-lg-9 th:last-child { + padding-right: 2.25rem + } + + .table.gs-lg-9 td.dtr-control:first-child, + .table.gs-lg-9 th.dtr-control:first-child { + padding-left: 2.25rem !important + } + + .table.g-lg-10 td, + .table.g-lg-10 th { + padding: 2.5rem + } + + .table.g-lg-10 td.dtr-control, + .table.g-lg-10 th.dtr-control { + padding-left: 2.5rem !important + } + + .table.gy-lg-10 td, + .table.gy-lg-10 th { + padding-top: 2.5rem; + padding-bottom: 2.5rem + } + + .table.gx-lg-10 td, + .table.gx-lg-10 th { + padding-left: 2.5rem; + padding-right: 2.5rem + } + + .table.gx-lg-10 td.dtr-control, + .table.gx-lg-10 th.dtr-control { + padding-left: 2.5rem !important + } + + .table.gs-lg-10 td:first-child, + .table.gs-lg-10 th:first-child { + padding-left: 2.5rem + } + + .table.gs-lg-10 td:last-child, + .table.gs-lg-10 th:last-child { + padding-right: 2.5rem + } + + .table.gs-lg-10 td.dtr-control:first-child, + .table.gs-lg-10 th.dtr-control:first-child { + padding-left: 2.5rem !important + } +} + +@media (min-width:1200px) { + + .table.g-xl-0 td, + .table.g-xl-0 th { + padding: 0 + } + + .table.g-xl-0 td.dtr-control, + .table.g-xl-0 th.dtr-control { + padding-left: 0 !important + } + + .table.gy-xl-0 td, + .table.gy-xl-0 th { + padding-top: 0; + padding-bottom: 0 + } + + .table.gx-xl-0 td, + .table.gx-xl-0 th { + padding-left: 0; + padding-right: 0 + } + + .table.gx-xl-0 td.dtr-control, + .table.gx-xl-0 th.dtr-control { + padding-left: 0 !important + } + + .table.gs-xl-0 td:first-child, + .table.gs-xl-0 th:first-child { + padding-left: 0 + } + + .table.gs-xl-0 td:last-child, + .table.gs-xl-0 th:last-child { + padding-right: 0 + } + + .table.gs-xl-0 td.dtr-control:first-child, + .table.gs-xl-0 th.dtr-control:first-child { + padding-left: 0 !important + } + + .table.g-xl-1 td, + .table.g-xl-1 th { + padding: .25rem + } + + .table.g-xl-1 td.dtr-control, + .table.g-xl-1 th.dtr-control { + padding-left: .25rem !important + } + + .table.gy-xl-1 td, + .table.gy-xl-1 th { + padding-top: .25rem; + padding-bottom: .25rem + } + + .table.gx-xl-1 td, + .table.gx-xl-1 th { + padding-left: .25rem; + padding-right: .25rem + } + + .table.gx-xl-1 td.dtr-control, + .table.gx-xl-1 th.dtr-control { + padding-left: .25rem !important + } + + .table.gs-xl-1 td:first-child, + .table.gs-xl-1 th:first-child { + padding-left: .25rem + } + + .table.gs-xl-1 td:last-child, + .table.gs-xl-1 th:last-child { + padding-right: .25rem + } + + .table.gs-xl-1 td.dtr-control:first-child, + .table.gs-xl-1 th.dtr-control:first-child { + padding-left: .25rem !important + } + + .table.g-xl-2 td, + .table.g-xl-2 th { + padding: .5rem + } + + .table.g-xl-2 td.dtr-control, + .table.g-xl-2 th.dtr-control { + padding-left: .5rem !important + } + + .table.gy-xl-2 td, + .table.gy-xl-2 th { + padding-top: .5rem; + padding-bottom: .5rem + } + + .table.gx-xl-2 td, + .table.gx-xl-2 th { + padding-left: .5rem; + padding-right: .5rem + } + + .table.gx-xl-2 td.dtr-control, + .table.gx-xl-2 th.dtr-control { + padding-left: .5rem !important + } + + .table.gs-xl-2 td:first-child, + .table.gs-xl-2 th:first-child { + padding-left: .5rem + } + + .table.gs-xl-2 td:last-child, + .table.gs-xl-2 th:last-child { + padding-right: .5rem + } + + .table.gs-xl-2 td.dtr-control:first-child, + .table.gs-xl-2 th.dtr-control:first-child { + padding-left: .5rem !important + } + + .table.g-xl-3 td, + .table.g-xl-3 th { + padding: .75rem + } + + .table.g-xl-3 td.dtr-control, + .table.g-xl-3 th.dtr-control { + padding-left: .75rem !important + } + + .table.gy-xl-3 td, + .table.gy-xl-3 th { + padding-top: .75rem; + padding-bottom: .75rem + } + + .table.gx-xl-3 td, + .table.gx-xl-3 th { + padding-left: .75rem; + padding-right: .75rem + } + + .table.gx-xl-3 td.dtr-control, + .table.gx-xl-3 th.dtr-control { + padding-left: .75rem !important + } + + .table.gs-xl-3 td:first-child, + .table.gs-xl-3 th:first-child { + padding-left: .75rem + } + + .table.gs-xl-3 td:last-child, + .table.gs-xl-3 th:last-child { + padding-right: .75rem + } + + .table.gs-xl-3 td.dtr-control:first-child, + .table.gs-xl-3 th.dtr-control:first-child { + padding-left: .75rem !important + } + + .table.g-xl-4 td, + .table.g-xl-4 th { + padding: 1rem + } + + .table.g-xl-4 td.dtr-control, + .table.g-xl-4 th.dtr-control { + padding-left: 1rem !important + } + + .table.gy-xl-4 td, + .table.gy-xl-4 th { + padding-top: 1rem; + padding-bottom: 1rem + } + + .table.gx-xl-4 td, + .table.gx-xl-4 th { + padding-left: 1rem; + padding-right: 1rem + } + + .table.gx-xl-4 td.dtr-control, + .table.gx-xl-4 th.dtr-control { + padding-left: 1rem !important + } + + .table.gs-xl-4 td:first-child, + .table.gs-xl-4 th:first-child { + padding-left: 1rem + } + + .table.gs-xl-4 td:last-child, + .table.gs-xl-4 th:last-child { + padding-right: 1rem + } + + .table.gs-xl-4 td.dtr-control:first-child, + .table.gs-xl-4 th.dtr-control:first-child { + padding-left: 1rem !important + } + + .table.g-xl-5 td, + .table.g-xl-5 th { + padding: 1.25rem + } + + .table.g-xl-5 td.dtr-control, + .table.g-xl-5 th.dtr-control { + padding-left: 1.25rem !important + } + + .table.gy-xl-5 td, + .table.gy-xl-5 th { + padding-top: 1.25rem; + padding-bottom: 1.25rem + } + + .table.gx-xl-5 td, + .table.gx-xl-5 th { + padding-left: 1.25rem; + padding-right: 1.25rem + } + + .table.gx-xl-5 td.dtr-control, + .table.gx-xl-5 th.dtr-control { + padding-left: 1.25rem !important + } + + .table.gs-xl-5 td:first-child, + .table.gs-xl-5 th:first-child { + padding-left: 1.25rem + } + + .table.gs-xl-5 td:last-child, + .table.gs-xl-5 th:last-child { + padding-right: 1.25rem + } + + .table.gs-xl-5 td.dtr-control:first-child, + .table.gs-xl-5 th.dtr-control:first-child { + padding-left: 1.25rem !important + } + + .table.g-xl-6 td, + .table.g-xl-6 th { + padding: 1.5rem + } + + .table.g-xl-6 td.dtr-control, + .table.g-xl-6 th.dtr-control { + padding-left: 1.5rem !important + } + + .table.gy-xl-6 td, + .table.gy-xl-6 th { + padding-top: 1.5rem; + padding-bottom: 1.5rem + } + + .table.gx-xl-6 td, + .table.gx-xl-6 th { + padding-left: 1.5rem; + padding-right: 1.5rem + } + + .table.gx-xl-6 td.dtr-control, + .table.gx-xl-6 th.dtr-control { + padding-left: 1.5rem !important + } + + .table.gs-xl-6 td:first-child, + .table.gs-xl-6 th:first-child { + padding-left: 1.5rem + } + + .table.gs-xl-6 td:last-child, + .table.gs-xl-6 th:last-child { + padding-right: 1.5rem + } + + .table.gs-xl-6 td.dtr-control:first-child, + .table.gs-xl-6 th.dtr-control:first-child { + padding-left: 1.5rem !important + } + + .table.g-xl-7 td, + .table.g-xl-7 th { + padding: 1.75rem + } + + .table.g-xl-7 td.dtr-control, + .table.g-xl-7 th.dtr-control { + padding-left: 1.75rem !important + } + + .table.gy-xl-7 td, + .table.gy-xl-7 th { + padding-top: 1.75rem; + padding-bottom: 1.75rem + } + + .table.gx-xl-7 td, + .table.gx-xl-7 th { + padding-left: 1.75rem; + padding-right: 1.75rem + } + + .table.gx-xl-7 td.dtr-control, + .table.gx-xl-7 th.dtr-control { + padding-left: 1.75rem !important + } + + .table.gs-xl-7 td:first-child, + .table.gs-xl-7 th:first-child { + padding-left: 1.75rem + } + + .table.gs-xl-7 td:last-child, + .table.gs-xl-7 th:last-child { + padding-right: 1.75rem + } + + .table.gs-xl-7 td.dtr-control:first-child, + .table.gs-xl-7 th.dtr-control:first-child { + padding-left: 1.75rem !important + } + + .table.g-xl-8 td, + .table.g-xl-8 th { + padding: 2rem + } + + .table.g-xl-8 td.dtr-control, + .table.g-xl-8 th.dtr-control { + padding-left: 2rem !important + } + + .table.gy-xl-8 td, + .table.gy-xl-8 th { + padding-top: 2rem; + padding-bottom: 2rem + } + + .table.gx-xl-8 td, + .table.gx-xl-8 th { + padding-left: 2rem; + padding-right: 2rem + } + + .table.gx-xl-8 td.dtr-control, + .table.gx-xl-8 th.dtr-control { + padding-left: 2rem !important + } + + .table.gs-xl-8 td:first-child, + .table.gs-xl-8 th:first-child { + padding-left: 2rem + } + + .table.gs-xl-8 td:last-child, + .table.gs-xl-8 th:last-child { + padding-right: 2rem + } + + .table.gs-xl-8 td.dtr-control:first-child, + .table.gs-xl-8 th.dtr-control:first-child { + padding-left: 2rem !important + } + + .table.g-xl-9 td, + .table.g-xl-9 th { + padding: 2.25rem + } + + .table.g-xl-9 td.dtr-control, + .table.g-xl-9 th.dtr-control { + padding-left: 2.25rem !important + } + + .table.gy-xl-9 td, + .table.gy-xl-9 th { + padding-top: 2.25rem; + padding-bottom: 2.25rem + } + + .table.gx-xl-9 td, + .table.gx-xl-9 th { + padding-left: 2.25rem; + padding-right: 2.25rem + } + + .table.gx-xl-9 td.dtr-control, + .table.gx-xl-9 th.dtr-control { + padding-left: 2.25rem !important + } + + .table.gs-xl-9 td:first-child, + .table.gs-xl-9 th:first-child { + padding-left: 2.25rem + } + + .table.gs-xl-9 td:last-child, + .table.gs-xl-9 th:last-child { + padding-right: 2.25rem + } + + .table.gs-xl-9 td.dtr-control:first-child, + .table.gs-xl-9 th.dtr-control:first-child { + padding-left: 2.25rem !important + } + + .table.g-xl-10 td, + .table.g-xl-10 th { + padding: 2.5rem + } + + .table.g-xl-10 td.dtr-control, + .table.g-xl-10 th.dtr-control { + padding-left: 2.5rem !important + } + + .table.gy-xl-10 td, + .table.gy-xl-10 th { + padding-top: 2.5rem; + padding-bottom: 2.5rem + } + + .table.gx-xl-10 td, + .table.gx-xl-10 th { + padding-left: 2.5rem; + padding-right: 2.5rem + } + + .table.gx-xl-10 td.dtr-control, + .table.gx-xl-10 th.dtr-control { + padding-left: 2.5rem !important + } + + .table.gs-xl-10 td:first-child, + .table.gs-xl-10 th:first-child { + padding-left: 2.5rem + } + + .table.gs-xl-10 td:last-child, + .table.gs-xl-10 th:last-child { + padding-right: 2.5rem + } + + .table.gs-xl-10 td.dtr-control:first-child, + .table.gs-xl-10 th.dtr-control:first-child { + padding-left: 2.5rem !important + } +} + +@media (min-width:1400px) { + + .table.g-xxl-0 td, + .table.g-xxl-0 th { + padding: 0 + } + + .table.g-xxl-0 td.dtr-control, + .table.g-xxl-0 th.dtr-control { + padding-left: 0 !important + } + + .table.gy-xxl-0 td, + .table.gy-xxl-0 th { + padding-top: 0; + padding-bottom: 0 + } + + .table.gx-xxl-0 td, + .table.gx-xxl-0 th { + padding-left: 0; + padding-right: 0 + } + + .table.gx-xxl-0 td.dtr-control, + .table.gx-xxl-0 th.dtr-control { + padding-left: 0 !important + } + + .table.gs-xxl-0 td:first-child, + .table.gs-xxl-0 th:first-child { + padding-left: 0 + } + + .table.gs-xxl-0 td:last-child, + .table.gs-xxl-0 th:last-child { + padding-right: 0 + } + + .table.gs-xxl-0 td.dtr-control:first-child, + .table.gs-xxl-0 th.dtr-control:first-child { + padding-left: 0 !important + } + + .table.g-xxl-1 td, + .table.g-xxl-1 th { + padding: .25rem + } + + .table.g-xxl-1 td.dtr-control, + .table.g-xxl-1 th.dtr-control { + padding-left: .25rem !important + } + + .table.gy-xxl-1 td, + .table.gy-xxl-1 th { + padding-top: .25rem; + padding-bottom: .25rem + } + + .table.gx-xxl-1 td, + .table.gx-xxl-1 th { + padding-left: .25rem; + padding-right: .25rem + } + + .table.gx-xxl-1 td.dtr-control, + .table.gx-xxl-1 th.dtr-control { + padding-left: .25rem !important + } + + .table.gs-xxl-1 td:first-child, + .table.gs-xxl-1 th:first-child { + padding-left: .25rem + } + + .table.gs-xxl-1 td:last-child, + .table.gs-xxl-1 th:last-child { + padding-right: .25rem + } + + .table.gs-xxl-1 td.dtr-control:first-child, + .table.gs-xxl-1 th.dtr-control:first-child { + padding-left: .25rem !important + } + + .table.g-xxl-2 td, + .table.g-xxl-2 th { + padding: .5rem + } + + .table.g-xxl-2 td.dtr-control, + .table.g-xxl-2 th.dtr-control { + padding-left: .5rem !important + } + + .table.gy-xxl-2 td, + .table.gy-xxl-2 th { + padding-top: .5rem; + padding-bottom: .5rem + } + + .table.gx-xxl-2 td, + .table.gx-xxl-2 th { + padding-left: .5rem; + padding-right: .5rem + } + + .table.gx-xxl-2 td.dtr-control, + .table.gx-xxl-2 th.dtr-control { + padding-left: .5rem !important + } + + .table.gs-xxl-2 td:first-child, + .table.gs-xxl-2 th:first-child { + padding-left: .5rem + } + + .table.gs-xxl-2 td:last-child, + .table.gs-xxl-2 th:last-child { + padding-right: .5rem + } + + .table.gs-xxl-2 td.dtr-control:first-child, + .table.gs-xxl-2 th.dtr-control:first-child { + padding-left: .5rem !important + } + + .table.g-xxl-3 td, + .table.g-xxl-3 th { + padding: .75rem + } + + .table.g-xxl-3 td.dtr-control, + .table.g-xxl-3 th.dtr-control { + padding-left: .75rem !important + } + + .table.gy-xxl-3 td, + .table.gy-xxl-3 th { + padding-top: .75rem; + padding-bottom: .75rem + } + + .table.gx-xxl-3 td, + .table.gx-xxl-3 th { + padding-left: .75rem; + padding-right: .75rem + } + + .table.gx-xxl-3 td.dtr-control, + .table.gx-xxl-3 th.dtr-control { + padding-left: .75rem !important + } + + .table.gs-xxl-3 td:first-child, + .table.gs-xxl-3 th:first-child { + padding-left: .75rem + } + + .table.gs-xxl-3 td:last-child, + .table.gs-xxl-3 th:last-child { + padding-right: .75rem + } + + .table.gs-xxl-3 td.dtr-control:first-child, + .table.gs-xxl-3 th.dtr-control:first-child { + padding-left: .75rem !important + } + + .table.g-xxl-4 td, + .table.g-xxl-4 th { + padding: 1rem + } + + .table.g-xxl-4 td.dtr-control, + .table.g-xxl-4 th.dtr-control { + padding-left: 1rem !important + } + + .table.gy-xxl-4 td, + .table.gy-xxl-4 th { + padding-top: 1rem; + padding-bottom: 1rem + } + + .table.gx-xxl-4 td, + .table.gx-xxl-4 th { + padding-left: 1rem; + padding-right: 1rem + } + + .table.gx-xxl-4 td.dtr-control, + .table.gx-xxl-4 th.dtr-control { + padding-left: 1rem !important + } + + .table.gs-xxl-4 td:first-child, + .table.gs-xxl-4 th:first-child { + padding-left: 1rem + } + + .table.gs-xxl-4 td:last-child, + .table.gs-xxl-4 th:last-child { + padding-right: 1rem + } + + .table.gs-xxl-4 td.dtr-control:first-child, + .table.gs-xxl-4 th.dtr-control:first-child { + padding-left: 1rem !important + } + + .table.g-xxl-5 td, + .table.g-xxl-5 th { + padding: 1.25rem + } + + .table.g-xxl-5 td.dtr-control, + .table.g-xxl-5 th.dtr-control { + padding-left: 1.25rem !important + } + + .table.gy-xxl-5 td, + .table.gy-xxl-5 th { + padding-top: 1.25rem; + padding-bottom: 1.25rem + } + + .table.gx-xxl-5 td, + .table.gx-xxl-5 th { + padding-left: 1.25rem; + padding-right: 1.25rem + } + + .table.gx-xxl-5 td.dtr-control, + .table.gx-xxl-5 th.dtr-control { + padding-left: 1.25rem !important + } + + .table.gs-xxl-5 td:first-child, + .table.gs-xxl-5 th:first-child { + padding-left: 1.25rem + } + + .table.gs-xxl-5 td:last-child, + .table.gs-xxl-5 th:last-child { + padding-right: 1.25rem + } + + .table.gs-xxl-5 td.dtr-control:first-child, + .table.gs-xxl-5 th.dtr-control:first-child { + padding-left: 1.25rem !important + } + + .table.g-xxl-6 td, + .table.g-xxl-6 th { + padding: 1.5rem + } + + .table.g-xxl-6 td.dtr-control, + .table.g-xxl-6 th.dtr-control { + padding-left: 1.5rem !important + } + + .table.gy-xxl-6 td, + .table.gy-xxl-6 th { + padding-top: 1.5rem; + padding-bottom: 1.5rem + } + + .table.gx-xxl-6 td, + .table.gx-xxl-6 th { + padding-left: 1.5rem; + padding-right: 1.5rem + } + + .table.gx-xxl-6 td.dtr-control, + .table.gx-xxl-6 th.dtr-control { + padding-left: 1.5rem !important + } + + .table.gs-xxl-6 td:first-child, + .table.gs-xxl-6 th:first-child { + padding-left: 1.5rem + } + + .table.gs-xxl-6 td:last-child, + .table.gs-xxl-6 th:last-child { + padding-right: 1.5rem + } + + .table.gs-xxl-6 td.dtr-control:first-child, + .table.gs-xxl-6 th.dtr-control:first-child { + padding-left: 1.5rem !important + } + + .table.g-xxl-7 td, + .table.g-xxl-7 th { + padding: 1.75rem + } + + .table.g-xxl-7 td.dtr-control, + .table.g-xxl-7 th.dtr-control { + padding-left: 1.75rem !important + } + + .table.gy-xxl-7 td, + .table.gy-xxl-7 th { + padding-top: 1.75rem; + padding-bottom: 1.75rem + } + + .table.gx-xxl-7 td, + .table.gx-xxl-7 th { + padding-left: 1.75rem; + padding-right: 1.75rem + } + + .table.gx-xxl-7 td.dtr-control, + .table.gx-xxl-7 th.dtr-control { + padding-left: 1.75rem !important + } + + .table.gs-xxl-7 td:first-child, + .table.gs-xxl-7 th:first-child { + padding-left: 1.75rem + } + + .table.gs-xxl-7 td:last-child, + .table.gs-xxl-7 th:last-child { + padding-right: 1.75rem + } + + .table.gs-xxl-7 td.dtr-control:first-child, + .table.gs-xxl-7 th.dtr-control:first-child { + padding-left: 1.75rem !important + } + + .table.g-xxl-8 td, + .table.g-xxl-8 th { + padding: 2rem + } + + .table.g-xxl-8 td.dtr-control, + .table.g-xxl-8 th.dtr-control { + padding-left: 2rem !important + } + + .table.gy-xxl-8 td, + .table.gy-xxl-8 th { + padding-top: 2rem; + padding-bottom: 2rem + } + + .table.gx-xxl-8 td, + .table.gx-xxl-8 th { + padding-left: 2rem; + padding-right: 2rem + } + + .table.gx-xxl-8 td.dtr-control, + .table.gx-xxl-8 th.dtr-control { + padding-left: 2rem !important + } + + .table.gs-xxl-8 td:first-child, + .table.gs-xxl-8 th:first-child { + padding-left: 2rem + } + + .table.gs-xxl-8 td:last-child, + .table.gs-xxl-8 th:last-child { + padding-right: 2rem + } + + .table.gs-xxl-8 td.dtr-control:first-child, + .table.gs-xxl-8 th.dtr-control:first-child { + padding-left: 2rem !important + } + + .table.g-xxl-9 td, + .table.g-xxl-9 th { + padding: 2.25rem + } + + .table.g-xxl-9 td.dtr-control, + .table.g-xxl-9 th.dtr-control { + padding-left: 2.25rem !important + } + + .table.gy-xxl-9 td, + .table.gy-xxl-9 th { + padding-top: 2.25rem; + padding-bottom: 2.25rem + } + + .table.gx-xxl-9 td, + .table.gx-xxl-9 th { + padding-left: 2.25rem; + padding-right: 2.25rem + } + + .table.gx-xxl-9 td.dtr-control, + .table.gx-xxl-9 th.dtr-control { + padding-left: 2.25rem !important + } + + .table.gs-xxl-9 td:first-child, + .table.gs-xxl-9 th:first-child { + padding-left: 2.25rem + } + + .table.gs-xxl-9 td:last-child, + .table.gs-xxl-9 th:last-child { + padding-right: 2.25rem + } + + .table.gs-xxl-9 td.dtr-control:first-child, + .table.gs-xxl-9 th.dtr-control:first-child { + padding-left: 2.25rem !important + } + + .table.g-xxl-10 td, + .table.g-xxl-10 th { + padding: 2.5rem + } + + .table.g-xxl-10 td.dtr-control, + .table.g-xxl-10 th.dtr-control { + padding-left: 2.5rem !important + } + + .table.gy-xxl-10 td, + .table.gy-xxl-10 th { + padding-top: 2.5rem; + padding-bottom: 2.5rem + } + + .table.gx-xxl-10 td, + .table.gx-xxl-10 th { + padding-left: 2.5rem; + padding-right: 2.5rem + } + + .table.gx-xxl-10 td.dtr-control, + .table.gx-xxl-10 th.dtr-control { + padding-left: 2.5rem !important + } + + .table.gs-xxl-10 td:first-child, + .table.gs-xxl-10 th:first-child { + padding-left: 2.5rem + } + + .table.gs-xxl-10 td:last-child, + .table.gs-xxl-10 th:last-child { + padding-right: 2.5rem + } + + .table.gs-xxl-10 td.dtr-control:first-child, + .table.gs-xxl-10 th.dtr-control:first-child { + padding-left: 2.5rem !important + } +} + +.popover .popover-header { + font-size: 1rem; + font-weight: 500; + border-bottom: 1px solid #f5f8fa +} + +.popover .popover-dismiss { + position: absolute; + top: .85rem; + right: .85rem; + height: 1.5rem; + width: 1.5rem; + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A1A5B7'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e"); + background-size: 45% +} + +.popover .popover-dismiss:hover { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009EF7'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") +} + +.popover .popover-dismiss+.popover-header { + padding-right: 2.75rem +} + +.popover-dark { + background-color: #181c32; + border: 0 +} + +.popover-dark .popover-header { + background-color: #181c32; + color: #eff2f5; + border-bottom-color: #3f4254 +} + +.popover-dark .popover-body { + color: #b5b5c3 +} + +.popover-dark.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before, +.popover-dark.bs-popover-top>.popover-arrow::before { + border-top-color: #f5f8fa +} + +.popover-dark.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after, +.popover-dark.bs-popover-top>.popover-arrow::after { + border-top-color: #181c32 +} + +.popover-dark.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before, +.popover-dark.bs-popover-end>.popover-arrow::before { + border-right-color: #f5f8fa +} + +.popover-dark.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after, +.popover-dark.bs-popover-end>.popover-arrow::after { + border-right-color: #181c32 +} + +.popover-dark.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before, +.popover-dark.bs-popover-bottom>.popover-arrow::before { + border-bottom-color: #f5f8fa +} + +.popover-dark.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after, +.popover-dark.bs-popover-bottom>.popover-arrow::after { + border-bottom-color: #181c32 +} + +.popover-dark.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before, +.popover-dark.bs-popover-bottom .popover-header::before { + border-bottom-color: #181c32 +} + +.popover-dark.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before, +.popover-dark.bs-popover-start>.popover-arrow::before { + border-left-color: #f5f8fa +} + +.popover-dark.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after, +.popover-dark.bs-popover-start>.popover-arrow::after { + border-left-color: #181c32 +} + +.tooltip .tooltip-inner { + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15) +} + +.tooltip.tooltop-auto-width .tooltip-inner { + white-space: nowrap; + max-width: none +} + +.tooltip.tooltip-dark .tooltip-inner { + color: #fff; + background-color: #181c32 +} + +.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, +.tooltip.tooltip-dark.bs-tooltip-top .tooltip-arrow::before { + border-top-color: #181c32 +} + +.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before, +.tooltip.tooltip-dark.bs-tooltip-end .tooltip-arrow::before { + border-right-color: #181c32 +} + +.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before, +.tooltip.tooltip-dark.bs-tooltip-bottom .tooltip-arrow::before { + border-bottom-color: #181c32 +} + +.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, +.tooltip.tooltip-dark.bs-tooltip-start .tooltip-arrow::before { + border-left-color: #181c32 +} + +.accordion .accordion-header { + cursor: pointer +} + +.accordion.accordion-icon-toggle .accordion-icon { + display: flex; + flex-shrink: 0; + transition: all .2s ease; + transform: rotate(90deg); + align-items: center; + justify-content: center +} + +.accordion.accordion-icon-toggle .accordion-icon .svg-icon, +.accordion.accordion-icon-toggle .accordion-icon i { + color: #009ef7 +} + +.accordion.accordion-icon-toggle .collapsed .accordion-icon { + transition: all .2s ease; + transform: rotate(0) +} + +.accordion.accordion-icon-toggle .collapsed .accordion-icon .svg-icon, +.accordion.accordion-icon-toggle .collapsed .accordion-icon i { + color: #a1a5b7 +} + +.accordion.accordion-borderless .accordion-item { + border: 0 +} + +.accordion.accordion-flush .accordion-item { + background-color: transparent; + border: 0; + border-radius: 0; + padding-left: 0; + padding-right: 0 +} + +.feedback { + display: none +} + +.feedback-popup { + display: flex; + justify-content: center; + margin: 0 auto; + position: fixed; + z-index: 1000; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + background-color: #fff; + border-radius: .475rem; + padding: 1rem 1.25rem +} + +.feedback-top-center { + display: flex; + transition: top .6s ease; + left: 50%; + transform: translateX(-50%); + border-top-left-radius: 0; + border-top-right-radius: 0 +} + +.feedback-top-center.feedback-shown { + top: 0; + transition: top .6s ease +} + +.image-input { + position: relative; + display: inline-block; + border-radius: .475rem; + background-repeat: no-repeat; + background-size: cover +} + +.image-input:not(.image-input-empty) { + background-image: none !important +} + +.image-input .image-input-wrapper { + width: 120px; + height: 120px; + border-radius: .475rem; + background-repeat: no-repeat; + background-size: cover +} + +.image-input [data-kt-image-input-action] { + cursor: pointer; + position: absolute; + transform: translate(-50%, -50%) +} + +.image-input [data-kt-image-input-action=change] { + left: 100%; + top: 0 +} + +.image-input [data-kt-image-input-action=change] input { + width: 0 !important; + height: 0 !important; + overflow: hidden; + opacity: 0 +} + +.image-input [data-kt-image-input-action=cancel], +.image-input [data-kt-image-input-action=remove] { + position: absolute; + left: 100%; + top: 100% +} + +.image-input [data-kt-image-input-action=cancel] { + display: none +} + +.image-input.image-input-changed [data-kt-image-input-action=cancel] { + display: flex +} + +.image-input.image-input-changed [data-kt-image-input-action=remove] { + display: none +} + +.image-input.image-input-empty [data-kt-image-input-action=cancel], +.image-input.image-input-empty [data-kt-image-input-action=remove] { + display: none +} + +.image-input.image-input-circle { + border-radius: 50% +} + +.image-input.image-input-circle .image-input-wrapper { + border-radius: 50% +} + +.image-input.image-input-circle [data-kt-image-input-action=change] { + left: 100%; + top: 0; + transform: translate(-100%, 0) +} + +.image-input.image-input-circle [data-kt-image-input-action=cancel], +.image-input.image-input-circle [data-kt-image-input-action=remove] { + left: 100%; + top: 100%; + transform: translate(-100%, -100%) +} + +.image-input.image-input-outline .image-input-wrapper { + border: 3px solid #fff; + box-shadow: 0 .1rem 1rem .25rem rgba(0, 0, 0, .05) +} + +.symbol { + display: inline-block; + flex-shrink: 0; + position: relative; + border-radius: .475rem +} + +.symbol .symbol-label { + display: flex; + align-items: center; + justify-content: center; + font-weight: 500; + color: #3f4254; + background-color: #f5f8fa; + background-repeat: no-repeat; + background-position: center center; + background-size: cover; + border-radius: .475rem +} + +.symbol .symbol-badge { + position: absolute; + border: 2px solid #fff; + border-radius: 100%; + top: 0; + left: 50%; + transform: translateX(-50%) translateY(-50%) !important +} + +.symbol>img { + width: 100%; + flex-shrink: 0; + display: inline-block; + border-radius: .475rem +} + +.symbol.symbol-square, +.symbol.symbol-square .symbol-label, +.symbol.symbol-square>img { + border-radius: 0 !important +} + +.symbol.symbol-circle, +.symbol.symbol-circle .symbol-label, +.symbol.symbol-circle>img { + border-radius: 50% +} + +.symbol>img { + width: 50px; + height: 50px +} + +.symbol .symbol-label { + width: 50px; + height: 50px +} + +.symbol.symbol-fixed .symbol-label { + width: 50px; + height: 50px +} + +.symbol.symbol-fixed>img { + width: 50px; + height: 50px; + max-width: none +} + +.symbol.symbol-2by3 .symbol-label { + height: 50px; + width: 75px +} + +.symbol.symbol-2by3>img { + height: 50px; + width: 75px; + max-width: none +} + +.symbol.symbol-20px>img { + width: 20px; + height: 20px +} + +.symbol.symbol-20px .symbol-label { + width: 20px; + height: 20px +} + +.symbol.symbol-20px.symbol-fixed .symbol-label { + width: 20px; + height: 20px +} + +.symbol.symbol-20px.symbol-fixed>img { + width: 20px; + height: 20px; + max-width: none +} + +.symbol.symbol-20px.symbol-2by3 .symbol-label { + height: 20px; + width: 30px +} + +.symbol.symbol-20px.symbol-2by3>img { + height: 20px; + width: 30px; + max-width: none +} + +.symbol.symbol-25px>img { + width: 25px; + height: 25px +} + +.symbol.symbol-25px .symbol-label { + width: 25px; + height: 25px +} + +.symbol.symbol-25px.symbol-fixed .symbol-label { + width: 25px; + height: 25px +} + +.symbol.symbol-25px.symbol-fixed>img { + width: 25px; + height: 25px; + max-width: none +} + +.symbol.symbol-25px.symbol-2by3 .symbol-label { + height: 25px; + width: 37.5px +} + +.symbol.symbol-25px.symbol-2by3>img { + height: 25px; + width: 37.5px; + max-width: none +} + +.symbol.symbol-30px>img { + width: 30px; + height: 30px +} + +.symbol.symbol-30px .symbol-label { + width: 30px; + height: 30px +} + +.symbol.symbol-30px.symbol-fixed .symbol-label { + width: 30px; + height: 30px +} + +.symbol.symbol-30px.symbol-fixed>img { + width: 30px; + height: 30px; + max-width: none +} + +.symbol.symbol-30px.symbol-2by3 .symbol-label { + height: 30px; + width: 45px +} + +.symbol.symbol-30px.symbol-2by3>img { + height: 30px; + width: 45px; + max-width: none +} + +.symbol.symbol-35px>img { + width: 35px; + height: 35px +} + +.symbol.symbol-35px .symbol-label { + width: 35px; + height: 35px +} + +.symbol.symbol-35px.symbol-fixed .symbol-label { + width: 35px; + height: 35px +} + +.symbol.symbol-35px.symbol-fixed>img { + width: 35px; + height: 35px; + max-width: none +} + +.symbol.symbol-35px.symbol-2by3 .symbol-label { + height: 35px; + width: 52.5px +} + +.symbol.symbol-35px.symbol-2by3>img { + height: 35px; + width: 52.5px; + max-width: none +} + +.symbol.symbol-40px>img { + width: 40px; + height: 40px +} + +.symbol.symbol-40px .symbol-label { + width: 40px; + height: 40px +} + +.symbol.symbol-40px.symbol-fixed .symbol-label { + width: 40px; + height: 40px +} + +.symbol.symbol-40px.symbol-fixed>img { + width: 40px; + height: 40px; + max-width: none +} + +.symbol.symbol-40px.symbol-2by3 .symbol-label { + height: 40px; + width: 60px +} + +.symbol.symbol-40px.symbol-2by3>img { + height: 40px; + width: 60px; + max-width: none +} + +.symbol.symbol-45px>img { + width: 45px; + height: 45px +} + +.symbol.symbol-45px .symbol-label { + width: 45px; + height: 45px +} + +.symbol.symbol-45px.symbol-fixed .symbol-label { + width: 45px; + height: 45px +} + +.symbol.symbol-45px.symbol-fixed>img { + width: 45px; + height: 45px; + max-width: none +} + +.symbol.symbol-45px.symbol-2by3 .symbol-label { + height: 45px; + width: 67.5px +} + +.symbol.symbol-45px.symbol-2by3>img { + height: 45px; + width: 67.5px; + max-width: none +} + +.symbol.symbol-50px>img { + width: 50px; + height: 50px +} + +.symbol.symbol-50px .symbol-label { + width: 50px; + height: 50px +} + +.symbol.symbol-50px.symbol-fixed .symbol-label { + width: 50px; + height: 50px +} + +.symbol.symbol-50px.symbol-fixed>img { + width: 50px; + height: 50px; + max-width: none +} + +.symbol.symbol-50px.symbol-2by3 .symbol-label { + height: 50px; + width: 75px +} + +.symbol.symbol-50px.symbol-2by3>img { + height: 50px; + width: 75px; + max-width: none +} + +.symbol.symbol-55px>img { + width: 55px; + height: 55px +} + +.symbol.symbol-55px .symbol-label { + width: 55px; + height: 55px +} + +.symbol.symbol-55px.symbol-fixed .symbol-label { + width: 55px; + height: 55px +} + +.symbol.symbol-55px.symbol-fixed>img { + width: 55px; + height: 55px; + max-width: none +} + +.symbol.symbol-55px.symbol-2by3 .symbol-label { + height: 55px; + width: 82.5px +} + +.symbol.symbol-55px.symbol-2by3>img { + height: 55px; + width: 82.5px; + max-width: none +} + +.symbol.symbol-60px>img { + width: 60px; + height: 60px +} + +.symbol.symbol-60px .symbol-label { + width: 60px; + height: 60px +} + +.symbol.symbol-60px.symbol-fixed .symbol-label { + width: 60px; + height: 60px +} + +.symbol.symbol-60px.symbol-fixed>img { + width: 60px; + height: 60px; + max-width: none +} + +.symbol.symbol-60px.symbol-2by3 .symbol-label { + height: 60px; + width: 90px +} + +.symbol.symbol-60px.symbol-2by3>img { + height: 60px; + width: 90px; + max-width: none +} + +.symbol.symbol-65px>img { + width: 65px; + height: 65px +} + +.symbol.symbol-65px .symbol-label { + width: 65px; + height: 65px +} + +.symbol.symbol-65px.symbol-fixed .symbol-label { + width: 65px; + height: 65px +} + +.symbol.symbol-65px.symbol-fixed>img { + width: 65px; + height: 65px; + max-width: none +} + +.symbol.symbol-65px.symbol-2by3 .symbol-label { + height: 65px; + width: 97.5px +} + +.symbol.symbol-65px.symbol-2by3>img { + height: 65px; + width: 97.5px; + max-width: none +} + +.symbol.symbol-70px>img { + width: 70px; + height: 70px +} + +.symbol.symbol-70px .symbol-label { + width: 70px; + height: 70px +} + +.symbol.symbol-70px.symbol-fixed .symbol-label { + width: 70px; + height: 70px +} + +.symbol.symbol-70px.symbol-fixed>img { + width: 70px; + height: 70px; + max-width: none +} + +.symbol.symbol-70px.symbol-2by3 .symbol-label { + height: 70px; + width: 105px +} + +.symbol.symbol-70px.symbol-2by3>img { + height: 70px; + width: 105px; + max-width: none +} + +.symbol.symbol-75px>img { + width: 75px; + height: 75px +} + +.symbol.symbol-75px .symbol-label { + width: 75px; + height: 75px +} + +.symbol.symbol-75px.symbol-fixed .symbol-label { + width: 75px; + height: 75px +} + +.symbol.symbol-75px.symbol-fixed>img { + width: 75px; + height: 75px; + max-width: none +} + +.symbol.symbol-75px.symbol-2by3 .symbol-label { + height: 75px; + width: 112.5px +} + +.symbol.symbol-75px.symbol-2by3>img { + height: 75px; + width: 112.5px; + max-width: none +} + +.symbol.symbol-100px>img { + width: 100px; + height: 100px +} + +.symbol.symbol-100px .symbol-label { + width: 100px; + height: 100px +} + +.symbol.symbol-100px.symbol-fixed .symbol-label { + width: 100px; + height: 100px +} + +.symbol.symbol-100px.symbol-fixed>img { + width: 100px; + height: 100px; + max-width: none +} + +.symbol.symbol-100px.symbol-2by3 .symbol-label { + height: 100px; + width: 150px +} + +.symbol.symbol-100px.symbol-2by3>img { + height: 100px; + width: 150px; + max-width: none +} + +.symbol.symbol-125px>img { + width: 125px; + height: 125px +} + +.symbol.symbol-125px .symbol-label { + width: 125px; + height: 125px +} + +.symbol.symbol-125px.symbol-fixed .symbol-label { + width: 125px; + height: 125px +} + +.symbol.symbol-125px.symbol-fixed>img { + width: 125px; + height: 125px; + max-width: none +} + +.symbol.symbol-125px.symbol-2by3 .symbol-label { + height: 125px; + width: 187.5px +} + +.symbol.symbol-125px.symbol-2by3>img { + height: 125px; + width: 187.5px; + max-width: none +} + +.symbol.symbol-150px>img { + width: 150px; + height: 150px +} + +.symbol.symbol-150px .symbol-label { + width: 150px; + height: 150px +} + +.symbol.symbol-150px.symbol-fixed .symbol-label { + width: 150px; + height: 150px +} + +.symbol.symbol-150px.symbol-fixed>img { + width: 150px; + height: 150px; + max-width: none +} + +.symbol.symbol-150px.symbol-2by3 .symbol-label { + height: 150px; + width: 225px +} + +.symbol.symbol-150px.symbol-2by3>img { + height: 150px; + width: 225px; + max-width: none +} + +.symbol.symbol-160px>img { + width: 160px; + height: 160px +} + +.symbol.symbol-160px .symbol-label { + width: 160px; + height: 160px +} + +.symbol.symbol-160px.symbol-fixed .symbol-label { + width: 160px; + height: 160px +} + +.symbol.symbol-160px.symbol-fixed>img { + width: 160px; + height: 160px; + max-width: none +} + +.symbol.symbol-160px.symbol-2by3 .symbol-label { + height: 160px; + width: 240px +} + +.symbol.symbol-160px.symbol-2by3>img { + height: 160px; + width: 240px; + max-width: none +} + +.symbol.symbol-175px>img { + width: 175px; + height: 175px +} + +.symbol.symbol-175px .symbol-label { + width: 175px; + height: 175px +} + +.symbol.symbol-175px.symbol-fixed .symbol-label { + width: 175px; + height: 175px +} + +.symbol.symbol-175px.symbol-fixed>img { + width: 175px; + height: 175px; + max-width: none +} + +.symbol.symbol-175px.symbol-2by3 .symbol-label { + height: 175px; + width: 262.5px +} + +.symbol.symbol-175px.symbol-2by3>img { + height: 175px; + width: 262.5px; + max-width: none +} + +.symbol.symbol-200px>img { + width: 200px; + height: 200px +} + +.symbol.symbol-200px .symbol-label { + width: 200px; + height: 200px +} + +.symbol.symbol-200px.symbol-fixed .symbol-label { + width: 200px; + height: 200px +} + +.symbol.symbol-200px.symbol-fixed>img { + width: 200px; + height: 200px; + max-width: none +} + +.symbol.symbol-200px.symbol-2by3 .symbol-label { + height: 200px; + width: 300px +} + +.symbol.symbol-200px.symbol-2by3>img { + height: 200px; + width: 300px; + max-width: none +} + +@media (min-width:576px) { + .symbol.symbol-sm-20px>img { + width: 20px; + height: 20px + } + + .symbol.symbol-sm-20px .symbol-label { + width: 20px; + height: 20px + } + + .symbol.symbol-sm-20px.symbol-fixed .symbol-label { + width: 20px; + height: 20px + } + + .symbol.symbol-sm-20px.symbol-fixed>img { + width: 20px; + height: 20px; + max-width: none + } + + .symbol.symbol-sm-20px.symbol-2by3 .symbol-label { + height: 20px; + width: 30px + } + + .symbol.symbol-sm-20px.symbol-2by3>img { + height: 20px; + width: 30px; + max-width: none + } + + .symbol.symbol-sm-25px>img { + width: 25px; + height: 25px + } + + .symbol.symbol-sm-25px .symbol-label { + width: 25px; + height: 25px + } + + .symbol.symbol-sm-25px.symbol-fixed .symbol-label { + width: 25px; + height: 25px + } + + .symbol.symbol-sm-25px.symbol-fixed>img { + width: 25px; + height: 25px; + max-width: none + } + + .symbol.symbol-sm-25px.symbol-2by3 .symbol-label { + height: 25px; + width: 37.5px + } + + .symbol.symbol-sm-25px.symbol-2by3>img { + height: 25px; + width: 37.5px; + max-width: none + } + + .symbol.symbol-sm-30px>img { + width: 30px; + height: 30px + } + + .symbol.symbol-sm-30px .symbol-label { + width: 30px; + height: 30px + } + + .symbol.symbol-sm-30px.symbol-fixed .symbol-label { + width: 30px; + height: 30px + } + + .symbol.symbol-sm-30px.symbol-fixed>img { + width: 30px; + height: 30px; + max-width: none + } + + .symbol.symbol-sm-30px.symbol-2by3 .symbol-label { + height: 30px; + width: 45px + } + + .symbol.symbol-sm-30px.symbol-2by3>img { + height: 30px; + width: 45px; + max-width: none + } + + .symbol.symbol-sm-35px>img { + width: 35px; + height: 35px + } + + .symbol.symbol-sm-35px .symbol-label { + width: 35px; + height: 35px + } + + .symbol.symbol-sm-35px.symbol-fixed .symbol-label { + width: 35px; + height: 35px + } + + .symbol.symbol-sm-35px.symbol-fixed>img { + width: 35px; + height: 35px; + max-width: none + } + + .symbol.symbol-sm-35px.symbol-2by3 .symbol-label { + height: 35px; + width: 52.5px + } + + .symbol.symbol-sm-35px.symbol-2by3>img { + height: 35px; + width: 52.5px; + max-width: none + } + + .symbol.symbol-sm-40px>img { + width: 40px; + height: 40px + } + + .symbol.symbol-sm-40px .symbol-label { + width: 40px; + height: 40px + } + + .symbol.symbol-sm-40px.symbol-fixed .symbol-label { + width: 40px; + height: 40px + } + + .symbol.symbol-sm-40px.symbol-fixed>img { + width: 40px; + height: 40px; + max-width: none + } + + .symbol.symbol-sm-40px.symbol-2by3 .symbol-label { + height: 40px; + width: 60px + } + + .symbol.symbol-sm-40px.symbol-2by3>img { + height: 40px; + width: 60px; + max-width: none + } + + .symbol.symbol-sm-45px>img { + width: 45px; + height: 45px + } + + .symbol.symbol-sm-45px .symbol-label { + width: 45px; + height: 45px + } + + .symbol.symbol-sm-45px.symbol-fixed .symbol-label { + width: 45px; + height: 45px + } + + .symbol.symbol-sm-45px.symbol-fixed>img { + width: 45px; + height: 45px; + max-width: none + } + + .symbol.symbol-sm-45px.symbol-2by3 .symbol-label { + height: 45px; + width: 67.5px + } + + .symbol.symbol-sm-45px.symbol-2by3>img { + height: 45px; + width: 67.5px; + max-width: none + } + + .symbol.symbol-sm-50px>img { + width: 50px; + height: 50px + } + + .symbol.symbol-sm-50px .symbol-label { + width: 50px; + height: 50px + } + + .symbol.symbol-sm-50px.symbol-fixed .symbol-label { + width: 50px; + height: 50px + } + + .symbol.symbol-sm-50px.symbol-fixed>img { + width: 50px; + height: 50px; + max-width: none + } + + .symbol.symbol-sm-50px.symbol-2by3 .symbol-label { + height: 50px; + width: 75px + } + + .symbol.symbol-sm-50px.symbol-2by3>img { + height: 50px; + width: 75px; + max-width: none + } + + .symbol.symbol-sm-55px>img { + width: 55px; + height: 55px + } + + .symbol.symbol-sm-55px .symbol-label { + width: 55px; + height: 55px + } + + .symbol.symbol-sm-55px.symbol-fixed .symbol-label { + width: 55px; + height: 55px + } + + .symbol.symbol-sm-55px.symbol-fixed>img { + width: 55px; + height: 55px; + max-width: none + } + + .symbol.symbol-sm-55px.symbol-2by3 .symbol-label { + height: 55px; + width: 82.5px + } + + .symbol.symbol-sm-55px.symbol-2by3>img { + height: 55px; + width: 82.5px; + max-width: none + } + + .symbol.symbol-sm-60px>img { + width: 60px; + height: 60px + } + + .symbol.symbol-sm-60px .symbol-label { + width: 60px; + height: 60px + } + + .symbol.symbol-sm-60px.symbol-fixed .symbol-label { + width: 60px; + height: 60px + } + + .symbol.symbol-sm-60px.symbol-fixed>img { + width: 60px; + height: 60px; + max-width: none + } + + .symbol.symbol-sm-60px.symbol-2by3 .symbol-label { + height: 60px; + width: 90px + } + + .symbol.symbol-sm-60px.symbol-2by3>img { + height: 60px; + width: 90px; + max-width: none + } + + .symbol.symbol-sm-65px>img { + width: 65px; + height: 65px + } + + .symbol.symbol-sm-65px .symbol-label { + width: 65px; + height: 65px + } + + .symbol.symbol-sm-65px.symbol-fixed .symbol-label { + width: 65px; + height: 65px + } + + .symbol.symbol-sm-65px.symbol-fixed>img { + width: 65px; + height: 65px; + max-width: none + } + + .symbol.symbol-sm-65px.symbol-2by3 .symbol-label { + height: 65px; + width: 97.5px + } + + .symbol.symbol-sm-65px.symbol-2by3>img { + height: 65px; + width: 97.5px; + max-width: none + } + + .symbol.symbol-sm-70px>img { + width: 70px; + height: 70px + } + + .symbol.symbol-sm-70px .symbol-label { + width: 70px; + height: 70px + } + + .symbol.symbol-sm-70px.symbol-fixed .symbol-label { + width: 70px; + height: 70px + } + + .symbol.symbol-sm-70px.symbol-fixed>img { + width: 70px; + height: 70px; + max-width: none + } + + .symbol.symbol-sm-70px.symbol-2by3 .symbol-label { + height: 70px; + width: 105px + } + + .symbol.symbol-sm-70px.symbol-2by3>img { + height: 70px; + width: 105px; + max-width: none + } + + .symbol.symbol-sm-75px>img { + width: 75px; + height: 75px + } + + .symbol.symbol-sm-75px .symbol-label { + width: 75px; + height: 75px + } + + .symbol.symbol-sm-75px.symbol-fixed .symbol-label { + width: 75px; + height: 75px + } + + .symbol.symbol-sm-75px.symbol-fixed>img { + width: 75px; + height: 75px; + max-width: none + } + + .symbol.symbol-sm-75px.symbol-2by3 .symbol-label { + height: 75px; + width: 112.5px + } + + .symbol.symbol-sm-75px.symbol-2by3>img { + height: 75px; + width: 112.5px; + max-width: none + } + + .symbol.symbol-sm-100px>img { + width: 100px; + height: 100px + } + + .symbol.symbol-sm-100px .symbol-label { + width: 100px; + height: 100px + } + + .symbol.symbol-sm-100px.symbol-fixed .symbol-label { + width: 100px; + height: 100px + } + + .symbol.symbol-sm-100px.symbol-fixed>img { + width: 100px; + height: 100px; + max-width: none + } + + .symbol.symbol-sm-100px.symbol-2by3 .symbol-label { + height: 100px; + width: 150px + } + + .symbol.symbol-sm-100px.symbol-2by3>img { + height: 100px; + width: 150px; + max-width: none + } + + .symbol.symbol-sm-125px>img { + width: 125px; + height: 125px + } + + .symbol.symbol-sm-125px .symbol-label { + width: 125px; + height: 125px + } + + .symbol.symbol-sm-125px.symbol-fixed .symbol-label { + width: 125px; + height: 125px + } + + .symbol.symbol-sm-125px.symbol-fixed>img { + width: 125px; + height: 125px; + max-width: none + } + + .symbol.symbol-sm-125px.symbol-2by3 .symbol-label { + height: 125px; + width: 187.5px + } + + .symbol.symbol-sm-125px.symbol-2by3>img { + height: 125px; + width: 187.5px; + max-width: none + } + + .symbol.symbol-sm-150px>img { + width: 150px; + height: 150px + } + + .symbol.symbol-sm-150px .symbol-label { + width: 150px; + height: 150px + } + + .symbol.symbol-sm-150px.symbol-fixed .symbol-label { + width: 150px; + height: 150px + } + + .symbol.symbol-sm-150px.symbol-fixed>img { + width: 150px; + height: 150px; + max-width: none + } + + .symbol.symbol-sm-150px.symbol-2by3 .symbol-label { + height: 150px; + width: 225px + } + + .symbol.symbol-sm-150px.symbol-2by3>img { + height: 150px; + width: 225px; + max-width: none + } + + .symbol.symbol-sm-160px>img { + width: 160px; + height: 160px + } + + .symbol.symbol-sm-160px .symbol-label { + width: 160px; + height: 160px + } + + .symbol.symbol-sm-160px.symbol-fixed .symbol-label { + width: 160px; + height: 160px + } + + .symbol.symbol-sm-160px.symbol-fixed>img { + width: 160px; + height: 160px; + max-width: none + } + + .symbol.symbol-sm-160px.symbol-2by3 .symbol-label { + height: 160px; + width: 240px + } + + .symbol.symbol-sm-160px.symbol-2by3>img { + height: 160px; + width: 240px; + max-width: none + } + + .symbol.symbol-sm-175px>img { + width: 175px; + height: 175px + } + + .symbol.symbol-sm-175px .symbol-label { + width: 175px; + height: 175px + } + + .symbol.symbol-sm-175px.symbol-fixed .symbol-label { + width: 175px; + height: 175px + } + + .symbol.symbol-sm-175px.symbol-fixed>img { + width: 175px; + height: 175px; + max-width: none + } + + .symbol.symbol-sm-175px.symbol-2by3 .symbol-label { + height: 175px; + width: 262.5px + } + + .symbol.symbol-sm-175px.symbol-2by3>img { + height: 175px; + width: 262.5px; + max-width: none + } + + .symbol.symbol-sm-200px>img { + width: 200px; + height: 200px + } + + .symbol.symbol-sm-200px .symbol-label { + width: 200px; + height: 200px + } + + .symbol.symbol-sm-200px.symbol-fixed .symbol-label { + width: 200px; + height: 200px + } + + .symbol.symbol-sm-200px.symbol-fixed>img { + width: 200px; + height: 200px; + max-width: none + } + + .symbol.symbol-sm-200px.symbol-2by3 .symbol-label { + height: 200px; + width: 300px + } + + .symbol.symbol-sm-200px.symbol-2by3>img { + height: 200px; + width: 300px; + max-width: none + } +} + +@media (min-width:768px) { + .symbol.symbol-md-20px>img { + width: 20px; + height: 20px + } + + .symbol.symbol-md-20px .symbol-label { + width: 20px; + height: 20px + } + + .symbol.symbol-md-20px.symbol-fixed .symbol-label { + width: 20px; + height: 20px + } + + .symbol.symbol-md-20px.symbol-fixed>img { + width: 20px; + height: 20px; + max-width: none + } + + .symbol.symbol-md-20px.symbol-2by3 .symbol-label { + height: 20px; + width: 30px + } + + .symbol.symbol-md-20px.symbol-2by3>img { + height: 20px; + width: 30px; + max-width: none + } + + .symbol.symbol-md-25px>img { + width: 25px; + height: 25px + } + + .symbol.symbol-md-25px .symbol-label { + width: 25px; + height: 25px + } + + .symbol.symbol-md-25px.symbol-fixed .symbol-label { + width: 25px; + height: 25px + } + + .symbol.symbol-md-25px.symbol-fixed>img { + width: 25px; + height: 25px; + max-width: none + } + + .symbol.symbol-md-25px.symbol-2by3 .symbol-label { + height: 25px; + width: 37.5px + } + + .symbol.symbol-md-25px.symbol-2by3>img { + height: 25px; + width: 37.5px; + max-width: none + } + + .symbol.symbol-md-30px>img { + width: 30px; + height: 30px + } + + .symbol.symbol-md-30px .symbol-label { + width: 30px; + height: 30px + } + + .symbol.symbol-md-30px.symbol-fixed .symbol-label { + width: 30px; + height: 30px + } + + .symbol.symbol-md-30px.symbol-fixed>img { + width: 30px; + height: 30px; + max-width: none + } + + .symbol.symbol-md-30px.symbol-2by3 .symbol-label { + height: 30px; + width: 45px + } + + .symbol.symbol-md-30px.symbol-2by3>img { + height: 30px; + width: 45px; + max-width: none + } + + .symbol.symbol-md-35px>img { + width: 35px; + height: 35px + } + + .symbol.symbol-md-35px .symbol-label { + width: 35px; + height: 35px + } + + .symbol.symbol-md-35px.symbol-fixed .symbol-label { + width: 35px; + height: 35px + } + + .symbol.symbol-md-35px.symbol-fixed>img { + width: 35px; + height: 35px; + max-width: none + } + + .symbol.symbol-md-35px.symbol-2by3 .symbol-label { + height: 35px; + width: 52.5px + } + + .symbol.symbol-md-35px.symbol-2by3>img { + height: 35px; + width: 52.5px; + max-width: none + } + + .symbol.symbol-md-40px>img { + width: 40px; + height: 40px + } + + .symbol.symbol-md-40px .symbol-label { + width: 40px; + height: 40px + } + + .symbol.symbol-md-40px.symbol-fixed .symbol-label { + width: 40px; + height: 40px + } + + .symbol.symbol-md-40px.symbol-fixed>img { + width: 40px; + height: 40px; + max-width: none + } + + .symbol.symbol-md-40px.symbol-2by3 .symbol-label { + height: 40px; + width: 60px + } + + .symbol.symbol-md-40px.symbol-2by3>img { + height: 40px; + width: 60px; + max-width: none + } + + .symbol.symbol-md-45px>img { + width: 45px; + height: 45px + } + + .symbol.symbol-md-45px .symbol-label { + width: 45px; + height: 45px + } + + .symbol.symbol-md-45px.symbol-fixed .symbol-label { + width: 45px; + height: 45px + } + + .symbol.symbol-md-45px.symbol-fixed>img { + width: 45px; + height: 45px; + max-width: none + } + + .symbol.symbol-md-45px.symbol-2by3 .symbol-label { + height: 45px; + width: 67.5px + } + + .symbol.symbol-md-45px.symbol-2by3>img { + height: 45px; + width: 67.5px; + max-width: none + } + + .symbol.symbol-md-50px>img { + width: 50px; + height: 50px + } + + .symbol.symbol-md-50px .symbol-label { + width: 50px; + height: 50px + } + + .symbol.symbol-md-50px.symbol-fixed .symbol-label { + width: 50px; + height: 50px + } + + .symbol.symbol-md-50px.symbol-fixed>img { + width: 50px; + height: 50px; + max-width: none + } + + .symbol.symbol-md-50px.symbol-2by3 .symbol-label { + height: 50px; + width: 75px + } + + .symbol.symbol-md-50px.symbol-2by3>img { + height: 50px; + width: 75px; + max-width: none + } + + .symbol.symbol-md-55px>img { + width: 55px; + height: 55px + } + + .symbol.symbol-md-55px .symbol-label { + width: 55px; + height: 55px + } + + .symbol.symbol-md-55px.symbol-fixed .symbol-label { + width: 55px; + height: 55px + } + + .symbol.symbol-md-55px.symbol-fixed>img { + width: 55px; + height: 55px; + max-width: none + } + + .symbol.symbol-md-55px.symbol-2by3 .symbol-label { + height: 55px; + width: 82.5px + } + + .symbol.symbol-md-55px.symbol-2by3>img { + height: 55px; + width: 82.5px; + max-width: none + } + + .symbol.symbol-md-60px>img { + width: 60px; + height: 60px + } + + .symbol.symbol-md-60px .symbol-label { + width: 60px; + height: 60px + } + + .symbol.symbol-md-60px.symbol-fixed .symbol-label { + width: 60px; + height: 60px + } + + .symbol.symbol-md-60px.symbol-fixed>img { + width: 60px; + height: 60px; + max-width: none + } + + .symbol.symbol-md-60px.symbol-2by3 .symbol-label { + height: 60px; + width: 90px + } + + .symbol.symbol-md-60px.symbol-2by3>img { + height: 60px; + width: 90px; + max-width: none + } + + .symbol.symbol-md-65px>img { + width: 65px; + height: 65px + } + + .symbol.symbol-md-65px .symbol-label { + width: 65px; + height: 65px + } + + .symbol.symbol-md-65px.symbol-fixed .symbol-label { + width: 65px; + height: 65px + } + + .symbol.symbol-md-65px.symbol-fixed>img { + width: 65px; + height: 65px; + max-width: none + } + + .symbol.symbol-md-65px.symbol-2by3 .symbol-label { + height: 65px; + width: 97.5px + } + + .symbol.symbol-md-65px.symbol-2by3>img { + height: 65px; + width: 97.5px; + max-width: none + } + + .symbol.symbol-md-70px>img { + width: 70px; + height: 70px + } + + .symbol.symbol-md-70px .symbol-label { + width: 70px; + height: 70px + } + + .symbol.symbol-md-70px.symbol-fixed .symbol-label { + width: 70px; + height: 70px + } + + .symbol.symbol-md-70px.symbol-fixed>img { + width: 70px; + height: 70px; + max-width: none + } + + .symbol.symbol-md-70px.symbol-2by3 .symbol-label { + height: 70px; + width: 105px + } + + .symbol.symbol-md-70px.symbol-2by3>img { + height: 70px; + width: 105px; + max-width: none + } + + .symbol.symbol-md-75px>img { + width: 75px; + height: 75px + } + + .symbol.symbol-md-75px .symbol-label { + width: 75px; + height: 75px + } + + .symbol.symbol-md-75px.symbol-fixed .symbol-label { + width: 75px; + height: 75px + } + + .symbol.symbol-md-75px.symbol-fixed>img { + width: 75px; + height: 75px; + max-width: none + } + + .symbol.symbol-md-75px.symbol-2by3 .symbol-label { + height: 75px; + width: 112.5px + } + + .symbol.symbol-md-75px.symbol-2by3>img { + height: 75px; + width: 112.5px; + max-width: none + } + + .symbol.symbol-md-100px>img { + width: 100px; + height: 100px + } + + .symbol.symbol-md-100px .symbol-label { + width: 100px; + height: 100px + } + + .symbol.symbol-md-100px.symbol-fixed .symbol-label { + width: 100px; + height: 100px + } + + .symbol.symbol-md-100px.symbol-fixed>img { + width: 100px; + height: 100px; + max-width: none + } + + .symbol.symbol-md-100px.symbol-2by3 .symbol-label { + height: 100px; + width: 150px + } + + .symbol.symbol-md-100px.symbol-2by3>img { + height: 100px; + width: 150px; + max-width: none + } + + .symbol.symbol-md-125px>img { + width: 125px; + height: 125px + } + + .symbol.symbol-md-125px .symbol-label { + width: 125px; + height: 125px + } + + .symbol.symbol-md-125px.symbol-fixed .symbol-label { + width: 125px; + height: 125px + } + + .symbol.symbol-md-125px.symbol-fixed>img { + width: 125px; + height: 125px; + max-width: none + } + + .symbol.symbol-md-125px.symbol-2by3 .symbol-label { + height: 125px; + width: 187.5px + } + + .symbol.symbol-md-125px.symbol-2by3>img { + height: 125px; + width: 187.5px; + max-width: none + } + + .symbol.symbol-md-150px>img { + width: 150px; + height: 150px + } + + .symbol.symbol-md-150px .symbol-label { + width: 150px; + height: 150px + } + + .symbol.symbol-md-150px.symbol-fixed .symbol-label { + width: 150px; + height: 150px + } + + .symbol.symbol-md-150px.symbol-fixed>img { + width: 150px; + height: 150px; + max-width: none + } + + .symbol.symbol-md-150px.symbol-2by3 .symbol-label { + height: 150px; + width: 225px + } + + .symbol.symbol-md-150px.symbol-2by3>img { + height: 150px; + width: 225px; + max-width: none + } + + .symbol.symbol-md-160px>img { + width: 160px; + height: 160px + } + + .symbol.symbol-md-160px .symbol-label { + width: 160px; + height: 160px + } + + .symbol.symbol-md-160px.symbol-fixed .symbol-label { + width: 160px; + height: 160px + } + + .symbol.symbol-md-160px.symbol-fixed>img { + width: 160px; + height: 160px; + max-width: none + } + + .symbol.symbol-md-160px.symbol-2by3 .symbol-label { + height: 160px; + width: 240px + } + + .symbol.symbol-md-160px.symbol-2by3>img { + height: 160px; + width: 240px; + max-width: none + } + + .symbol.symbol-md-175px>img { + width: 175px; + height: 175px + } + + .symbol.symbol-md-175px .symbol-label { + width: 175px; + height: 175px + } + + .symbol.symbol-md-175px.symbol-fixed .symbol-label { + width: 175px; + height: 175px + } + + .symbol.symbol-md-175px.symbol-fixed>img { + width: 175px; + height: 175px; + max-width: none + } + + .symbol.symbol-md-175px.symbol-2by3 .symbol-label { + height: 175px; + width: 262.5px + } + + .symbol.symbol-md-175px.symbol-2by3>img { + height: 175px; + width: 262.5px; + max-width: none + } + + .symbol.symbol-md-200px>img { + width: 200px; + height: 200px + } + + .symbol.symbol-md-200px .symbol-label { + width: 200px; + height: 200px + } + + .symbol.symbol-md-200px.symbol-fixed .symbol-label { + width: 200px; + height: 200px + } + + .symbol.symbol-md-200px.symbol-fixed>img { + width: 200px; + height: 200px; + max-width: none + } + + .symbol.symbol-md-200px.symbol-2by3 .symbol-label { + height: 200px; + width: 300px + } + + .symbol.symbol-md-200px.symbol-2by3>img { + height: 200px; + width: 300px; + max-width: none + } +} + +@media (min-width:992px) { + .symbol.symbol-lg-20px>img { + width: 20px; + height: 20px + } + + .symbol.symbol-lg-20px .symbol-label { + width: 20px; + height: 20px + } + + .symbol.symbol-lg-20px.symbol-fixed .symbol-label { + width: 20px; + height: 20px + } + + .symbol.symbol-lg-20px.symbol-fixed>img { + width: 20px; + height: 20px; + max-width: none + } + + .symbol.symbol-lg-20px.symbol-2by3 .symbol-label { + height: 20px; + width: 30px + } + + .symbol.symbol-lg-20px.symbol-2by3>img { + height: 20px; + width: 30px; + max-width: none + } + + .symbol.symbol-lg-25px>img { + width: 25px; + height: 25px + } + + .symbol.symbol-lg-25px .symbol-label { + width: 25px; + height: 25px + } + + .symbol.symbol-lg-25px.symbol-fixed .symbol-label { + width: 25px; + height: 25px + } + + .symbol.symbol-lg-25px.symbol-fixed>img { + width: 25px; + height: 25px; + max-width: none + } + + .symbol.symbol-lg-25px.symbol-2by3 .symbol-label { + height: 25px; + width: 37.5px + } + + .symbol.symbol-lg-25px.symbol-2by3>img { + height: 25px; + width: 37.5px; + max-width: none + } + + .symbol.symbol-lg-30px>img { + width: 30px; + height: 30px + } + + .symbol.symbol-lg-30px .symbol-label { + width: 30px; + height: 30px + } + + .symbol.symbol-lg-30px.symbol-fixed .symbol-label { + width: 30px; + height: 30px + } + + .symbol.symbol-lg-30px.symbol-fixed>img { + width: 30px; + height: 30px; + max-width: none + } + + .symbol.symbol-lg-30px.symbol-2by3 .symbol-label { + height: 30px; + width: 45px + } + + .symbol.symbol-lg-30px.symbol-2by3>img { + height: 30px; + width: 45px; + max-width: none + } + + .symbol.symbol-lg-35px>img { + width: 35px; + height: 35px + } + + .symbol.symbol-lg-35px .symbol-label { + width: 35px; + height: 35px + } + + .symbol.symbol-lg-35px.symbol-fixed .symbol-label { + width: 35px; + height: 35px + } + + .symbol.symbol-lg-35px.symbol-fixed>img { + width: 35px; + height: 35px; + max-width: none + } + + .symbol.symbol-lg-35px.symbol-2by3 .symbol-label { + height: 35px; + width: 52.5px + } + + .symbol.symbol-lg-35px.symbol-2by3>img { + height: 35px; + width: 52.5px; + max-width: none + } + + .symbol.symbol-lg-40px>img { + width: 40px; + height: 40px + } + + .symbol.symbol-lg-40px .symbol-label { + width: 40px; + height: 40px + } + + .symbol.symbol-lg-40px.symbol-fixed .symbol-label { + width: 40px; + height: 40px + } + + .symbol.symbol-lg-40px.symbol-fixed>img { + width: 40px; + height: 40px; + max-width: none + } + + .symbol.symbol-lg-40px.symbol-2by3 .symbol-label { + height: 40px; + width: 60px + } + + .symbol.symbol-lg-40px.symbol-2by3>img { + height: 40px; + width: 60px; + max-width: none + } + + .symbol.symbol-lg-45px>img { + width: 45px; + height: 45px + } + + .symbol.symbol-lg-45px .symbol-label { + width: 45px; + height: 45px + } + + .symbol.symbol-lg-45px.symbol-fixed .symbol-label { + width: 45px; + height: 45px + } + + .symbol.symbol-lg-45px.symbol-fixed>img { + width: 45px; + height: 45px; + max-width: none + } + + .symbol.symbol-lg-45px.symbol-2by3 .symbol-label { + height: 45px; + width: 67.5px + } + + .symbol.symbol-lg-45px.symbol-2by3>img { + height: 45px; + width: 67.5px; + max-width: none + } + + .symbol.symbol-lg-50px>img { + width: 50px; + height: 50px + } + + .symbol.symbol-lg-50px .symbol-label { + width: 50px; + height: 50px + } + + .symbol.symbol-lg-50px.symbol-fixed .symbol-label { + width: 50px; + height: 50px + } + + .symbol.symbol-lg-50px.symbol-fixed>img { + width: 50px; + height: 50px; + max-width: none + } + + .symbol.symbol-lg-50px.symbol-2by3 .symbol-label { + height: 50px; + width: 75px + } + + .symbol.symbol-lg-50px.symbol-2by3>img { + height: 50px; + width: 75px; + max-width: none + } + + .symbol.symbol-lg-55px>img { + width: 55px; + height: 55px + } + + .symbol.symbol-lg-55px .symbol-label { + width: 55px; + height: 55px + } + + .symbol.symbol-lg-55px.symbol-fixed .symbol-label { + width: 55px; + height: 55px + } + + .symbol.symbol-lg-55px.symbol-fixed>img { + width: 55px; + height: 55px; + max-width: none + } + + .symbol.symbol-lg-55px.symbol-2by3 .symbol-label { + height: 55px; + width: 82.5px + } + + .symbol.symbol-lg-55px.symbol-2by3>img { + height: 55px; + width: 82.5px; + max-width: none + } + + .symbol.symbol-lg-60px>img { + width: 60px; + height: 60px + } + + .symbol.symbol-lg-60px .symbol-label { + width: 60px; + height: 60px + } + + .symbol.symbol-lg-60px.symbol-fixed .symbol-label { + width: 60px; + height: 60px + } + + .symbol.symbol-lg-60px.symbol-fixed>img { + width: 60px; + height: 60px; + max-width: none + } + + .symbol.symbol-lg-60px.symbol-2by3 .symbol-label { + height: 60px; + width: 90px + } + + .symbol.symbol-lg-60px.symbol-2by3>img { + height: 60px; + width: 90px; + max-width: none + } + + .symbol.symbol-lg-65px>img { + width: 65px; + height: 65px + } + + .symbol.symbol-lg-65px .symbol-label { + width: 65px; + height: 65px + } + + .symbol.symbol-lg-65px.symbol-fixed .symbol-label { + width: 65px; + height: 65px + } + + .symbol.symbol-lg-65px.symbol-fixed>img { + width: 65px; + height: 65px; + max-width: none + } + + .symbol.symbol-lg-65px.symbol-2by3 .symbol-label { + height: 65px; + width: 97.5px + } + + .symbol.symbol-lg-65px.symbol-2by3>img { + height: 65px; + width: 97.5px; + max-width: none + } + + .symbol.symbol-lg-70px>img { + width: 70px; + height: 70px + } + + .symbol.symbol-lg-70px .symbol-label { + width: 70px; + height: 70px + } + + .symbol.symbol-lg-70px.symbol-fixed .symbol-label { + width: 70px; + height: 70px + } + + .symbol.symbol-lg-70px.symbol-fixed>img { + width: 70px; + height: 70px; + max-width: none + } + + .symbol.symbol-lg-70px.symbol-2by3 .symbol-label { + height: 70px; + width: 105px + } + + .symbol.symbol-lg-70px.symbol-2by3>img { + height: 70px; + width: 105px; + max-width: none + } + + .symbol.symbol-lg-75px>img { + width: 75px; + height: 75px + } + + .symbol.symbol-lg-75px .symbol-label { + width: 75px; + height: 75px + } + + .symbol.symbol-lg-75px.symbol-fixed .symbol-label { + width: 75px; + height: 75px + } + + .symbol.symbol-lg-75px.symbol-fixed>img { + width: 75px; + height: 75px; + max-width: none + } + + .symbol.symbol-lg-75px.symbol-2by3 .symbol-label { + height: 75px; + width: 112.5px + } + + .symbol.symbol-lg-75px.symbol-2by3>img { + height: 75px; + width: 112.5px; + max-width: none + } + + .symbol.symbol-lg-100px>img { + width: 100px; + height: 100px + } + + .symbol.symbol-lg-100px .symbol-label { + width: 100px; + height: 100px + } + + .symbol.symbol-lg-100px.symbol-fixed .symbol-label { + width: 100px; + height: 100px + } + + .symbol.symbol-lg-100px.symbol-fixed>img { + width: 100px; + height: 100px; + max-width: none + } + + .symbol.symbol-lg-100px.symbol-2by3 .symbol-label { + height: 100px; + width: 150px + } + + .symbol.symbol-lg-100px.symbol-2by3>img { + height: 100px; + width: 150px; + max-width: none + } + + .symbol.symbol-lg-125px>img { + width: 125px; + height: 125px + } + + .symbol.symbol-lg-125px .symbol-label { + width: 125px; + height: 125px + } + + .symbol.symbol-lg-125px.symbol-fixed .symbol-label { + width: 125px; + height: 125px + } + + .symbol.symbol-lg-125px.symbol-fixed>img { + width: 125px; + height: 125px; + max-width: none + } + + .symbol.symbol-lg-125px.symbol-2by3 .symbol-label { + height: 125px; + width: 187.5px + } + + .symbol.symbol-lg-125px.symbol-2by3>img { + height: 125px; + width: 187.5px; + max-width: none + } + + .symbol.symbol-lg-150px>img { + width: 150px; + height: 150px + } + + .symbol.symbol-lg-150px .symbol-label { + width: 150px; + height: 150px + } + + .symbol.symbol-lg-150px.symbol-fixed .symbol-label { + width: 150px; + height: 150px + } + + .symbol.symbol-lg-150px.symbol-fixed>img { + width: 150px; + height: 150px; + max-width: none + } + + .symbol.symbol-lg-150px.symbol-2by3 .symbol-label { + height: 150px; + width: 225px + } + + .symbol.symbol-lg-150px.symbol-2by3>img { + height: 150px; + width: 225px; + max-width: none + } + + .symbol.symbol-lg-160px>img { + width: 160px; + height: 160px + } + + .symbol.symbol-lg-160px .symbol-label { + width: 160px; + height: 160px + } + + .symbol.symbol-lg-160px.symbol-fixed .symbol-label { + width: 160px; + height: 160px + } + + .symbol.symbol-lg-160px.symbol-fixed>img { + width: 160px; + height: 160px; + max-width: none + } + + .symbol.symbol-lg-160px.symbol-2by3 .symbol-label { + height: 160px; + width: 240px + } + + .symbol.symbol-lg-160px.symbol-2by3>img { + height: 160px; + width: 240px; + max-width: none + } + + .symbol.symbol-lg-175px>img { + width: 175px; + height: 175px + } + + .symbol.symbol-lg-175px .symbol-label { + width: 175px; + height: 175px + } + + .symbol.symbol-lg-175px.symbol-fixed .symbol-label { + width: 175px; + height: 175px + } + + .symbol.symbol-lg-175px.symbol-fixed>img { + width: 175px; + height: 175px; + max-width: none + } + + .symbol.symbol-lg-175px.symbol-2by3 .symbol-label { + height: 175px; + width: 262.5px + } + + .symbol.symbol-lg-175px.symbol-2by3>img { + height: 175px; + width: 262.5px; + max-width: none + } + + .symbol.symbol-lg-200px>img { + width: 200px; + height: 200px + } + + .symbol.symbol-lg-200px .symbol-label { + width: 200px; + height: 200px + } + + .symbol.symbol-lg-200px.symbol-fixed .symbol-label { + width: 200px; + height: 200px + } + + .symbol.symbol-lg-200px.symbol-fixed>img { + width: 200px; + height: 200px; + max-width: none + } + + .symbol.symbol-lg-200px.symbol-2by3 .symbol-label { + height: 200px; + width: 300px + } + + .symbol.symbol-lg-200px.symbol-2by3>img { + height: 200px; + width: 300px; + max-width: none + } +} + +@media (min-width:1200px) { + .symbol.symbol-xl-20px>img { + width: 20px; + height: 20px + } + + .symbol.symbol-xl-20px .symbol-label { + width: 20px; + height: 20px + } + + .symbol.symbol-xl-20px.symbol-fixed .symbol-label { + width: 20px; + height: 20px + } + + .symbol.symbol-xl-20px.symbol-fixed>img { + width: 20px; + height: 20px; + max-width: none + } + + .symbol.symbol-xl-20px.symbol-2by3 .symbol-label { + height: 20px; + width: 30px + } + + .symbol.symbol-xl-20px.symbol-2by3>img { + height: 20px; + width: 30px; + max-width: none + } + + .symbol.symbol-xl-25px>img { + width: 25px; + height: 25px + } + + .symbol.symbol-xl-25px .symbol-label { + width: 25px; + height: 25px + } + + .symbol.symbol-xl-25px.symbol-fixed .symbol-label { + width: 25px; + height: 25px + } + + .symbol.symbol-xl-25px.symbol-fixed>img { + width: 25px; + height: 25px; + max-width: none + } + + .symbol.symbol-xl-25px.symbol-2by3 .symbol-label { + height: 25px; + width: 37.5px + } + + .symbol.symbol-xl-25px.symbol-2by3>img { + height: 25px; + width: 37.5px; + max-width: none + } + + .symbol.symbol-xl-30px>img { + width: 30px; + height: 30px + } + + .symbol.symbol-xl-30px .symbol-label { + width: 30px; + height: 30px + } + + .symbol.symbol-xl-30px.symbol-fixed .symbol-label { + width: 30px; + height: 30px + } + + .symbol.symbol-xl-30px.symbol-fixed>img { + width: 30px; + height: 30px; + max-width: none + } + + .symbol.symbol-xl-30px.symbol-2by3 .symbol-label { + height: 30px; + width: 45px + } + + .symbol.symbol-xl-30px.symbol-2by3>img { + height: 30px; + width: 45px; + max-width: none + } + + .symbol.symbol-xl-35px>img { + width: 35px; + height: 35px + } + + .symbol.symbol-xl-35px .symbol-label { + width: 35px; + height: 35px + } + + .symbol.symbol-xl-35px.symbol-fixed .symbol-label { + width: 35px; + height: 35px + } + + .symbol.symbol-xl-35px.symbol-fixed>img { + width: 35px; + height: 35px; + max-width: none + } + + .symbol.symbol-xl-35px.symbol-2by3 .symbol-label { + height: 35px; + width: 52.5px + } + + .symbol.symbol-xl-35px.symbol-2by3>img { + height: 35px; + width: 52.5px; + max-width: none + } + + .symbol.symbol-xl-40px>img { + width: 40px; + height: 40px + } + + .symbol.symbol-xl-40px .symbol-label { + width: 40px; + height: 40px + } + + .symbol.symbol-xl-40px.symbol-fixed .symbol-label { + width: 40px; + height: 40px + } + + .symbol.symbol-xl-40px.symbol-fixed>img { + width: 40px; + height: 40px; + max-width: none + } + + .symbol.symbol-xl-40px.symbol-2by3 .symbol-label { + height: 40px; + width: 60px + } + + .symbol.symbol-xl-40px.symbol-2by3>img { + height: 40px; + width: 60px; + max-width: none + } + + .symbol.symbol-xl-45px>img { + width: 45px; + height: 45px + } + + .symbol.symbol-xl-45px .symbol-label { + width: 45px; + height: 45px + } + + .symbol.symbol-xl-45px.symbol-fixed .symbol-label { + width: 45px; + height: 45px + } + + .symbol.symbol-xl-45px.symbol-fixed>img { + width: 45px; + height: 45px; + max-width: none + } + + .symbol.symbol-xl-45px.symbol-2by3 .symbol-label { + height: 45px; + width: 67.5px + } + + .symbol.symbol-xl-45px.symbol-2by3>img { + height: 45px; + width: 67.5px; + max-width: none + } + + .symbol.symbol-xl-50px>img { + width: 50px; + height: 50px + } + + .symbol.symbol-xl-50px .symbol-label { + width: 50px; + height: 50px + } + + .symbol.symbol-xl-50px.symbol-fixed .symbol-label { + width: 50px; + height: 50px + } + + .symbol.symbol-xl-50px.symbol-fixed>img { + width: 50px; + height: 50px; + max-width: none + } + + .symbol.symbol-xl-50px.symbol-2by3 .symbol-label { + height: 50px; + width: 75px + } + + .symbol.symbol-xl-50px.symbol-2by3>img { + height: 50px; + width: 75px; + max-width: none + } + + .symbol.symbol-xl-55px>img { + width: 55px; + height: 55px + } + + .symbol.symbol-xl-55px .symbol-label { + width: 55px; + height: 55px + } + + .symbol.symbol-xl-55px.symbol-fixed .symbol-label { + width: 55px; + height: 55px + } + + .symbol.symbol-xl-55px.symbol-fixed>img { + width: 55px; + height: 55px; + max-width: none + } + + .symbol.symbol-xl-55px.symbol-2by3 .symbol-label { + height: 55px; + width: 82.5px + } + + .symbol.symbol-xl-55px.symbol-2by3>img { + height: 55px; + width: 82.5px; + max-width: none + } + + .symbol.symbol-xl-60px>img { + width: 60px; + height: 60px + } + + .symbol.symbol-xl-60px .symbol-label { + width: 60px; + height: 60px + } + + .symbol.symbol-xl-60px.symbol-fixed .symbol-label { + width: 60px; + height: 60px + } + + .symbol.symbol-xl-60px.symbol-fixed>img { + width: 60px; + height: 60px; + max-width: none + } + + .symbol.symbol-xl-60px.symbol-2by3 .symbol-label { + height: 60px; + width: 90px + } + + .symbol.symbol-xl-60px.symbol-2by3>img { + height: 60px; + width: 90px; + max-width: none + } + + .symbol.symbol-xl-65px>img { + width: 65px; + height: 65px + } + + .symbol.symbol-xl-65px .symbol-label { + width: 65px; + height: 65px + } + + .symbol.symbol-xl-65px.symbol-fixed .symbol-label { + width: 65px; + height: 65px + } + + .symbol.symbol-xl-65px.symbol-fixed>img { + width: 65px; + height: 65px; + max-width: none + } + + .symbol.symbol-xl-65px.symbol-2by3 .symbol-label { + height: 65px; + width: 97.5px + } + + .symbol.symbol-xl-65px.symbol-2by3>img { + height: 65px; + width: 97.5px; + max-width: none + } + + .symbol.symbol-xl-70px>img { + width: 70px; + height: 70px + } + + .symbol.symbol-xl-70px .symbol-label { + width: 70px; + height: 70px + } + + .symbol.symbol-xl-70px.symbol-fixed .symbol-label { + width: 70px; + height: 70px + } + + .symbol.symbol-xl-70px.symbol-fixed>img { + width: 70px; + height: 70px; + max-width: none + } + + .symbol.symbol-xl-70px.symbol-2by3 .symbol-label { + height: 70px; + width: 105px + } + + .symbol.symbol-xl-70px.symbol-2by3>img { + height: 70px; + width: 105px; + max-width: none + } + + .symbol.symbol-xl-75px>img { + width: 75px; + height: 75px + } + + .symbol.symbol-xl-75px .symbol-label { + width: 75px; + height: 75px + } + + .symbol.symbol-xl-75px.symbol-fixed .symbol-label { + width: 75px; + height: 75px + } + + .symbol.symbol-xl-75px.symbol-fixed>img { + width: 75px; + height: 75px; + max-width: none + } + + .symbol.symbol-xl-75px.symbol-2by3 .symbol-label { + height: 75px; + width: 112.5px + } + + .symbol.symbol-xl-75px.symbol-2by3>img { + height: 75px; + width: 112.5px; + max-width: none + } + + .symbol.symbol-xl-100px>img { + width: 100px; + height: 100px + } + + .symbol.symbol-xl-100px .symbol-label { + width: 100px; + height: 100px + } + + .symbol.symbol-xl-100px.symbol-fixed .symbol-label { + width: 100px; + height: 100px + } + + .symbol.symbol-xl-100px.symbol-fixed>img { + width: 100px; + height: 100px; + max-width: none + } + + .symbol.symbol-xl-100px.symbol-2by3 .symbol-label { + height: 100px; + width: 150px + } + + .symbol.symbol-xl-100px.symbol-2by3>img { + height: 100px; + width: 150px; + max-width: none + } + + .symbol.symbol-xl-125px>img { + width: 125px; + height: 125px + } + + .symbol.symbol-xl-125px .symbol-label { + width: 125px; + height: 125px + } + + .symbol.symbol-xl-125px.symbol-fixed .symbol-label { + width: 125px; + height: 125px + } + + .symbol.symbol-xl-125px.symbol-fixed>img { + width: 125px; + height: 125px; + max-width: none + } + + .symbol.symbol-xl-125px.symbol-2by3 .symbol-label { + height: 125px; + width: 187.5px + } + + .symbol.symbol-xl-125px.symbol-2by3>img { + height: 125px; + width: 187.5px; + max-width: none + } + + .symbol.symbol-xl-150px>img { + width: 150px; + height: 150px + } + + .symbol.symbol-xl-150px .symbol-label { + width: 150px; + height: 150px + } + + .symbol.symbol-xl-150px.symbol-fixed .symbol-label { + width: 150px; + height: 150px + } + + .symbol.symbol-xl-150px.symbol-fixed>img { + width: 150px; + height: 150px; + max-width: none + } + + .symbol.symbol-xl-150px.symbol-2by3 .symbol-label { + height: 150px; + width: 225px + } + + .symbol.symbol-xl-150px.symbol-2by3>img { + height: 150px; + width: 225px; + max-width: none + } + + .symbol.symbol-xl-160px>img { + width: 160px; + height: 160px + } + + .symbol.symbol-xl-160px .symbol-label { + width: 160px; + height: 160px + } + + .symbol.symbol-xl-160px.symbol-fixed .symbol-label { + width: 160px; + height: 160px + } + + .symbol.symbol-xl-160px.symbol-fixed>img { + width: 160px; + height: 160px; + max-width: none + } + + .symbol.symbol-xl-160px.symbol-2by3 .symbol-label { + height: 160px; + width: 240px + } + + .symbol.symbol-xl-160px.symbol-2by3>img { + height: 160px; + width: 240px; + max-width: none + } + + .symbol.symbol-xl-175px>img { + width: 175px; + height: 175px + } + + .symbol.symbol-xl-175px .symbol-label { + width: 175px; + height: 175px + } + + .symbol.symbol-xl-175px.symbol-fixed .symbol-label { + width: 175px; + height: 175px + } + + .symbol.symbol-xl-175px.symbol-fixed>img { + width: 175px; + height: 175px; + max-width: none + } + + .symbol.symbol-xl-175px.symbol-2by3 .symbol-label { + height: 175px; + width: 262.5px + } + + .symbol.symbol-xl-175px.symbol-2by3>img { + height: 175px; + width: 262.5px; + max-width: none + } + + .symbol.symbol-xl-200px>img { + width: 200px; + height: 200px + } + + .symbol.symbol-xl-200px .symbol-label { + width: 200px; + height: 200px + } + + .symbol.symbol-xl-200px.symbol-fixed .symbol-label { + width: 200px; + height: 200px + } + + .symbol.symbol-xl-200px.symbol-fixed>img { + width: 200px; + height: 200px; + max-width: none + } + + .symbol.symbol-xl-200px.symbol-2by3 .symbol-label { + height: 200px; + width: 300px + } + + .symbol.symbol-xl-200px.symbol-2by3>img { + height: 200px; + width: 300px; + max-width: none + } +} + +@media (min-width:1400px) { + .symbol.symbol-xxl-20px>img { + width: 20px; + height: 20px + } + + .symbol.symbol-xxl-20px .symbol-label { + width: 20px; + height: 20px + } + + .symbol.symbol-xxl-20px.symbol-fixed .symbol-label { + width: 20px; + height: 20px + } + + .symbol.symbol-xxl-20px.symbol-fixed>img { + width: 20px; + height: 20px; + max-width: none + } + + .symbol.symbol-xxl-20px.symbol-2by3 .symbol-label { + height: 20px; + width: 30px + } + + .symbol.symbol-xxl-20px.symbol-2by3>img { + height: 20px; + width: 30px; + max-width: none + } + + .symbol.symbol-xxl-25px>img { + width: 25px; + height: 25px + } + + .symbol.symbol-xxl-25px .symbol-label { + width: 25px; + height: 25px + } + + .symbol.symbol-xxl-25px.symbol-fixed .symbol-label { + width: 25px; + height: 25px + } + + .symbol.symbol-xxl-25px.symbol-fixed>img { + width: 25px; + height: 25px; + max-width: none + } + + .symbol.symbol-xxl-25px.symbol-2by3 .symbol-label { + height: 25px; + width: 37.5px + } + + .symbol.symbol-xxl-25px.symbol-2by3>img { + height: 25px; + width: 37.5px; + max-width: none + } + + .symbol.symbol-xxl-30px>img { + width: 30px; + height: 30px + } + + .symbol.symbol-xxl-30px .symbol-label { + width: 30px; + height: 30px + } + + .symbol.symbol-xxl-30px.symbol-fixed .symbol-label { + width: 30px; + height: 30px + } + + .symbol.symbol-xxl-30px.symbol-fixed>img { + width: 30px; + height: 30px; + max-width: none + } + + .symbol.symbol-xxl-30px.symbol-2by3 .symbol-label { + height: 30px; + width: 45px + } + + .symbol.symbol-xxl-30px.symbol-2by3>img { + height: 30px; + width: 45px; + max-width: none + } + + .symbol.symbol-xxl-35px>img { + width: 35px; + height: 35px + } + + .symbol.symbol-xxl-35px .symbol-label { + width: 35px; + height: 35px + } + + .symbol.symbol-xxl-35px.symbol-fixed .symbol-label { + width: 35px; + height: 35px + } + + .symbol.symbol-xxl-35px.symbol-fixed>img { + width: 35px; + height: 35px; + max-width: none + } + + .symbol.symbol-xxl-35px.symbol-2by3 .symbol-label { + height: 35px; + width: 52.5px + } + + .symbol.symbol-xxl-35px.symbol-2by3>img { + height: 35px; + width: 52.5px; + max-width: none + } + + .symbol.symbol-xxl-40px>img { + width: 40px; + height: 40px + } + + .symbol.symbol-xxl-40px .symbol-label { + width: 40px; + height: 40px + } + + .symbol.symbol-xxl-40px.symbol-fixed .symbol-label { + width: 40px; + height: 40px + } + + .symbol.symbol-xxl-40px.symbol-fixed>img { + width: 40px; + height: 40px; + max-width: none + } + + .symbol.symbol-xxl-40px.symbol-2by3 .symbol-label { + height: 40px; + width: 60px + } + + .symbol.symbol-xxl-40px.symbol-2by3>img { + height: 40px; + width: 60px; + max-width: none + } + + .symbol.symbol-xxl-45px>img { + width: 45px; + height: 45px + } + + .symbol.symbol-xxl-45px .symbol-label { + width: 45px; + height: 45px + } + + .symbol.symbol-xxl-45px.symbol-fixed .symbol-label { + width: 45px; + height: 45px + } + + .symbol.symbol-xxl-45px.symbol-fixed>img { + width: 45px; + height: 45px; + max-width: none + } + + .symbol.symbol-xxl-45px.symbol-2by3 .symbol-label { + height: 45px; + width: 67.5px + } + + .symbol.symbol-xxl-45px.symbol-2by3>img { + height: 45px; + width: 67.5px; + max-width: none + } + + .symbol.symbol-xxl-50px>img { + width: 50px; + height: 50px + } + + .symbol.symbol-xxl-50px .symbol-label { + width: 50px; + height: 50px + } + + .symbol.symbol-xxl-50px.symbol-fixed .symbol-label { + width: 50px; + height: 50px + } + + .symbol.symbol-xxl-50px.symbol-fixed>img { + width: 50px; + height: 50px; + max-width: none + } + + .symbol.symbol-xxl-50px.symbol-2by3 .symbol-label { + height: 50px; + width: 75px + } + + .symbol.symbol-xxl-50px.symbol-2by3>img { + height: 50px; + width: 75px; + max-width: none + } + + .symbol.symbol-xxl-55px>img { + width: 55px; + height: 55px + } + + .symbol.symbol-xxl-55px .symbol-label { + width: 55px; + height: 55px + } + + .symbol.symbol-xxl-55px.symbol-fixed .symbol-label { + width: 55px; + height: 55px + } + + .symbol.symbol-xxl-55px.symbol-fixed>img { + width: 55px; + height: 55px; + max-width: none + } + + .symbol.symbol-xxl-55px.symbol-2by3 .symbol-label { + height: 55px; + width: 82.5px + } + + .symbol.symbol-xxl-55px.symbol-2by3>img { + height: 55px; + width: 82.5px; + max-width: none + } + + .symbol.symbol-xxl-60px>img { + width: 60px; + height: 60px + } + + .symbol.symbol-xxl-60px .symbol-label { + width: 60px; + height: 60px + } + + .symbol.symbol-xxl-60px.symbol-fixed .symbol-label { + width: 60px; + height: 60px + } + + .symbol.symbol-xxl-60px.symbol-fixed>img { + width: 60px; + height: 60px; + max-width: none + } + + .symbol.symbol-xxl-60px.symbol-2by3 .symbol-label { + height: 60px; + width: 90px + } + + .symbol.symbol-xxl-60px.symbol-2by3>img { + height: 60px; + width: 90px; + max-width: none + } + + .symbol.symbol-xxl-65px>img { + width: 65px; + height: 65px + } + + .symbol.symbol-xxl-65px .symbol-label { + width: 65px; + height: 65px + } + + .symbol.symbol-xxl-65px.symbol-fixed .symbol-label { + width: 65px; + height: 65px + } + + .symbol.symbol-xxl-65px.symbol-fixed>img { + width: 65px; + height: 65px; + max-width: none + } + + .symbol.symbol-xxl-65px.symbol-2by3 .symbol-label { + height: 65px; + width: 97.5px + } + + .symbol.symbol-xxl-65px.symbol-2by3>img { + height: 65px; + width: 97.5px; + max-width: none + } + + .symbol.symbol-xxl-70px>img { + width: 70px; + height: 70px + } + + .symbol.symbol-xxl-70px .symbol-label { + width: 70px; + height: 70px + } + + .symbol.symbol-xxl-70px.symbol-fixed .symbol-label { + width: 70px; + height: 70px + } + + .symbol.symbol-xxl-70px.symbol-fixed>img { + width: 70px; + height: 70px; + max-width: none + } + + .symbol.symbol-xxl-70px.symbol-2by3 .symbol-label { + height: 70px; + width: 105px + } + + .symbol.symbol-xxl-70px.symbol-2by3>img { + height: 70px; + width: 105px; + max-width: none + } + + .symbol.symbol-xxl-75px>img { + width: 75px; + height: 75px + } + + .symbol.symbol-xxl-75px .symbol-label { + width: 75px; + height: 75px + } + + .symbol.symbol-xxl-75px.symbol-fixed .symbol-label { + width: 75px; + height: 75px + } + + .symbol.symbol-xxl-75px.symbol-fixed>img { + width: 75px; + height: 75px; + max-width: none + } + + .symbol.symbol-xxl-75px.symbol-2by3 .symbol-label { + height: 75px; + width: 112.5px + } + + .symbol.symbol-xxl-75px.symbol-2by3>img { + height: 75px; + width: 112.5px; + max-width: none + } + + .symbol.symbol-xxl-100px>img { + width: 100px; + height: 100px + } + + .symbol.symbol-xxl-100px .symbol-label { + width: 100px; + height: 100px + } + + .symbol.symbol-xxl-100px.symbol-fixed .symbol-label { + width: 100px; + height: 100px + } + + .symbol.symbol-xxl-100px.symbol-fixed>img { + width: 100px; + height: 100px; + max-width: none + } + + .symbol.symbol-xxl-100px.symbol-2by3 .symbol-label { + height: 100px; + width: 150px + } + + .symbol.symbol-xxl-100px.symbol-2by3>img { + height: 100px; + width: 150px; + max-width: none + } + + .symbol.symbol-xxl-125px>img { + width: 125px; + height: 125px + } + + .symbol.symbol-xxl-125px .symbol-label { + width: 125px; + height: 125px + } + + .symbol.symbol-xxl-125px.symbol-fixed .symbol-label { + width: 125px; + height: 125px + } + + .symbol.symbol-xxl-125px.symbol-fixed>img { + width: 125px; + height: 125px; + max-width: none + } + + .symbol.symbol-xxl-125px.symbol-2by3 .symbol-label { + height: 125px; + width: 187.5px + } + + .symbol.symbol-xxl-125px.symbol-2by3>img { + height: 125px; + width: 187.5px; + max-width: none + } + + .symbol.symbol-xxl-150px>img { + width: 150px; + height: 150px + } + + .symbol.symbol-xxl-150px .symbol-label { + width: 150px; + height: 150px + } + + .symbol.symbol-xxl-150px.symbol-fixed .symbol-label { + width: 150px; + height: 150px + } + + .symbol.symbol-xxl-150px.symbol-fixed>img { + width: 150px; + height: 150px; + max-width: none + } + + .symbol.symbol-xxl-150px.symbol-2by3 .symbol-label { + height: 150px; + width: 225px + } + + .symbol.symbol-xxl-150px.symbol-2by3>img { + height: 150px; + width: 225px; + max-width: none + } + + .symbol.symbol-xxl-160px>img { + width: 160px; + height: 160px + } + + .symbol.symbol-xxl-160px .symbol-label { + width: 160px; + height: 160px + } + + .symbol.symbol-xxl-160px.symbol-fixed .symbol-label { + width: 160px; + height: 160px + } + + .symbol.symbol-xxl-160px.symbol-fixed>img { + width: 160px; + height: 160px; + max-width: none + } + + .symbol.symbol-xxl-160px.symbol-2by3 .symbol-label { + height: 160px; + width: 240px + } + + .symbol.symbol-xxl-160px.symbol-2by3>img { + height: 160px; + width: 240px; + max-width: none + } + + .symbol.symbol-xxl-175px>img { + width: 175px; + height: 175px + } + + .symbol.symbol-xxl-175px .symbol-label { + width: 175px; + height: 175px + } + + .symbol.symbol-xxl-175px.symbol-fixed .symbol-label { + width: 175px; + height: 175px + } + + .symbol.symbol-xxl-175px.symbol-fixed>img { + width: 175px; + height: 175px; + max-width: none + } + + .symbol.symbol-xxl-175px.symbol-2by3 .symbol-label { + height: 175px; + width: 262.5px + } + + .symbol.symbol-xxl-175px.symbol-2by3>img { + height: 175px; + width: 262.5px; + max-width: none + } + + .symbol.symbol-xxl-200px>img { + width: 200px; + height: 200px + } + + .symbol.symbol-xxl-200px .symbol-label { + width: 200px; + height: 200px + } + + .symbol.symbol-xxl-200px.symbol-fixed .symbol-label { + width: 200px; + height: 200px + } + + .symbol.symbol-xxl-200px.symbol-fixed>img { + width: 200px; + height: 200px; + max-width: none + } + + .symbol.symbol-xxl-200px.symbol-2by3 .symbol-label { + height: 200px; + width: 300px + } + + .symbol.symbol-xxl-200px.symbol-2by3>img { + height: 200px; + width: 300px; + max-width: none + } +} + +.symbol-group { + display: flex; + flex-wrap: wrap; + align-items: center; + margin-left: 10px +} + +.symbol-group .symbol { + position: relative; + z-index: 0; + margin-left: -10px; + border: 2px solid #fff; + transition: all .3s ease +} + +.symbol-group .symbol:hover { + transition: all .3s ease; + z-index: 1 +} + +.symbol-group.symbol-hover .symbol { + cursor: pointer +} + +.pulse { + position: relative +} + +.pulse.pulse-white .pulse-ring { + border-color: #fff +} + +.pulse.pulse-light .pulse-ring { + border-color: #f5f8fa +} + +.pulse.pulse-primary .pulse-ring { + border-color: #009ef7 +} + +.pulse.pulse-secondary .pulse-ring { + border-color: #e4e6ef +} + +.pulse.pulse-success .pulse-ring { + border-color: #50cd89 +} + +.pulse.pulse-info .pulse-ring { + border-color: #7239ea +} + +.pulse.pulse-warning .pulse-ring { + border-color: #ffc700 +} + +.pulse.pulse-danger .pulse-ring { + border-color: #f1416c +} + +.pulse.pulse-dark .pulse-ring { + border-color: #181c32 +} + +.pulse-ring { + display: block; + border-radius: 40px; + height: 40px; + width: 40px; + position: absolute; + animation: animation-pulse 3.5s ease-out; + animation-iteration-count: infinite; + opacity: 0; + border-width: 3px; + border-style: solid; + border-color: #a1a5b7 +} + +@keyframes animation-pulse { + 0% { + -webkit-transform: scale(.1, .1); + opacity: 0 + } + + 60% { + -webkit-transform: scale(.1, .1); + opacity: 0 + } + + 65% { + opacity: 1 + } + + 100% { + -webkit-transform: scale(1.2, 1.2); + opacity: 0 + } +} + +.page-loading * { + transition: none !important +} + +.page-loader { + background: #fff; + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 1000; + display: none +} + +.page-loading .page-loader { + display: flex; + justify-content: center; + align-items: center +} + +.scrolltop { + position: fixed; + display: none; + cursor: pointer; + z-index: 100; + justify-content: center; + align-items: center; + width: 36px; + height: 36px; + bottom: 40px; + right: 20px; + background-color: #009ef7; + box-shadow: 0 .5rem 1.5rem .5rem rgba(0, 0, 0, .075); + opacity: 0; + transition: color .2s ease, background-color .2s ease; + border-radius: .475rem +} + +.scrolltop .svg-icon { + color: #fff +} + +.scrolltop .svg-icon svg { + height: 24px; + width: 24px +} + +.scrolltop>i { + font-size: 1.3rem; + color: #fff +} + +.scrolltop:hover { + background-color: #009ef7 +} + +.scrolltop:hover>i { + color: #fff +} + +.scrolltop:hover .svg-icon { + color: #fff +} + +[data-kt-scrolltop=on] .scrolltop { + opacity: .3; + animation: animation-scrolltop .4s ease-out 1; + display: flex +} + +[data-kt-scrolltop=on] .scrolltop:hover { + transition: color .2s ease, background-color .2s ease; + opacity: 1 +} + +@media (max-width:991.98px) { + .scrolltop { + bottom: 30px; + right: 15px; + width: 30px; + height: 30px + } +} + +@keyframes animation-scrolltop { + from { + margin-bottom: -15px + } + + to { + margin-bottom: 0 + } +} + +.svg-icon { + line-height: 1; + color: #a1a5b7 +} + +.svg-icon svg { + height: 1.15rem; + width: 1.15rem +} + +.svg-icon.svg-icon-white { + color: #fff +} + +.svg-icon.svg-icon-primary { + color: #009ef7 +} + +.svg-icon.svg-icon-secondary { + color: #e4e6ef +} + +.svg-icon.svg-icon-light { + color: #f5f8fa +} + +.svg-icon.svg-icon-success { + color: #50cd89 +} + +.svg-icon.svg-icon-info { + color: #7239ea +} + +.svg-icon.svg-icon-warning { + color: #ffc700 +} + +.svg-icon.svg-icon-danger { + color: #f1416c +} + +.svg-icon.svg-icon-dark { + color: #181c32 +} + +.svg-icon.svg-icon-muted { + color: #a1a5b7 +} + +.svg-icon.svg-icon-gray-100 { + color: #f5f8fa +} + +.svg-icon.svg-icon-gray-200 { + color: #eff2f5 +} + +.svg-icon.svg-icon-gray-300 { + color: #e4e6ef +} + +.svg-icon.svg-icon-gray-400 { + color: #b5b5c3 +} + +.svg-icon.svg-icon-gray-500 { + color: #a1a5b7 +} + +.svg-icon.svg-icon-gray-600 { + color: #7e8299 +} + +.svg-icon.svg-icon-gray-700 { + color: #5e6278 +} + +.svg-icon.svg-icon-gray-800 { + color: #3f4254 +} + +.svg-icon.svg-icon-gray-900 { + color: #181c32 +} + +.svg-icon.svg-icon-1 svg { + height: 1.75rem !important; + width: 1.75rem !important +} + +.svg-icon.svg-icon-2 svg { + height: 1.5rem !important; + width: 1.5rem !important +} + +.svg-icon.svg-icon-3 svg { + height: 1.35rem !important; + width: 1.35rem !important +} + +.svg-icon.svg-icon-4 svg { + height: 1.25rem !important; + width: 1.25rem !important +} + +.svg-icon.svg-icon-5 svg { + height: 1.15rem !important; + width: 1.15rem !important +} + +.svg-icon.svg-icon-6 svg { + height: 1.075rem !important; + width: 1.075rem !important +} + +.svg-icon.svg-icon-7 svg { + height: .95rem !important; + width: .95rem !important +} + +.svg-icon.svg-icon-8 svg { + height: .85rem !important; + width: .85rem !important +} + +.svg-icon.svg-icon-9 svg { + height: .75rem !important; + width: .75rem !important +} + +.svg-icon.svg-icon-10 svg { + height: .5rem !important; + width: .5rem !important +} + +.svg-icon.svg-icon-base svg { + height: 1rem !important; + width: 1rem !important +} + +.svg-icon.svg-icon-fluid svg { + height: 100% !important; + width: 100% !important +} + +.svg-icon.svg-icon-2x svg { + height: 2rem !important; + width: 2rem !important +} + +.svg-icon.svg-icon-2qx svg { + height: 2.25rem !important; + width: 2.25rem !important +} + +.svg-icon.svg-icon-2hx svg { + height: 2.5rem !important; + width: 2.5rem !important +} + +.svg-icon.svg-icon-2tx svg { + height: 2.75rem !important; + width: 2.75rem !important +} + +.svg-icon.svg-icon-3x svg { + height: 3rem !important; + width: 3rem !important +} + +.svg-icon.svg-icon-3qx svg { + height: 3.25rem !important; + width: 3.25rem !important +} + +.svg-icon.svg-icon-3hx svg { + height: 3.5rem !important; + width: 3.5rem !important +} + +.svg-icon.svg-icon-3tx svg { + height: 3.75rem !important; + width: 3.75rem !important +} + +.svg-icon.svg-icon-4x svg { + height: 4rem !important; + width: 4rem !important +} + +.svg-icon.svg-icon-4qx svg { + height: 4.25rem !important; + width: 4.25rem !important +} + +.svg-icon.svg-icon-4hx svg { + height: 4.5rem !important; + width: 4.5rem !important +} + +.svg-icon.svg-icon-4tx svg { + height: 4.75rem !important; + width: 4.75rem !important +} + +.svg-icon.svg-icon-5x svg { + height: 5rem !important; + width: 5rem !important +} + +.svg-icon.svg-icon-5qx svg { + height: 5.25rem !important; + width: 5.25rem !important +} + +.svg-icon.svg-icon-5hx svg { + height: 5.5rem !important; + width: 5.5rem !important +} + +.svg-icon.svg-icon-5tx svg { + height: 5.75rem !important; + width: 5.75rem !important +} + +@media (min-width:576px) { + .svg-icon.svg-icon-sm-1 svg { + height: 1.75rem !important; + width: 1.75rem !important + } + + .svg-icon.svg-icon-sm-2 svg { + height: 1.5rem !important; + width: 1.5rem !important + } + + .svg-icon.svg-icon-sm-3 svg { + height: 1.35rem !important; + width: 1.35rem !important + } + + .svg-icon.svg-icon-sm-4 svg { + height: 1.25rem !important; + width: 1.25rem !important + } + + .svg-icon.svg-icon-sm-5 svg { + height: 1.15rem !important; + width: 1.15rem !important + } + + .svg-icon.svg-icon-sm-6 svg { + height: 1.075rem !important; + width: 1.075rem !important + } + + .svg-icon.svg-icon-sm-7 svg { + height: .95rem !important; + width: .95rem !important + } + + .svg-icon.svg-icon-sm-8 svg { + height: .85rem !important; + width: .85rem !important + } + + .svg-icon.svg-icon-sm-9 svg { + height: .75rem !important; + width: .75rem !important + } + + .svg-icon.svg-icon-sm-10 svg { + height: .5rem !important; + width: .5rem !important + } + + .svg-icon.svg-icon-sm-base svg { + height: 1rem !important; + width: 1rem !important + } + + .svg-icon.svg-icon-sm-fluid svg { + height: 100% !important; + width: 100% !important + } + + .svg-icon.svg-icon-sm-2x svg { + height: 2rem !important; + width: 2rem !important + } + + .svg-icon.svg-icon-sm-2qx svg { + height: 2.25rem !important; + width: 2.25rem !important + } + + .svg-icon.svg-icon-sm-2hx svg { + height: 2.5rem !important; + width: 2.5rem !important + } + + .svg-icon.svg-icon-sm-2tx svg { + height: 2.75rem !important; + width: 2.75rem !important + } + + .svg-icon.svg-icon-sm-3x svg { + height: 3rem !important; + width: 3rem !important + } + + .svg-icon.svg-icon-sm-3qx svg { + height: 3.25rem !important; + width: 3.25rem !important + } + + .svg-icon.svg-icon-sm-3hx svg { + height: 3.5rem !important; + width: 3.5rem !important + } + + .svg-icon.svg-icon-sm-3tx svg { + height: 3.75rem !important; + width: 3.75rem !important + } + + .svg-icon.svg-icon-sm-4x svg { + height: 4rem !important; + width: 4rem !important + } + + .svg-icon.svg-icon-sm-4qx svg { + height: 4.25rem !important; + width: 4.25rem !important + } + + .svg-icon.svg-icon-sm-4hx svg { + height: 4.5rem !important; + width: 4.5rem !important + } + + .svg-icon.svg-icon-sm-4tx svg { + height: 4.75rem !important; + width: 4.75rem !important + } + + .svg-icon.svg-icon-sm-5x svg { + height: 5rem !important; + width: 5rem !important + } + + .svg-icon.svg-icon-sm-5qx svg { + height: 5.25rem !important; + width: 5.25rem !important + } + + .svg-icon.svg-icon-sm-5hx svg { + height: 5.5rem !important; + width: 5.5rem !important + } + + .svg-icon.svg-icon-sm-5tx svg { + height: 5.75rem !important; + width: 5.75rem !important + } +} + +@media (min-width:768px) { + .svg-icon.svg-icon-md-1 svg { + height: 1.75rem !important; + width: 1.75rem !important + } + + .svg-icon.svg-icon-md-2 svg { + height: 1.5rem !important; + width: 1.5rem !important + } + + .svg-icon.svg-icon-md-3 svg { + height: 1.35rem !important; + width: 1.35rem !important + } + + .svg-icon.svg-icon-md-4 svg { + height: 1.25rem !important; + width: 1.25rem !important + } + + .svg-icon.svg-icon-md-5 svg { + height: 1.15rem !important; + width: 1.15rem !important + } + + .svg-icon.svg-icon-md-6 svg { + height: 1.075rem !important; + width: 1.075rem !important + } + + .svg-icon.svg-icon-md-7 svg { + height: .95rem !important; + width: .95rem !important + } + + .svg-icon.svg-icon-md-8 svg { + height: .85rem !important; + width: .85rem !important + } + + .svg-icon.svg-icon-md-9 svg { + height: .75rem !important; + width: .75rem !important + } + + .svg-icon.svg-icon-md-10 svg { + height: .5rem !important; + width: .5rem !important + } + + .svg-icon.svg-icon-md-base svg { + height: 1rem !important; + width: 1rem !important + } + + .svg-icon.svg-icon-md-fluid svg { + height: 100% !important; + width: 100% !important + } + + .svg-icon.svg-icon-md-2x svg { + height: 2rem !important; + width: 2rem !important + } + + .svg-icon.svg-icon-md-2qx svg { + height: 2.25rem !important; + width: 2.25rem !important + } + + .svg-icon.svg-icon-md-2hx svg { + height: 2.5rem !important; + width: 2.5rem !important + } + + .svg-icon.svg-icon-md-2tx svg { + height: 2.75rem !important; + width: 2.75rem !important + } + + .svg-icon.svg-icon-md-3x svg { + height: 3rem !important; + width: 3rem !important + } + + .svg-icon.svg-icon-md-3qx svg { + height: 3.25rem !important; + width: 3.25rem !important + } + + .svg-icon.svg-icon-md-3hx svg { + height: 3.5rem !important; + width: 3.5rem !important + } + + .svg-icon.svg-icon-md-3tx svg { + height: 3.75rem !important; + width: 3.75rem !important + } + + .svg-icon.svg-icon-md-4x svg { + height: 4rem !important; + width: 4rem !important + } + + .svg-icon.svg-icon-md-4qx svg { + height: 4.25rem !important; + width: 4.25rem !important + } + + .svg-icon.svg-icon-md-4hx svg { + height: 4.5rem !important; + width: 4.5rem !important + } + + .svg-icon.svg-icon-md-4tx svg { + height: 4.75rem !important; + width: 4.75rem !important + } + + .svg-icon.svg-icon-md-5x svg { + height: 5rem !important; + width: 5rem !important + } + + .svg-icon.svg-icon-md-5qx svg { + height: 5.25rem !important; + width: 5.25rem !important + } + + .svg-icon.svg-icon-md-5hx svg { + height: 5.5rem !important; + width: 5.5rem !important + } + + .svg-icon.svg-icon-md-5tx svg { + height: 5.75rem !important; + width: 5.75rem !important + } +} + +@media (min-width:992px) { + .svg-icon.svg-icon-lg-1 svg { + height: 1.75rem !important; + width: 1.75rem !important + } + + .svg-icon.svg-icon-lg-2 svg { + height: 1.5rem !important; + width: 1.5rem !important + } + + .svg-icon.svg-icon-lg-3 svg { + height: 1.35rem !important; + width: 1.35rem !important + } + + .svg-icon.svg-icon-lg-4 svg { + height: 1.25rem !important; + width: 1.25rem !important + } + + .svg-icon.svg-icon-lg-5 svg { + height: 1.15rem !important; + width: 1.15rem !important + } + + .svg-icon.svg-icon-lg-6 svg { + height: 1.075rem !important; + width: 1.075rem !important + } + + .svg-icon.svg-icon-lg-7 svg { + height: .95rem !important; + width: .95rem !important + } + + .svg-icon.svg-icon-lg-8 svg { + height: .85rem !important; + width: .85rem !important + } + + .svg-icon.svg-icon-lg-9 svg { + height: .75rem !important; + width: .75rem !important + } + + .svg-icon.svg-icon-lg-10 svg { + height: .5rem !important; + width: .5rem !important + } + + .svg-icon.svg-icon-lg-base svg { + height: 1rem !important; + width: 1rem !important + } + + .svg-icon.svg-icon-lg-fluid svg { + height: 100% !important; + width: 100% !important + } + + .svg-icon.svg-icon-lg-2x svg { + height: 2rem !important; + width: 2rem !important + } + + .svg-icon.svg-icon-lg-2qx svg { + height: 2.25rem !important; + width: 2.25rem !important + } + + .svg-icon.svg-icon-lg-2hx svg { + height: 2.5rem !important; + width: 2.5rem !important + } + + .svg-icon.svg-icon-lg-2tx svg { + height: 2.75rem !important; + width: 2.75rem !important + } + + .svg-icon.svg-icon-lg-3x svg { + height: 3rem !important; + width: 3rem !important + } + + .svg-icon.svg-icon-lg-3qx svg { + height: 3.25rem !important; + width: 3.25rem !important + } + + .svg-icon.svg-icon-lg-3hx svg { + height: 3.5rem !important; + width: 3.5rem !important + } + + .svg-icon.svg-icon-lg-3tx svg { + height: 3.75rem !important; + width: 3.75rem !important + } + + .svg-icon.svg-icon-lg-4x svg { + height: 4rem !important; + width: 4rem !important + } + + .svg-icon.svg-icon-lg-4qx svg { + height: 4.25rem !important; + width: 4.25rem !important + } + + .svg-icon.svg-icon-lg-4hx svg { + height: 4.5rem !important; + width: 4.5rem !important + } + + .svg-icon.svg-icon-lg-4tx svg { + height: 4.75rem !important; + width: 4.75rem !important + } + + .svg-icon.svg-icon-lg-5x svg { + height: 5rem !important; + width: 5rem !important + } + + .svg-icon.svg-icon-lg-5qx svg { + height: 5.25rem !important; + width: 5.25rem !important + } + + .svg-icon.svg-icon-lg-5hx svg { + height: 5.5rem !important; + width: 5.5rem !important + } + + .svg-icon.svg-icon-lg-5tx svg { + height: 5.75rem !important; + width: 5.75rem !important + } +} + +@media (min-width:1200px) { + .svg-icon.svg-icon-xl-1 svg { + height: 1.75rem !important; + width: 1.75rem !important + } + + .svg-icon.svg-icon-xl-2 svg { + height: 1.5rem !important; + width: 1.5rem !important + } + + .svg-icon.svg-icon-xl-3 svg { + height: 1.35rem !important; + width: 1.35rem !important + } + + .svg-icon.svg-icon-xl-4 svg { + height: 1.25rem !important; + width: 1.25rem !important + } + + .svg-icon.svg-icon-xl-5 svg { + height: 1.15rem !important; + width: 1.15rem !important + } + + .svg-icon.svg-icon-xl-6 svg { + height: 1.075rem !important; + width: 1.075rem !important + } + + .svg-icon.svg-icon-xl-7 svg { + height: .95rem !important; + width: .95rem !important + } + + .svg-icon.svg-icon-xl-8 svg { + height: .85rem !important; + width: .85rem !important + } + + .svg-icon.svg-icon-xl-9 svg { + height: .75rem !important; + width: .75rem !important + } + + .svg-icon.svg-icon-xl-10 svg { + height: .5rem !important; + width: .5rem !important + } + + .svg-icon.svg-icon-xl-base svg { + height: 1rem !important; + width: 1rem !important + } + + .svg-icon.svg-icon-xl-fluid svg { + height: 100% !important; + width: 100% !important + } + + .svg-icon.svg-icon-xl-2x svg { + height: 2rem !important; + width: 2rem !important + } + + .svg-icon.svg-icon-xl-2qx svg { + height: 2.25rem !important; + width: 2.25rem !important + } + + .svg-icon.svg-icon-xl-2hx svg { + height: 2.5rem !important; + width: 2.5rem !important + } + + .svg-icon.svg-icon-xl-2tx svg { + height: 2.75rem !important; + width: 2.75rem !important + } + + .svg-icon.svg-icon-xl-3x svg { + height: 3rem !important; + width: 3rem !important + } + + .svg-icon.svg-icon-xl-3qx svg { + height: 3.25rem !important; + width: 3.25rem !important + } + + .svg-icon.svg-icon-xl-3hx svg { + height: 3.5rem !important; + width: 3.5rem !important + } + + .svg-icon.svg-icon-xl-3tx svg { + height: 3.75rem !important; + width: 3.75rem !important + } + + .svg-icon.svg-icon-xl-4x svg { + height: 4rem !important; + width: 4rem !important + } + + .svg-icon.svg-icon-xl-4qx svg { + height: 4.25rem !important; + width: 4.25rem !important + } + + .svg-icon.svg-icon-xl-4hx svg { + height: 4.5rem !important; + width: 4.5rem !important + } + + .svg-icon.svg-icon-xl-4tx svg { + height: 4.75rem !important; + width: 4.75rem !important + } + + .svg-icon.svg-icon-xl-5x svg { + height: 5rem !important; + width: 5rem !important + } + + .svg-icon.svg-icon-xl-5qx svg { + height: 5.25rem !important; + width: 5.25rem !important + } + + .svg-icon.svg-icon-xl-5hx svg { + height: 5.5rem !important; + width: 5.5rem !important + } + + .svg-icon.svg-icon-xl-5tx svg { + height: 5.75rem !important; + width: 5.75rem !important + } +} + +@media (min-width:1400px) { + .svg-icon.svg-icon-xxl-1 svg { + height: 1.75rem !important; + width: 1.75rem !important + } + + .svg-icon.svg-icon-xxl-2 svg { + height: 1.5rem !important; + width: 1.5rem !important + } + + .svg-icon.svg-icon-xxl-3 svg { + height: 1.35rem !important; + width: 1.35rem !important + } + + .svg-icon.svg-icon-xxl-4 svg { + height: 1.25rem !important; + width: 1.25rem !important + } + + .svg-icon.svg-icon-xxl-5 svg { + height: 1.15rem !important; + width: 1.15rem !important + } + + .svg-icon.svg-icon-xxl-6 svg { + height: 1.075rem !important; + width: 1.075rem !important + } + + .svg-icon.svg-icon-xxl-7 svg { + height: .95rem !important; + width: .95rem !important + } + + .svg-icon.svg-icon-xxl-8 svg { + height: .85rem !important; + width: .85rem !important + } + + .svg-icon.svg-icon-xxl-9 svg { + height: .75rem !important; + width: .75rem !important + } + + .svg-icon.svg-icon-xxl-10 svg { + height: .5rem !important; + width: .5rem !important + } + + .svg-icon.svg-icon-xxl-base svg { + height: 1rem !important; + width: 1rem !important + } + + .svg-icon.svg-icon-xxl-fluid svg { + height: 100% !important; + width: 100% !important + } + + .svg-icon.svg-icon-xxl-2x svg { + height: 2rem !important; + width: 2rem !important + } + + .svg-icon.svg-icon-xxl-2qx svg { + height: 2.25rem !important; + width: 2.25rem !important + } + + .svg-icon.svg-icon-xxl-2hx svg { + height: 2.5rem !important; + width: 2.5rem !important + } + + .svg-icon.svg-icon-xxl-2tx svg { + height: 2.75rem !important; + width: 2.75rem !important + } + + .svg-icon.svg-icon-xxl-3x svg { + height: 3rem !important; + width: 3rem !important + } + + .svg-icon.svg-icon-xxl-3qx svg { + height: 3.25rem !important; + width: 3.25rem !important + } + + .svg-icon.svg-icon-xxl-3hx svg { + height: 3.5rem !important; + width: 3.5rem !important + } + + .svg-icon.svg-icon-xxl-3tx svg { + height: 3.75rem !important; + width: 3.75rem !important + } + + .svg-icon.svg-icon-xxl-4x svg { + height: 4rem !important; + width: 4rem !important + } + + .svg-icon.svg-icon-xxl-4qx svg { + height: 4.25rem !important; + width: 4.25rem !important + } + + .svg-icon.svg-icon-xxl-4hx svg { + height: 4.5rem !important; + width: 4.5rem !important + } + + .svg-icon.svg-icon-xxl-4tx svg { + height: 4.75rem !important; + width: 4.75rem !important + } + + .svg-icon.svg-icon-xxl-5x svg { + height: 5rem !important; + width: 5rem !important + } + + .svg-icon.svg-icon-xxl-5qx svg { + height: 5.25rem !important; + width: 5.25rem !important + } + + .svg-icon.svg-icon-xxl-5hx svg { + height: 5.5rem !important; + width: 5.5rem !important + } + + .svg-icon.svg-icon-xxl-5tx svg { + height: 5.75rem !important; + width: 5.75rem !important + } +} + +.fixed-top { + position: fixed; + z-index: 101; + top: 0; + left: 0; + right: 0 +} + +@media (min-width:576px) { + .fixed-top-sm { + position: fixed; + z-index: 101; + top: 0; + left: 0; + right: 0 + } +} + +@media (min-width:768px) { + .fixed-top-md { + position: fixed; + z-index: 101; + top: 0; + left: 0; + right: 0 + } +} + +@media (min-width:992px) { + .fixed-top-lg { + position: fixed; + z-index: 101; + top: 0; + left: 0; + right: 0 + } +} + +@media (min-width:1200px) { + .fixed-top-xl { + position: fixed; + z-index: 101; + top: 0; + left: 0; + right: 0 + } +} + +@media (min-width:1400px) { + .fixed-top-xxl { + position: fixed; + z-index: 101; + top: 0; + left: 0; + right: 0 + } +} + +.timeline .timeline-item { + position: relative; + padding: 0; + margin: 0; + display: flex; + align-items: flex-start +} + +.timeline .timeline-item:last-child .timeline-line { + bottom: 100% +} + +.timeline .timeline-line { + display: block; + content: " "; + justify-content: center; + position: absolute; + z-index: 0; + left: 0; + top: 0; + bottom: 0; + transform: translate(50%); + border-left-width: 1px; + border-left-style: dashed; + border-left-color: #e4e6ef +} + +.timeline .timeline-icon { + z-index: 1; + flex-shrink: 0; + margin-right: 1rem +} + +.timeline .timeline-content { + width: 100%; + overflow: auto; + margin-bottom: 1.5rem +} + +.timeline.timeline-center .timeline-item { + align-items: center +} + +.timeline.timeline-center .timeline-item:first-child .timeline-line { + top: 50% +} + +.timeline.timeline-center .timeline-item:last-child .timeline-line { + bottom: 50% +} + +.timeline-label { + position: relative +} + +.timeline-label:before { + content: ""; + position: absolute; + left: 51px; + width: 3px; + top: 0; + bottom: 0; + background-color: #eff2f5 +} + +.timeline-label .timeline-item { + display: flex; + align-items: flex-start; + position: relative; + margin-bottom: 1.7rem +} + +.timeline-label .timeline-item:last-child { + margin-bottom: 0 +} + +.timeline-label .timeline-label { + width: 50px; + flex-shrink: 0; + position: relative; + color: #3f4254 +} + +.timeline-label .timeline-badge { + flex-shrink: 0; + background: #fff; + width: 1rem; + height: 1rem; + border-radius: 100%; + display: flex; + justify-content: center; + align-items: center; + z-index: 1; + position: relative; + margin-top: 1px; + margin-left: -.5rem; + padding: 3px !important; + border: 6px solid #fff !important +} + +.timeline-label .timeline-badge span { + display: block; + border-radius: 100%; + width: 6px; + height: 6px; + background-color: #eff2f5 +} + +.timeline-label .timeline-content { + flex-grow: 1 +} + +.overlay { + position: relative +} + +.overlay .overlay-layer { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; + justify-content: center; + align-items: center; + background-color: rgba(0, 0, 0, .05); + transition: all .3s ease; + opacity: 0 +} + +.overlay.overlay-block .overlay-layer, +.overlay.overlay-show .overlay-layer, +.overlay:hover .overlay-layer { + transition: all .3s ease; + opacity: 1 +} + +.overlay.overlay-block { + cursor: wait +} + +.bullet { + display: inline-block; + background-color: #b5b5c3; + border-radius: 6px; + width: 8px; + height: 4px; + flex-shrink: 0 +} + +.bullet-dot { + width: 4px; + height: 4px; + border-radius: 100% !important +} + +.bullet-vertical { + width: 4px; + height: 8px +} + +.bullet-line { + width: 5px; + height: 1px; + border-radius: 0 +} + +.drawer { + display: flex !important; + overflow: auto; + z-index: 110; + position: fixed; + top: 0; + bottom: 0; + background-color: #fff; + transition: transform .3s ease-in-out +} + +.drawer.drawer-start { + left: 0; + transform: translateX(-100%) +} + +.drawer.drawer-end { + right: 0; + transform: translateX(100%) +} + +.drawer.drawer-on { + transform: none; + box-shadow: 0 1px 9px -3px rgba(0, 0, 0, .05); + transition: transform .3s ease-in-out +} + +.drawer-overlay { + position: fixed; + top: 0; + left: 0; + bottom: 0; + right: 0; + overflow: hidden; + z-index: 109; + background-color: rgba(0, 0, 0, .2); + animation: animation-drawer-fade-in .3s ease-in-out 1 +} + +[data-kt-drawer=true] { + display: none +} + +@keyframes animation-drawer-fade-in { + from { + opacity: 0 + } + + to { + opacity: 1 + } +} + +@media (max-width:991.98px) { + body[data-kt-drawer=on] { + overflow: hidden + } +} + +.badge { + display: inline-flex; + align-items: center +} + +.badge.badge-circle, +.badge.badge-square { + display: inline-flex; + align-items: center; + justify-content: center; + height: 1.75rem; + min-width: 1.75rem; + padding: 0 .1rem; + line-height: 0 +} + +.badge.badge-circle { + border-radius: 50%; + padding: 0; + min-width: unset; + width: 1.75rem +} + +.badge.badge-sm { + min-width: 1.5rem; + font-size: .8rem +} + +.badge.badge-sm.badge-square { + height: 1.5rem +} + +.badge.badge-sm.badge-circle { + width: 1.5rem; + height: 1.5rem +} + +.badge.badge-lg { + min-width: 2rem; + font-size: 1rem +} + +.badge.badge-lg.badge-square { + height: 2rem +} + +.badge.badge-lg.badge-circle { + width: 2rem; + height: 2rem +} + +.badge-white { + color: #7e8299; + background-color: #fff +} + +.badge-light-white { + color: #fff +} + +.badge-light { + color: #7e8299; + background-color: #f5f8fa +} + +.badge-light-light { + color: #f5f8fa +} + +.badge-primary { + color: #fff; + background-color: #009ef7 +} + +.badge-light-primary { + color: #009ef7; + background-color: #f1faff +} + +.badge-secondary { + color: #3f4254; + background-color: #e4e6ef +} + +.badge-light-secondary { + color: #e4e6ef +} + +.badge-success { + color: #fff; + background-color: #50cd89 +} + +.badge-light-success { + color: #50cd89; + background-color: #e8fff3 +} + +.badge-info { + color: #fff; + background-color: #7239ea +} + +.badge-light-info { + color: #7239ea; + background-color: #f8f5ff +} + +.badge-warning { + color: #fff; + background-color: #ffc700 +} + +.badge-light-warning { + color: #ffc700; + background-color: #fff8dd +} + +.badge-danger { + color: #fff; + background-color: #f1416c +} + +.badge-light-danger { + color: #f1416c; + background-color: #fff5f8 +} + +.badge-dark { + color: #fff; + background-color: #181c32 +} + +.badge-light-dark { + color: #181c32; + background-color: #eff2f5 +} + +.indicator-progress { + display: none +} + +[data-kt-indicator=on]>.indicator-progress { + display: inline-block +} + +[data-kt-indicator=on]>.indicator-label { + display: none +} + +.rotate { + display: inline-flex; + align-items: center +} + +.rotate-90 { + transition: transform .3s ease; + backface-visibility: hidden +} + +.active>.rotate-90, +.collapsible:not(.collapsed)>.rotate-90, +.show>.rotate-90 { + transform: rotateZ(90deg); + transition: transform .3s ease +} + +[direction=rtl] .active>.rotate-90, +[direction=rtl] .collapsible:not(.collapsed)>.rotate-90, +[direction=rtl] .show>.rotate-90 { + transform: rotateZ(-90deg) +} + +.rotate-n90 { + transition: transform .3s ease; + backface-visibility: hidden +} + +.active>.rotate-n90, +.collapsible:not(.collapsed)>.rotate-n90, +.show>.rotate-n90 { + transform: rotateZ(-90deg); + transition: transform .3s ease +} + +[direction=rtl] .active>.rotate-n90, +[direction=rtl] .collapsible:not(.collapsed)>.rotate-n90, +[direction=rtl] .show>.rotate-n90 { + transform: rotateZ(90deg) +} + +.rotate-180 { + transition: transform .3s ease; + backface-visibility: hidden +} + +.active>.rotate-180, +.collapsible:not(.collapsed)>.rotate-180, +.show>.rotate-180 { + transform: rotateZ(180deg); + transition: transform .3s ease +} + +[direction=rtl] .active>.rotate-180, +[direction=rtl] .collapsible:not(.collapsed)>.rotate-180, +[direction=rtl] .show>.rotate-180 { + transform: rotateZ(-180deg) +} + +.rotate-n180 { + transition: transform .3s ease; + backface-visibility: hidden +} + +.active>.rotate-n180, +.collapsible:not(.collapsed)>.rotate-n180, +.show>.rotate-n180 { + transform: rotateZ(-180deg); + transition: transform .3s ease +} + +[direction=rtl] .active>.rotate-n180, +[direction=rtl] .collapsible:not(.collapsed)>.rotate-n180, +[direction=rtl] .show>.rotate-n180 { + transform: rotateZ(180deg) +} + +.rotate-270 { + transition: transform .3s ease; + backface-visibility: hidden +} + +.active>.rotate-270, +.collapsible:not(.collapsed)>.rotate-270, +.show>.rotate-270 { + transform: rotateZ(270deg); + transition: transform .3s ease +} + +[direction=rtl] .active>.rotate-270, +[direction=rtl] .collapsible:not(.collapsed)>.rotate-270, +[direction=rtl] .show>.rotate-270 { + transform: rotateZ(-270deg) +} + +.rotate-n270 { + transition: transform .3s ease; + backface-visibility: hidden +} + +.active>.rotate-n270, +.collapsible:not(.collapsed)>.rotate-n270, +.show>.rotate-n270 { + transform: rotateZ(-270deg); + transition: transform .3s ease +} + +[direction=rtl] .active>.rotate-n270, +[direction=rtl] .collapsible:not(.collapsed)>.rotate-n270, +[direction=rtl] .show>.rotate-n270 { + transform: rotateZ(270deg) +} + +@media (min-width:992px) { + + div, + main, + ol, + pre, + span, + ul { + scrollbar-width: thin; + scrollbar-color: #eff2f5 transparent + } + + div::-webkit-scrollbar, + main::-webkit-scrollbar, + ol::-webkit-scrollbar, + pre::-webkit-scrollbar, + span::-webkit-scrollbar, + ul::-webkit-scrollbar { + width: .4rem; + height: .4rem + } + + div::-webkit-scrollbar-thumb, + main::-webkit-scrollbar-thumb, + ol::-webkit-scrollbar-thumb, + pre::-webkit-scrollbar-thumb, + span::-webkit-scrollbar-thumb, + ul::-webkit-scrollbar-thumb { + background-color: #eff2f5 + } + + div:hover, + main:hover, + ol:hover, + pre:hover, + span:hover, + ul:hover { + scrollbar-color: #e9edf1 transparent + } + + div:hover::-webkit-scrollbar-thumb, + main:hover::-webkit-scrollbar-thumb, + ol:hover::-webkit-scrollbar-thumb, + pre:hover::-webkit-scrollbar-thumb, + span:hover::-webkit-scrollbar-thumb, + ul:hover::-webkit-scrollbar-thumb { + background-color: #e9edf1 + } +} + +.scroll { + overflow: scroll; + position: relative +} + +@media (max-width:991.98px) { + .scroll { + overflow: auto + } +} + +.scroll-x { + overflow-x: scroll; + position: relative +} + +@media (max-width:991.98px) { + .scroll-x { + overflow-x: auto + } +} + +.scroll-y { + overflow-y: scroll; + position: relative +} + +@media (max-width:991.98px) { + .scroll-y { + overflow-y: auto + } +} + +.hover-scroll { + position: relative +} + +@media (min-width:992px) { + .hover-scroll { + overflow: hidden; + border-right: .4rem solid transparent; + border-bottom: .4rem solid transparent; + margin-right: -.4rem; + margin-bottom: -.4rem + } + + .hover-scroll:hover { + overflow: scroll; + border-right: 0; + border-bottom: 0 + } + + @-moz-document url-prefix() { + .hover-scroll { + overflow: scroll; + position: relative; + border-right: 0; + border-bottom: 0 + } + } +} + +@media (max-width:991.98px) { + .hover-scroll { + overflow: auto + } +} + +.hover-scroll-y { + position: relative +} + +@media (min-width:992px) { + .hover-scroll-y { + overflow-y: hidden; + border-right: .4rem solid transparent; + margin-right: -.4rem + } + + .hover-scroll-y:hover { + overflow-y: scroll; + border-right: 0 + } + + @-moz-document url-prefix() { + .hover-scroll-y { + overflow-y: scroll; + position: relative; + border-right: 0 + } + } +} + +@media (max-width:991.98px) { + .hover-scroll-y { + overflow-y: auto + } +} + +.hover-scroll-x { + position: relative +} + +@media (min-width:992px) { + .hover-scroll-x { + overflow-x: hidden; + border-bottom: .4rem solid transparent + } + + .hover-scroll-x:hover { + overflow-x: scroll; + border-bottom: 0 + } + + @-moz-document url-prefix() { + .hover-scroll-x { + overflow-x: scroll; + position: relative; + border-bottom: 0 + } + } +} + +@media (max-width:991.98px) { + .hover-scroll-x { + overflow-x: auto + } +} + +.hover-scroll-overlay-y { + overflow-y: hidden; + position: relative; + --scrollbar-space: 0.5rem +} + +.hover-scroll-overlay-y::-webkit-scrollbar { + width: calc(.4rem + var(--scrollbar-space)) +} + +.hover-scroll-overlay-y::-webkit-scrollbar-thumb { + background-clip: content-box; + border-right: var(--scrollbar-space) solid transparent +} + +.hover-scroll-overlay-y:hover { + overflow-y: overlay +} + +@-moz-document url-prefix() { + .hover-scroll-overlay-y { + overflow-y: scroll; + position: relative + } +} + +.scroll-ps { + padding-left: .4rem !important +} + +.scroll-ms { + margin-left: .4rem !important +} + +.scroll-pe { + padding-right: .4rem !important +} + +.scroll-me { + margin-right: .4rem !important +} + +.scroll-px { + padding-left: .4rem !important; + padding-right: .4rem !important +} + +.scroll-mx { + margin-left: .4rem !important; + margin-right: .4rem !important +} + +.rating { + display: flex; + align-items: center +} + +.rating-input { + position: absolute !important; + left: -9999px !important +} + +.rating-input[disabled] { + display: none +} + +.rating-label { + padding: 0; + margin: 0 +} + +.rating-label>.svg-icon, +.rating-label>i { + line-height: 1; + color: #b5b5c3 +} + +label.rating-label { + cursor: pointer +} + +div.rating-label.checked>.svg-icon, +div.rating-label.checked>i, +label.rating-label>.svg-icon, +label.rating-label>i { + color: #ffad0f +} + +.rating-input:checked~.rating-label>.svg-icon, +.rating-input:checked~.rating-label>i { + color: #b5b5c3 +} + +.rating:hover label.rating-label>.svg-icon, +.rating:hover label.rating-label>i { + color: #ffad0f +} + +label.rating-label:hover~.rating-label { + color: #b5b5c3 +} + +label.rating-label:hover~.rating-label>.svg-icon, +label.rating-label:hover~.rating-label>i { + color: #b5b5c3 +} + +.stepper [data-kt-stepper-element=content], +.stepper [data-kt-stepper-element=info] { + display: none +} + +.stepper [data-kt-stepper-element=content].current, +.stepper [data-kt-stepper-element=info].current { + display: flex +} + +.stepper .stepper-item[data-kt-stepper-action=step] { + cursor: pointer +} + +.stepper [data-kt-stepper-action=previous] { + display: none +} + +.stepper [data-kt-stepper-action=next] { + display: inline-block +} + +.stepper [data-kt-stepper-action=submit] { + display: none +} + +.stepper.first [data-kt-stepper-action=previous] { + display: none +} + +.stepper.first [data-kt-stepper-action=next] { + display: inline-block +} + +.stepper.first [data-kt-stepper-action=submit] { + display: none +} + +.stepper.between [data-kt-stepper-action=previous] { + display: inline-block +} + +.stepper.between [data-kt-stepper-action=next] { + display: inline-block +} + +.stepper.between [data-kt-stepper-action=submit] { + display: none +} + +.stepper.last [data-kt-stepper-action=previous] { + display: inline-block +} + +.stepper.last [data-kt-stepper-action=next] { + display: none +} + +.stepper.last [data-kt-stepper-action=submit] { + display: inline-block +} + +.stepper.last [data-kt-stepper-action=submit].btn-flex { + display: flex +} + +.stepper.stepper-pills .stepper-nav { + display: flex +} + +.stepper.stepper-pills .stepper-item { + display: flex; + align-items: center; + transition: color .2s ease, background-color .2s ease +} + +.stepper.stepper-pills .stepper-item .stepper-icon { + display: flex; + align-items: center; + justify-content: center; + transition: color .2s ease, background-color .2s ease; + width: 40px; + height: 40px; + border-radius: .475rem; + background-color: #f1faff; + margin-right: 1.5rem +} + +.stepper.stepper-pills .stepper-item .stepper-icon .stepper-check { + display: none; + font-size: 1rem +} + +.stepper.stepper-pills .stepper-item .stepper-icon .stepper-number { + font-weight: 600; + color: #009ef7 !important; + font-size: 1.25rem +} + +.stepper.stepper-pills .stepper-item .stepper-label { + display: flex; + flex-direction: column; + justify-content: center +} + +.stepper.stepper-pills .stepper-item .stepper-label .stepper-title { + color: #3f4254; + font-weight: 600; + font-size: 1.25rem; + margin-bottom: .3rem +} + +.stepper.stepper-pills .stepper-item .stepper-label .stepper-desc { + color: #a1a5b7 +} + +.stepper.stepper-pills .stepper-item.current { + transition: color .2s ease, background-color .2s ease +} + +.stepper.stepper-pills .stepper-item.current .stepper-icon { + transition: color .2s ease, background-color .2s ease; + background-color: #009ef7 +} + +.stepper.stepper-pills .stepper-item.current .stepper-icon .stepper-check { + color: #009ef7; + display: none +} + +.stepper.stepper-pills .stepper-item.current .stepper-icon .stepper-number { + color: #fff !important; + font-size: 1.35rem +} + +.stepper.stepper-pills .stepper-item.current .stepper-label .stepper-title { + color: #7e8299 +} + +.stepper.stepper-pills .stepper-item.current .stepper-label .stepper-desc { + color: #b5b5c3 +} + +.stepper.stepper-pills .stepper-item.completed .stepper-icon, +.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon { + transition: color .2s ease, background-color .2s ease; + background-color: #f1faff +} + +.stepper.stepper-pills .stepper-item.completed .stepper-icon .stepper-check, +.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon .stepper-check { + color: #009ef7 !important; + display: inline-block +} + +.stepper.stepper-pills .stepper-item.completed .stepper-icon .stepper-number, +.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon .stepper-number { + display: none +} + +.stepper.stepper-pills .stepper-item.completed .stepper-label .stepper-title, +.stepper.stepper-pills .stepper-item.current:last-child .stepper-label .stepper-title { + color: #a1a5b7 +} + +.stepper.stepper-pills .stepper-item.completed .stepper-label .stepper-desc, +.stepper.stepper-pills .stepper-item.current:last-child .stepper-label .stepper-desc { + color: #b5b5c3 +} + +.stepper.stepper-pills.stepper-column .stepper-nav { + flex-direction: column +} + +.stepper.stepper-pills.stepper-column .stepper-item { + position: relative; + padding: 0; + margin: 0; + padding-bottom: 2.5rem +} + +.stepper.stepper-pills.stepper-column .stepper-icon { + z-index: 1 +} + +.stepper.stepper-pills.stepper-column .stepper-line { + display: block; + content: " "; + justify-content: center; + position: absolute; + z-index: 0; + left: 0; + top: 0; + bottom: 0; + width: 40px; + transform: translate(50%); + border-left-width: 1px; + border-left-style: dashed; + border-left-color: #e4e6ef +} + +.stepper.stepper-pills.stepper-column .stepper-item:first-child .stepper-line { + top: 50% +} + +.stepper.stepper-pills.stepper-column .stepper-item:last-child .stepper-line { + bottom: 50% +} + +.stepper.stepper-links .stepper-nav { + display: flex; + margin: 0 auto; + justify-content: center; + align-items: center; + flex-wrap: wrap +} + +.stepper.stepper-links .stepper-nav .stepper-item { + position: relative; + flex-shrink: 0; + margin: 1rem 1.5rem +} + +.stepper.stepper-links .stepper-nav .stepper-item:after { + content: " "; + position: absolute; + top: 2.3rem; + left: 0; + height: 2px; + width: 100%; + background-color: transparent; + transition: color .2s ease, background-color .2s ease +} + +.stepper.stepper-links .stepper-nav .stepper-item .stepper-title { + color: #181c32; + font-weight: 600; + font-size: 1.25rem +} + +.stepper.stepper-links .stepper-nav .stepper-item.current { + transition: color .2s ease, background-color .2s ease +} + +.stepper.stepper-links .stepper-nav .stepper-item.current .stepper-title { + color: #009ef7 +} + +.stepper.stepper-links .stepper-nav .stepper-item.current:after { + background-color: #009ef7 +} + +.stepper.stepper-links .stepper-nav .stepper-item.completed .stepper-title { + color: #b5b5c3 +} + +.toggle.active .toggle-off, +.toggle.collapsible:not(.collapsed) .toggle-off { + display: none +} + +.toggle.collapsible.collapsed .toggle-on, +.toggle:not(.collapsible):not(.active) .toggle-on { + display: none +} + +.xehagon { + clip-path: polygon(45% 1.3397459622%, 46.5797985667% .6030737921%, 48.2635182233% .1519224699%, 50% 0, 51.7364817767% .1519224699%, 53.4202014333% .6030737921%, 55% 1.3397459622%, 89.6410161514% 21.3397459622%, 91.0688922482% 22.3395555688%, 92.3014605826% 23.5721239031%, 93.3012701892% 25%, 94.0379423592% 26.5797985667%, 94.4890936815% 28.2635182233%, 94.6410161514% 30%, 94.6410161514% 70%, 94.4890936815% 71.7364817767%, 94.0379423592% 73.4202014333%, 93.3012701892% 75%, 92.3014605826% 76.4278760969%, 91.0688922482% 77.6604444312%, 89.6410161514% 78.6602540378%, 55% 98.6602540378%, 53.4202014333% 99.3969262079%, 51.7364817767% 99.8480775301%, 50% 100%, 48.2635182233% 99.8480775301%, 46.5797985667% 99.3969262079%, 45% 98.6602540378%, 10.3589838486% 78.6602540378%, 8.9311077518% 77.6604444312%, 7.6985394174% 76.4278760969%, 6.6987298108% 75%, 5.9620576408% 73.4202014333%, 5.5109063185% 71.7364817767%, 5.3589838486% 70%, 5.3589838486% 30%, 5.5109063185% 28.2635182233%, 5.9620576408% 26.5797985667%, 6.6987298108% 25%, 7.6985394174% 23.5721239031%, 8.9311077518% 22.3395555688%, 10.3589838486% 21.3397459622%) +} + +.octagon { + clip-path: polygon(46.1731656763% .7612046749%, 47.411809549% .3407417371%, 48.6947380778% .0855513863%, 50% 0, 51.3052619222% .0855513863%, 52.588190451% .3407417371%, 53.8268343237% .7612046749%, 82.1111055711% 12.4769334274%, 83.2842712475% 13.0554747147%, 84.3718855375% 13.7821953496%, 85.3553390593% 14.6446609407%, 86.2178046504% 15.6281144625%, 86.9445252853% 16.7157287525%, 87.5230665726% 17.8888944289%, 99.2387953251% 46.1731656763%, 99.6592582629% 47.411809549%, 99.9144486137% 48.6947380778%, 100% 50%, 99.9144486137% 51.3052619222%, 99.6592582629% 52.588190451%, 99.2387953251% 53.8268343237%, 87.5230665726% 82.1111055711%, 86.9445252853% 83.2842712475%, 86.2178046504% 84.3718855375%, 85.3553390593% 85.3553390593%, 84.3718855375% 86.2178046504%, 83.2842712475% 86.9445252853%, 82.1111055711% 87.5230665726%, 53.8268343237% 99.2387953251%, 52.588190451% 99.6592582629%, 51.3052619222% 99.9144486137%, 50% 100%, 48.6947380778% 99.9144486137%, 47.411809549% 99.6592582629%, 46.1731656763% 99.2387953251%, 17.8888944289% 87.5230665726%, 16.7157287525% 86.9445252853%, 15.6281144625% 86.2178046504%, 14.6446609407% 85.3553390593%, 13.7821953496% 84.3718855375%, 13.0554747147% 83.2842712475%, 12.4769334274% 82.1111055711%, .7612046749% 53.8268343237%, .3407417371% 52.588190451%, .0855513863% 51.3052619222%, 0 50%, .0855513863% 48.6947380778%, .3407417371% 47.411809549%, .7612046749% 46.1731656763%, 12.4769334274% 17.8888944289%, 13.0554747147% 16.7157287525%, 13.7821953496% 15.6281144625%, 14.6446609407% 14.6446609407%, 15.6281144625% 13.7821953496%, 16.7157287525% 13.0554747147%, 17.8888944289% 12.4769334274%) +} + +.ribbon { + position: relative +} + +.ribbon .ribbon-label { + display: flex; + justify-content: center; + align-items: center; + padding: 5px 10px; + position: absolute; + z-index: 1; + background-color: #009ef7; + box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, .1); + color: #fff; + top: 50%; + right: 0; + transform: translateX(5px) translateY(-50%) +} + +.ribbon .ribbon-label>.ribbon-inner { + z-index: -1; + position: absolute; + padding: 0; + width: 100%; + height: 100%; + top: 0; + left: 0 +} + +.ribbon .ribbon-label:after { + border-color: #003c5e +} + +.ribbon-vertical .ribbon-label { + padding: 5px 10px; + min-width: 36px; + min-height: 46px; + text-align: center +} + +.ribbon.ribbon-top .ribbon-label { + top: 0; + transform: translateX(-15px) translateY(-4px); + border-bottom-right-radius: .475rem; + border-bottom-left-radius: .475rem +} + +.ribbon.ribbon-bottom .ribbon-label { + border-top-right-radius: .475rem; + border-top-left-radius: .475rem +} + +.ribbon.ribbon-start .ribbon-label { + top: 50%; + left: 0; + right: auto; + transform: translateX(-5px) translateY(-50%); + border-top-right-radius: .475rem; + border-bottom-right-radius: .475rem +} + +.ribbon.ribbon-end .ribbon-label { + border-top-left-radius: .475rem; + border-bottom-left-radius: .475rem +} + +.ribbon.ribbon-clip.ribbon-start .ribbon-label { + left: -5px +} + +.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner { + border-top-right-radius: .475rem; + border-bottom-right-radius: .475rem +} + +.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:after, +.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:before { + content: ""; + position: absolute; + border-style: solid; + border-color: transparent !important; + bottom: -10px +} + +.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:before { + border-width: 0 10px 10px 0; + border-right-color: #181c32 !important; + left: 0 +} + +.ribbon.ribbon-clip.ribbon-end .ribbon-label { + right: -5px +} + +.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner { + border-top-left-radius: .475rem; + border-bottom-left-radius: .475rem +} + +.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:after, +.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:before { + content: ""; + position: absolute; + border-style: solid; + border-color: transparent !important; + bottom: -10px +} + +.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:before { + border-width: 0 0 10px 10px; + border-left-color: #181c32 !important; + right: 0 +} + +.ribbon.ribbon-triangle { + position: absolute; + z-index: 1; + display: flex; + align-items: flex-start; + justify-content: flex-start +} + +.ribbon.ribbon-triangle.ribbon-top-start { + top: 0; + left: 0; + width: 4rem; + height: 4rem; + border-bottom: solid 2rem transparent !important; + border-left: solid 2rem red; + border-right: solid 2rem transparent !important; + border-top: solid 2rem red +} + +.ribbon.ribbon-triangle.ribbon-top-end { + top: 0; + right: 0; + width: 4rem; + height: 4rem; + border-bottom: solid 2rem transparent !important; + border-left: solid 2rem transparent !important; + border-right: solid 2rem red; + border-top: solid 2rem red +} + +.ribbon.ribbon-triangle.ribbon-bottom-start { + bottom: 0; + left: 0; + width: 4rem; + height: 4rem; + border-bottom: solid 2rem red; + border-left: solid 2rem red; + border-right: solid 2rem transparent !important; + border-top: solid 2rem transparent !important +} + +.ribbon.ribbon-triangle.ribbon-bottom-end { + bottom: 0; + right: 0; + width: 4rem; + height: 4rem; + border-bottom: solid 2rem red; + border-right: solid 2rem red; + border-left: solid 2rem transparent !important; + border-top: solid 2rem transparent !important +} + +.blockui { + position: relative +} + +.blockui .blockui-overlay { + transition: all .3s ease; + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; + justify-content: center; + align-items: center; + background-color: rgba(0, 0, 0, .05) +} + +.blockui .blockui-overlay .spinner-border { + height: 1.35rem; + width: 1.35rem +} + +.blockui .blockui-message { + display: flex; + align-items: center; + border-radius: .475rem; + box-shadow: 0 0 50px 0 rgba(82, 63, 105, .15); + background-color: #fff; + color: #7e8299; + font-weight: 500; + margin: 0 !important; + width: auto; + padding: .85rem 1.75rem !important +} + +.blockui .blockui-message .spinner-border { + margin-right: .65rem +} + +.explore-btn-toggle { + color: #7e8299; + background-color: #fff +} + +.explore-btn-toggle:active, +.explore-btn-toggle:focus, +.explore-btn-toggle:hover { + color: #fff; + background-color: #00b2ff +} + +.explore-btn-dismiss { + border: 0 +} + +.explore-btn-dismiss:hover .svg-icon, +.explore-btn-dismiss:hover i { + color: #00b2ff +} + +.explore-btn-primary { + border: 0; + color: #fff; + background-color: #00b2ff +} + +.explore-btn-primary:hover { + color: #fff; + background-color: #0098da +} + +.explore-btn-secondary { + border: 0; + color: #7e8299; + background-color: #f5f8fa +} + +.explore-btn-secondary:hover { + color: #3f4254; + background-color: #eff2f5 +} + +.explore-btn-outline { + border: 1px dashed #e4e6ef !important +} + +.explore-btn-outline.active, +.explore-btn-outline:hover { + border: 1px dashed #50cd89 !important; + background-color: #e8fff3 +} + +.explore-link { + color: #00b2ff +} + +.explore-link:hover { + color: #0098da +} + +.explore-link-hover:hover { + color: #00b2ff !important +} + +.explore-icon-success { + color: #50cd89 +} + +.explore-icon-danger { + color: #f1416c +} + +.explore-label-free { + color: #fff; + background-color: #ffc700 +} + +.explore-label-pro { + color: #fff; + background-color: #50cd89 +} + +.cookiealert { + background: inherit; + color: inherit +} + +@media print { + .print-content-only { + padding: 0 !important; + background: 0 0 !important + } + + .print-content-only .container, + .print-content-only .container-fluid, + .print-content-only .container-lg, + .print-content-only .container-md, + .print-content-only .container-sm, + .print-content-only .container-xl, + .print-content-only .container-xxl, + .print-content-only .page, + .print-content-only .page-title .content, + .print-content-only .wrapper { + background: 0 0 !important; + padding: 0 !important; + margin: 0 !important + } + + .print-content-only .aside, + .print-content-only .btn, + .print-content-only .drawer, + .print-content-only .footer, + .print-content-only .header, + .print-content-only .scrolltop, + .print-content-only .sidebar, + .print-content-only .toolbar { + display: none !important + } +} + +@media (min-width:992px) { + .container-custom { + padding-left: 2rem !important; + padding-right: 2rem !important + } +} + +@media (max-width:991.98px) { + .container-custom { + max-width: none; + padding-left: 1.5rem !important; + padding-right: 1.5rem !important + } +} + +.landing-dark-bg { + background-color: #13263c +} + +.landing-dark-color { + color: #13263c +} + +.landing-dark-border { + border: 1px dashed #2c3f5b +} + +.landing-dark-separator { + border-top: 1px dashed #2c3f5b +} + +.landing-curve { + position: relative +} + +.landing-curve svg { + position: relative; + top: 0; + display: block +} + +.landing-header { + display: flex; + align-items: center; + height: 100px +} + +.landing-header .logo-default { + display: block +} + +.landing-header .logo-sticky { + display: none +} + +.landing-header .menu .menu-link.active { + color: #fff +} + +[data-kt-sticky-landing-header=on] .landing-header .menu .menu-link.active { + color: #009ef7; + background-color: rgba(239, 242, 245, .4) +} + +[data-kt-sticky-landing-header=on] .landing-header { + padding: 0; + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 100; + background-color: #fff; + box-shadow: 0 10px 30px 0 rgba(82, 63, 105, .05); + height: 70px +} + +[data-kt-sticky-landing-header=on] .landing-header .logo-sticky { + display: block +} + +[data-kt-sticky-landing-header=on] .landing-header .logo-default { + display: none +} + +body[data-kt-sticky-landing-header=on] { + padding-top: 100px +} + +@media (max-width:991.98px) { + .landing-header { + height: 70px + } + + .landing-header .landing-menu-wrapper { + position: relative; + overflow: auto + } + + [data-kt-sticky-landing-header=on] .landing-header { + height: 70px + } + + .landing-header .menu .menu-link.active { + color: #009ef7; + background-color: rgba(239, 242, 245, .4) + } + + body[data-kt-sticky-landing-header=on] { + padding-top: 70px + } +} + +html { + font-family: sans-serif; + text-size-adjust: 100% +} + +body, +html { + height: 100%; + margin: 0; + padding: 0; + font-size: 13px !important; + font-weight: 400; + font-family: Poppins, Helvetica, sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale +} + +@media (max-width:991.98px) { + + body, + html { + font-size: 13px !important + } +} + +@media (max-width:767.98px) { + + body, + html { + font-size: 12px !important + } +} + +body a:active, +body a:focus, +body a:hover, +html a:active, +html a:focus, +html a:hover { + text-decoration: none !important +} + +body { + display: flex; + flex-direction: column; + color: #181c32 +} + +router-outlet { + display: none +} + +canvas { + user-select: none +} + +@media print { + .print-content-only { + padding: 0 !important; + background: 0 0 !important + } + + .print-content-only .container, + .print-content-only .container-fluid, + .print-content-only .container-lg, + .print-content-only .container-md, + .print-content-only .container-sm, + .print-content-only .container-xl, + .print-content-only .container-xxl, + .print-content-only .page, + .print-content-only .page-title .content, + .print-content-only .wrapper { + background: 0 0 !important; + padding: 0 !important; + margin: 0 !important + } + + .print-content-only .aside, + .print-content-only .btn, + .print-content-only .drawer, + .print-content-only .footer, + .print-content-only .header, + .print-content-only .scrolltop, + .print-content-only .sidebar, + .print-content-only .toolbar { + display: none !important + } +} + +body { + background-color: #f5f8fa +} + +.text-page-bg { + color: #f5f8fa +} + +@media (min-width:992px) { + + .container, + .container-fluid, + .container-lg, + .container-md, + .container-sm, + .container-xl, + .container-xxl { + padding: 0 30px + } + + .wrapper { + transition: padding-left .3s ease, margin-right .3s ease + } + + .aside-enabled.aside-fixed .wrapper { + transition: padding-left .3s ease; + padding-left: 265px + } + + .aside-enabled.aside-fixed[data-kt-aside-minimize=on] .wrapper { + transition: padding-left .3s ease; + padding-left: 75px + } + + .header-fixed .wrapper { + padding-top: 65px + } + + .header-fixed.toolbar-fixed .wrapper { + padding-top: calc(65px + var(--kt-toolbar-height)) + } +} + +@media (max-width:991.98px) { + + .container, + .container-fluid, + .container-lg, + .container-md, + .container-sm, + .container-xl, + .container-xxl { + max-width: none; + padding: 0 15px + } + + .header-tablet-and-mobile-fixed .wrapper { + padding-top: 55px + } + + .header-tablet-and-mobile-fixed.toolbar-tablet-and-mobile-fixed .wrapper { + padding-top: calc(55px + var(--kt-toolbar-height-tablet-and-mobile)) + } +} + +@media (min-width:992px) { + .header { + display: flex; + justify-content: space-between; + align-items: center; + position: relative; + z-index: 2; + height: 65px; + transition: left .3s ease + } + + .header-fixed .header { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 100; + background-color: #fff; + height: 65px; + padding: 0; + box-shadow: 0 10px 30px 0 rgba(82, 63, 105, .05) + } + + .header-fixed.toolbar-fixed .header { + box-shadow: none + } + + .aside-enabled.aside-fixed.header-fixed .header { + left: 265px; + transition: left .3s ease + } + + .aside-enabled.aside-fixed.header-fixed[data-kt-aside-minimize=on] .header { + left: 75px; + transition: left .3s ease + } + + .header .header-menu { + display: flex + } +} + +@media (max-width:991.98px) { + .header { + display: flex; + justify-content: space-between; + align-items: center; + height: 55px; + position: relative; + z-index: 3 + } + + .header-tablet-and-mobile-fixed .header { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 100; + height: 55px; + min-height: 55px; + background-color: #fff; + box-shadow: 0 10px 30px 0 rgba(82, 63, 105, .05) + } + + .header-tablet-and-mobile-fixed.toolbar-tablet-and-mobile-fixed .header { + box-shadow: none + } + + .header .header-menu { + display: none; + z-index: 99 + } + + .header .page-title { + display: none !important + } +} + +.toolbar { + display: flex; + align-items: center; + background-color: #fff; + padding: .5rem 0 +} + +@media (min-width:992px) { + .toolbar-fixed .toolbar { + height: var(--kt-toolbar-height); + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 99; + box-shadow: 0 10px 30px 0 rgba(82, 63, 105, .05) + } + + .toolbar-enabled:not(.toolbar-fixed) .toolbar { + margin-bottom: 30px + } + + .header-fixed.toolbar-fixed .toolbar { + padding: 0; + top: 65px; + border-top: 1px solid #eff2f5 + } + + .aside-enabled.aside-fixed.toolbar-fixed .toolbar { + left: 265px; + transition: left .3s ease + } + + .aside-enabled.aside-fixed.toolbar-fixed[data-kt-aside-minimize=on] .toolbar { + left: 75px; + transition: left .3s ease + } +} + +@media (max-width:991.98px) { + .toolbar-tablet-and-mobile-fixed .toolbar { + height: var(--kt-toolbar-height-tablet-and-mobile); + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 99; + box-shadow: 0 10px 30px 0 rgba(82, 63, 105, .05) + } + + .toolbar-enabled:not(.toolbar-tablet-and-mobile-fixed) .toolbar { + margin-bottom: 15px + } + + .header-tablet-and-mobile-fixed.toolbar-tablet-and-mobile-fixed .toolbar { + padding: 0; + top: 55px; + border-top: 1px solid #eff2f5 + } + + .toolbar .page-title[data-kt-swapper=true] { + display: none !important + } +} + +.aside { + display: flex; + flex-direction: column; + box-shadow: 0 0 28px 0 rgba(82, 63, 105, .05); + padding: 0 +} + +.aside .btn-custom { + display: flex; + align-items: center; + justify-content: center; + padding-left: 0; + padding-right: 0 +} + +.aside .btn-custom .btn-label { + transition: opacity .3s ease; + display: inline-block; + white-space: nowrap; + overflow: hidden; + opacity: 1 +} + +.aside .btn-custom .btn-icon { + display: inline-block; + transition: opacity .3s ease; + overflow: hidden; + opacity: 0; + margin: 0; + width: 0 +} + +.aside.aside-dark { + background-color: #1e1e2d +} + +.aside.aside-dark .aside-logo { + background-color: #1a1a27 +} + +.aside.aside-dark .aside-toggle { + color: #494b74 +} + +.aside.aside-dark .separator { + border-bottom-color: #282a3d +} + +.aside.aside-dark .btn-custom { + color: #b5b5c3; + background-color: rgba(63, 66, 84, .35) +} + +.aside.aside-dark .btn-custom.active, +.aside.aside-dark .btn-custom.show, +.aside.aside-dark .btn-custom:active:not(.btn-active), +.aside.aside-dark .btn-custom:focus:not(.btn-active), +.aside.aside-dark .btn-custom:hover:not(.btn-active), +.btn-check:active+.aside.aside-dark .btn-custom, +.btn-check:checked+.aside.aside-dark .btn-custom, +.show>.aside.aside-dark .btn-custom { + color: #b5b5c3; + background-color: rgba(63, 66, 84, .35) !important +} + +.aside.aside-dark .btn-custom .btn-icon, +.aside.aside-dark .btn-custom .btn-icon .svg-icon, +.aside.aside-dark .btn-custom .btn-icon i { + color: #b5b5c3 +} + +.aside.aside-light { + background-color: #fff +} + +@media (min-width:992px) { + .aside { + width: 265px; + transition: width .3s ease + } + + .aside .aside-logo { + display: flex; + justify-content: space-between; + align-items: center; + height: 65px; + padding: 0 25px + } + + .aside .aside-menu { + width: 265px + } + + .aside-fixed .aside { + position: fixed; + top: 0; + bottom: 0; + left: 0; + z-index: 101; + overflow: hidden + } + + .aside-static .aside { + position: relative; + z-index: 1 + } + + [data-kt-aside-minimize=on] .aside { + width: 75px; + transition: width .3s ease + } + + [data-kt-aside-minimize=on] .aside .aside-logo .logo-default { + display: inline-block + } + + [data-kt-aside-minimize=on] .aside .aside-logo .logo-minimize { + display: none + } + + [data-kt-aside-minimize=on] .aside.aside-hoverable:hover:not(.animating) { + transition: width .3s ease; + width: 265px; + box-shadow: 5px 0 10px rgba(70, 78, 95, .075) + } + + [data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo, + [data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo { + justify-content: center + } + + [data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo .logo, + [data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo .logo { + display: none + } + + [data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo .logo-default, + [data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo .logo-default { + display: none + } + + [data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo .logo-minimize, + [data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo .logo-minimize { + display: inline-block + } + + [data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-menu .menu-content, + [data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-menu .menu-title, + [data-kt-aside-minimize=on] .aside:not(:hover) .aside-menu .menu-content, + [data-kt-aside-minimize=on] .aside:not(:hover) .aside-menu .menu-title { + opacity: 0; + transition: opacity .3s ease + } + + [data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-menu .menu-item.show>.menu-sub, + [data-kt-aside-minimize=on] .aside:not(:hover) .aside-menu .menu-item.show>.menu-sub { + height: 0; + overflow: hidden; + transition: height .3s ease + } + + [data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .btn-custom .btn-label, + [data-kt-aside-minimize=on] .aside:not(:hover) .btn-custom .btn-label { + width: 0; + opacity: 0; + transition: opacity .3s ease + } + + [data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .btn-custom .btn-icon, + [data-kt-aside-minimize=on] .aside:not(:hover) .btn-custom .btn-icon { + width: auto; + opacity: 1; + transition: opacity .3s ease + } +} + +@media (max-width:991.98px) { + .aside { + display: none + } + + .aside .aside-logo { + display: none + } +} + +.aside-menu .menu .menu-item .menu-content, +.aside-menu .menu .menu-item .menu-link { + padding-left: 25px; + padding-right: 25px +} + +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(.75rem + 25px) +} + +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(1.5rem + 25px) +} + +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(2.25rem + 25px) +} + +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(3rem + 25px) +} + +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: .75rem; + padding-right: 0 +} + +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(1.5rem); + padding-right: 0 +} + +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(2.25rem); + padding-right: 0 +} + +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(3rem); + padding-right: 0 +} + +.aside-menu .menu-item { + padding: 0 +} + +.aside-menu .menu-item .menu-link { + padding-top: .75rem; + padding-bottom: .75rem +} + +.aside-menu .menu-item .menu-icon { + justify-content: flex-start +} + +.aside-dark .hover-scroll-overlay-y { + --scrollbar-space: 0.4rem; + scrollbar-color: #3b3b64 transparent +} + +.aside-dark .hover-scroll-overlay-y::-webkit-scrollbar-thumb { + background-color: #3b3b64 +} + +.aside-dark .hover-scroll-overlay-y:hover { + scrollbar-color: #41416e transparent +} + +.aside-dark .hover-scroll-overlay-y:hover::-webkit-scrollbar-thumb { + background-color: #41416e +} + +.aside-dark .menu .menu-item .menu-section { + color: #4c4e6f !important +} + +.aside-dark .menu .menu-item .menu-link { + color: #9899ac +} + +.aside-dark .menu .menu-item .menu-link .menu-title { + color: #9899ac +} + +.aside-dark .menu .menu-item .menu-link .menu-icon, +.aside-dark .menu .menu-item .menu-link .menu-icon .svg-icon, +.aside-dark .menu .menu-item .menu-link .menu-icon i { + color: #494b74 +} + +.aside-dark .menu .menu-item .menu-link .menu-bullet .bullet { + background-color: #9899ac +} + +.aside-dark .menu .menu-item .menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%239899ac'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%239899ac'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here), +.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: color .2s ease, background-color .2s ease; + background-color: #1b1b28; + color: #fff +} + +.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title, +.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title { + color: #fff +} + +.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon, +.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, +.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon, +.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon, +.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i { + color: #009ef7 +} + +.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, +.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet { + background-color: #009ef7 +} + +.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, +.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.aside-dark .menu .menu-item.here>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: #1b1b28; + color: #fff +} + +.aside-dark .menu .menu-item.here>.menu-link .menu-title { + color: #fff +} + +.aside-dark .menu .menu-item.here>.menu-link .menu-icon, +.aside-dark .menu .menu-item.here>.menu-link .menu-icon .svg-icon, +.aside-dark .menu .menu-item.here>.menu-link .menu-icon i { + color: #009ef7 +} + +.aside-dark .menu .menu-item.here>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.aside-dark .menu .menu-item.here>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.aside-dark .menu .menu-item.show>.menu-link { + transition: color .2s ease, background-color .2s ease; + background-color: #1b1b28; + color: #fff +} + +.aside-dark .menu .menu-item.show>.menu-link .menu-title { + color: #fff +} + +.aside-dark .menu .menu-item.show>.menu-link .menu-icon, +.aside-dark .menu .menu-item.show>.menu-link .menu-icon .svg-icon, +.aside-dark .menu .menu-item.show>.menu-link .menu-icon i { + color: #009ef7 +} + +.aside-dark .menu .menu-item.show>.menu-link .menu-bullet .bullet { + background-color: #009ef7 +} + +.aside-dark .menu .menu-item.show>.menu-link .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.aside-dark .menu .menu-item .menu-link.active { + transition: color .2s ease, background-color .2s ease; + background-color: #1b1b28; + color: #fff +} + +.aside-dark .menu .menu-item .menu-link.active .menu-title { + color: #fff +} + +.aside-dark .menu .menu-item .menu-link.active .menu-icon, +.aside-dark .menu .menu-item .menu-link.active .menu-icon .svg-icon, +.aside-dark .menu .menu-item .menu-link.active .menu-icon i { + color: #009ef7 +} + +.aside-dark .menu .menu-item .menu-link.active .menu-bullet .bullet { + background-color: #009ef7 +} + +.aside-dark .menu .menu-item .menu-link.active .menu-arrow:after { + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center; + background-color: transparent; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e") +} + +.aside-light .menu .menu-title { + font-weight: 500 +} + +@media (min-width:992px) { + .content { + padding: 30px 0 + } + + .toolbar-enabled:not(.toolbar-fixed) .content { + padding-top: 0 + } +} + +@media (max-width:991.98px) { + .content { + padding: 15px 0 + } + + .toolbar-enabled:not(.toolbar-tablet-and-mobile-fixed) .content { + padding-top: 0 + } +} + +.footer { + background-color: #fff +} + +@media print { + .print-content-only { + padding: 0 !important; + background: 0 0 !important + } + + .print-content-only .container, + .print-content-only .container-fluid, + .print-content-only .container-lg, + .print-content-only .container-md, + .print-content-only .container-sm, + .print-content-only .container-xl, + .print-content-only .container-xxl, + .print-content-only .docs-page, + .print-content-only .docs-page-title .docs-content, + .print-content-only .docs-wrapper { + background: 0 0 !important; + padding: 0 !important; + margin: 0 !important + } + + .print-content-only .btn, + .print-content-only .docs-aside, + .print-content-only .docs-header, + .print-content-only .drawer, + .print-content-only docs- .scrolltop { + display: none !important + } +} + +.docs-wrapper { + background-color: #f5f8fa +} + +@media (min-width:992px) { + + .container, + .container-fluid, + .container-lg, + .container-md, + .container-sm, + .container-xl, + .container-xxl { + padding: 0 30px + } + + .docs-wrapper { + padding-left: 265px + } +} + +@media (max-width:991.98px) { + + .container, + .container-fluid, + .container-lg, + .container-md, + .container-sm, + .container-xl, + .container-xxl { + max-width: none; + padding: 0 15px + } +} + +@media (min-width:992px) { + .docs-header { + display: flex; + justify-content: space-between; + align-items: center + } +} + +@media (max-width:991.98px) { + .docs-header { + display: flex; + justify-content: space-between; + align-items: center + } + + .docs-header .docs-page-title[data-kt-swapper=true] { + display: none !important + } +} + +.docs-aside { + display: flex; + flex-direction: column; + box-shadow: 0 0 28px 0 rgba(82, 63, 105, .025); + background-color: #fff; + padding: 0 +} + +@media (min-width:992px) { + .docs-aside { + position: fixed; + top: 0; + bottom: 0; + left: 0; + z-index: 101; + overflow: hidden; + width: 265px + } + + .docs-aside .docs-aside-logo { + display: flex; + justify-content: space-between; + align-items: center; + padding: 0 25px + } + + .docs-aside .docs-aside-menu { + width: 265px + } +} + +@media (max-width:991.98px) { + .docs-aside { + display: none + } + + .docs-aside .docs-aside-logo { + display: none + } +} + +.docs-aside-menu .menu .menu-item .menu-content, +.docs-aside-menu .menu .menu-item .menu-link { + padding-left: 25px; + padding-right: 25px +} + +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(.75rem + 25px) +} + +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(1.5rem + 25px) +} + +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(2.25rem + 25px) +} + +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(3rem + 25px) +} + +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: .75rem; + padding-right: 0 +} + +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(1.5rem); + padding-right: 0 +} + +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(2.25rem); + padding-right: 0 +} + +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content, +.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link { + padding-left: calc(3rem); + padding-right: 0 +} + +.docs-aside-menu .menu-item { + padding: 0 +} + +.docs-aside-menu .menu-item .menu-link { + font-weight: 500; + padding-top: .75rem; + padding-bottom: .75rem +} + +.docs-aside-menu .menu-item .menu-icon { + justify-content: flex-start +} + +.card.card-docs { + background-color: #fff; + border: 0 +} \ No newline at end of file diff --git a/Mid-term/public/assets/css/style.bundle.rtl.css b/Mid-term/public/assets/css/style.bundle.rtl.css new file mode 100644 index 000000000..c407aeb97 --- /dev/null +++ b/Mid-term/public/assets/css/style.bundle.rtl.css @@ -0,0 +1 @@ +@charset "UTF-8";:root{--bs-blue:#009ef6;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-gray:#7E8299;--bs-gray-dark:#3F4254;--bs-gray-100:#F5F8FA;--bs-gray-200:#EFF2F5;--bs-gray-300:#E4E6EF;--bs-gray-400:#B5B5C3;--bs-gray-500:#A1A5B7;--bs-gray-600:#7E8299;--bs-gray-700:#5E6278;--bs-gray-800:#3F4254;--bs-gray-900:#181C32;--bs-white:#ffffff;--bs-light:#F5F8FA;--bs-primary:#009EF7;--bs-secondary:#E4E6EF;--bs-success:#50CD89;--bs-info:#7239EA;--bs-warning:#FFC700;--bs-danger:#F1416C;--bs-dark:#181C32;--bs-white-rgb:255,255,255;--bs-light-rgb:245,248,250;--bs-primary-rgb:0,158,247;--bs-secondary-rgb:228,230,239;--bs-success-rgb:80,205,137;--bs-info-rgb:114,57,234;--bs-warning-rgb:255,199,0;--bs-danger-rgb:241,65,108;--bs-dark-rgb:24,28,50;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:24,28,50;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:Poppins,Helvetica,"sans-serif";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#181C32;--bs-body-bg:#ffffff}*,::after,::before{box-sizing:border-box}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:600;line-height:1.2;color:#181c32}.h1,h1{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h1,h1{font-size:1.75rem}}.h2,h2{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h2,h2{font-size:1.5rem}}.h3,h3{font-size:calc(1.26rem + .12vw)}@media (min-width:1200px){.h3,h3{font-size:1.35rem}}.h4,h4{font-size:1.25rem}.h5,h5{font-size:1.15rem}.h6,h6{font-size:1.075rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:500}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:600}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#009ef7;text-decoration:none}a:hover{color:#006dab;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#b93993;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#181c32;border-radius:.325rem}kbd kbd{padding:0;font-size:1em;font-weight:500}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#a1a5b7;text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=email],[type=number],[type=tel],[type=url]{direction:ltr}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-right:0;list-style:none}.list-inline{padding-right:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-left:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#7e8299}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #e4e6ef;border-radius:.475rem;box-shadow:0 .1rem 1rem .25rem rgba(0,0,0,.05);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#7e8299}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-left:var(--bs-gutter-x,1.5rem);padding-right:var(--bs-gutter-x,1.5rem);margin-left:auto;margin-right:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-left:calc(-.5 * var(--bs-gutter-x));margin-right:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--bs-gutter-x) * .5);padding-right:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.33333333%}.offset-2{margin-right:16.66666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.33333333%}.offset-5{margin-right:41.66666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.33333333%}.offset-8{margin-right:66.66666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.33333333%}.offset-11{margin-right:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0rem}.g-0,.gy-0{--bs-gutter-y:0rem}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:0.75rem}.g-3,.gy-3{--bs-gutter-y:0.75rem}.g-4,.gx-4{--bs-gutter-x:1rem}.g-4,.gy-4{--bs-gutter-y:1rem}.g-5,.gx-5{--bs-gutter-x:1.25rem}.g-5,.gy-5{--bs-gutter-y:1.25rem}.g-6,.gx-6{--bs-gutter-x:1.5rem}.g-6,.gy-6{--bs-gutter-y:1.5rem}.g-7,.gx-7{--bs-gutter-x:1.75rem}.g-7,.gy-7{--bs-gutter-y:1.75rem}.g-8,.gx-8{--bs-gutter-x:2rem}.g-8,.gy-8{--bs-gutter-y:2rem}.g-9,.gx-9{--bs-gutter-x:2.25rem}.g-9,.gy-9{--bs-gutter-y:2.25rem}.g-10,.gx-10{--bs-gutter-x:2.5rem}.g-10,.gy-10{--bs-gutter-y:2.5rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.33333333%}.offset-sm-2{margin-right:16.66666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.33333333%}.offset-sm-5{margin-right:41.66666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.33333333%}.offset-sm-8{margin-right:66.66666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.33333333%}.offset-sm-11{margin-right:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0rem}.g-sm-0,.gy-sm-0{--bs-gutter-y:0rem}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:0.75rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:0.75rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:1.25rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:1.25rem}.g-sm-6,.gx-sm-6{--bs-gutter-x:1.5rem}.g-sm-6,.gy-sm-6{--bs-gutter-y:1.5rem}.g-sm-7,.gx-sm-7{--bs-gutter-x:1.75rem}.g-sm-7,.gy-sm-7{--bs-gutter-y:1.75rem}.g-sm-8,.gx-sm-8{--bs-gutter-x:2rem}.g-sm-8,.gy-sm-8{--bs-gutter-y:2rem}.g-sm-9,.gx-sm-9{--bs-gutter-x:2.25rem}.g-sm-9,.gy-sm-9{--bs-gutter-y:2.25rem}.g-sm-10,.gx-sm-10{--bs-gutter-x:2.5rem}.g-sm-10,.gy-sm-10{--bs-gutter-y:2.5rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.33333333%}.offset-md-2{margin-right:16.66666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.33333333%}.offset-md-5{margin-right:41.66666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.33333333%}.offset-md-8{margin-right:66.66666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.33333333%}.offset-md-11{margin-right:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0rem}.g-md-0,.gy-md-0{--bs-gutter-y:0rem}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:0.75rem}.g-md-3,.gy-md-3{--bs-gutter-y:0.75rem}.g-md-4,.gx-md-4{--bs-gutter-x:1rem}.g-md-4,.gy-md-4{--bs-gutter-y:1rem}.g-md-5,.gx-md-5{--bs-gutter-x:1.25rem}.g-md-5,.gy-md-5{--bs-gutter-y:1.25rem}.g-md-6,.gx-md-6{--bs-gutter-x:1.5rem}.g-md-6,.gy-md-6{--bs-gutter-y:1.5rem}.g-md-7,.gx-md-7{--bs-gutter-x:1.75rem}.g-md-7,.gy-md-7{--bs-gutter-y:1.75rem}.g-md-8,.gx-md-8{--bs-gutter-x:2rem}.g-md-8,.gy-md-8{--bs-gutter-y:2rem}.g-md-9,.gx-md-9{--bs-gutter-x:2.25rem}.g-md-9,.gy-md-9{--bs-gutter-y:2.25rem}.g-md-10,.gx-md-10{--bs-gutter-x:2.5rem}.g-md-10,.gy-md-10{--bs-gutter-y:2.5rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.33333333%}.offset-lg-2{margin-right:16.66666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.33333333%}.offset-lg-5{margin-right:41.66666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.33333333%}.offset-lg-8{margin-right:66.66666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.33333333%}.offset-lg-11{margin-right:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0rem}.g-lg-0,.gy-lg-0{--bs-gutter-y:0rem}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:0.75rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:0.75rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:1.25rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:1.25rem}.g-lg-6,.gx-lg-6{--bs-gutter-x:1.5rem}.g-lg-6,.gy-lg-6{--bs-gutter-y:1.5rem}.g-lg-7,.gx-lg-7{--bs-gutter-x:1.75rem}.g-lg-7,.gy-lg-7{--bs-gutter-y:1.75rem}.g-lg-8,.gx-lg-8{--bs-gutter-x:2rem}.g-lg-8,.gy-lg-8{--bs-gutter-y:2rem}.g-lg-9,.gx-lg-9{--bs-gutter-x:2.25rem}.g-lg-9,.gy-lg-9{--bs-gutter-y:2.25rem}.g-lg-10,.gx-lg-10{--bs-gutter-x:2.5rem}.g-lg-10,.gy-lg-10{--bs-gutter-y:2.5rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.33333333%}.offset-xl-2{margin-right:16.66666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.33333333%}.offset-xl-5{margin-right:41.66666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.33333333%}.offset-xl-8{margin-right:66.66666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.33333333%}.offset-xl-11{margin-right:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0rem}.g-xl-0,.gy-xl-0{--bs-gutter-y:0rem}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:0.75rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:0.75rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:1.25rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:1.25rem}.g-xl-6,.gx-xl-6{--bs-gutter-x:1.5rem}.g-xl-6,.gy-xl-6{--bs-gutter-y:1.5rem}.g-xl-7,.gx-xl-7{--bs-gutter-x:1.75rem}.g-xl-7,.gy-xl-7{--bs-gutter-y:1.75rem}.g-xl-8,.gx-xl-8{--bs-gutter-x:2rem}.g-xl-8,.gy-xl-8{--bs-gutter-y:2rem}.g-xl-9,.gx-xl-9{--bs-gutter-x:2.25rem}.g-xl-9,.gy-xl-9{--bs-gutter-y:2.25rem}.g-xl-10,.gx-xl-10{--bs-gutter-x:2.5rem}.g-xl-10,.gy-xl-10{--bs-gutter-y:2.5rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.33333333%}.offset-xxl-2{margin-right:16.66666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.33333333%}.offset-xxl-5{margin-right:41.66666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.33333333%}.offset-xxl-8{margin-right:66.66666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.33333333%}.offset-xxl-11{margin-right:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0rem}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0rem}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:0.75rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:0.75rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:1.25rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:1.25rem}.g-xxl-6,.gx-xxl-6{--bs-gutter-x:1.5rem}.g-xxl-6,.gy-xxl-6{--bs-gutter-y:1.5rem}.g-xxl-7,.gx-xxl-7{--bs-gutter-x:1.75rem}.g-xxl-7,.gy-xxl-7{--bs-gutter-y:1.75rem}.g-xxl-8,.gx-xxl-8{--bs-gutter-x:2rem}.g-xxl-8,.gy-xxl-8{--bs-gutter-y:2rem}.g-xxl-9,.gx-xxl-9{--bs-gutter-x:2.25rem}.g-xxl-9,.gy-xxl-9{--bs-gutter-y:2.25rem}.g-xxl-10,.gx-xxl-10{--bs-gutter-x:2.5rem}.g-xxl-10,.gy-xxl-10{--bs-gutter-y:2.5rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#181C32;--bs-table-striped-bg:rgba(245, 248, 250, 0.75);--bs-table-active-color:#181C32;--bs-table-active-bg:#F5F8FA;--bs-table-hover-color:#181C32;--bs-table-hover-bg:#F5F8FA;width:100%;margin-bottom:1rem;color:#181c32;vertical-align:top;border-color:#eff2f5}.table>:not(caption)>*>*{padding:.75rem .75rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.5rem .5rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#ccecfd;--bs-table-striped-bg:#c2e0f0;--bs-table-striped-color:#000000;--bs-table-active-bg:#b8d4e4;--bs-table-active-color:#000000;--bs-table-hover-bg:#bddaea;--bs-table-hover-color:#000000;color:#000;border-color:#b8d4e4}.table-secondary{--bs-table-bg:#fafafc;--bs-table-striped-bg:#eeeeef;--bs-table-striped-color:#000000;--bs-table-active-bg:#e1e1e3;--bs-table-active-color:#000000;--bs-table-hover-bg:#e7e7e9;--bs-table-hover-color:#000000;color:#000;border-color:#e1e1e3}.table-success{--bs-table-bg:#dcf5e7;--bs-table-striped-bg:#d1e9db;--bs-table-striped-color:#000000;--bs-table-active-bg:#c6ddd0;--bs-table-active-color:#000000;--bs-table-hover-bg:#cce3d6;--bs-table-hover-color:#000000;color:#000;border-color:#c6ddd0}.table-info{--bs-table-bg:#e3d7fb;--bs-table-striped-bg:#d8ccee;--bs-table-striped-color:#000000;--bs-table-active-bg:#ccc2e2;--bs-table-active-color:#000000;--bs-table-hover-bg:#d2c7e8;--bs-table-hover-color:#000000;color:#000;border-color:#ccc2e2}.table-warning{--bs-table-bg:#fff4cc;--bs-table-striped-bg:#f2e8c2;--bs-table-striped-color:#000000;--bs-table-active-bg:#e6dcb8;--bs-table-active-color:#000000;--bs-table-hover-bg:#ece2bd;--bs-table-hover-color:#000000;color:#000;border-color:#e6dcb8}.table-danger{--bs-table-bg:#fcd9e2;--bs-table-striped-bg:#efced7;--bs-table-striped-color:#000000;--bs-table-active-bg:#e3c3cb;--bs-table-active-color:#000000;--bs-table-hover-bg:#e9c9d1;--bs-table-hover-color:#000000;color:#000;border-color:#e3c3cb}.table-light{--bs-table-bg:#F5F8FA;--bs-table-striped-bg:#e9ecee;--bs-table-striped-color:#000000;--bs-table-active-bg:#dddfe1;--bs-table-active-color:#000000;--bs-table-hover-bg:#e3e5e7;--bs-table-hover-color:#000000;color:#000;border-color:#dddfe1}.table-dark{--bs-table-bg:#181C32;--bs-table-striped-bg:#24273c;--bs-table-striped-color:#ffffff;--bs-table-active-bg:#2f3347;--bs-table-active-color:#ffffff;--bs-table-hover-bg:#292d41;--bs-table-hover-color:#ffffff;color:#fff;border-color:#2f3347}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem;font-size:1.05rem;font-weight:500;color:#3f4254}.col-form-label{padding-top:calc(.75rem + 1px);padding-bottom:calc(.75rem + 1px);margin-bottom:0;font-size:inherit;font-weight:500;line-height:1.5;color:#3f4254}.col-form-label-lg{padding-top:calc(.825rem + 1px);padding-bottom:calc(.825rem + 1px);font-size:1.15rem}.col-form-label-sm{padding-top:calc(.55rem + 1px);padding-bottom:calc(.55rem + 1px);font-size:.925rem}.form-text{margin-top:.5rem;font-size:.925rem;color:#a1a5b7}.form-control{display:block;width:100%;padding:.75rem 1rem;font-size:1.1rem;font-weight:500;line-height:1.5;color:#5e6278;background-color:#fff;background-clip:padding-box;border:1px solid #e4e6ef;appearance:none;border-radius:.475rem;box-shadow:inset 0 1px 2px rgba(0,0,0,.075);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#5e6278;background-color:#fff;border-color:#b5b5c3;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 0 .25rem rgba(0,158,247,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::placeholder{color:#a1a5b7;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eff2f5;opacity:1}.form-control::file-selector-button{padding:.75rem 1rem;margin:-.75rem -1rem;margin-inline-end:1rem;color:#5e6278;background-color:#f5f8fa;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;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 (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e9ecee}.form-control::-webkit-file-upload-button{padding:.75rem 1rem;margin:-.75rem -1rem;margin-inline-end:1rem;color:#5e6278;background-color:#f5f8fa;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;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 (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#e9ecee}.form-control-plaintext{display:block;width:100%;padding:.75rem 0;margin-bottom:0;line-height:1.5;color:#5e6278;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{min-height:calc(1.5em + 1.1rem + 2px);padding:.55rem .75rem;font-size:.925rem;border-radius:.325rem}.form-control-sm::file-selector-button{padding:.55rem .75rem;margin:-.55rem -.75rem;margin-inline-end:.75rem}.form-control-sm::-webkit-file-upload-button{padding:.55rem .75rem;margin:-.55rem -.75rem;margin-inline-end:.75rem}.form-control-lg{min-height:calc(1.5em + 1.65rem + 2px);padding:.825rem 1.5rem;font-size:1.15rem;border-radius:.625rem}.form-control-lg::file-selector-button{padding:.825rem 1.5rem;margin:-.825rem -1.5rem;margin-inline-end:1.5rem}.form-control-lg::-webkit-file-upload-button{padding:.825rem 1.5rem;margin:-.825rem -1.5rem;margin-inline-end:1.5rem}textarea.form-control{min-height:calc(1.5em + 1.5rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + 1.1rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1.65rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.75rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.475rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.475rem}.form-select{display:block;width:100%;padding:.75rem 1rem .75rem 3rem;-moz-padding-start:calc(1rem - 3px);font-size:1.1rem;font-weight:500;line-height:1.5;color:#5e6278;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%237E8299' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:left 1rem center;background-size:16px 12px;border:1px solid #e4e6ef;border-radius:.475rem;box-shadow:inset 0 1px 2px rgba(0,0,0,.075);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#b5b5c3;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 0 .25rem rgba(0,158,247,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-left:1rem;background-image:none}.form-select:disabled{background-color:#eff2f5}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #5e6278}.form-select-sm{padding-top:.55rem;padding-bottom:.55rem;padding-right:.75rem;font-size:.925rem;border-radius:.325rem}.form-select-lg{padding-top:.825rem;padding-bottom:.825rem;padding-right:1.5rem;font-size:1.15rem;border-radius:.625rem}.form-check{display:block;min-height:1.5rem;padding-right:2.25rem;margin-bottom:.125rem}.form-check .form-check-input{float:right;margin-right:-2.25rem}.form-check-input{width:1.75rem;height:1.75rem;margin-top:-.125rem;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);appearance:none;color-adjust:exact;transition:background-color .15s ease-in-out,background-position .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-check-input{transition:none}}.form-check-input[type=checkbox]{border-radius:.45em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#b5b5c3;outline:0;box-shadow:none}.form-check-input:checked{background-color:#009ef7;border-color:#009ef7}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11' width='13' height='11' fill='none'%3e%3cpath d='M11.0426 1.02893C11.3258 0.695792 11.8254 0.655283 12.1585 0.938451C12.4917 1.22162 12.5322 1.72124 12.249 2.05437L5.51985 9.97104C5.23224 10.3094 4.72261 10.3451 4.3907 10.05L0.828197 6.88335C0.50141 6.59288 0.471975 6.09249 0.762452 5.7657C1.05293 5.43891 1.55332 5.40948 1.88011 5.69995L4.83765 8.32889L11.0426 1.02893Z' fill='%23FFFFFF'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23FFFFFF'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#009ef7;border-color:#009ef7;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-right:3.75rem}.form-switch .form-check-input{width:3.25rem;margin-right:-3.75rem;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='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:right center;border-radius:3.25rem;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{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='%23B5B5C3'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:left center;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='%23FFFFFF'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-left:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.6}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(0,158,247,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(0,158,247,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#009ef7;border:0;border-radius:1rem;box-shadow:0 .1rem .25rem rgba(0,0,0,.1);transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b3e2fd}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#e4e6ef;border-color:transparent;border-radius:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075)}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#009ef7;border:0;border-radius:1rem;box-shadow:0 .1rem .25rem rgba(0,0,0,.1);transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:#b3e2fd}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#e4e6ef;border-color:transparent;border-radius:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075)}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#a1a5b7}.form-range:disabled::-moz-range-thumb{background-color:#a1a5b7}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:add(3.75rem,2px);line-height:1.25}.form-floating>label{position:absolute;top:0;right:0;height:100%;padding:1rem 1rem;pointer-events:none;border:1px solid transparent;transform-origin:100% 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem 1rem}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:2.15rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:2.15rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:2.15rem;padding-bottom:.625rem}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.75rem 1rem;font-size:1.1rem;font-weight:500;line-height:1.5;color:#3f4254;text-align:center;white-space:nowrap;background-color:#f5f8fa;border:1px solid #e4e6ef;border-radius:.475rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.825rem 1.5rem;font-size:1.15rem;border-radius:.625rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.55rem .75rem;font-size:.925rem;border-radius:.325rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-left:4rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-left-radius:0;border-bottom-left-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}.valid-feedback{display:none;width:100%;margin-top:.5rem;font-size:.925rem;color:#50cd89}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.75rem 1rem;margin-top:.1rem;font-size:.925rem;color:#000;background-color:#50cd89;border-radius:.475rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#50cd89;padding-left:calc(1.5em + 1.5rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2350CD89' 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:left calc(.375em + .375rem) center;background-size:calc(.75em + .75rem) calc(.75em + .75rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#50cd89;box-shadow:0 0 0 .25rem rgba(80,205,137,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-left:calc(1.5em + 1.5rem);background-position:top calc(.375em + .375rem) left calc(.375em + .375rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#50cd89}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-left:5.5rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%237E8299' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2350CD89' 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-position:left 1rem center,center left 3rem;background-size:16px 12px,calc(.75em + .75rem) calc(.75em + .75rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#50cd89;box-shadow:0 0 0 .25rem rgba(80,205,137,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#50cd89}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#50cd89}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(80,205,137,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#50cd89}.form-check-inline .form-check-input~.valid-feedback{margin-right:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.5rem;font-size:.925rem;color:#f1416c}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.75rem 1rem;margin-top:.1rem;font-size:.925rem;color:#000;background-color:#f1416c;border-radius:.475rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#f1416c;padding-left:calc(1.5em + 1.5rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F1416C'%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='%23F1416C' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:left calc(.375em + .375rem) center;background-size:calc(.75em + .75rem) calc(.75em + .75rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#f1416c;box-shadow:0 0 0 .25rem rgba(241,65,108,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-left:calc(1.5em + 1.5rem);background-position:top calc(.375em + .375rem) left calc(.375em + .375rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#f1416c}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-left:5.5rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%237E8299' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F1416C'%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='%23F1416C' stroke='none'/%3e%3c/svg%3e");background-position:left 1rem center,center left 3rem;background-size:16px 12px,calc(.75em + .75rem) calc(.75em + .75rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#f1416c;box-shadow:0 0 0 .25rem rgba(241,65,108,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#f1416c}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#f1416c}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(241,65,108,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#f1416c}.form-check-inline .form-check-input~.invalid-feedback{margin-right:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:500;line-height:1.5;color:#181c32;text-align:center;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.75rem 1.5rem;font-size:1.1rem;border-radius:.475rem;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 (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#181c32;text-decoration:none}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(0,158,247,.25)}.btn-check:active+.btn,.btn-check:checked+.btn,.btn.active,.btn:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-check:active+.btn:focus,.btn-check:checked+.btn:focus,.btn.active:focus,.btn:active:focus{box-shadow:0 0 0 .25rem rgba(0,158,247,.25),inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.6;box-shadow:none}.btn-white{color:#000;background-color:#fff;border-color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus{color:#000;background-color:#fff;border-color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(217,217,217,.5)}.btn-check:active+.btn-white,.btn-check:checked+.btn-white,.btn-white.active,.btn-white:active,.show>.btn-white.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-white:focus,.btn-check:checked+.btn-white:focus,.btn-white.active:focus,.btn-white:active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(217,217,217,.5)}.btn-white.disabled,.btn-white:disabled{color:#000;background-color:#fff;border-color:#fff}.btn-light{color:#000;background-color:#f5f8fa;border-color:#f5f8fa;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-light:hover{color:#000;background-color:#f7f9fb;border-color:#f6f9fb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f7f9fb;border-color:#f6f9fb;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(208,211,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f7f9fb;border-color:#f6f9fb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(208,211,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f5f8fa;border-color:#f5f8fa}.btn-primary{color:#000;background-color:#009ef7;border-color:#009ef7;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-primary:hover{color:#000;background-color:#26adf8;border-color:#1aa8f8}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#000;background-color:#26adf8;border-color:#1aa8f8;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(0,134,210,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#000;background-color:#33b1f9;border-color:#1aa8f8}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(0,134,210,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#000;background-color:#009ef7;border-color:#009ef7}.btn-secondary{color:#000;background-color:#e4e6ef;border-color:#e4e6ef;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-secondary:hover{color:#000;background-color:#e8eaf1;border-color:#e7e9f1}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#000;background-color:#e8eaf1;border-color:#e7e9f1;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(194,196,203,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#000;background-color:#e9ebf2;border-color:#e7e9f1}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(194,196,203,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#000;background-color:#e4e6ef;border-color:#e4e6ef}.btn-success{color:#000;background-color:#50cd89;border-color:#50cd89;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-success:hover{color:#000;background-color:#6ad59b;border-color:#62d295}.btn-check:focus+.btn-success,.btn-success:focus{color:#000;background-color:#6ad59b;border-color:#62d295;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(68,174,116,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#000;background-color:#73d7a1;border-color:#62d295}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(68,174,116,.5)}.btn-success.disabled,.btn-success:disabled{color:#000;background-color:#50cd89;border-color:#50cd89}.btn-info{color:#fff;background-color:#7239ea;border-color:#7239ea;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-info:hover{color:#fff;background-color:#6130c7;border-color:#5b2ebb}.btn-check:focus+.btn-info,.btn-info:focus{color:#fff;background-color:#6130c7;border-color:#5b2ebb;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(135,87,237,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#5b2ebb;border-color:#562bb0}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(135,87,237,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#7239ea;border-color:#7239ea}.btn-warning{color:#000;background-color:#ffc700;border-color:#ffc700;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-warning:hover{color:#000;background-color:#ffcf26;border-color:#ffcd1a}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffcf26;border-color:#ffcd1a;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(217,169,0,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffd233;border-color:#ffcd1a}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(217,169,0,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc700;border-color:#ffc700}.btn-danger{color:#000;background-color:#f1416c;border-color:#f1416c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger:hover{color:#000;background-color:#f35e82;border-color:#f2547b}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#000;background-color:#f35e82;border-color:#f2547b;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(205,55,92,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#000;background-color:#f46789;border-color:#f2547b}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(205,55,92,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#000;background-color:#f1416c;border-color:#f1416c}.btn-dark{color:#fff;background-color:#181c32;border-color:#181c32;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-dark:hover{color:#fff;background-color:#14182b;border-color:#131628}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#14182b;border-color:#131628;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(59,62,81,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#131628;border-color:#121526}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(59,62,81,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#181c32;border-color:#181c32}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-white,.btn-outline-white:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-check:active+.btn-outline-white,.btn-check:checked+.btn-outline-white,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show,.btn-outline-white:active{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-outline-white:focus,.btn-check:checked+.btn-outline-white:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus,.btn-outline-white:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(255,255,255,.5)}.btn-outline-white.disabled,.btn-outline-white:disabled{color:#fff;background-color:transparent}.btn-outline-light{color:#f5f8fa;border-color:#f5f8fa}.btn-outline-light:hover{color:#000;background-color:#f5f8fa;border-color:#f5f8fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(245,248,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f5f8fa;border-color:#f5f8fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(245,248,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f5f8fa;background-color:transparent}.btn-outline-primary{color:#009ef7;border-color:#009ef7}.btn-outline-primary:hover{color:#000;background-color:#009ef7;border-color:#009ef7}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(0,158,247,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#000;background-color:#009ef7;border-color:#009ef7}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(0,158,247,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#009ef7;background-color:transparent}.btn-outline-secondary{color:#e4e6ef;border-color:#e4e6ef}.btn-outline-secondary:hover{color:#000;background-color:#e4e6ef;border-color:#e4e6ef}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(228,230,239,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#000;background-color:#e4e6ef;border-color:#e4e6ef}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(228,230,239,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#e4e6ef;background-color:transparent}.btn-outline-success{color:#50cd89;border-color:#50cd89}.btn-outline-success:hover{color:#000;background-color:#50cd89;border-color:#50cd89}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(80,205,137,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#000;background-color:#50cd89;border-color:#50cd89}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(80,205,137,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#50cd89;background-color:transparent}.btn-outline-info{color:#7239ea;border-color:#7239ea}.btn-outline-info:hover{color:#fff;background-color:#7239ea;border-color:#7239ea}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(114,57,234,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#fff;background-color:#7239ea;border-color:#7239ea}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(114,57,234,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#7239ea;background-color:transparent}.btn-outline-warning{color:#ffc700;border-color:#ffc700}.btn-outline-warning:hover{color:#000;background-color:#ffc700;border-color:#ffc700}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,199,0,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc700;border-color:#ffc700}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(255,199,0,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc700;background-color:transparent}.btn-outline-danger{color:#f1416c;border-color:#f1416c}.btn-outline-danger:hover{color:#000;background-color:#f1416c;border-color:#f1416c}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(241,65,108,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#000;background-color:#f1416c;border-color:#f1416c}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(241,65,108,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#f1416c;background-color:transparent}.btn-outline-dark{color:#181c32;border-color:#181c32}.btn-outline-dark:hover{color:#fff;background-color:#181c32;border-color:#181c32}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(24,28,50,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#181c32;border-color:#181c32}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(24,28,50,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#181c32;background-color:transparent}.btn-link{font-weight:400;color:#009ef7;text-decoration:none}.btn-link:hover{color:#006dab;text-decoration:underline}.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#7e8299}.btn-group-lg>.btn,.btn-lg{padding:.825rem 1.75rem;font-size:1.15rem;border-radius:.625rem}.btn-group-sm>.btn,.btn-sm{padding:.55rem 1.25rem;font-size:.925rem;border-radius:.325rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-left:.3em solid transparent;border-bottom:0;border-right:.3em solid transparent}.dropdown-toggle:empty::after{margin-right:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#181c32;text-align:right;list-style:none;background-color:#fff;background-clip:padding-box;border:0 solid rgba(0,0,0,.15);border-radius:.475rem;box-shadow:0 0 50px 0 rgba(82,63,105,.15)}.dropdown-menu[data-bs-popper]{top:100%;right:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{left:0;right:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{left:0;right:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{left:0;right:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{left:0;right:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{left:0;right:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{left:0;right:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:0;border-left:.3em solid transparent;border-bottom:.3em solid;border-right:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-right:0}.dropend .dropdown-menu[data-bs-popper]{top:0;left:auto;right:100%;margin-top:0;margin-right:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:0;border-bottom:.3em solid transparent;border-right:.3em solid}.dropend .dropdown-toggle:empty::after{margin-right:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;left:100%;right:auto;margin-top:0;margin-left:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-right:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#181c32;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16192d;text-decoration:none;background-color:#eff2f5}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#009ef7}.dropdown-item.disabled,.dropdown-item:disabled{color:#a1a5b7;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.925rem;color:#7e8299;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#181c32}.dropdown-menu-dark{color:#e4e6ef;background-color:#3f4254;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#e4e6ef}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#009ef7}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#a1a5b7}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#e4e6ef}.dropdown-menu-dark .dropdown-header{color:#a1a5b7}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-right:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-right-radius:0;border-bottom-right-radius:0}.dropdown-toggle-split{padding-left:1.125rem;padding-right:1.125rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-right:0}.dropstart .dropdown-toggle-split::before{margin-left:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.9375rem;padding-right:.9375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:1.3125rem;padding-right:1.3125rem}.btn-group.show .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.show .dropdown-toggle.btn-link{box-shadow:none}.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-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-right-radius:0;border-top-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#009ef7;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#006dab;text-decoration:none}.nav-link.disabled{color:#7e8299;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #eff2f5}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-right-radius:.475rem;border-top-left-radius:.475rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#eff2f5 #eff2f5 #eff2f5;isolation:isolate}.nav-tabs .nav-link.disabled{color:#7e8299;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#5e6278;background-color:#fff;border-color:#e4e6ef #e4e6ef #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.475rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#009ef7}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.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-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.44375rem;padding-bottom:.44375rem;margin-left:1rem;font-size:1.075rem;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{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.075rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.475rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap: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-left:.5rem;padding-right:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap: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-left:.5rem;padding-right:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap: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-left:.5rem;padding-right:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap: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-left:.5rem;padding-right:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.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,.55)}.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 .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%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,.55)}.navbar-light .navbar-text a,.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,.55)}.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 .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%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,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{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 #eff2f5;border-radius:.625rem;box-shadow:0 0 20px 0 rgba(76,87,125,.02)}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-right-radius:calc(.625rem - 1px);border-top-left-radius:calc(.625rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-left-radius:calc(.625rem - 1px);border-bottom-right-radius:calc(.625rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-right:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:#fff;border-bottom:1px solid #eff2f5}.card-header:first-child{border-radius:calc(.625rem - 1px) calc(.625rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:#fff;border-top:1px solid #eff2f5}.card-footer:last-child{border-radius:0 0 calc(.625rem - 1px) calc(.625rem - 1px)}.card-header-tabs{margin-left:-.5rem;margin-bottom:-.5rem;margin-right:-.5rem;border-bottom:0}.card-header-pills{margin-left:-.5rem;margin-right:-.5rem}.card-img-overlay{position:absolute;top:0;left:0;bottom:0;right:0;padding:1rem;border-radius:calc(.625rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-right-radius:calc(.625rem - 1px);border-top-left-radius:calc(.625rem - 1px)}.card-img,.card-img-bottom{border-bottom-left-radius:calc(.625rem - 1px);border-bottom-right-radius:calc(.625rem - 1px)}.card-group>.card{margin-bottom:.75rem}@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-right:0;border-right:0}.card-group>.card:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-right-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1.5rem 1.5rem;font-size:1rem;color:#181c32;text-align:right;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#009ef7;background-color:#f5f8fa;box-shadow:inset 0 -1px 0 #eff2f5}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(180deg)}.accordion-button::after{flex-shrink:0;width:1.15rem;height:1.15rem;margin-right:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23181C32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.15rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#eff2f5;outline:0;box-shadow:none}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid #eff2f5}.accordion-item:first-of-type{border-top-right-radius:.475rem;border-top-left-radius:.475rem}.accordion-item:first-of-type .accordion-button{border-top-right-radius:calc(.475rem - 1px);border-top-left-radius:calc(.475rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-left-radius:.475rem;border-bottom-right-radius:.475rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-left-radius:calc(.475rem - 1px);border-bottom-right-radius:calc(.475rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-left-radius:.475rem;border-bottom-right-radius:.475rem}.accordion-body{padding:1.5rem 1.5rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-left:0;border-right:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-right:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:right;padding-left:.5rem;color:#7e8299;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#009ef7}.pagination{display:flex;padding-right:0;list-style:none}.page-link{position:relative;display:block;color:#5e6278;background-color:transparent;border:0 solid transparent;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 (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#009ef7;text-decoration:none;background-color:#f1faff;border-color:transparent}.page-link:focus{z-index:3;color:#009ef7;background-color:#f1faff;outline:0;box-shadow:none}.page-item:not(:first-child) .page-link{margin-right:0}.page-item.active .page-link{z-index:3;color:#fff;background-color:#009ef7;border-color:transparent}.page-item.disabled .page-link{color:#b5b5c3;pointer-events:none;background-color:transparent;border-color:transparent}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-right-radius:.475rem;border-bottom-right-radius:.475rem}.page-item:last-child .page-link{border-top-left-radius:.475rem;border-bottom-left-radius:.475rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.075rem}.pagination-lg .page-item:first-child .page-link{border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.pagination-lg .page-item:last-child .page-link{border-top-left-radius:.625rem;border-bottom-left-radius:.625rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.925rem}.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.325rem;border-bottom-right-radius:.325rem}.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.325rem;border-bottom-left-radius:.325rem}.badge{display:inline-block;padding:.325rem .5rem;font-size:.85rem;font-weight:600;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.325rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.475rem}.alert-heading{color:inherit}.alert-link{font-weight:500}.alert-dismissible{padding-left:3rem}.alert-dismissible .btn-close{position:absolute;top:0;left:0;z-index:2;padding:1.25rem 1rem}.alert-white{color:#666;background-color:#fff;border-color:#fff}.alert-white .alert-link{color:#525252}.alert-light{color:#626364;background-color:#fdfefe;border-color:#fcfdfe}.alert-light .alert-link{color:#4e4f50}.alert-primary{color:#005f94;background-color:#ccecfd;border-color:#b3e2fd}.alert-primary .alert-link{color:#004c76}.alert-secondary{color:#5b5c60;background-color:#fafafc;border-color:#f7f8fa}.alert-secondary .alert-link{color:#494a4d}.alert-success{color:#205237;background-color:#dcf5e7;border-color:#cbf0dc}.alert-success .alert-link{color:#1a422c}.alert-info{color:#44228c;background-color:#e3d7fb;border-color:#d5c4f9}.alert-info .alert-link{color:#361b70}.alert-warning{color:#665000;background-color:#fff4cc;border-color:#ffeeb3}.alert-warning .alert-link{color:#524000}.alert-danger{color:#912741;background-color:#fcd9e2;border-color:#fbc6d3}.alert-danger .alert-link{color:#741f34}.alert-dark{color:#0e111e;background-color:#d1d2d6;border-color:#babbc2}.alert-dark .alert-link{color:#0b0e18}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#f5f8fa;border-radius:6px;box-shadow:none}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#009ef7;transition:width .6s ease}@media (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{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;border-radius:.475rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#5e6278;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#5e6278;text-decoration:none;background-color:#f5f8fa}.list-group-item-action:active{color:#181c32;background-color:#eff2f5}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#181c32;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-right-radius:inherit;border-top-left-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#7e8299;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#009ef7;border-color:#009ef7}.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-right-radius:.475rem;border-top-left-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-left-radius:.475rem;border-bottom-right-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-right-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-right-radius:.475rem;border-top-left-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-left-radius:.475rem;border-bottom-right-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-right-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-right-radius:.475rem;border-top-left-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-left-radius:.475rem;border-bottom-right-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-right-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-right-radius:.475rem;border-top-left-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-left-radius:.475rem;border-bottom-right-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-right-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-right-radius:.475rem;border-top-left-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-left-radius:.475rem;border-bottom-right-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-right-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-right-radius:.475rem;border-top-left-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-left-radius:.475rem;border-bottom-right-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-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-white{color:#666;background-color:#fff}.list-group-item-white.list-group-item-action:focus,.list-group-item-white.list-group-item-action:hover{color:#666;background-color:#e6e6e6}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.list-group-item-light{color:#626364;background-color:#fdfefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#626364;background-color:#e4e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#626364;border-color:#626364}.list-group-item-primary{color:#005f94;background-color:#ccecfd}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#005f94;background-color:#b8d4e4}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#005f94;border-color:#005f94}.list-group-item-secondary{color:#5b5c60;background-color:#fafafc}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#5b5c60;background-color:#e1e1e3}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#5b5c60;border-color:#5b5c60}.list-group-item-success{color:#205237;background-color:#dcf5e7}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#205237;background-color:#c6ddd0}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#205237;border-color:#205237}.list-group-item-info{color:#44228c;background-color:#e3d7fb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#44228c;background-color:#ccc2e2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#44228c;border-color:#44228c}.list-group-item-warning{color:#665000;background-color:#fff4cc}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#665000;background-color:#e6dcb8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#665000;border-color:#665000}.list-group-item-danger{color:#912741;background-color:#fcd9e2}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#912741;background-color:#e3c3cb}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#912741;border-color:#912741}.list-group-item-dark{color:#0e111e;background-color:#d1d2d6}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#0e111e;background-color:#bcbdc1}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#0e111e;border-color:#0e111e}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.475rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(0,158,247,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1.5rem .5rem rgba(0,0,0,.075);border-radius:.475rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:1.5rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#7e8299;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-right-radius:calc(.475rem - 1px);border-top-left-radius:calc(.475rem - 1px)}.toast-header .btn-close{margin-left:-.375rem;margin-right:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;right:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .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{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:0 solid rgba(0,0,0,.2);border-radius:.475rem;box-shadow:0 .25rem .5rem rgba(0,0,0,.1);outline:0}.modal-backdrop{position:fixed;top:0;right:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.3}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1.75rem 1.75rem;border-bottom:1px solid #eff2f5;border-top-right-radius:.475rem;border-top-left-radius:.475rem}.modal-header .btn-close{padding:.875rem .875rem;margin:-.875rem auto -.875rem -.875rem}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1.75rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:1.5rem;border-top:1px solid #eff2f5;border-bottom-left-radius:.475rem;border-bottom-right-radius:.475rem}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-content{box-shadow:0 .5rem 1rem rgba(0,0,0,.1)}.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}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:right;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:.925rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:1}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#fff}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#fff}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#fff}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#fff}.tooltip-inner{max-width:200px;padding:.75rem 1rem;color:#3f4254;text-align:center;background-color:#fff;border-radius:.475rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:right;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:1rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid #fff;border-radius:.475rem;box-shadow:0 0 50px 0 rgba(82,63,105,.15)}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-.5rem;content:"";border-bottom:1px solid #fff}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.popover-header{padding:1rem 1.25rem;margin-bottom:0;font-size:1rem;color:#3f4254;background-color:#fff;border-bottom:1px solid #fff;border-top-right-radius:calc(.475rem - 1px);border-top-left-radius:calc(.475rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1.25rem 1.25rem;color:#3f4254}.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:right;width:100%;margin-left:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.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{right:0}.carousel-control-next{left:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;left:0;bottom:0;right:0;z-index:2;display:flex;justify-content:center;padding:0;margin-left:15%;margin-bottom:1rem;margin-right:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-left:3px;margin-right:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;left:15%;bottom:1.25rem;right:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.185em solid currentColor;border-left-color:transparent;border-radius:50%;animation:.65s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.145em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;animation:.65s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{animation-duration:1.3s}}.clearfix::after{display:block;clear:both;content:""}.link-white{color:#fff}.link-white:focus,.link-white:hover{color:#fff}.link-light{color:#f5f8fa}.link-light:focus,.link-light:hover{color:#f7f9fb}.link-primary{color:#009ef7}.link-primary:focus,.link-primary:hover{color:#33b1f9}.link-secondary{color:#e4e6ef}.link-secondary:focus,.link-secondary:hover{color:#e9ebf2}.link-success{color:#50cd89}.link-success:focus,.link-success:hover{color:#73d7a1}.link-info{color:#7239ea}.link-info:focus,.link-info:hover{color:#5b2ebb}.link-warning{color:#ffc700}.link-warning:focus,.link-warning:hover{color:#ffd233}.link-danger{color:#f1416c}.link-danger:focus,.link-danger:hover{color:#f46789}.link-dark{color:#181c32}.link-dark:focus,.link-dark:hover{color:#131628}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;right:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;left:0;right:0;z-index:1030}.fixed-bottom{position:fixed;left:0;bottom:0;right:0;z-index:1030}.sticky-top{position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.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}.float-start{float:right!important}.float-end{float:left!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-5{opacity:.05!important}.opacity-10{opacity:.1!important}.opacity-15{opacity:.15!important}.opacity-20{opacity:.2!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!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}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1.5rem .5rem rgba(0,0,0,.075)!important}.shadow-sm{box-shadow:0 .1rem 1rem .25rem rgba(0,0,0,.05)!important}.shadow-lg{box-shadow:0 1rem 2rem 1rem rgba(0,0,0,.1)!important}.shadow-none{box-shadow: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:sticky!important}.top-0{top:0!important}.top-25{top:25%!important}.top-50{top:50%!important}.top-75{top:75%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-25{bottom:25%!important}.bottom-50{bottom:50%!important}.bottom-75{bottom:75%!important}.bottom-100{bottom:100%!important}.start-0{right:0!important}.start-25{right:25%!important}.start-50{right:50%!important}.start-75{right:75%!important}.start-100{right:100%!important}.end-0{left:0!important}.end-25{left:25%!important}.end-50{left:50%!important}.end-75{left:75%!important}.end-100{left:100%!important}.translate-middle{transform:translate(50%,-50%)!important}.translate-middle-x{transform:translateX(50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #eff2f5!important}.border-0{border:0!important}.border-top{border-top:1px solid #eff2f5!important}.border-top-0{border-top:0!important}.border-end{border-left:1px solid #eff2f5!important}.border-end-0{border-left:0!important}.border-bottom{border-bottom:1px solid #eff2f5!important}.border-bottom-0{border-bottom:0!important}.border-start{border-right:1px solid #eff2f5!important}.border-start-0{border-right:0!important}.border-white{border-color:#fff!important}.border-light{border-color:#f5f8fa!important}.border-primary{border-color:#009ef7!important}.border-secondary{border-color:#e4e6ef!important}.border-success{border-color:#50cd89!important}.border-info{border-color:#7239ea!important}.border-warning{border-color:#ffc700!important}.border-danger{border-color:#f1416c!important}.border-dark{border-color:#181c32!important}.border-0{border-width:0!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-unset{width:unset!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}.w-1px{width:1px!important}.w-2px{width:2px!important}.w-3px{width:3px!important}.w-4px{width:4px!important}.w-5px{width:5px!important}.w-6px{width:6px!important}.w-7px{width:7px!important}.w-8px{width:8px!important}.w-9px{width:9px!important}.w-10px{width:10px!important}.w-15px{width:15px!important}.w-20px{width:20px!important}.w-25px{width:25px!important}.w-30px{width:30px!important}.w-35px{width:35px!important}.w-40px{width:40px!important}.w-45px{width:45px!important}.w-50px{width:50px!important}.w-55px{width:55px!important}.w-60px{width:60px!important}.w-65px{width:65px!important}.w-70px{width:70px!important}.w-75px{width:75px!important}.w-80px{width:80px!important}.w-85px{width:85px!important}.w-90px{width:90px!important}.w-95px{width:95px!important}.w-100px{width:100px!important}.w-125px{width:125px!important}.w-150px{width:150px!important}.w-175px{width:175px!important}.w-200px{width:200px!important}.w-225px{width:225px!important}.w-250px{width:250px!important}.w-275px{width:275px!important}.w-300px{width:300px!important}.w-325px{width:325px!important}.w-350px{width:350px!important}.w-375px{width:375px!important}.w-400px{width:400px!important}.w-425px{width:425px!important}.w-450px{width:450px!important}.w-475px{width:475px!important}.w-500px{width:500px!important}.w-550px{width:550px!important}.w-600px{width:600px!important}.w-650px{width:650px!important}.w-700px{width:700px!important}.w-750px{width:750px!important}.w-800px{width:800px!important}.w-850px{width:850px!important}.w-900px{width:900px!important}.w-950px{width:950px!important}.w-1000px{width:1000px!important}.mw-unset{max-width:unset!important}.mw-25{max-width:25%!important}.mw-50{max-width:50%!important}.mw-75{max-width:75%!important}.mw-100{max-width:100%!important}.mw-auto{max-width:auto!important}.mw-1px{max-width:1px!important}.mw-2px{max-width:2px!important}.mw-3px{max-width:3px!important}.mw-4px{max-width:4px!important}.mw-5px{max-width:5px!important}.mw-6px{max-width:6px!important}.mw-7px{max-width:7px!important}.mw-8px{max-width:8px!important}.mw-9px{max-width:9px!important}.mw-10px{max-width:10px!important}.mw-15px{max-width:15px!important}.mw-20px{max-width:20px!important}.mw-25px{max-width:25px!important}.mw-30px{max-width:30px!important}.mw-35px{max-width:35px!important}.mw-40px{max-width:40px!important}.mw-45px{max-width:45px!important}.mw-50px{max-width:50px!important}.mw-55px{max-width:55px!important}.mw-60px{max-width:60px!important}.mw-65px{max-width:65px!important}.mw-70px{max-width:70px!important}.mw-75px{max-width:75px!important}.mw-80px{max-width:80px!important}.mw-85px{max-width:85px!important}.mw-90px{max-width:90px!important}.mw-95px{max-width:95px!important}.mw-100px{max-width:100px!important}.mw-125px{max-width:125px!important}.mw-150px{max-width:150px!important}.mw-175px{max-width:175px!important}.mw-200px{max-width:200px!important}.mw-225px{max-width:225px!important}.mw-250px{max-width:250px!important}.mw-275px{max-width:275px!important}.mw-300px{max-width:300px!important}.mw-325px{max-width:325px!important}.mw-350px{max-width:350px!important}.mw-375px{max-width:375px!important}.mw-400px{max-width:400px!important}.mw-425px{max-width:425px!important}.mw-450px{max-width:450px!important}.mw-475px{max-width:475px!important}.mw-500px{max-width:500px!important}.mw-550px{max-width:550px!important}.mw-600px{max-width:600px!important}.mw-650px{max-width:650px!important}.mw-700px{max-width:700px!important}.mw-750px{max-width:750px!important}.mw-800px{max-width:800px!important}.mw-850px{max-width:850px!important}.mw-900px{max-width:900px!important}.mw-950px{max-width:950px!important}.mw-1000px{max-width:1000px!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-unset{height:unset!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}.h-1px{height:1px!important}.h-2px{height:2px!important}.h-3px{height:3px!important}.h-4px{height:4px!important}.h-5px{height:5px!important}.h-6px{height:6px!important}.h-7px{height:7px!important}.h-8px{height:8px!important}.h-9px{height:9px!important}.h-10px{height:10px!important}.h-15px{height:15px!important}.h-20px{height:20px!important}.h-25px{height:25px!important}.h-30px{height:30px!important}.h-35px{height:35px!important}.h-40px{height:40px!important}.h-45px{height:45px!important}.h-50px{height:50px!important}.h-55px{height:55px!important}.h-60px{height:60px!important}.h-65px{height:65px!important}.h-70px{height:70px!important}.h-75px{height:75px!important}.h-80px{height:80px!important}.h-85px{height:85px!important}.h-90px{height:90px!important}.h-95px{height:95px!important}.h-100px{height:100px!important}.h-125px{height:125px!important}.h-150px{height:150px!important}.h-175px{height:175px!important}.h-200px{height:200px!important}.h-225px{height:225px!important}.h-250px{height:250px!important}.h-275px{height:275px!important}.h-300px{height:300px!important}.h-325px{height:325px!important}.h-350px{height:350px!important}.h-375px{height:375px!important}.h-400px{height:400px!important}.h-425px{height:425px!important}.h-450px{height:450px!important}.h-475px{height:475px!important}.h-500px{height:500px!important}.h-550px{height:550px!important}.h-600px{height:600px!important}.h-650px{height:650px!important}.h-700px{height:700px!important}.h-750px{height:750px!important}.h-800px{height:800px!important}.h-850px{height:850px!important}.h-900px{height:900px!important}.h-950px{height:950px!important}.h-1000px{height:1000px!important}.mh-unset{max-height:unset!important}.mh-25{max-height:25%!important}.mh-50{max-height:50%!important}.mh-75{max-height:75%!important}.mh-100{max-height:100%!important}.mh-auto{max-height:auto!important}.mh-1px{max-height:1px!important}.mh-2px{max-height:2px!important}.mh-3px{max-height:3px!important}.mh-4px{max-height:4px!important}.mh-5px{max-height:5px!important}.mh-6px{max-height:6px!important}.mh-7px{max-height:7px!important}.mh-8px{max-height:8px!important}.mh-9px{max-height:9px!important}.mh-10px{max-height:10px!important}.mh-15px{max-height:15px!important}.mh-20px{max-height:20px!important}.mh-25px{max-height:25px!important}.mh-30px{max-height:30px!important}.mh-35px{max-height:35px!important}.mh-40px{max-height:40px!important}.mh-45px{max-height:45px!important}.mh-50px{max-height:50px!important}.mh-55px{max-height:55px!important}.mh-60px{max-height:60px!important}.mh-65px{max-height:65px!important}.mh-70px{max-height:70px!important}.mh-75px{max-height:75px!important}.mh-80px{max-height:80px!important}.mh-85px{max-height:85px!important}.mh-90px{max-height:90px!important}.mh-95px{max-height:95px!important}.mh-100px{max-height:100px!important}.mh-125px{max-height:125px!important}.mh-150px{max-height:150px!important}.mh-175px{max-height:175px!important}.mh-200px{max-height:200px!important}.mh-225px{max-height:225px!important}.mh-250px{max-height:250px!important}.mh-275px{max-height:275px!important}.mh-300px{max-height:300px!important}.mh-325px{max-height:325px!important}.mh-350px{max-height:350px!important}.mh-375px{max-height:375px!important}.mh-400px{max-height:400px!important}.mh-425px{max-height:425px!important}.mh-450px{max-height:450px!important}.mh-475px{max-height:475px!important}.mh-500px{max-height:500px!important}.mh-550px{max-height:550px!important}.mh-600px{max-height:600px!important}.mh-650px{max-height:650px!important}.mh-700px{max-height:700px!important}.mh-750px{max-height:750px!important}.mh-800px{max-height:800px!important}.mh-850px{max-height:850px!important}.mh-900px{max-height:900px!important}.mh-950px{max-height:950px!important}.mh-1000px{max-height:1000px!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.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-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}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:.75rem!important}.gap-4{gap:1rem!important}.gap-5{gap:1.25rem!important}.gap-6{gap:1.5rem!important}.gap-7{gap:1.75rem!important}.gap-8{gap:2rem!important}.gap-9{gap:2.25rem!important}.gap-10{gap:2.5rem!important}.gap-11{gap:2.75rem!important}.gap-12{gap:3rem!important}.gap-13{gap:3.25rem!important}.gap-14{gap:3.5rem!important}.gap-15{gap:3.75rem!important}.gap-16{gap:4rem!important}.gap-17{gap:4.25rem!important}.gap-18{gap:4.5rem!important}.gap-19{gap:4.75rem!important}.gap-20{gap:5rem!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}.justify-content-evenly{justify-content:space-evenly!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}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:.75rem!important}.m-4{margin:1rem!important}.m-5{margin:1.25rem!important}.m-6{margin:1.5rem!important}.m-7{margin:1.75rem!important}.m-8{margin:2rem!important}.m-9{margin:2.25rem!important}.m-10{margin:2.5rem!important}.m-11{margin:2.75rem!important}.m-12{margin:3rem!important}.m-13{margin:3.25rem!important}.m-14{margin:3.5rem!important}.m-15{margin:3.75rem!important}.m-16{margin:4rem!important}.m-17{margin:4.25rem!important}.m-18{margin:4.5rem!important}.m-19{margin:4.75rem!important}.m-20{margin:5rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.mx-4{margin-left:1rem!important;margin-right:1rem!important}.mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.mx-8{margin-left:2rem!important;margin-right:2rem!important}.mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.mx-12{margin-left:3rem!important;margin-right:3rem!important}.mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.mx-16{margin-left:4rem!important;margin-right:4rem!important}.mx-17{margin-left:4.25rem!important;margin-right:4.25rem!important}.mx-18{margin-left:4.5rem!important;margin-right:4.5rem!important}.mx-19{margin-left:4.75rem!important;margin-right:4.75rem!important}.mx-20{margin-left:5rem!important;margin-right:5rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:.75rem!important}.mt-4{margin-top:1rem!important}.mt-5{margin-top:1.25rem!important}.mt-6{margin-top:1.5rem!important}.mt-7{margin-top:1.75rem!important}.mt-8{margin-top:2rem!important}.mt-9{margin-top:2.25rem!important}.mt-10{margin-top:2.5rem!important}.mt-11{margin-top:2.75rem!important}.mt-12{margin-top:3rem!important}.mt-13{margin-top:3.25rem!important}.mt-14{margin-top:3.5rem!important}.mt-15{margin-top:3.75rem!important}.mt-16{margin-top:4rem!important}.mt-17{margin-top:4.25rem!important}.mt-18{margin-top:4.5rem!important}.mt-19{margin-top:4.75rem!important}.mt-20{margin-top:5rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-left:0!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-3{margin-left:.75rem!important}.me-4{margin-left:1rem!important}.me-5{margin-left:1.25rem!important}.me-6{margin-left:1.5rem!important}.me-7{margin-left:1.75rem!important}.me-8{margin-left:2rem!important}.me-9{margin-left:2.25rem!important}.me-10{margin-left:2.5rem!important}.me-11{margin-left:2.75rem!important}.me-12{margin-left:3rem!important}.me-13{margin-left:3.25rem!important}.me-14{margin-left:3.5rem!important}.me-15{margin-left:3.75rem!important}.me-16{margin-left:4rem!important}.me-17{margin-left:4.25rem!important}.me-18{margin-left:4.5rem!important}.me-19{margin-left:4.75rem!important}.me-20{margin-left:5rem!important}.me-auto{margin-left:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:.75rem!important}.mb-4{margin-bottom:1rem!important}.mb-5{margin-bottom:1.25rem!important}.mb-6{margin-bottom:1.5rem!important}.mb-7{margin-bottom:1.75rem!important}.mb-8{margin-bottom:2rem!important}.mb-9{margin-bottom:2.25rem!important}.mb-10{margin-bottom:2.5rem!important}.mb-11{margin-bottom:2.75rem!important}.mb-12{margin-bottom:3rem!important}.mb-13{margin-bottom:3.25rem!important}.mb-14{margin-bottom:3.5rem!important}.mb-15{margin-bottom:3.75rem!important}.mb-16{margin-bottom:4rem!important}.mb-17{margin-bottom:4.25rem!important}.mb-18{margin-bottom:4.5rem!important}.mb-19{margin-bottom:4.75rem!important}.mb-20{margin-bottom:5rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-right:0!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-3{margin-right:.75rem!important}.ms-4{margin-right:1rem!important}.ms-5{margin-right:1.25rem!important}.ms-6{margin-right:1.5rem!important}.ms-7{margin-right:1.75rem!important}.ms-8{margin-right:2rem!important}.ms-9{margin-right:2.25rem!important}.ms-10{margin-right:2.5rem!important}.ms-11{margin-right:2.75rem!important}.ms-12{margin-right:3rem!important}.ms-13{margin-right:3.25rem!important}.ms-14{margin-right:3.5rem!important}.ms-15{margin-right:3.75rem!important}.ms-16{margin-right:4rem!important}.ms-17{margin-right:4.25rem!important}.ms-18{margin-right:4.5rem!important}.ms-19{margin-right:4.75rem!important}.ms-20{margin-right:5rem!important}.ms-auto{margin-right:auto!important}.m-n1{margin:-.25rem!important}.m-n2{margin:-.5rem!important}.m-n3{margin:-.75rem!important}.m-n4{margin:-1rem!important}.m-n5{margin:-1.25rem!important}.m-n6{margin:-1.5rem!important}.m-n7{margin:-1.75rem!important}.m-n8{margin:-2rem!important}.m-n9{margin:-2.25rem!important}.m-n10{margin:-2.5rem!important}.m-n11{margin:-2.75rem!important}.m-n12{margin:-3rem!important}.m-n13{margin:-3.25rem!important}.m-n14{margin:-3.5rem!important}.m-n15{margin:-3.75rem!important}.m-n16{margin:-4rem!important}.m-n17{margin:-4.25rem!important}.m-n18{margin:-4.5rem!important}.m-n19{margin:-4.75rem!important}.m-n20{margin:-5rem!important}.mx-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-n3{margin-left:-.75rem!important;margin-right:-.75rem!important}.mx-n4{margin-left:-1rem!important;margin-right:-1rem!important}.mx-n5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.mx-n6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-n7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.mx-n8{margin-left:-2rem!important;margin-right:-2rem!important}.mx-n9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.mx-n10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.mx-n11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.mx-n12{margin-left:-3rem!important;margin-right:-3rem!important}.mx-n13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.mx-n14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.mx-n15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.mx-n16{margin-left:-4rem!important;margin-right:-4rem!important}.mx-n17{margin-left:-4.25rem!important;margin-right:-4.25rem!important}.mx-n18{margin-left:-4.5rem!important;margin-right:-4.5rem!important}.mx-n19{margin-left:-4.75rem!important;margin-right:-4.75rem!important}.mx-n20{margin-left:-5rem!important;margin-right:-5rem!important}.my-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-n1{margin-top:-.25rem!important}.mt-n2{margin-top:-.5rem!important}.mt-n3{margin-top:-.75rem!important}.mt-n4{margin-top:-1rem!important}.mt-n5{margin-top:-1.25rem!important}.mt-n6{margin-top:-1.5rem!important}.mt-n7{margin-top:-1.75rem!important}.mt-n8{margin-top:-2rem!important}.mt-n9{margin-top:-2.25rem!important}.mt-n10{margin-top:-2.5rem!important}.mt-n11{margin-top:-2.75rem!important}.mt-n12{margin-top:-3rem!important}.mt-n13{margin-top:-3.25rem!important}.mt-n14{margin-top:-3.5rem!important}.mt-n15{margin-top:-3.75rem!important}.mt-n16{margin-top:-4rem!important}.mt-n17{margin-top:-4.25rem!important}.mt-n18{margin-top:-4.5rem!important}.mt-n19{margin-top:-4.75rem!important}.mt-n20{margin-top:-5rem!important}.me-n1{margin-left:-.25rem!important}.me-n2{margin-left:-.5rem!important}.me-n3{margin-left:-.75rem!important}.me-n4{margin-left:-1rem!important}.me-n5{margin-left:-1.25rem!important}.me-n6{margin-left:-1.5rem!important}.me-n7{margin-left:-1.75rem!important}.me-n8{margin-left:-2rem!important}.me-n9{margin-left:-2.25rem!important}.me-n10{margin-left:-2.5rem!important}.me-n11{margin-left:-2.75rem!important}.me-n12{margin-left:-3rem!important}.me-n13{margin-left:-3.25rem!important}.me-n14{margin-left:-3.5rem!important}.me-n15{margin-left:-3.75rem!important}.me-n16{margin-left:-4rem!important}.me-n17{margin-left:-4.25rem!important}.me-n18{margin-left:-4.5rem!important}.me-n19{margin-left:-4.75rem!important}.me-n20{margin-left:-5rem!important}.mb-n1{margin-bottom:-.25rem!important}.mb-n2{margin-bottom:-.5rem!important}.mb-n3{margin-bottom:-.75rem!important}.mb-n4{margin-bottom:-1rem!important}.mb-n5{margin-bottom:-1.25rem!important}.mb-n6{margin-bottom:-1.5rem!important}.mb-n7{margin-bottom:-1.75rem!important}.mb-n8{margin-bottom:-2rem!important}.mb-n9{margin-bottom:-2.25rem!important}.mb-n10{margin-bottom:-2.5rem!important}.mb-n11{margin-bottom:-2.75rem!important}.mb-n12{margin-bottom:-3rem!important}.mb-n13{margin-bottom:-3.25rem!important}.mb-n14{margin-bottom:-3.5rem!important}.mb-n15{margin-bottom:-3.75rem!important}.mb-n16{margin-bottom:-4rem!important}.mb-n17{margin-bottom:-4.25rem!important}.mb-n18{margin-bottom:-4.5rem!important}.mb-n19{margin-bottom:-4.75rem!important}.mb-n20{margin-bottom:-5rem!important}.ms-n1{margin-right:-.25rem!important}.ms-n2{margin-right:-.5rem!important}.ms-n3{margin-right:-.75rem!important}.ms-n4{margin-right:-1rem!important}.ms-n5{margin-right:-1.25rem!important}.ms-n6{margin-right:-1.5rem!important}.ms-n7{margin-right:-1.75rem!important}.ms-n8{margin-right:-2rem!important}.ms-n9{margin-right:-2.25rem!important}.ms-n10{margin-right:-2.5rem!important}.ms-n11{margin-right:-2.75rem!important}.ms-n12{margin-right:-3rem!important}.ms-n13{margin-right:-3.25rem!important}.ms-n14{margin-right:-3.5rem!important}.ms-n15{margin-right:-3.75rem!important}.ms-n16{margin-right:-4rem!important}.ms-n17{margin-right:-4.25rem!important}.ms-n18{margin-right:-4.5rem!important}.ms-n19{margin-right:-4.75rem!important}.ms-n20{margin-right:-5rem!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:.75rem!important}.p-4{padding:1rem!important}.p-5{padding:1.25rem!important}.p-6{padding:1.5rem!important}.p-7{padding:1.75rem!important}.p-8{padding:2rem!important}.p-9{padding:2.25rem!important}.p-10{padding:2.5rem!important}.p-11{padding:2.75rem!important}.p-12{padding:3rem!important}.p-13{padding:3.25rem!important}.p-14{padding:3.5rem!important}.p-15{padding:3.75rem!important}.p-16{padding:4rem!important}.p-17{padding:4.25rem!important}.p-18{padding:4.5rem!important}.p-19{padding:4.75rem!important}.p-20{padding:5rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-4{padding-left:1rem!important;padding-right:1rem!important}.px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.px-8{padding-left:2rem!important;padding-right:2rem!important}.px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.px-12{padding-left:3rem!important;padding-right:3rem!important}.px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.px-16{padding-left:4rem!important;padding-right:4rem!important}.px-17{padding-left:4.25rem!important;padding-right:4.25rem!important}.px-18{padding-left:4.5rem!important;padding-right:4.5rem!important}.px-19{padding-left:4.75rem!important;padding-right:4.75rem!important}.px-20{padding-left:5rem!important;padding-right:5rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:.75rem!important}.pt-4{padding-top:1rem!important}.pt-5{padding-top:1.25rem!important}.pt-6{padding-top:1.5rem!important}.pt-7{padding-top:1.75rem!important}.pt-8{padding-top:2rem!important}.pt-9{padding-top:2.25rem!important}.pt-10{padding-top:2.5rem!important}.pt-11{padding-top:2.75rem!important}.pt-12{padding-top:3rem!important}.pt-13{padding-top:3.25rem!important}.pt-14{padding-top:3.5rem!important}.pt-15{padding-top:3.75rem!important}.pt-16{padding-top:4rem!important}.pt-17{padding-top:4.25rem!important}.pt-18{padding-top:4.5rem!important}.pt-19{padding-top:4.75rem!important}.pt-20{padding-top:5rem!important}.pe-0{padding-left:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-3{padding-left:.75rem!important}.pe-4{padding-left:1rem!important}.pe-5{padding-left:1.25rem!important}.pe-6{padding-left:1.5rem!important}.pe-7{padding-left:1.75rem!important}.pe-8{padding-left:2rem!important}.pe-9{padding-left:2.25rem!important}.pe-10{padding-left:2.5rem!important}.pe-11{padding-left:2.75rem!important}.pe-12{padding-left:3rem!important}.pe-13{padding-left:3.25rem!important}.pe-14{padding-left:3.5rem!important}.pe-15{padding-left:3.75rem!important}.pe-16{padding-left:4rem!important}.pe-17{padding-left:4.25rem!important}.pe-18{padding-left:4.5rem!important}.pe-19{padding-left:4.75rem!important}.pe-20{padding-left:5rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:.75rem!important}.pb-4{padding-bottom:1rem!important}.pb-5{padding-bottom:1.25rem!important}.pb-6{padding-bottom:1.5rem!important}.pb-7{padding-bottom:1.75rem!important}.pb-8{padding-bottom:2rem!important}.pb-9{padding-bottom:2.25rem!important}.pb-10{padding-bottom:2.5rem!important}.pb-11{padding-bottom:2.75rem!important}.pb-12{padding-bottom:3rem!important}.pb-13{padding-bottom:3.25rem!important}.pb-14{padding-bottom:3.5rem!important}.pb-15{padding-bottom:3.75rem!important}.pb-16{padding-bottom:4rem!important}.pb-17{padding-bottom:4.25rem!important}.pb-18{padding-bottom:4.5rem!important}.pb-19{padding-bottom:4.75rem!important}.pb-20{padding-bottom:5rem!important}.ps-0{padding-right:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-3{padding-right:.75rem!important}.ps-4{padding-right:1rem!important}.ps-5{padding-right:1.25rem!important}.ps-6{padding-right:1.5rem!important}.ps-7{padding-right:1.75rem!important}.ps-8{padding-right:2rem!important}.ps-9{padding-right:2.25rem!important}.ps-10{padding-right:2.5rem!important}.ps-11{padding-right:2.75rem!important}.ps-12{padding-right:3rem!important}.ps-13{padding-right:3.25rem!important}.ps-14{padding-right:3.5rem!important}.ps-15{padding-right:3.75rem!important}.ps-16{padding-right:4rem!important}.ps-17{padding-right:4.25rem!important}.ps-18{padding-right:4.5rem!important}.ps-19{padding-right:4.75rem!important}.ps-20{padding-right:5rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.3rem + .6vw)!important}.fs-2{font-size:calc(1.275rem + .3vw)!important}.fs-3{font-size:calc(1.26rem + .12vw)!important}.fs-4{font-size:1.25rem!important}.fs-5{font-size:1.15rem!important}.fs-6{font-size:1.075rem!important}.fs-7{font-size:.95rem!important}.fs-8{font-size:.85rem!important}.fs-9{font-size:.75rem!important}.fs-10{font-size:.5rem!important}.fs-base{font-size:1rem!important}.fs-fluid{font-size:100%!important}.fs-2x{font-size:calc(1.325rem + .9vw)!important}.fs-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-5tx{font-size:calc(1.7rem + 5.4vw)!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:500!important}.fw-bolder{font-weight:600!important}.lh-0{line-height:0!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:1.75!important}.lh-xl{line-height:2!important}.lh-xxl{line-height:2.25!important}.text-start{text-align:right!important}.text-end{text-align:left!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#a1a5b7!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{user-select:all!important}.user-select-auto{user-select:auto!important}.user-select-none{user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.475rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.325rem!important}.rounded-2{border-radius:.475rem!important}.rounded-3{border-radius:.625rem!important}.rounded-4{border-radius:1rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-right-radius:.475rem!important;border-top-left-radius:.475rem!important}.rounded-end{border-top-left-radius:.475rem!important;border-bottom-left-radius:.475rem!important}.rounded-bottom{border-bottom-left-radius:.475rem!important;border-bottom-right-radius:.475rem!important}.rounded-start{border-bottom-right-radius:.475rem!important;border-top-right-radius:.475rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.opacity-0{opacity:0!important}.opacity-0-hover:hover{opacity:0!important}.opacity-5{opacity:.05!important}.opacity-5-hover:hover{opacity:.05!important}.opacity-10{opacity:.1!important}.opacity-10-hover:hover{opacity:.1!important}.opacity-15{opacity:.15!important}.opacity-15-hover:hover{opacity:.15!important}.opacity-20{opacity:.2!important}.opacity-20-hover:hover{opacity:.2!important}.opacity-25{opacity:.25!important}.opacity-25-hover:hover{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-50-hover:hover{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-75-hover:hover{opacity:.75!important}.opacity-100{opacity:1!important}.opacity-100-hover:hover{opacity:1!important}.min-w-unset{min-width:unset!important}.min-w-25{min-width:25%!important}.min-w-50{min-width:50%!important}.min-w-75{min-width:75%!important}.min-w-100{min-width:100%!important}.min-w-auto{min-width:auto!important}.min-w-1px{min-width:1px!important}.min-w-2px{min-width:2px!important}.min-w-3px{min-width:3px!important}.min-w-4px{min-width:4px!important}.min-w-5px{min-width:5px!important}.min-w-6px{min-width:6px!important}.min-w-7px{min-width:7px!important}.min-w-8px{min-width:8px!important}.min-w-9px{min-width:9px!important}.min-w-10px{min-width:10px!important}.min-w-15px{min-width:15px!important}.min-w-20px{min-width:20px!important}.min-w-25px{min-width:25px!important}.min-w-30px{min-width:30px!important}.min-w-35px{min-width:35px!important}.min-w-40px{min-width:40px!important}.min-w-45px{min-width:45px!important}.min-w-50px{min-width:50px!important}.min-w-55px{min-width:55px!important}.min-w-60px{min-width:60px!important}.min-w-65px{min-width:65px!important}.min-w-70px{min-width:70px!important}.min-w-75px{min-width:75px!important}.min-w-80px{min-width:80px!important}.min-w-85px{min-width:85px!important}.min-w-90px{min-width:90px!important}.min-w-95px{min-width:95px!important}.min-w-100px{min-width:100px!important}.min-w-125px{min-width:125px!important}.min-w-150px{min-width:150px!important}.min-w-175px{min-width:175px!important}.min-w-200px{min-width:200px!important}.min-w-225px{min-width:225px!important}.min-w-250px{min-width:250px!important}.min-w-275px{min-width:275px!important}.min-w-300px{min-width:300px!important}.min-w-325px{min-width:325px!important}.min-w-350px{min-width:350px!important}.min-w-375px{min-width:375px!important}.min-w-400px{min-width:400px!important}.min-w-425px{min-width:425px!important}.min-w-450px{min-width:450px!important}.min-w-475px{min-width:475px!important}.min-w-500px{min-width:500px!important}.min-w-550px{min-width:550px!important}.min-w-600px{min-width:600px!important}.min-w-650px{min-width:650px!important}.min-w-700px{min-width:700px!important}.min-w-750px{min-width:750px!important}.min-w-800px{min-width:800px!important}.min-w-850px{min-width:850px!important}.min-w-900px{min-width:900px!important}.min-w-950px{min-width:950px!important}.min-w-1000px{min-width:1000px!important}.min-h-unset{min-height:unset!important}.min-h-25{min-height:25%!important}.min-h-50{min-height:50%!important}.min-h-75{min-height:75%!important}.min-h-100{min-height:100%!important}.min-h-auto{min-height:auto!important}.min-h-1px{min-height:1px!important}.min-h-2px{min-height:2px!important}.min-h-3px{min-height:3px!important}.min-h-4px{min-height:4px!important}.min-h-5px{min-height:5px!important}.min-h-6px{min-height:6px!important}.min-h-7px{min-height:7px!important}.min-h-8px{min-height:8px!important}.min-h-9px{min-height:9px!important}.min-h-10px{min-height:10px!important}.min-h-15px{min-height:15px!important}.min-h-20px{min-height:20px!important}.min-h-25px{min-height:25px!important}.min-h-30px{min-height:30px!important}.min-h-35px{min-height:35px!important}.min-h-40px{min-height:40px!important}.min-h-45px{min-height:45px!important}.min-h-50px{min-height:50px!important}.min-h-55px{min-height:55px!important}.min-h-60px{min-height:60px!important}.min-h-65px{min-height:65px!important}.min-h-70px{min-height:70px!important}.min-h-75px{min-height:75px!important}.min-h-80px{min-height:80px!important}.min-h-85px{min-height:85px!important}.min-h-90px{min-height:90px!important}.min-h-95px{min-height:95px!important}.min-h-100px{min-height:100px!important}.min-h-125px{min-height:125px!important}.min-h-150px{min-height:150px!important}.min-h-175px{min-height:175px!important}.min-h-200px{min-height:200px!important}.min-h-225px{min-height:225px!important}.min-h-250px{min-height:250px!important}.min-h-275px{min-height:275px!important}.min-h-300px{min-height:300px!important}.min-h-325px{min-height:325px!important}.min-h-350px{min-height:350px!important}.min-h-375px{min-height:375px!important}.min-h-400px{min-height:400px!important}.min-h-425px{min-height:425px!important}.min-h-450px{min-height:450px!important}.min-h-475px{min-height:475px!important}.min-h-500px{min-height:500px!important}.min-h-550px{min-height:550px!important}.min-h-600px{min-height:600px!important}.min-h-650px{min-height:650px!important}.min-h-700px{min-height:700px!important}.min-h-750px{min-height:750px!important}.min-h-800px{min-height:800px!important}.min-h-850px{min-height:850px!important}.min-h-900px{min-height:900px!important}.min-h-950px{min-height:950px!important}.min-h-1000px{min-height:1000px!important}.z-index-n1{z-index:-1!important}.z-index-n2{z-index:-2!important}.z-index-0{z-index:0!important}.z-index-1{z-index:1!important}.z-index-2{z-index:2!important}.z-index-3{z-index:3!important}.border-top-0{border-top-width:0!important}.border-top-1{border-top-width:1px!important}.border-top-2{border-top-width:2px!important}.border-top-3{border-top-width:3px!important}.border-top-4{border-top-width:4px!important}.border-top-5{border-top-width:5px!important}.border-bottom-0{border-bottom-width:0!important}.border-bottom-1{border-bottom-width:1px!important}.border-bottom-2{border-bottom-width:2px!important}.border-bottom-3{border-bottom-width:3px!important}.border-bottom-4{border-bottom-width:4px!important}.border-bottom-5{border-bottom-width:5px!important}.border-right-0{border-left-width:0!important}.border-right-1{border-left-width:1px!important}.border-right-2{border-left-width:2px!important}.border-right-3{border-left-width:3px!important}.border-right-4{border-left-width:4px!important}.border-right-5{border-left-width:5px!important}.border-left-0{border-right-width:0!important}.border-left-1{border-right-width:1px!important}.border-left-2{border-right-width:2px!important}.border-left-3{border-right-width:3px!important}.border-left-4{border-right-width:4px!important}.border-left-5{border-right-width:5px!important}.ls-1{letter-spacing:.1rem!important}.ls-2{letter-spacing:.115rem!important}.ls-3{letter-spacing:.125rem!important}.ls-4{letter-spacing:.25rem!important}.ls-5{letter-spacing:.5rem!important}.ls-n1{letter-spacing:-.1rem!important}.ls-n2{letter-spacing:-.115rem!important}.ls-n3{letter-spacing:-.125rem!important}.ls-n4{letter-spacing:-.25rem!important}.ls-n5{letter-spacing:-.5rem!important}@media (min-width:576px){.float-sm-start{float:right!important}.float-sm-end{float:left!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!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}.d-sm-none{display:none!important}.position-sm-static{position:static!important}.position-sm-relative{position:relative!important}.position-sm-absolute{position:absolute!important}.position-sm-fixed{position:fixed!important}.position-sm-sticky{position:sticky!important}.w-sm-unset{width:unset!important}.w-sm-25{width:25%!important}.w-sm-50{width:50%!important}.w-sm-75{width:75%!important}.w-sm-100{width:100%!important}.w-sm-auto{width:auto!important}.w-sm-1px{width:1px!important}.w-sm-2px{width:2px!important}.w-sm-3px{width:3px!important}.w-sm-4px{width:4px!important}.w-sm-5px{width:5px!important}.w-sm-6px{width:6px!important}.w-sm-7px{width:7px!important}.w-sm-8px{width:8px!important}.w-sm-9px{width:9px!important}.w-sm-10px{width:10px!important}.w-sm-15px{width:15px!important}.w-sm-20px{width:20px!important}.w-sm-25px{width:25px!important}.w-sm-30px{width:30px!important}.w-sm-35px{width:35px!important}.w-sm-40px{width:40px!important}.w-sm-45px{width:45px!important}.w-sm-50px{width:50px!important}.w-sm-55px{width:55px!important}.w-sm-60px{width:60px!important}.w-sm-65px{width:65px!important}.w-sm-70px{width:70px!important}.w-sm-75px{width:75px!important}.w-sm-80px{width:80px!important}.w-sm-85px{width:85px!important}.w-sm-90px{width:90px!important}.w-sm-95px{width:95px!important}.w-sm-100px{width:100px!important}.w-sm-125px{width:125px!important}.w-sm-150px{width:150px!important}.w-sm-175px{width:175px!important}.w-sm-200px{width:200px!important}.w-sm-225px{width:225px!important}.w-sm-250px{width:250px!important}.w-sm-275px{width:275px!important}.w-sm-300px{width:300px!important}.w-sm-325px{width:325px!important}.w-sm-350px{width:350px!important}.w-sm-375px{width:375px!important}.w-sm-400px{width:400px!important}.w-sm-425px{width:425px!important}.w-sm-450px{width:450px!important}.w-sm-475px{width:475px!important}.w-sm-500px{width:500px!important}.w-sm-550px{width:550px!important}.w-sm-600px{width:600px!important}.w-sm-650px{width:650px!important}.w-sm-700px{width:700px!important}.w-sm-750px{width:750px!important}.w-sm-800px{width:800px!important}.w-sm-850px{width:850px!important}.w-sm-900px{width:900px!important}.w-sm-950px{width:950px!important}.w-sm-1000px{width:1000px!important}.mw-sm-unset{max-width:unset!important}.mw-sm-25{max-width:25%!important}.mw-sm-50{max-width:50%!important}.mw-sm-75{max-width:75%!important}.mw-sm-100{max-width:100%!important}.mw-sm-auto{max-width:auto!important}.mw-sm-1px{max-width:1px!important}.mw-sm-2px{max-width:2px!important}.mw-sm-3px{max-width:3px!important}.mw-sm-4px{max-width:4px!important}.mw-sm-5px{max-width:5px!important}.mw-sm-6px{max-width:6px!important}.mw-sm-7px{max-width:7px!important}.mw-sm-8px{max-width:8px!important}.mw-sm-9px{max-width:9px!important}.mw-sm-10px{max-width:10px!important}.mw-sm-15px{max-width:15px!important}.mw-sm-20px{max-width:20px!important}.mw-sm-25px{max-width:25px!important}.mw-sm-30px{max-width:30px!important}.mw-sm-35px{max-width:35px!important}.mw-sm-40px{max-width:40px!important}.mw-sm-45px{max-width:45px!important}.mw-sm-50px{max-width:50px!important}.mw-sm-55px{max-width:55px!important}.mw-sm-60px{max-width:60px!important}.mw-sm-65px{max-width:65px!important}.mw-sm-70px{max-width:70px!important}.mw-sm-75px{max-width:75px!important}.mw-sm-80px{max-width:80px!important}.mw-sm-85px{max-width:85px!important}.mw-sm-90px{max-width:90px!important}.mw-sm-95px{max-width:95px!important}.mw-sm-100px{max-width:100px!important}.mw-sm-125px{max-width:125px!important}.mw-sm-150px{max-width:150px!important}.mw-sm-175px{max-width:175px!important}.mw-sm-200px{max-width:200px!important}.mw-sm-225px{max-width:225px!important}.mw-sm-250px{max-width:250px!important}.mw-sm-275px{max-width:275px!important}.mw-sm-300px{max-width:300px!important}.mw-sm-325px{max-width:325px!important}.mw-sm-350px{max-width:350px!important}.mw-sm-375px{max-width:375px!important}.mw-sm-400px{max-width:400px!important}.mw-sm-425px{max-width:425px!important}.mw-sm-450px{max-width:450px!important}.mw-sm-475px{max-width:475px!important}.mw-sm-500px{max-width:500px!important}.mw-sm-550px{max-width:550px!important}.mw-sm-600px{max-width:600px!important}.mw-sm-650px{max-width:650px!important}.mw-sm-700px{max-width:700px!important}.mw-sm-750px{max-width:750px!important}.mw-sm-800px{max-width:800px!important}.mw-sm-850px{max-width:850px!important}.mw-sm-900px{max-width:900px!important}.mw-sm-950px{max-width:950px!important}.mw-sm-1000px{max-width:1000px!important}.h-sm-unset{height:unset!important}.h-sm-25{height:25%!important}.h-sm-50{height:50%!important}.h-sm-75{height:75%!important}.h-sm-100{height:100%!important}.h-sm-auto{height:auto!important}.h-sm-1px{height:1px!important}.h-sm-2px{height:2px!important}.h-sm-3px{height:3px!important}.h-sm-4px{height:4px!important}.h-sm-5px{height:5px!important}.h-sm-6px{height:6px!important}.h-sm-7px{height:7px!important}.h-sm-8px{height:8px!important}.h-sm-9px{height:9px!important}.h-sm-10px{height:10px!important}.h-sm-15px{height:15px!important}.h-sm-20px{height:20px!important}.h-sm-25px{height:25px!important}.h-sm-30px{height:30px!important}.h-sm-35px{height:35px!important}.h-sm-40px{height:40px!important}.h-sm-45px{height:45px!important}.h-sm-50px{height:50px!important}.h-sm-55px{height:55px!important}.h-sm-60px{height:60px!important}.h-sm-65px{height:65px!important}.h-sm-70px{height:70px!important}.h-sm-75px{height:75px!important}.h-sm-80px{height:80px!important}.h-sm-85px{height:85px!important}.h-sm-90px{height:90px!important}.h-sm-95px{height:95px!important}.h-sm-100px{height:100px!important}.h-sm-125px{height:125px!important}.h-sm-150px{height:150px!important}.h-sm-175px{height:175px!important}.h-sm-200px{height:200px!important}.h-sm-225px{height:225px!important}.h-sm-250px{height:250px!important}.h-sm-275px{height:275px!important}.h-sm-300px{height:300px!important}.h-sm-325px{height:325px!important}.h-sm-350px{height:350px!important}.h-sm-375px{height:375px!important}.h-sm-400px{height:400px!important}.h-sm-425px{height:425px!important}.h-sm-450px{height:450px!important}.h-sm-475px{height:475px!important}.h-sm-500px{height:500px!important}.h-sm-550px{height:550px!important}.h-sm-600px{height:600px!important}.h-sm-650px{height:650px!important}.h-sm-700px{height:700px!important}.h-sm-750px{height:750px!important}.h-sm-800px{height:800px!important}.h-sm-850px{height:850px!important}.h-sm-900px{height:900px!important}.h-sm-950px{height:950px!important}.h-sm-1000px{height:1000px!important}.mh-sm-unset{max-height:unset!important}.mh-sm-25{max-height:25%!important}.mh-sm-50{max-height:50%!important}.mh-sm-75{max-height:75%!important}.mh-sm-100{max-height:100%!important}.mh-sm-auto{max-height:auto!important}.mh-sm-1px{max-height:1px!important}.mh-sm-2px{max-height:2px!important}.mh-sm-3px{max-height:3px!important}.mh-sm-4px{max-height:4px!important}.mh-sm-5px{max-height:5px!important}.mh-sm-6px{max-height:6px!important}.mh-sm-7px{max-height:7px!important}.mh-sm-8px{max-height:8px!important}.mh-sm-9px{max-height:9px!important}.mh-sm-10px{max-height:10px!important}.mh-sm-15px{max-height:15px!important}.mh-sm-20px{max-height:20px!important}.mh-sm-25px{max-height:25px!important}.mh-sm-30px{max-height:30px!important}.mh-sm-35px{max-height:35px!important}.mh-sm-40px{max-height:40px!important}.mh-sm-45px{max-height:45px!important}.mh-sm-50px{max-height:50px!important}.mh-sm-55px{max-height:55px!important}.mh-sm-60px{max-height:60px!important}.mh-sm-65px{max-height:65px!important}.mh-sm-70px{max-height:70px!important}.mh-sm-75px{max-height:75px!important}.mh-sm-80px{max-height:80px!important}.mh-sm-85px{max-height:85px!important}.mh-sm-90px{max-height:90px!important}.mh-sm-95px{max-height:95px!important}.mh-sm-100px{max-height:100px!important}.mh-sm-125px{max-height:125px!important}.mh-sm-150px{max-height:150px!important}.mh-sm-175px{max-height:175px!important}.mh-sm-200px{max-height:200px!important}.mh-sm-225px{max-height:225px!important}.mh-sm-250px{max-height:250px!important}.mh-sm-275px{max-height:275px!important}.mh-sm-300px{max-height:300px!important}.mh-sm-325px{max-height:325px!important}.mh-sm-350px{max-height:350px!important}.mh-sm-375px{max-height:375px!important}.mh-sm-400px{max-height:400px!important}.mh-sm-425px{max-height:425px!important}.mh-sm-450px{max-height:450px!important}.mh-sm-475px{max-height:475px!important}.mh-sm-500px{max-height:500px!important}.mh-sm-550px{max-height:550px!important}.mh-sm-600px{max-height:600px!important}.mh-sm-650px{max-height:650px!important}.mh-sm-700px{max-height:700px!important}.mh-sm-750px{max-height:750px!important}.mh-sm-800px{max-height:800px!important}.mh-sm-850px{max-height:850px!important}.mh-sm-900px{max-height:900px!important}.mh-sm-950px{max-height:950px!important}.mh-sm-1000px{max-height:1000px!important}.flex-sm-fill{flex:1 1 auto!important}.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-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}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:.75rem!important}.gap-sm-4{gap:1rem!important}.gap-sm-5{gap:1.25rem!important}.gap-sm-6{gap:1.5rem!important}.gap-sm-7{gap:1.75rem!important}.gap-sm-8{gap:2rem!important}.gap-sm-9{gap:2.25rem!important}.gap-sm-10{gap:2.5rem!important}.gap-sm-11{gap:2.75rem!important}.gap-sm-12{gap:3rem!important}.gap-sm-13{gap:3.25rem!important}.gap-sm-14{gap:3.5rem!important}.gap-sm-15{gap:3.75rem!important}.gap-sm-16{gap:4rem!important}.gap-sm-17{gap:4.25rem!important}.gap-sm-18{gap:4.5rem!important}.gap-sm-19{gap:4.75rem!important}.gap-sm-20{gap:5rem!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}.justify-content-sm-evenly{justify-content:space-evenly!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}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:.75rem!important}.m-sm-4{margin:1rem!important}.m-sm-5{margin:1.25rem!important}.m-sm-6{margin:1.5rem!important}.m-sm-7{margin:1.75rem!important}.m-sm-8{margin:2rem!important}.m-sm-9{margin:2.25rem!important}.m-sm-10{margin:2.5rem!important}.m-sm-11{margin:2.75rem!important}.m-sm-12{margin:3rem!important}.m-sm-13{margin:3.25rem!important}.m-sm-14{margin:3.5rem!important}.m-sm-15{margin:3.75rem!important}.m-sm-16{margin:4rem!important}.m-sm-17{margin:4.25rem!important}.m-sm-18{margin:4.5rem!important}.m-sm-19{margin:4.75rem!important}.m-sm-20{margin:5rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:.75rem!important;margin-right:.75rem!important}.mx-sm-4{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.mx-sm-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.mx-sm-8{margin-left:2rem!important;margin-right:2rem!important}.mx-sm-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.mx-sm-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.mx-sm-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.mx-sm-12{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.mx-sm-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.mx-sm-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.mx-sm-16{margin-left:4rem!important;margin-right:4rem!important}.mx-sm-17{margin-left:4.25rem!important;margin-right:4.25rem!important}.mx-sm-18{margin-left:4.5rem!important;margin-right:4.5rem!important}.mx-sm-19{margin-left:4.75rem!important;margin-right:4.75rem!important}.mx-sm-20{margin-left:5rem!important;margin-right:5rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-sm-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-sm-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-sm-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-sm-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-sm-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-sm-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-sm-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-sm-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-sm-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-sm-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-sm-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-sm-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-sm-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-sm-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:.75rem!important}.mt-sm-4{margin-top:1rem!important}.mt-sm-5{margin-top:1.25rem!important}.mt-sm-6{margin-top:1.5rem!important}.mt-sm-7{margin-top:1.75rem!important}.mt-sm-8{margin-top:2rem!important}.mt-sm-9{margin-top:2.25rem!important}.mt-sm-10{margin-top:2.5rem!important}.mt-sm-11{margin-top:2.75rem!important}.mt-sm-12{margin-top:3rem!important}.mt-sm-13{margin-top:3.25rem!important}.mt-sm-14{margin-top:3.5rem!important}.mt-sm-15{margin-top:3.75rem!important}.mt-sm-16{margin-top:4rem!important}.mt-sm-17{margin-top:4.25rem!important}.mt-sm-18{margin-top:4.5rem!important}.mt-sm-19{margin-top:4.75rem!important}.mt-sm-20{margin-top:5rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-left:0!important}.me-sm-1{margin-left:.25rem!important}.me-sm-2{margin-left:.5rem!important}.me-sm-3{margin-left:.75rem!important}.me-sm-4{margin-left:1rem!important}.me-sm-5{margin-left:1.25rem!important}.me-sm-6{margin-left:1.5rem!important}.me-sm-7{margin-left:1.75rem!important}.me-sm-8{margin-left:2rem!important}.me-sm-9{margin-left:2.25rem!important}.me-sm-10{margin-left:2.5rem!important}.me-sm-11{margin-left:2.75rem!important}.me-sm-12{margin-left:3rem!important}.me-sm-13{margin-left:3.25rem!important}.me-sm-14{margin-left:3.5rem!important}.me-sm-15{margin-left:3.75rem!important}.me-sm-16{margin-left:4rem!important}.me-sm-17{margin-left:4.25rem!important}.me-sm-18{margin-left:4.5rem!important}.me-sm-19{margin-left:4.75rem!important}.me-sm-20{margin-left:5rem!important}.me-sm-auto{margin-left:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:.75rem!important}.mb-sm-4{margin-bottom:1rem!important}.mb-sm-5{margin-bottom:1.25rem!important}.mb-sm-6{margin-bottom:1.5rem!important}.mb-sm-7{margin-bottom:1.75rem!important}.mb-sm-8{margin-bottom:2rem!important}.mb-sm-9{margin-bottom:2.25rem!important}.mb-sm-10{margin-bottom:2.5rem!important}.mb-sm-11{margin-bottom:2.75rem!important}.mb-sm-12{margin-bottom:3rem!important}.mb-sm-13{margin-bottom:3.25rem!important}.mb-sm-14{margin-bottom:3.5rem!important}.mb-sm-15{margin-bottom:3.75rem!important}.mb-sm-16{margin-bottom:4rem!important}.mb-sm-17{margin-bottom:4.25rem!important}.mb-sm-18{margin-bottom:4.5rem!important}.mb-sm-19{margin-bottom:4.75rem!important}.mb-sm-20{margin-bottom:5rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-right:0!important}.ms-sm-1{margin-right:.25rem!important}.ms-sm-2{margin-right:.5rem!important}.ms-sm-3{margin-right:.75rem!important}.ms-sm-4{margin-right:1rem!important}.ms-sm-5{margin-right:1.25rem!important}.ms-sm-6{margin-right:1.5rem!important}.ms-sm-7{margin-right:1.75rem!important}.ms-sm-8{margin-right:2rem!important}.ms-sm-9{margin-right:2.25rem!important}.ms-sm-10{margin-right:2.5rem!important}.ms-sm-11{margin-right:2.75rem!important}.ms-sm-12{margin-right:3rem!important}.ms-sm-13{margin-right:3.25rem!important}.ms-sm-14{margin-right:3.5rem!important}.ms-sm-15{margin-right:3.75rem!important}.ms-sm-16{margin-right:4rem!important}.ms-sm-17{margin-right:4.25rem!important}.ms-sm-18{margin-right:4.5rem!important}.ms-sm-19{margin-right:4.75rem!important}.ms-sm-20{margin-right:5rem!important}.ms-sm-auto{margin-right:auto!important}.m-sm-n1{margin:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.m-sm-n3{margin:-.75rem!important}.m-sm-n4{margin:-1rem!important}.m-sm-n5{margin:-1.25rem!important}.m-sm-n6{margin:-1.5rem!important}.m-sm-n7{margin:-1.75rem!important}.m-sm-n8{margin:-2rem!important}.m-sm-n9{margin:-2.25rem!important}.m-sm-n10{margin:-2.5rem!important}.m-sm-n11{margin:-2.75rem!important}.m-sm-n12{margin:-3rem!important}.m-sm-n13{margin:-3.25rem!important}.m-sm-n14{margin:-3.5rem!important}.m-sm-n15{margin:-3.75rem!important}.m-sm-n16{margin:-4rem!important}.m-sm-n17{margin:-4.25rem!important}.m-sm-n18{margin:-4.5rem!important}.m-sm-n19{margin:-4.75rem!important}.m-sm-n20{margin:-5rem!important}.mx-sm-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-sm-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-sm-n3{margin-left:-.75rem!important;margin-right:-.75rem!important}.mx-sm-n4{margin-left:-1rem!important;margin-right:-1rem!important}.mx-sm-n5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.mx-sm-n6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-sm-n7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.mx-sm-n8{margin-left:-2rem!important;margin-right:-2rem!important}.mx-sm-n9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.mx-sm-n10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.mx-sm-n11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.mx-sm-n12{margin-left:-3rem!important;margin-right:-3rem!important}.mx-sm-n13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.mx-sm-n14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.mx-sm-n15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.mx-sm-n16{margin-left:-4rem!important;margin-right:-4rem!important}.mx-sm-n17{margin-left:-4.25rem!important;margin-right:-4.25rem!important}.mx-sm-n18{margin-left:-4.5rem!important;margin-right:-4.5rem!important}.mx-sm-n19{margin-left:-4.75rem!important;margin-right:-4.75rem!important}.mx-sm-n20{margin-left:-5rem!important;margin-right:-5rem!important}.my-sm-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-sm-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-sm-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-sm-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-sm-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-sm-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-sm-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-sm-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-sm-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-sm-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-sm-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-sm-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-sm-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-sm-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-sm-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-sm-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-sm-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-sm-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-sm-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-sm-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-sm-n1{margin-top:-.25rem!important}.mt-sm-n2{margin-top:-.5rem!important}.mt-sm-n3{margin-top:-.75rem!important}.mt-sm-n4{margin-top:-1rem!important}.mt-sm-n5{margin-top:-1.25rem!important}.mt-sm-n6{margin-top:-1.5rem!important}.mt-sm-n7{margin-top:-1.75rem!important}.mt-sm-n8{margin-top:-2rem!important}.mt-sm-n9{margin-top:-2.25rem!important}.mt-sm-n10{margin-top:-2.5rem!important}.mt-sm-n11{margin-top:-2.75rem!important}.mt-sm-n12{margin-top:-3rem!important}.mt-sm-n13{margin-top:-3.25rem!important}.mt-sm-n14{margin-top:-3.5rem!important}.mt-sm-n15{margin-top:-3.75rem!important}.mt-sm-n16{margin-top:-4rem!important}.mt-sm-n17{margin-top:-4.25rem!important}.mt-sm-n18{margin-top:-4.5rem!important}.mt-sm-n19{margin-top:-4.75rem!important}.mt-sm-n20{margin-top:-5rem!important}.me-sm-n1{margin-left:-.25rem!important}.me-sm-n2{margin-left:-.5rem!important}.me-sm-n3{margin-left:-.75rem!important}.me-sm-n4{margin-left:-1rem!important}.me-sm-n5{margin-left:-1.25rem!important}.me-sm-n6{margin-left:-1.5rem!important}.me-sm-n7{margin-left:-1.75rem!important}.me-sm-n8{margin-left:-2rem!important}.me-sm-n9{margin-left:-2.25rem!important}.me-sm-n10{margin-left:-2.5rem!important}.me-sm-n11{margin-left:-2.75rem!important}.me-sm-n12{margin-left:-3rem!important}.me-sm-n13{margin-left:-3.25rem!important}.me-sm-n14{margin-left:-3.5rem!important}.me-sm-n15{margin-left:-3.75rem!important}.me-sm-n16{margin-left:-4rem!important}.me-sm-n17{margin-left:-4.25rem!important}.me-sm-n18{margin-left:-4.5rem!important}.me-sm-n19{margin-left:-4.75rem!important}.me-sm-n20{margin-left:-5rem!important}.mb-sm-n1{margin-bottom:-.25rem!important}.mb-sm-n2{margin-bottom:-.5rem!important}.mb-sm-n3{margin-bottom:-.75rem!important}.mb-sm-n4{margin-bottom:-1rem!important}.mb-sm-n5{margin-bottom:-1.25rem!important}.mb-sm-n6{margin-bottom:-1.5rem!important}.mb-sm-n7{margin-bottom:-1.75rem!important}.mb-sm-n8{margin-bottom:-2rem!important}.mb-sm-n9{margin-bottom:-2.25rem!important}.mb-sm-n10{margin-bottom:-2.5rem!important}.mb-sm-n11{margin-bottom:-2.75rem!important}.mb-sm-n12{margin-bottom:-3rem!important}.mb-sm-n13{margin-bottom:-3.25rem!important}.mb-sm-n14{margin-bottom:-3.5rem!important}.mb-sm-n15{margin-bottom:-3.75rem!important}.mb-sm-n16{margin-bottom:-4rem!important}.mb-sm-n17{margin-bottom:-4.25rem!important}.mb-sm-n18{margin-bottom:-4.5rem!important}.mb-sm-n19{margin-bottom:-4.75rem!important}.mb-sm-n20{margin-bottom:-5rem!important}.ms-sm-n1{margin-right:-.25rem!important}.ms-sm-n2{margin-right:-.5rem!important}.ms-sm-n3{margin-right:-.75rem!important}.ms-sm-n4{margin-right:-1rem!important}.ms-sm-n5{margin-right:-1.25rem!important}.ms-sm-n6{margin-right:-1.5rem!important}.ms-sm-n7{margin-right:-1.75rem!important}.ms-sm-n8{margin-right:-2rem!important}.ms-sm-n9{margin-right:-2.25rem!important}.ms-sm-n10{margin-right:-2.5rem!important}.ms-sm-n11{margin-right:-2.75rem!important}.ms-sm-n12{margin-right:-3rem!important}.ms-sm-n13{margin-right:-3.25rem!important}.ms-sm-n14{margin-right:-3.5rem!important}.ms-sm-n15{margin-right:-3.75rem!important}.ms-sm-n16{margin-right:-4rem!important}.ms-sm-n17{margin-right:-4.25rem!important}.ms-sm-n18{margin-right:-4.5rem!important}.ms-sm-n19{margin-right:-4.75rem!important}.ms-sm-n20{margin-right:-5rem!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:.75rem!important}.p-sm-4{padding:1rem!important}.p-sm-5{padding:1.25rem!important}.p-sm-6{padding:1.5rem!important}.p-sm-7{padding:1.75rem!important}.p-sm-8{padding:2rem!important}.p-sm-9{padding:2.25rem!important}.p-sm-10{padding:2.5rem!important}.p-sm-11{padding:2.75rem!important}.p-sm-12{padding:3rem!important}.p-sm-13{padding:3.25rem!important}.p-sm-14{padding:3.5rem!important}.p-sm-15{padding:3.75rem!important}.p-sm-16{padding:4rem!important}.p-sm-17{padding:4.25rem!important}.p-sm-18{padding:4.5rem!important}.p-sm-19{padding:4.75rem!important}.p-sm-20{padding:5rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-sm-4{padding-left:1rem!important;padding-right:1rem!important}.px-sm-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-sm-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.px-sm-8{padding-left:2rem!important;padding-right:2rem!important}.px-sm-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.px-sm-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.px-sm-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.px-sm-12{padding-left:3rem!important;padding-right:3rem!important}.px-sm-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.px-sm-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.px-sm-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.px-sm-16{padding-left:4rem!important;padding-right:4rem!important}.px-sm-17{padding-left:4.25rem!important;padding-right:4.25rem!important}.px-sm-18{padding-left:4.5rem!important;padding-right:4.5rem!important}.px-sm-19{padding-left:4.75rem!important;padding-right:4.75rem!important}.px-sm-20{padding-left:5rem!important;padding-right:5rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-sm-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-sm-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-sm-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-sm-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-sm-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-sm-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-sm-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-sm-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-sm-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-sm-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-sm-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-sm-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-sm-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-sm-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-sm-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:.75rem!important}.pt-sm-4{padding-top:1rem!important}.pt-sm-5{padding-top:1.25rem!important}.pt-sm-6{padding-top:1.5rem!important}.pt-sm-7{padding-top:1.75rem!important}.pt-sm-8{padding-top:2rem!important}.pt-sm-9{padding-top:2.25rem!important}.pt-sm-10{padding-top:2.5rem!important}.pt-sm-11{padding-top:2.75rem!important}.pt-sm-12{padding-top:3rem!important}.pt-sm-13{padding-top:3.25rem!important}.pt-sm-14{padding-top:3.5rem!important}.pt-sm-15{padding-top:3.75rem!important}.pt-sm-16{padding-top:4rem!important}.pt-sm-17{padding-top:4.25rem!important}.pt-sm-18{padding-top:4.5rem!important}.pt-sm-19{padding-top:4.75rem!important}.pt-sm-20{padding-top:5rem!important}.pe-sm-0{padding-left:0!important}.pe-sm-1{padding-left:.25rem!important}.pe-sm-2{padding-left:.5rem!important}.pe-sm-3{padding-left:.75rem!important}.pe-sm-4{padding-left:1rem!important}.pe-sm-5{padding-left:1.25rem!important}.pe-sm-6{padding-left:1.5rem!important}.pe-sm-7{padding-left:1.75rem!important}.pe-sm-8{padding-left:2rem!important}.pe-sm-9{padding-left:2.25rem!important}.pe-sm-10{padding-left:2.5rem!important}.pe-sm-11{padding-left:2.75rem!important}.pe-sm-12{padding-left:3rem!important}.pe-sm-13{padding-left:3.25rem!important}.pe-sm-14{padding-left:3.5rem!important}.pe-sm-15{padding-left:3.75rem!important}.pe-sm-16{padding-left:4rem!important}.pe-sm-17{padding-left:4.25rem!important}.pe-sm-18{padding-left:4.5rem!important}.pe-sm-19{padding-left:4.75rem!important}.pe-sm-20{padding-left:5rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:.75rem!important}.pb-sm-4{padding-bottom:1rem!important}.pb-sm-5{padding-bottom:1.25rem!important}.pb-sm-6{padding-bottom:1.5rem!important}.pb-sm-7{padding-bottom:1.75rem!important}.pb-sm-8{padding-bottom:2rem!important}.pb-sm-9{padding-bottom:2.25rem!important}.pb-sm-10{padding-bottom:2.5rem!important}.pb-sm-11{padding-bottom:2.75rem!important}.pb-sm-12{padding-bottom:3rem!important}.pb-sm-13{padding-bottom:3.25rem!important}.pb-sm-14{padding-bottom:3.5rem!important}.pb-sm-15{padding-bottom:3.75rem!important}.pb-sm-16{padding-bottom:4rem!important}.pb-sm-17{padding-bottom:4.25rem!important}.pb-sm-18{padding-bottom:4.5rem!important}.pb-sm-19{padding-bottom:4.75rem!important}.pb-sm-20{padding-bottom:5rem!important}.ps-sm-0{padding-right:0!important}.ps-sm-1{padding-right:.25rem!important}.ps-sm-2{padding-right:.5rem!important}.ps-sm-3{padding-right:.75rem!important}.ps-sm-4{padding-right:1rem!important}.ps-sm-5{padding-right:1.25rem!important}.ps-sm-6{padding-right:1.5rem!important}.ps-sm-7{padding-right:1.75rem!important}.ps-sm-8{padding-right:2rem!important}.ps-sm-9{padding-right:2.25rem!important}.ps-sm-10{padding-right:2.5rem!important}.ps-sm-11{padding-right:2.75rem!important}.ps-sm-12{padding-right:3rem!important}.ps-sm-13{padding-right:3.25rem!important}.ps-sm-14{padding-right:3.5rem!important}.ps-sm-15{padding-right:3.75rem!important}.ps-sm-16{padding-right:4rem!important}.ps-sm-17{padding-right:4.25rem!important}.ps-sm-18{padding-right:4.5rem!important}.ps-sm-19{padding-right:4.75rem!important}.ps-sm-20{padding-right:5rem!important}.fs-sm-1{font-size:calc(1.3rem + .6vw)!important}.fs-sm-2{font-size:calc(1.275rem + .3vw)!important}.fs-sm-3{font-size:calc(1.26rem + .12vw)!important}.fs-sm-4{font-size:1.25rem!important}.fs-sm-5{font-size:1.15rem!important}.fs-sm-6{font-size:1.075rem!important}.fs-sm-7{font-size:.95rem!important}.fs-sm-8{font-size:.85rem!important}.fs-sm-9{font-size:.75rem!important}.fs-sm-10{font-size:.5rem!important}.fs-sm-base{font-size:1rem!important}.fs-sm-fluid{font-size:100%!important}.fs-sm-2x{font-size:calc(1.325rem + .9vw)!important}.fs-sm-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-sm-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-sm-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-sm-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-sm-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-sm-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-sm-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-sm-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-sm-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-sm-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-sm-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-sm-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-sm-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-sm-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-sm-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-sm-start{text-align:right!important}.text-sm-end{text-align:left!important}.text-sm-center{text-align:center!important}.min-w-sm-unset{min-width:unset!important}.min-w-sm-25{min-width:25%!important}.min-w-sm-50{min-width:50%!important}.min-w-sm-75{min-width:75%!important}.min-w-sm-100{min-width:100%!important}.min-w-sm-auto{min-width:auto!important}.min-w-sm-1px{min-width:1px!important}.min-w-sm-2px{min-width:2px!important}.min-w-sm-3px{min-width:3px!important}.min-w-sm-4px{min-width:4px!important}.min-w-sm-5px{min-width:5px!important}.min-w-sm-6px{min-width:6px!important}.min-w-sm-7px{min-width:7px!important}.min-w-sm-8px{min-width:8px!important}.min-w-sm-9px{min-width:9px!important}.min-w-sm-10px{min-width:10px!important}.min-w-sm-15px{min-width:15px!important}.min-w-sm-20px{min-width:20px!important}.min-w-sm-25px{min-width:25px!important}.min-w-sm-30px{min-width:30px!important}.min-w-sm-35px{min-width:35px!important}.min-w-sm-40px{min-width:40px!important}.min-w-sm-45px{min-width:45px!important}.min-w-sm-50px{min-width:50px!important}.min-w-sm-55px{min-width:55px!important}.min-w-sm-60px{min-width:60px!important}.min-w-sm-65px{min-width:65px!important}.min-w-sm-70px{min-width:70px!important}.min-w-sm-75px{min-width:75px!important}.min-w-sm-80px{min-width:80px!important}.min-w-sm-85px{min-width:85px!important}.min-w-sm-90px{min-width:90px!important}.min-w-sm-95px{min-width:95px!important}.min-w-sm-100px{min-width:100px!important}.min-w-sm-125px{min-width:125px!important}.min-w-sm-150px{min-width:150px!important}.min-w-sm-175px{min-width:175px!important}.min-w-sm-200px{min-width:200px!important}.min-w-sm-225px{min-width:225px!important}.min-w-sm-250px{min-width:250px!important}.min-w-sm-275px{min-width:275px!important}.min-w-sm-300px{min-width:300px!important}.min-w-sm-325px{min-width:325px!important}.min-w-sm-350px{min-width:350px!important}.min-w-sm-375px{min-width:375px!important}.min-w-sm-400px{min-width:400px!important}.min-w-sm-425px{min-width:425px!important}.min-w-sm-450px{min-width:450px!important}.min-w-sm-475px{min-width:475px!important}.min-w-sm-500px{min-width:500px!important}.min-w-sm-550px{min-width:550px!important}.min-w-sm-600px{min-width:600px!important}.min-w-sm-650px{min-width:650px!important}.min-w-sm-700px{min-width:700px!important}.min-w-sm-750px{min-width:750px!important}.min-w-sm-800px{min-width:800px!important}.min-w-sm-850px{min-width:850px!important}.min-w-sm-900px{min-width:900px!important}.min-w-sm-950px{min-width:950px!important}.min-w-sm-1000px{min-width:1000px!important}.min-h-sm-unset{min-height:unset!important}.min-h-sm-25{min-height:25%!important}.min-h-sm-50{min-height:50%!important}.min-h-sm-75{min-height:75%!important}.min-h-sm-100{min-height:100%!important}.min-h-sm-auto{min-height:auto!important}.min-h-sm-1px{min-height:1px!important}.min-h-sm-2px{min-height:2px!important}.min-h-sm-3px{min-height:3px!important}.min-h-sm-4px{min-height:4px!important}.min-h-sm-5px{min-height:5px!important}.min-h-sm-6px{min-height:6px!important}.min-h-sm-7px{min-height:7px!important}.min-h-sm-8px{min-height:8px!important}.min-h-sm-9px{min-height:9px!important}.min-h-sm-10px{min-height:10px!important}.min-h-sm-15px{min-height:15px!important}.min-h-sm-20px{min-height:20px!important}.min-h-sm-25px{min-height:25px!important}.min-h-sm-30px{min-height:30px!important}.min-h-sm-35px{min-height:35px!important}.min-h-sm-40px{min-height:40px!important}.min-h-sm-45px{min-height:45px!important}.min-h-sm-50px{min-height:50px!important}.min-h-sm-55px{min-height:55px!important}.min-h-sm-60px{min-height:60px!important}.min-h-sm-65px{min-height:65px!important}.min-h-sm-70px{min-height:70px!important}.min-h-sm-75px{min-height:75px!important}.min-h-sm-80px{min-height:80px!important}.min-h-sm-85px{min-height:85px!important}.min-h-sm-90px{min-height:90px!important}.min-h-sm-95px{min-height:95px!important}.min-h-sm-100px{min-height:100px!important}.min-h-sm-125px{min-height:125px!important}.min-h-sm-150px{min-height:150px!important}.min-h-sm-175px{min-height:175px!important}.min-h-sm-200px{min-height:200px!important}.min-h-sm-225px{min-height:225px!important}.min-h-sm-250px{min-height:250px!important}.min-h-sm-275px{min-height:275px!important}.min-h-sm-300px{min-height:300px!important}.min-h-sm-325px{min-height:325px!important}.min-h-sm-350px{min-height:350px!important}.min-h-sm-375px{min-height:375px!important}.min-h-sm-400px{min-height:400px!important}.min-h-sm-425px{min-height:425px!important}.min-h-sm-450px{min-height:450px!important}.min-h-sm-475px{min-height:475px!important}.min-h-sm-500px{min-height:500px!important}.min-h-sm-550px{min-height:550px!important}.min-h-sm-600px{min-height:600px!important}.min-h-sm-650px{min-height:650px!important}.min-h-sm-700px{min-height:700px!important}.min-h-sm-750px{min-height:750px!important}.min-h-sm-800px{min-height:800px!important}.min-h-sm-850px{min-height:850px!important}.min-h-sm-900px{min-height:900px!important}.min-h-sm-950px{min-height:950px!important}.min-h-sm-1000px{min-height:1000px!important}}@media (min-width:768px){.float-md-start{float:right!important}.float-md-end{float:left!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!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}.d-md-none{display:none!important}.position-md-static{position:static!important}.position-md-relative{position:relative!important}.position-md-absolute{position:absolute!important}.position-md-fixed{position:fixed!important}.position-md-sticky{position:sticky!important}.w-md-unset{width:unset!important}.w-md-25{width:25%!important}.w-md-50{width:50%!important}.w-md-75{width:75%!important}.w-md-100{width:100%!important}.w-md-auto{width:auto!important}.w-md-1px{width:1px!important}.w-md-2px{width:2px!important}.w-md-3px{width:3px!important}.w-md-4px{width:4px!important}.w-md-5px{width:5px!important}.w-md-6px{width:6px!important}.w-md-7px{width:7px!important}.w-md-8px{width:8px!important}.w-md-9px{width:9px!important}.w-md-10px{width:10px!important}.w-md-15px{width:15px!important}.w-md-20px{width:20px!important}.w-md-25px{width:25px!important}.w-md-30px{width:30px!important}.w-md-35px{width:35px!important}.w-md-40px{width:40px!important}.w-md-45px{width:45px!important}.w-md-50px{width:50px!important}.w-md-55px{width:55px!important}.w-md-60px{width:60px!important}.w-md-65px{width:65px!important}.w-md-70px{width:70px!important}.w-md-75px{width:75px!important}.w-md-80px{width:80px!important}.w-md-85px{width:85px!important}.w-md-90px{width:90px!important}.w-md-95px{width:95px!important}.w-md-100px{width:100px!important}.w-md-125px{width:125px!important}.w-md-150px{width:150px!important}.w-md-175px{width:175px!important}.w-md-200px{width:200px!important}.w-md-225px{width:225px!important}.w-md-250px{width:250px!important}.w-md-275px{width:275px!important}.w-md-300px{width:300px!important}.w-md-325px{width:325px!important}.w-md-350px{width:350px!important}.w-md-375px{width:375px!important}.w-md-400px{width:400px!important}.w-md-425px{width:425px!important}.w-md-450px{width:450px!important}.w-md-475px{width:475px!important}.w-md-500px{width:500px!important}.w-md-550px{width:550px!important}.w-md-600px{width:600px!important}.w-md-650px{width:650px!important}.w-md-700px{width:700px!important}.w-md-750px{width:750px!important}.w-md-800px{width:800px!important}.w-md-850px{width:850px!important}.w-md-900px{width:900px!important}.w-md-950px{width:950px!important}.w-md-1000px{width:1000px!important}.mw-md-unset{max-width:unset!important}.mw-md-25{max-width:25%!important}.mw-md-50{max-width:50%!important}.mw-md-75{max-width:75%!important}.mw-md-100{max-width:100%!important}.mw-md-auto{max-width:auto!important}.mw-md-1px{max-width:1px!important}.mw-md-2px{max-width:2px!important}.mw-md-3px{max-width:3px!important}.mw-md-4px{max-width:4px!important}.mw-md-5px{max-width:5px!important}.mw-md-6px{max-width:6px!important}.mw-md-7px{max-width:7px!important}.mw-md-8px{max-width:8px!important}.mw-md-9px{max-width:9px!important}.mw-md-10px{max-width:10px!important}.mw-md-15px{max-width:15px!important}.mw-md-20px{max-width:20px!important}.mw-md-25px{max-width:25px!important}.mw-md-30px{max-width:30px!important}.mw-md-35px{max-width:35px!important}.mw-md-40px{max-width:40px!important}.mw-md-45px{max-width:45px!important}.mw-md-50px{max-width:50px!important}.mw-md-55px{max-width:55px!important}.mw-md-60px{max-width:60px!important}.mw-md-65px{max-width:65px!important}.mw-md-70px{max-width:70px!important}.mw-md-75px{max-width:75px!important}.mw-md-80px{max-width:80px!important}.mw-md-85px{max-width:85px!important}.mw-md-90px{max-width:90px!important}.mw-md-95px{max-width:95px!important}.mw-md-100px{max-width:100px!important}.mw-md-125px{max-width:125px!important}.mw-md-150px{max-width:150px!important}.mw-md-175px{max-width:175px!important}.mw-md-200px{max-width:200px!important}.mw-md-225px{max-width:225px!important}.mw-md-250px{max-width:250px!important}.mw-md-275px{max-width:275px!important}.mw-md-300px{max-width:300px!important}.mw-md-325px{max-width:325px!important}.mw-md-350px{max-width:350px!important}.mw-md-375px{max-width:375px!important}.mw-md-400px{max-width:400px!important}.mw-md-425px{max-width:425px!important}.mw-md-450px{max-width:450px!important}.mw-md-475px{max-width:475px!important}.mw-md-500px{max-width:500px!important}.mw-md-550px{max-width:550px!important}.mw-md-600px{max-width:600px!important}.mw-md-650px{max-width:650px!important}.mw-md-700px{max-width:700px!important}.mw-md-750px{max-width:750px!important}.mw-md-800px{max-width:800px!important}.mw-md-850px{max-width:850px!important}.mw-md-900px{max-width:900px!important}.mw-md-950px{max-width:950px!important}.mw-md-1000px{max-width:1000px!important}.h-md-unset{height:unset!important}.h-md-25{height:25%!important}.h-md-50{height:50%!important}.h-md-75{height:75%!important}.h-md-100{height:100%!important}.h-md-auto{height:auto!important}.h-md-1px{height:1px!important}.h-md-2px{height:2px!important}.h-md-3px{height:3px!important}.h-md-4px{height:4px!important}.h-md-5px{height:5px!important}.h-md-6px{height:6px!important}.h-md-7px{height:7px!important}.h-md-8px{height:8px!important}.h-md-9px{height:9px!important}.h-md-10px{height:10px!important}.h-md-15px{height:15px!important}.h-md-20px{height:20px!important}.h-md-25px{height:25px!important}.h-md-30px{height:30px!important}.h-md-35px{height:35px!important}.h-md-40px{height:40px!important}.h-md-45px{height:45px!important}.h-md-50px{height:50px!important}.h-md-55px{height:55px!important}.h-md-60px{height:60px!important}.h-md-65px{height:65px!important}.h-md-70px{height:70px!important}.h-md-75px{height:75px!important}.h-md-80px{height:80px!important}.h-md-85px{height:85px!important}.h-md-90px{height:90px!important}.h-md-95px{height:95px!important}.h-md-100px{height:100px!important}.h-md-125px{height:125px!important}.h-md-150px{height:150px!important}.h-md-175px{height:175px!important}.h-md-200px{height:200px!important}.h-md-225px{height:225px!important}.h-md-250px{height:250px!important}.h-md-275px{height:275px!important}.h-md-300px{height:300px!important}.h-md-325px{height:325px!important}.h-md-350px{height:350px!important}.h-md-375px{height:375px!important}.h-md-400px{height:400px!important}.h-md-425px{height:425px!important}.h-md-450px{height:450px!important}.h-md-475px{height:475px!important}.h-md-500px{height:500px!important}.h-md-550px{height:550px!important}.h-md-600px{height:600px!important}.h-md-650px{height:650px!important}.h-md-700px{height:700px!important}.h-md-750px{height:750px!important}.h-md-800px{height:800px!important}.h-md-850px{height:850px!important}.h-md-900px{height:900px!important}.h-md-950px{height:950px!important}.h-md-1000px{height:1000px!important}.mh-md-unset{max-height:unset!important}.mh-md-25{max-height:25%!important}.mh-md-50{max-height:50%!important}.mh-md-75{max-height:75%!important}.mh-md-100{max-height:100%!important}.mh-md-auto{max-height:auto!important}.mh-md-1px{max-height:1px!important}.mh-md-2px{max-height:2px!important}.mh-md-3px{max-height:3px!important}.mh-md-4px{max-height:4px!important}.mh-md-5px{max-height:5px!important}.mh-md-6px{max-height:6px!important}.mh-md-7px{max-height:7px!important}.mh-md-8px{max-height:8px!important}.mh-md-9px{max-height:9px!important}.mh-md-10px{max-height:10px!important}.mh-md-15px{max-height:15px!important}.mh-md-20px{max-height:20px!important}.mh-md-25px{max-height:25px!important}.mh-md-30px{max-height:30px!important}.mh-md-35px{max-height:35px!important}.mh-md-40px{max-height:40px!important}.mh-md-45px{max-height:45px!important}.mh-md-50px{max-height:50px!important}.mh-md-55px{max-height:55px!important}.mh-md-60px{max-height:60px!important}.mh-md-65px{max-height:65px!important}.mh-md-70px{max-height:70px!important}.mh-md-75px{max-height:75px!important}.mh-md-80px{max-height:80px!important}.mh-md-85px{max-height:85px!important}.mh-md-90px{max-height:90px!important}.mh-md-95px{max-height:95px!important}.mh-md-100px{max-height:100px!important}.mh-md-125px{max-height:125px!important}.mh-md-150px{max-height:150px!important}.mh-md-175px{max-height:175px!important}.mh-md-200px{max-height:200px!important}.mh-md-225px{max-height:225px!important}.mh-md-250px{max-height:250px!important}.mh-md-275px{max-height:275px!important}.mh-md-300px{max-height:300px!important}.mh-md-325px{max-height:325px!important}.mh-md-350px{max-height:350px!important}.mh-md-375px{max-height:375px!important}.mh-md-400px{max-height:400px!important}.mh-md-425px{max-height:425px!important}.mh-md-450px{max-height:450px!important}.mh-md-475px{max-height:475px!important}.mh-md-500px{max-height:500px!important}.mh-md-550px{max-height:550px!important}.mh-md-600px{max-height:600px!important}.mh-md-650px{max-height:650px!important}.mh-md-700px{max-height:700px!important}.mh-md-750px{max-height:750px!important}.mh-md-800px{max-height:800px!important}.mh-md-850px{max-height:850px!important}.mh-md-900px{max-height:900px!important}.mh-md-950px{max-height:950px!important}.mh-md-1000px{max-height:1000px!important}.flex-md-fill{flex:1 1 auto!important}.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-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}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:.75rem!important}.gap-md-4{gap:1rem!important}.gap-md-5{gap:1.25rem!important}.gap-md-6{gap:1.5rem!important}.gap-md-7{gap:1.75rem!important}.gap-md-8{gap:2rem!important}.gap-md-9{gap:2.25rem!important}.gap-md-10{gap:2.5rem!important}.gap-md-11{gap:2.75rem!important}.gap-md-12{gap:3rem!important}.gap-md-13{gap:3.25rem!important}.gap-md-14{gap:3.5rem!important}.gap-md-15{gap:3.75rem!important}.gap-md-16{gap:4rem!important}.gap-md-17{gap:4.25rem!important}.gap-md-18{gap:4.5rem!important}.gap-md-19{gap:4.75rem!important}.gap-md-20{gap:5rem!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}.justify-content-md-evenly{justify-content:space-evenly!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}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:.75rem!important}.m-md-4{margin:1rem!important}.m-md-5{margin:1.25rem!important}.m-md-6{margin:1.5rem!important}.m-md-7{margin:1.75rem!important}.m-md-8{margin:2rem!important}.m-md-9{margin:2.25rem!important}.m-md-10{margin:2.5rem!important}.m-md-11{margin:2.75rem!important}.m-md-12{margin:3rem!important}.m-md-13{margin:3.25rem!important}.m-md-14{margin:3.5rem!important}.m-md-15{margin:3.75rem!important}.m-md-16{margin:4rem!important}.m-md-17{margin:4.25rem!important}.m-md-18{margin:4.5rem!important}.m-md-19{margin:4.75rem!important}.m-md-20{margin:5rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:.75rem!important;margin-right:.75rem!important}.mx-md-4{margin-left:1rem!important;margin-right:1rem!important}.mx-md-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.mx-md-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.mx-md-8{margin-left:2rem!important;margin-right:2rem!important}.mx-md-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.mx-md-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.mx-md-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.mx-md-12{margin-left:3rem!important;margin-right:3rem!important}.mx-md-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.mx-md-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.mx-md-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.mx-md-16{margin-left:4rem!important;margin-right:4rem!important}.mx-md-17{margin-left:4.25rem!important;margin-right:4.25rem!important}.mx-md-18{margin-left:4.5rem!important;margin-right:4.5rem!important}.mx-md-19{margin-left:4.75rem!important;margin-right:4.75rem!important}.mx-md-20{margin-left:5rem!important;margin-right:5rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-md-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-md-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-md-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-md-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-md-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-md-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-md-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-md-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-md-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-md-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-md-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-md-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-md-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-md-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:.75rem!important}.mt-md-4{margin-top:1rem!important}.mt-md-5{margin-top:1.25rem!important}.mt-md-6{margin-top:1.5rem!important}.mt-md-7{margin-top:1.75rem!important}.mt-md-8{margin-top:2rem!important}.mt-md-9{margin-top:2.25rem!important}.mt-md-10{margin-top:2.5rem!important}.mt-md-11{margin-top:2.75rem!important}.mt-md-12{margin-top:3rem!important}.mt-md-13{margin-top:3.25rem!important}.mt-md-14{margin-top:3.5rem!important}.mt-md-15{margin-top:3.75rem!important}.mt-md-16{margin-top:4rem!important}.mt-md-17{margin-top:4.25rem!important}.mt-md-18{margin-top:4.5rem!important}.mt-md-19{margin-top:4.75rem!important}.mt-md-20{margin-top:5rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-left:0!important}.me-md-1{margin-left:.25rem!important}.me-md-2{margin-left:.5rem!important}.me-md-3{margin-left:.75rem!important}.me-md-4{margin-left:1rem!important}.me-md-5{margin-left:1.25rem!important}.me-md-6{margin-left:1.5rem!important}.me-md-7{margin-left:1.75rem!important}.me-md-8{margin-left:2rem!important}.me-md-9{margin-left:2.25rem!important}.me-md-10{margin-left:2.5rem!important}.me-md-11{margin-left:2.75rem!important}.me-md-12{margin-left:3rem!important}.me-md-13{margin-left:3.25rem!important}.me-md-14{margin-left:3.5rem!important}.me-md-15{margin-left:3.75rem!important}.me-md-16{margin-left:4rem!important}.me-md-17{margin-left:4.25rem!important}.me-md-18{margin-left:4.5rem!important}.me-md-19{margin-left:4.75rem!important}.me-md-20{margin-left:5rem!important}.me-md-auto{margin-left:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:.75rem!important}.mb-md-4{margin-bottom:1rem!important}.mb-md-5{margin-bottom:1.25rem!important}.mb-md-6{margin-bottom:1.5rem!important}.mb-md-7{margin-bottom:1.75rem!important}.mb-md-8{margin-bottom:2rem!important}.mb-md-9{margin-bottom:2.25rem!important}.mb-md-10{margin-bottom:2.5rem!important}.mb-md-11{margin-bottom:2.75rem!important}.mb-md-12{margin-bottom:3rem!important}.mb-md-13{margin-bottom:3.25rem!important}.mb-md-14{margin-bottom:3.5rem!important}.mb-md-15{margin-bottom:3.75rem!important}.mb-md-16{margin-bottom:4rem!important}.mb-md-17{margin-bottom:4.25rem!important}.mb-md-18{margin-bottom:4.5rem!important}.mb-md-19{margin-bottom:4.75rem!important}.mb-md-20{margin-bottom:5rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-right:0!important}.ms-md-1{margin-right:.25rem!important}.ms-md-2{margin-right:.5rem!important}.ms-md-3{margin-right:.75rem!important}.ms-md-4{margin-right:1rem!important}.ms-md-5{margin-right:1.25rem!important}.ms-md-6{margin-right:1.5rem!important}.ms-md-7{margin-right:1.75rem!important}.ms-md-8{margin-right:2rem!important}.ms-md-9{margin-right:2.25rem!important}.ms-md-10{margin-right:2.5rem!important}.ms-md-11{margin-right:2.75rem!important}.ms-md-12{margin-right:3rem!important}.ms-md-13{margin-right:3.25rem!important}.ms-md-14{margin-right:3.5rem!important}.ms-md-15{margin-right:3.75rem!important}.ms-md-16{margin-right:4rem!important}.ms-md-17{margin-right:4.25rem!important}.ms-md-18{margin-right:4.5rem!important}.ms-md-19{margin-right:4.75rem!important}.ms-md-20{margin-right:5rem!important}.ms-md-auto{margin-right:auto!important}.m-md-n1{margin:-.25rem!important}.m-md-n2{margin:-.5rem!important}.m-md-n3{margin:-.75rem!important}.m-md-n4{margin:-1rem!important}.m-md-n5{margin:-1.25rem!important}.m-md-n6{margin:-1.5rem!important}.m-md-n7{margin:-1.75rem!important}.m-md-n8{margin:-2rem!important}.m-md-n9{margin:-2.25rem!important}.m-md-n10{margin:-2.5rem!important}.m-md-n11{margin:-2.75rem!important}.m-md-n12{margin:-3rem!important}.m-md-n13{margin:-3.25rem!important}.m-md-n14{margin:-3.5rem!important}.m-md-n15{margin:-3.75rem!important}.m-md-n16{margin:-4rem!important}.m-md-n17{margin:-4.25rem!important}.m-md-n18{margin:-4.5rem!important}.m-md-n19{margin:-4.75rem!important}.m-md-n20{margin:-5rem!important}.mx-md-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-md-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-md-n3{margin-left:-.75rem!important;margin-right:-.75rem!important}.mx-md-n4{margin-left:-1rem!important;margin-right:-1rem!important}.mx-md-n5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.mx-md-n6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-md-n7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.mx-md-n8{margin-left:-2rem!important;margin-right:-2rem!important}.mx-md-n9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.mx-md-n10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.mx-md-n11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.mx-md-n12{margin-left:-3rem!important;margin-right:-3rem!important}.mx-md-n13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.mx-md-n14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.mx-md-n15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.mx-md-n16{margin-left:-4rem!important;margin-right:-4rem!important}.mx-md-n17{margin-left:-4.25rem!important;margin-right:-4.25rem!important}.mx-md-n18{margin-left:-4.5rem!important;margin-right:-4.5rem!important}.mx-md-n19{margin-left:-4.75rem!important;margin-right:-4.75rem!important}.mx-md-n20{margin-left:-5rem!important;margin-right:-5rem!important}.my-md-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-md-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-md-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-md-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-md-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-md-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-md-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-md-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-md-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-md-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-md-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-md-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-md-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-md-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-md-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-md-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-md-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-md-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-md-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-md-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-md-n1{margin-top:-.25rem!important}.mt-md-n2{margin-top:-.5rem!important}.mt-md-n3{margin-top:-.75rem!important}.mt-md-n4{margin-top:-1rem!important}.mt-md-n5{margin-top:-1.25rem!important}.mt-md-n6{margin-top:-1.5rem!important}.mt-md-n7{margin-top:-1.75rem!important}.mt-md-n8{margin-top:-2rem!important}.mt-md-n9{margin-top:-2.25rem!important}.mt-md-n10{margin-top:-2.5rem!important}.mt-md-n11{margin-top:-2.75rem!important}.mt-md-n12{margin-top:-3rem!important}.mt-md-n13{margin-top:-3.25rem!important}.mt-md-n14{margin-top:-3.5rem!important}.mt-md-n15{margin-top:-3.75rem!important}.mt-md-n16{margin-top:-4rem!important}.mt-md-n17{margin-top:-4.25rem!important}.mt-md-n18{margin-top:-4.5rem!important}.mt-md-n19{margin-top:-4.75rem!important}.mt-md-n20{margin-top:-5rem!important}.me-md-n1{margin-left:-.25rem!important}.me-md-n2{margin-left:-.5rem!important}.me-md-n3{margin-left:-.75rem!important}.me-md-n4{margin-left:-1rem!important}.me-md-n5{margin-left:-1.25rem!important}.me-md-n6{margin-left:-1.5rem!important}.me-md-n7{margin-left:-1.75rem!important}.me-md-n8{margin-left:-2rem!important}.me-md-n9{margin-left:-2.25rem!important}.me-md-n10{margin-left:-2.5rem!important}.me-md-n11{margin-left:-2.75rem!important}.me-md-n12{margin-left:-3rem!important}.me-md-n13{margin-left:-3.25rem!important}.me-md-n14{margin-left:-3.5rem!important}.me-md-n15{margin-left:-3.75rem!important}.me-md-n16{margin-left:-4rem!important}.me-md-n17{margin-left:-4.25rem!important}.me-md-n18{margin-left:-4.5rem!important}.me-md-n19{margin-left:-4.75rem!important}.me-md-n20{margin-left:-5rem!important}.mb-md-n1{margin-bottom:-.25rem!important}.mb-md-n2{margin-bottom:-.5rem!important}.mb-md-n3{margin-bottom:-.75rem!important}.mb-md-n4{margin-bottom:-1rem!important}.mb-md-n5{margin-bottom:-1.25rem!important}.mb-md-n6{margin-bottom:-1.5rem!important}.mb-md-n7{margin-bottom:-1.75rem!important}.mb-md-n8{margin-bottom:-2rem!important}.mb-md-n9{margin-bottom:-2.25rem!important}.mb-md-n10{margin-bottom:-2.5rem!important}.mb-md-n11{margin-bottom:-2.75rem!important}.mb-md-n12{margin-bottom:-3rem!important}.mb-md-n13{margin-bottom:-3.25rem!important}.mb-md-n14{margin-bottom:-3.5rem!important}.mb-md-n15{margin-bottom:-3.75rem!important}.mb-md-n16{margin-bottom:-4rem!important}.mb-md-n17{margin-bottom:-4.25rem!important}.mb-md-n18{margin-bottom:-4.5rem!important}.mb-md-n19{margin-bottom:-4.75rem!important}.mb-md-n20{margin-bottom:-5rem!important}.ms-md-n1{margin-right:-.25rem!important}.ms-md-n2{margin-right:-.5rem!important}.ms-md-n3{margin-right:-.75rem!important}.ms-md-n4{margin-right:-1rem!important}.ms-md-n5{margin-right:-1.25rem!important}.ms-md-n6{margin-right:-1.5rem!important}.ms-md-n7{margin-right:-1.75rem!important}.ms-md-n8{margin-right:-2rem!important}.ms-md-n9{margin-right:-2.25rem!important}.ms-md-n10{margin-right:-2.5rem!important}.ms-md-n11{margin-right:-2.75rem!important}.ms-md-n12{margin-right:-3rem!important}.ms-md-n13{margin-right:-3.25rem!important}.ms-md-n14{margin-right:-3.5rem!important}.ms-md-n15{margin-right:-3.75rem!important}.ms-md-n16{margin-right:-4rem!important}.ms-md-n17{margin-right:-4.25rem!important}.ms-md-n18{margin-right:-4.5rem!important}.ms-md-n19{margin-right:-4.75rem!important}.ms-md-n20{margin-right:-5rem!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:.75rem!important}.p-md-4{padding:1rem!important}.p-md-5{padding:1.25rem!important}.p-md-6{padding:1.5rem!important}.p-md-7{padding:1.75rem!important}.p-md-8{padding:2rem!important}.p-md-9{padding:2.25rem!important}.p-md-10{padding:2.5rem!important}.p-md-11{padding:2.75rem!important}.p-md-12{padding:3rem!important}.p-md-13{padding:3.25rem!important}.p-md-14{padding:3.5rem!important}.p-md-15{padding:3.75rem!important}.p-md-16{padding:4rem!important}.p-md-17{padding:4.25rem!important}.p-md-18{padding:4.5rem!important}.p-md-19{padding:4.75rem!important}.p-md-20{padding:5rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-md-4{padding-left:1rem!important;padding-right:1rem!important}.px-md-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-md-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.px-md-8{padding-left:2rem!important;padding-right:2rem!important}.px-md-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.px-md-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.px-md-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.px-md-12{padding-left:3rem!important;padding-right:3rem!important}.px-md-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.px-md-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.px-md-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.px-md-16{padding-left:4rem!important;padding-right:4rem!important}.px-md-17{padding-left:4.25rem!important;padding-right:4.25rem!important}.px-md-18{padding-left:4.5rem!important;padding-right:4.5rem!important}.px-md-19{padding-left:4.75rem!important;padding-right:4.75rem!important}.px-md-20{padding-left:5rem!important;padding-right:5rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-md-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-md-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-md-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-md-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-md-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-md-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-md-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-md-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-md-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-md-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-md-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-md-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-md-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-md-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-md-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:.75rem!important}.pt-md-4{padding-top:1rem!important}.pt-md-5{padding-top:1.25rem!important}.pt-md-6{padding-top:1.5rem!important}.pt-md-7{padding-top:1.75rem!important}.pt-md-8{padding-top:2rem!important}.pt-md-9{padding-top:2.25rem!important}.pt-md-10{padding-top:2.5rem!important}.pt-md-11{padding-top:2.75rem!important}.pt-md-12{padding-top:3rem!important}.pt-md-13{padding-top:3.25rem!important}.pt-md-14{padding-top:3.5rem!important}.pt-md-15{padding-top:3.75rem!important}.pt-md-16{padding-top:4rem!important}.pt-md-17{padding-top:4.25rem!important}.pt-md-18{padding-top:4.5rem!important}.pt-md-19{padding-top:4.75rem!important}.pt-md-20{padding-top:5rem!important}.pe-md-0{padding-left:0!important}.pe-md-1{padding-left:.25rem!important}.pe-md-2{padding-left:.5rem!important}.pe-md-3{padding-left:.75rem!important}.pe-md-4{padding-left:1rem!important}.pe-md-5{padding-left:1.25rem!important}.pe-md-6{padding-left:1.5rem!important}.pe-md-7{padding-left:1.75rem!important}.pe-md-8{padding-left:2rem!important}.pe-md-9{padding-left:2.25rem!important}.pe-md-10{padding-left:2.5rem!important}.pe-md-11{padding-left:2.75rem!important}.pe-md-12{padding-left:3rem!important}.pe-md-13{padding-left:3.25rem!important}.pe-md-14{padding-left:3.5rem!important}.pe-md-15{padding-left:3.75rem!important}.pe-md-16{padding-left:4rem!important}.pe-md-17{padding-left:4.25rem!important}.pe-md-18{padding-left:4.5rem!important}.pe-md-19{padding-left:4.75rem!important}.pe-md-20{padding-left:5rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:.75rem!important}.pb-md-4{padding-bottom:1rem!important}.pb-md-5{padding-bottom:1.25rem!important}.pb-md-6{padding-bottom:1.5rem!important}.pb-md-7{padding-bottom:1.75rem!important}.pb-md-8{padding-bottom:2rem!important}.pb-md-9{padding-bottom:2.25rem!important}.pb-md-10{padding-bottom:2.5rem!important}.pb-md-11{padding-bottom:2.75rem!important}.pb-md-12{padding-bottom:3rem!important}.pb-md-13{padding-bottom:3.25rem!important}.pb-md-14{padding-bottom:3.5rem!important}.pb-md-15{padding-bottom:3.75rem!important}.pb-md-16{padding-bottom:4rem!important}.pb-md-17{padding-bottom:4.25rem!important}.pb-md-18{padding-bottom:4.5rem!important}.pb-md-19{padding-bottom:4.75rem!important}.pb-md-20{padding-bottom:5rem!important}.ps-md-0{padding-right:0!important}.ps-md-1{padding-right:.25rem!important}.ps-md-2{padding-right:.5rem!important}.ps-md-3{padding-right:.75rem!important}.ps-md-4{padding-right:1rem!important}.ps-md-5{padding-right:1.25rem!important}.ps-md-6{padding-right:1.5rem!important}.ps-md-7{padding-right:1.75rem!important}.ps-md-8{padding-right:2rem!important}.ps-md-9{padding-right:2.25rem!important}.ps-md-10{padding-right:2.5rem!important}.ps-md-11{padding-right:2.75rem!important}.ps-md-12{padding-right:3rem!important}.ps-md-13{padding-right:3.25rem!important}.ps-md-14{padding-right:3.5rem!important}.ps-md-15{padding-right:3.75rem!important}.ps-md-16{padding-right:4rem!important}.ps-md-17{padding-right:4.25rem!important}.ps-md-18{padding-right:4.5rem!important}.ps-md-19{padding-right:4.75rem!important}.ps-md-20{padding-right:5rem!important}.fs-md-1{font-size:calc(1.3rem + .6vw)!important}.fs-md-2{font-size:calc(1.275rem + .3vw)!important}.fs-md-3{font-size:calc(1.26rem + .12vw)!important}.fs-md-4{font-size:1.25rem!important}.fs-md-5{font-size:1.15rem!important}.fs-md-6{font-size:1.075rem!important}.fs-md-7{font-size:.95rem!important}.fs-md-8{font-size:.85rem!important}.fs-md-9{font-size:.75rem!important}.fs-md-10{font-size:.5rem!important}.fs-md-base{font-size:1rem!important}.fs-md-fluid{font-size:100%!important}.fs-md-2x{font-size:calc(1.325rem + .9vw)!important}.fs-md-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-md-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-md-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-md-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-md-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-md-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-md-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-md-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-md-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-md-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-md-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-md-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-md-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-md-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-md-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-md-start{text-align:right!important}.text-md-end{text-align:left!important}.text-md-center{text-align:center!important}.min-w-md-unset{min-width:unset!important}.min-w-md-25{min-width:25%!important}.min-w-md-50{min-width:50%!important}.min-w-md-75{min-width:75%!important}.min-w-md-100{min-width:100%!important}.min-w-md-auto{min-width:auto!important}.min-w-md-1px{min-width:1px!important}.min-w-md-2px{min-width:2px!important}.min-w-md-3px{min-width:3px!important}.min-w-md-4px{min-width:4px!important}.min-w-md-5px{min-width:5px!important}.min-w-md-6px{min-width:6px!important}.min-w-md-7px{min-width:7px!important}.min-w-md-8px{min-width:8px!important}.min-w-md-9px{min-width:9px!important}.min-w-md-10px{min-width:10px!important}.min-w-md-15px{min-width:15px!important}.min-w-md-20px{min-width:20px!important}.min-w-md-25px{min-width:25px!important}.min-w-md-30px{min-width:30px!important}.min-w-md-35px{min-width:35px!important}.min-w-md-40px{min-width:40px!important}.min-w-md-45px{min-width:45px!important}.min-w-md-50px{min-width:50px!important}.min-w-md-55px{min-width:55px!important}.min-w-md-60px{min-width:60px!important}.min-w-md-65px{min-width:65px!important}.min-w-md-70px{min-width:70px!important}.min-w-md-75px{min-width:75px!important}.min-w-md-80px{min-width:80px!important}.min-w-md-85px{min-width:85px!important}.min-w-md-90px{min-width:90px!important}.min-w-md-95px{min-width:95px!important}.min-w-md-100px{min-width:100px!important}.min-w-md-125px{min-width:125px!important}.min-w-md-150px{min-width:150px!important}.min-w-md-175px{min-width:175px!important}.min-w-md-200px{min-width:200px!important}.min-w-md-225px{min-width:225px!important}.min-w-md-250px{min-width:250px!important}.min-w-md-275px{min-width:275px!important}.min-w-md-300px{min-width:300px!important}.min-w-md-325px{min-width:325px!important}.min-w-md-350px{min-width:350px!important}.min-w-md-375px{min-width:375px!important}.min-w-md-400px{min-width:400px!important}.min-w-md-425px{min-width:425px!important}.min-w-md-450px{min-width:450px!important}.min-w-md-475px{min-width:475px!important}.min-w-md-500px{min-width:500px!important}.min-w-md-550px{min-width:550px!important}.min-w-md-600px{min-width:600px!important}.min-w-md-650px{min-width:650px!important}.min-w-md-700px{min-width:700px!important}.min-w-md-750px{min-width:750px!important}.min-w-md-800px{min-width:800px!important}.min-w-md-850px{min-width:850px!important}.min-w-md-900px{min-width:900px!important}.min-w-md-950px{min-width:950px!important}.min-w-md-1000px{min-width:1000px!important}.min-h-md-unset{min-height:unset!important}.min-h-md-25{min-height:25%!important}.min-h-md-50{min-height:50%!important}.min-h-md-75{min-height:75%!important}.min-h-md-100{min-height:100%!important}.min-h-md-auto{min-height:auto!important}.min-h-md-1px{min-height:1px!important}.min-h-md-2px{min-height:2px!important}.min-h-md-3px{min-height:3px!important}.min-h-md-4px{min-height:4px!important}.min-h-md-5px{min-height:5px!important}.min-h-md-6px{min-height:6px!important}.min-h-md-7px{min-height:7px!important}.min-h-md-8px{min-height:8px!important}.min-h-md-9px{min-height:9px!important}.min-h-md-10px{min-height:10px!important}.min-h-md-15px{min-height:15px!important}.min-h-md-20px{min-height:20px!important}.min-h-md-25px{min-height:25px!important}.min-h-md-30px{min-height:30px!important}.min-h-md-35px{min-height:35px!important}.min-h-md-40px{min-height:40px!important}.min-h-md-45px{min-height:45px!important}.min-h-md-50px{min-height:50px!important}.min-h-md-55px{min-height:55px!important}.min-h-md-60px{min-height:60px!important}.min-h-md-65px{min-height:65px!important}.min-h-md-70px{min-height:70px!important}.min-h-md-75px{min-height:75px!important}.min-h-md-80px{min-height:80px!important}.min-h-md-85px{min-height:85px!important}.min-h-md-90px{min-height:90px!important}.min-h-md-95px{min-height:95px!important}.min-h-md-100px{min-height:100px!important}.min-h-md-125px{min-height:125px!important}.min-h-md-150px{min-height:150px!important}.min-h-md-175px{min-height:175px!important}.min-h-md-200px{min-height:200px!important}.min-h-md-225px{min-height:225px!important}.min-h-md-250px{min-height:250px!important}.min-h-md-275px{min-height:275px!important}.min-h-md-300px{min-height:300px!important}.min-h-md-325px{min-height:325px!important}.min-h-md-350px{min-height:350px!important}.min-h-md-375px{min-height:375px!important}.min-h-md-400px{min-height:400px!important}.min-h-md-425px{min-height:425px!important}.min-h-md-450px{min-height:450px!important}.min-h-md-475px{min-height:475px!important}.min-h-md-500px{min-height:500px!important}.min-h-md-550px{min-height:550px!important}.min-h-md-600px{min-height:600px!important}.min-h-md-650px{min-height:650px!important}.min-h-md-700px{min-height:700px!important}.min-h-md-750px{min-height:750px!important}.min-h-md-800px{min-height:800px!important}.min-h-md-850px{min-height:850px!important}.min-h-md-900px{min-height:900px!important}.min-h-md-950px{min-height:950px!important}.min-h-md-1000px{min-height:1000px!important}}@media (min-width:992px){.float-lg-start{float:right!important}.float-lg-end{float:left!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!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}.d-lg-none{display:none!important}.position-lg-static{position:static!important}.position-lg-relative{position:relative!important}.position-lg-absolute{position:absolute!important}.position-lg-fixed{position:fixed!important}.position-lg-sticky{position:sticky!important}.w-lg-unset{width:unset!important}.w-lg-25{width:25%!important}.w-lg-50{width:50%!important}.w-lg-75{width:75%!important}.w-lg-100{width:100%!important}.w-lg-auto{width:auto!important}.w-lg-1px{width:1px!important}.w-lg-2px{width:2px!important}.w-lg-3px{width:3px!important}.w-lg-4px{width:4px!important}.w-lg-5px{width:5px!important}.w-lg-6px{width:6px!important}.w-lg-7px{width:7px!important}.w-lg-8px{width:8px!important}.w-lg-9px{width:9px!important}.w-lg-10px{width:10px!important}.w-lg-15px{width:15px!important}.w-lg-20px{width:20px!important}.w-lg-25px{width:25px!important}.w-lg-30px{width:30px!important}.w-lg-35px{width:35px!important}.w-lg-40px{width:40px!important}.w-lg-45px{width:45px!important}.w-lg-50px{width:50px!important}.w-lg-55px{width:55px!important}.w-lg-60px{width:60px!important}.w-lg-65px{width:65px!important}.w-lg-70px{width:70px!important}.w-lg-75px{width:75px!important}.w-lg-80px{width:80px!important}.w-lg-85px{width:85px!important}.w-lg-90px{width:90px!important}.w-lg-95px{width:95px!important}.w-lg-100px{width:100px!important}.w-lg-125px{width:125px!important}.w-lg-150px{width:150px!important}.w-lg-175px{width:175px!important}.w-lg-200px{width:200px!important}.w-lg-225px{width:225px!important}.w-lg-250px{width:250px!important}.w-lg-275px{width:275px!important}.w-lg-300px{width:300px!important}.w-lg-325px{width:325px!important}.w-lg-350px{width:350px!important}.w-lg-375px{width:375px!important}.w-lg-400px{width:400px!important}.w-lg-425px{width:425px!important}.w-lg-450px{width:450px!important}.w-lg-475px{width:475px!important}.w-lg-500px{width:500px!important}.w-lg-550px{width:550px!important}.w-lg-600px{width:600px!important}.w-lg-650px{width:650px!important}.w-lg-700px{width:700px!important}.w-lg-750px{width:750px!important}.w-lg-800px{width:800px!important}.w-lg-850px{width:850px!important}.w-lg-900px{width:900px!important}.w-lg-950px{width:950px!important}.w-lg-1000px{width:1000px!important}.mw-lg-unset{max-width:unset!important}.mw-lg-25{max-width:25%!important}.mw-lg-50{max-width:50%!important}.mw-lg-75{max-width:75%!important}.mw-lg-100{max-width:100%!important}.mw-lg-auto{max-width:auto!important}.mw-lg-1px{max-width:1px!important}.mw-lg-2px{max-width:2px!important}.mw-lg-3px{max-width:3px!important}.mw-lg-4px{max-width:4px!important}.mw-lg-5px{max-width:5px!important}.mw-lg-6px{max-width:6px!important}.mw-lg-7px{max-width:7px!important}.mw-lg-8px{max-width:8px!important}.mw-lg-9px{max-width:9px!important}.mw-lg-10px{max-width:10px!important}.mw-lg-15px{max-width:15px!important}.mw-lg-20px{max-width:20px!important}.mw-lg-25px{max-width:25px!important}.mw-lg-30px{max-width:30px!important}.mw-lg-35px{max-width:35px!important}.mw-lg-40px{max-width:40px!important}.mw-lg-45px{max-width:45px!important}.mw-lg-50px{max-width:50px!important}.mw-lg-55px{max-width:55px!important}.mw-lg-60px{max-width:60px!important}.mw-lg-65px{max-width:65px!important}.mw-lg-70px{max-width:70px!important}.mw-lg-75px{max-width:75px!important}.mw-lg-80px{max-width:80px!important}.mw-lg-85px{max-width:85px!important}.mw-lg-90px{max-width:90px!important}.mw-lg-95px{max-width:95px!important}.mw-lg-100px{max-width:100px!important}.mw-lg-125px{max-width:125px!important}.mw-lg-150px{max-width:150px!important}.mw-lg-175px{max-width:175px!important}.mw-lg-200px{max-width:200px!important}.mw-lg-225px{max-width:225px!important}.mw-lg-250px{max-width:250px!important}.mw-lg-275px{max-width:275px!important}.mw-lg-300px{max-width:300px!important}.mw-lg-325px{max-width:325px!important}.mw-lg-350px{max-width:350px!important}.mw-lg-375px{max-width:375px!important}.mw-lg-400px{max-width:400px!important}.mw-lg-425px{max-width:425px!important}.mw-lg-450px{max-width:450px!important}.mw-lg-475px{max-width:475px!important}.mw-lg-500px{max-width:500px!important}.mw-lg-550px{max-width:550px!important}.mw-lg-600px{max-width:600px!important}.mw-lg-650px{max-width:650px!important}.mw-lg-700px{max-width:700px!important}.mw-lg-750px{max-width:750px!important}.mw-lg-800px{max-width:800px!important}.mw-lg-850px{max-width:850px!important}.mw-lg-900px{max-width:900px!important}.mw-lg-950px{max-width:950px!important}.mw-lg-1000px{max-width:1000px!important}.h-lg-unset{height:unset!important}.h-lg-25{height:25%!important}.h-lg-50{height:50%!important}.h-lg-75{height:75%!important}.h-lg-100{height:100%!important}.h-lg-auto{height:auto!important}.h-lg-1px{height:1px!important}.h-lg-2px{height:2px!important}.h-lg-3px{height:3px!important}.h-lg-4px{height:4px!important}.h-lg-5px{height:5px!important}.h-lg-6px{height:6px!important}.h-lg-7px{height:7px!important}.h-lg-8px{height:8px!important}.h-lg-9px{height:9px!important}.h-lg-10px{height:10px!important}.h-lg-15px{height:15px!important}.h-lg-20px{height:20px!important}.h-lg-25px{height:25px!important}.h-lg-30px{height:30px!important}.h-lg-35px{height:35px!important}.h-lg-40px{height:40px!important}.h-lg-45px{height:45px!important}.h-lg-50px{height:50px!important}.h-lg-55px{height:55px!important}.h-lg-60px{height:60px!important}.h-lg-65px{height:65px!important}.h-lg-70px{height:70px!important}.h-lg-75px{height:75px!important}.h-lg-80px{height:80px!important}.h-lg-85px{height:85px!important}.h-lg-90px{height:90px!important}.h-lg-95px{height:95px!important}.h-lg-100px{height:100px!important}.h-lg-125px{height:125px!important}.h-lg-150px{height:150px!important}.h-lg-175px{height:175px!important}.h-lg-200px{height:200px!important}.h-lg-225px{height:225px!important}.h-lg-250px{height:250px!important}.h-lg-275px{height:275px!important}.h-lg-300px{height:300px!important}.h-lg-325px{height:325px!important}.h-lg-350px{height:350px!important}.h-lg-375px{height:375px!important}.h-lg-400px{height:400px!important}.h-lg-425px{height:425px!important}.h-lg-450px{height:450px!important}.h-lg-475px{height:475px!important}.h-lg-500px{height:500px!important}.h-lg-550px{height:550px!important}.h-lg-600px{height:600px!important}.h-lg-650px{height:650px!important}.h-lg-700px{height:700px!important}.h-lg-750px{height:750px!important}.h-lg-800px{height:800px!important}.h-lg-850px{height:850px!important}.h-lg-900px{height:900px!important}.h-lg-950px{height:950px!important}.h-lg-1000px{height:1000px!important}.mh-lg-unset{max-height:unset!important}.mh-lg-25{max-height:25%!important}.mh-lg-50{max-height:50%!important}.mh-lg-75{max-height:75%!important}.mh-lg-100{max-height:100%!important}.mh-lg-auto{max-height:auto!important}.mh-lg-1px{max-height:1px!important}.mh-lg-2px{max-height:2px!important}.mh-lg-3px{max-height:3px!important}.mh-lg-4px{max-height:4px!important}.mh-lg-5px{max-height:5px!important}.mh-lg-6px{max-height:6px!important}.mh-lg-7px{max-height:7px!important}.mh-lg-8px{max-height:8px!important}.mh-lg-9px{max-height:9px!important}.mh-lg-10px{max-height:10px!important}.mh-lg-15px{max-height:15px!important}.mh-lg-20px{max-height:20px!important}.mh-lg-25px{max-height:25px!important}.mh-lg-30px{max-height:30px!important}.mh-lg-35px{max-height:35px!important}.mh-lg-40px{max-height:40px!important}.mh-lg-45px{max-height:45px!important}.mh-lg-50px{max-height:50px!important}.mh-lg-55px{max-height:55px!important}.mh-lg-60px{max-height:60px!important}.mh-lg-65px{max-height:65px!important}.mh-lg-70px{max-height:70px!important}.mh-lg-75px{max-height:75px!important}.mh-lg-80px{max-height:80px!important}.mh-lg-85px{max-height:85px!important}.mh-lg-90px{max-height:90px!important}.mh-lg-95px{max-height:95px!important}.mh-lg-100px{max-height:100px!important}.mh-lg-125px{max-height:125px!important}.mh-lg-150px{max-height:150px!important}.mh-lg-175px{max-height:175px!important}.mh-lg-200px{max-height:200px!important}.mh-lg-225px{max-height:225px!important}.mh-lg-250px{max-height:250px!important}.mh-lg-275px{max-height:275px!important}.mh-lg-300px{max-height:300px!important}.mh-lg-325px{max-height:325px!important}.mh-lg-350px{max-height:350px!important}.mh-lg-375px{max-height:375px!important}.mh-lg-400px{max-height:400px!important}.mh-lg-425px{max-height:425px!important}.mh-lg-450px{max-height:450px!important}.mh-lg-475px{max-height:475px!important}.mh-lg-500px{max-height:500px!important}.mh-lg-550px{max-height:550px!important}.mh-lg-600px{max-height:600px!important}.mh-lg-650px{max-height:650px!important}.mh-lg-700px{max-height:700px!important}.mh-lg-750px{max-height:750px!important}.mh-lg-800px{max-height:800px!important}.mh-lg-850px{max-height:850px!important}.mh-lg-900px{max-height:900px!important}.mh-lg-950px{max-height:950px!important}.mh-lg-1000px{max-height:1000px!important}.flex-lg-fill{flex:1 1 auto!important}.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-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}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:.75rem!important}.gap-lg-4{gap:1rem!important}.gap-lg-5{gap:1.25rem!important}.gap-lg-6{gap:1.5rem!important}.gap-lg-7{gap:1.75rem!important}.gap-lg-8{gap:2rem!important}.gap-lg-9{gap:2.25rem!important}.gap-lg-10{gap:2.5rem!important}.gap-lg-11{gap:2.75rem!important}.gap-lg-12{gap:3rem!important}.gap-lg-13{gap:3.25rem!important}.gap-lg-14{gap:3.5rem!important}.gap-lg-15{gap:3.75rem!important}.gap-lg-16{gap:4rem!important}.gap-lg-17{gap:4.25rem!important}.gap-lg-18{gap:4.5rem!important}.gap-lg-19{gap:4.75rem!important}.gap-lg-20{gap:5rem!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}.justify-content-lg-evenly{justify-content:space-evenly!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}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:.75rem!important}.m-lg-4{margin:1rem!important}.m-lg-5{margin:1.25rem!important}.m-lg-6{margin:1.5rem!important}.m-lg-7{margin:1.75rem!important}.m-lg-8{margin:2rem!important}.m-lg-9{margin:2.25rem!important}.m-lg-10{margin:2.5rem!important}.m-lg-11{margin:2.75rem!important}.m-lg-12{margin:3rem!important}.m-lg-13{margin:3.25rem!important}.m-lg-14{margin:3.5rem!important}.m-lg-15{margin:3.75rem!important}.m-lg-16{margin:4rem!important}.m-lg-17{margin:4.25rem!important}.m-lg-18{margin:4.5rem!important}.m-lg-19{margin:4.75rem!important}.m-lg-20{margin:5rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:.75rem!important;margin-right:.75rem!important}.mx-lg-4{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.mx-lg-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.mx-lg-8{margin-left:2rem!important;margin-right:2rem!important}.mx-lg-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.mx-lg-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.mx-lg-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.mx-lg-12{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.mx-lg-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.mx-lg-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.mx-lg-16{margin-left:4rem!important;margin-right:4rem!important}.mx-lg-17{margin-left:4.25rem!important;margin-right:4.25rem!important}.mx-lg-18{margin-left:4.5rem!important;margin-right:4.5rem!important}.mx-lg-19{margin-left:4.75rem!important;margin-right:4.75rem!important}.mx-lg-20{margin-left:5rem!important;margin-right:5rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-lg-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-lg-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-lg-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-lg-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-lg-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-lg-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-lg-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-lg-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-lg-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-lg-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-lg-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-lg-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-lg-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-lg-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:.75rem!important}.mt-lg-4{margin-top:1rem!important}.mt-lg-5{margin-top:1.25rem!important}.mt-lg-6{margin-top:1.5rem!important}.mt-lg-7{margin-top:1.75rem!important}.mt-lg-8{margin-top:2rem!important}.mt-lg-9{margin-top:2.25rem!important}.mt-lg-10{margin-top:2.5rem!important}.mt-lg-11{margin-top:2.75rem!important}.mt-lg-12{margin-top:3rem!important}.mt-lg-13{margin-top:3.25rem!important}.mt-lg-14{margin-top:3.5rem!important}.mt-lg-15{margin-top:3.75rem!important}.mt-lg-16{margin-top:4rem!important}.mt-lg-17{margin-top:4.25rem!important}.mt-lg-18{margin-top:4.5rem!important}.mt-lg-19{margin-top:4.75rem!important}.mt-lg-20{margin-top:5rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-left:0!important}.me-lg-1{margin-left:.25rem!important}.me-lg-2{margin-left:.5rem!important}.me-lg-3{margin-left:.75rem!important}.me-lg-4{margin-left:1rem!important}.me-lg-5{margin-left:1.25rem!important}.me-lg-6{margin-left:1.5rem!important}.me-lg-7{margin-left:1.75rem!important}.me-lg-8{margin-left:2rem!important}.me-lg-9{margin-left:2.25rem!important}.me-lg-10{margin-left:2.5rem!important}.me-lg-11{margin-left:2.75rem!important}.me-lg-12{margin-left:3rem!important}.me-lg-13{margin-left:3.25rem!important}.me-lg-14{margin-left:3.5rem!important}.me-lg-15{margin-left:3.75rem!important}.me-lg-16{margin-left:4rem!important}.me-lg-17{margin-left:4.25rem!important}.me-lg-18{margin-left:4.5rem!important}.me-lg-19{margin-left:4.75rem!important}.me-lg-20{margin-left:5rem!important}.me-lg-auto{margin-left:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:.75rem!important}.mb-lg-4{margin-bottom:1rem!important}.mb-lg-5{margin-bottom:1.25rem!important}.mb-lg-6{margin-bottom:1.5rem!important}.mb-lg-7{margin-bottom:1.75rem!important}.mb-lg-8{margin-bottom:2rem!important}.mb-lg-9{margin-bottom:2.25rem!important}.mb-lg-10{margin-bottom:2.5rem!important}.mb-lg-11{margin-bottom:2.75rem!important}.mb-lg-12{margin-bottom:3rem!important}.mb-lg-13{margin-bottom:3.25rem!important}.mb-lg-14{margin-bottom:3.5rem!important}.mb-lg-15{margin-bottom:3.75rem!important}.mb-lg-16{margin-bottom:4rem!important}.mb-lg-17{margin-bottom:4.25rem!important}.mb-lg-18{margin-bottom:4.5rem!important}.mb-lg-19{margin-bottom:4.75rem!important}.mb-lg-20{margin-bottom:5rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-right:0!important}.ms-lg-1{margin-right:.25rem!important}.ms-lg-2{margin-right:.5rem!important}.ms-lg-3{margin-right:.75rem!important}.ms-lg-4{margin-right:1rem!important}.ms-lg-5{margin-right:1.25rem!important}.ms-lg-6{margin-right:1.5rem!important}.ms-lg-7{margin-right:1.75rem!important}.ms-lg-8{margin-right:2rem!important}.ms-lg-9{margin-right:2.25rem!important}.ms-lg-10{margin-right:2.5rem!important}.ms-lg-11{margin-right:2.75rem!important}.ms-lg-12{margin-right:3rem!important}.ms-lg-13{margin-right:3.25rem!important}.ms-lg-14{margin-right:3.5rem!important}.ms-lg-15{margin-right:3.75rem!important}.ms-lg-16{margin-right:4rem!important}.ms-lg-17{margin-right:4.25rem!important}.ms-lg-18{margin-right:4.5rem!important}.ms-lg-19{margin-right:4.75rem!important}.ms-lg-20{margin-right:5rem!important}.ms-lg-auto{margin-right:auto!important}.m-lg-n1{margin:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.m-lg-n3{margin:-.75rem!important}.m-lg-n4{margin:-1rem!important}.m-lg-n5{margin:-1.25rem!important}.m-lg-n6{margin:-1.5rem!important}.m-lg-n7{margin:-1.75rem!important}.m-lg-n8{margin:-2rem!important}.m-lg-n9{margin:-2.25rem!important}.m-lg-n10{margin:-2.5rem!important}.m-lg-n11{margin:-2.75rem!important}.m-lg-n12{margin:-3rem!important}.m-lg-n13{margin:-3.25rem!important}.m-lg-n14{margin:-3.5rem!important}.m-lg-n15{margin:-3.75rem!important}.m-lg-n16{margin:-4rem!important}.m-lg-n17{margin:-4.25rem!important}.m-lg-n18{margin:-4.5rem!important}.m-lg-n19{margin:-4.75rem!important}.m-lg-n20{margin:-5rem!important}.mx-lg-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-lg-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-lg-n3{margin-left:-.75rem!important;margin-right:-.75rem!important}.mx-lg-n4{margin-left:-1rem!important;margin-right:-1rem!important}.mx-lg-n5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.mx-lg-n6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-lg-n7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.mx-lg-n8{margin-left:-2rem!important;margin-right:-2rem!important}.mx-lg-n9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.mx-lg-n10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.mx-lg-n11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.mx-lg-n12{margin-left:-3rem!important;margin-right:-3rem!important}.mx-lg-n13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.mx-lg-n14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.mx-lg-n15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.mx-lg-n16{margin-left:-4rem!important;margin-right:-4rem!important}.mx-lg-n17{margin-left:-4.25rem!important;margin-right:-4.25rem!important}.mx-lg-n18{margin-left:-4.5rem!important;margin-right:-4.5rem!important}.mx-lg-n19{margin-left:-4.75rem!important;margin-right:-4.75rem!important}.mx-lg-n20{margin-left:-5rem!important;margin-right:-5rem!important}.my-lg-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-lg-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-lg-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-lg-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-lg-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-lg-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-lg-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-lg-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-lg-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-lg-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-lg-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-lg-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-lg-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-lg-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-lg-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-lg-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-lg-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-lg-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-lg-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-lg-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-lg-n1{margin-top:-.25rem!important}.mt-lg-n2{margin-top:-.5rem!important}.mt-lg-n3{margin-top:-.75rem!important}.mt-lg-n4{margin-top:-1rem!important}.mt-lg-n5{margin-top:-1.25rem!important}.mt-lg-n6{margin-top:-1.5rem!important}.mt-lg-n7{margin-top:-1.75rem!important}.mt-lg-n8{margin-top:-2rem!important}.mt-lg-n9{margin-top:-2.25rem!important}.mt-lg-n10{margin-top:-2.5rem!important}.mt-lg-n11{margin-top:-2.75rem!important}.mt-lg-n12{margin-top:-3rem!important}.mt-lg-n13{margin-top:-3.25rem!important}.mt-lg-n14{margin-top:-3.5rem!important}.mt-lg-n15{margin-top:-3.75rem!important}.mt-lg-n16{margin-top:-4rem!important}.mt-lg-n17{margin-top:-4.25rem!important}.mt-lg-n18{margin-top:-4.5rem!important}.mt-lg-n19{margin-top:-4.75rem!important}.mt-lg-n20{margin-top:-5rem!important}.me-lg-n1{margin-left:-.25rem!important}.me-lg-n2{margin-left:-.5rem!important}.me-lg-n3{margin-left:-.75rem!important}.me-lg-n4{margin-left:-1rem!important}.me-lg-n5{margin-left:-1.25rem!important}.me-lg-n6{margin-left:-1.5rem!important}.me-lg-n7{margin-left:-1.75rem!important}.me-lg-n8{margin-left:-2rem!important}.me-lg-n9{margin-left:-2.25rem!important}.me-lg-n10{margin-left:-2.5rem!important}.me-lg-n11{margin-left:-2.75rem!important}.me-lg-n12{margin-left:-3rem!important}.me-lg-n13{margin-left:-3.25rem!important}.me-lg-n14{margin-left:-3.5rem!important}.me-lg-n15{margin-left:-3.75rem!important}.me-lg-n16{margin-left:-4rem!important}.me-lg-n17{margin-left:-4.25rem!important}.me-lg-n18{margin-left:-4.5rem!important}.me-lg-n19{margin-left:-4.75rem!important}.me-lg-n20{margin-left:-5rem!important}.mb-lg-n1{margin-bottom:-.25rem!important}.mb-lg-n2{margin-bottom:-.5rem!important}.mb-lg-n3{margin-bottom:-.75rem!important}.mb-lg-n4{margin-bottom:-1rem!important}.mb-lg-n5{margin-bottom:-1.25rem!important}.mb-lg-n6{margin-bottom:-1.5rem!important}.mb-lg-n7{margin-bottom:-1.75rem!important}.mb-lg-n8{margin-bottom:-2rem!important}.mb-lg-n9{margin-bottom:-2.25rem!important}.mb-lg-n10{margin-bottom:-2.5rem!important}.mb-lg-n11{margin-bottom:-2.75rem!important}.mb-lg-n12{margin-bottom:-3rem!important}.mb-lg-n13{margin-bottom:-3.25rem!important}.mb-lg-n14{margin-bottom:-3.5rem!important}.mb-lg-n15{margin-bottom:-3.75rem!important}.mb-lg-n16{margin-bottom:-4rem!important}.mb-lg-n17{margin-bottom:-4.25rem!important}.mb-lg-n18{margin-bottom:-4.5rem!important}.mb-lg-n19{margin-bottom:-4.75rem!important}.mb-lg-n20{margin-bottom:-5rem!important}.ms-lg-n1{margin-right:-.25rem!important}.ms-lg-n2{margin-right:-.5rem!important}.ms-lg-n3{margin-right:-.75rem!important}.ms-lg-n4{margin-right:-1rem!important}.ms-lg-n5{margin-right:-1.25rem!important}.ms-lg-n6{margin-right:-1.5rem!important}.ms-lg-n7{margin-right:-1.75rem!important}.ms-lg-n8{margin-right:-2rem!important}.ms-lg-n9{margin-right:-2.25rem!important}.ms-lg-n10{margin-right:-2.5rem!important}.ms-lg-n11{margin-right:-2.75rem!important}.ms-lg-n12{margin-right:-3rem!important}.ms-lg-n13{margin-right:-3.25rem!important}.ms-lg-n14{margin-right:-3.5rem!important}.ms-lg-n15{margin-right:-3.75rem!important}.ms-lg-n16{margin-right:-4rem!important}.ms-lg-n17{margin-right:-4.25rem!important}.ms-lg-n18{margin-right:-4.5rem!important}.ms-lg-n19{margin-right:-4.75rem!important}.ms-lg-n20{margin-right:-5rem!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:.75rem!important}.p-lg-4{padding:1rem!important}.p-lg-5{padding:1.25rem!important}.p-lg-6{padding:1.5rem!important}.p-lg-7{padding:1.75rem!important}.p-lg-8{padding:2rem!important}.p-lg-9{padding:2.25rem!important}.p-lg-10{padding:2.5rem!important}.p-lg-11{padding:2.75rem!important}.p-lg-12{padding:3rem!important}.p-lg-13{padding:3.25rem!important}.p-lg-14{padding:3.5rem!important}.p-lg-15{padding:3.75rem!important}.p-lg-16{padding:4rem!important}.p-lg-17{padding:4.25rem!important}.p-lg-18{padding:4.5rem!important}.p-lg-19{padding:4.75rem!important}.p-lg-20{padding:5rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-lg-4{padding-left:1rem!important;padding-right:1rem!important}.px-lg-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-lg-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.px-lg-8{padding-left:2rem!important;padding-right:2rem!important}.px-lg-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.px-lg-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.px-lg-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.px-lg-12{padding-left:3rem!important;padding-right:3rem!important}.px-lg-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.px-lg-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.px-lg-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.px-lg-16{padding-left:4rem!important;padding-right:4rem!important}.px-lg-17{padding-left:4.25rem!important;padding-right:4.25rem!important}.px-lg-18{padding-left:4.5rem!important;padding-right:4.5rem!important}.px-lg-19{padding-left:4.75rem!important;padding-right:4.75rem!important}.px-lg-20{padding-left:5rem!important;padding-right:5rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-lg-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-lg-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-lg-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-lg-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-lg-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-lg-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-lg-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-lg-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-lg-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-lg-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-lg-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-lg-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-lg-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-lg-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-lg-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:.75rem!important}.pt-lg-4{padding-top:1rem!important}.pt-lg-5{padding-top:1.25rem!important}.pt-lg-6{padding-top:1.5rem!important}.pt-lg-7{padding-top:1.75rem!important}.pt-lg-8{padding-top:2rem!important}.pt-lg-9{padding-top:2.25rem!important}.pt-lg-10{padding-top:2.5rem!important}.pt-lg-11{padding-top:2.75rem!important}.pt-lg-12{padding-top:3rem!important}.pt-lg-13{padding-top:3.25rem!important}.pt-lg-14{padding-top:3.5rem!important}.pt-lg-15{padding-top:3.75rem!important}.pt-lg-16{padding-top:4rem!important}.pt-lg-17{padding-top:4.25rem!important}.pt-lg-18{padding-top:4.5rem!important}.pt-lg-19{padding-top:4.75rem!important}.pt-lg-20{padding-top:5rem!important}.pe-lg-0{padding-left:0!important}.pe-lg-1{padding-left:.25rem!important}.pe-lg-2{padding-left:.5rem!important}.pe-lg-3{padding-left:.75rem!important}.pe-lg-4{padding-left:1rem!important}.pe-lg-5{padding-left:1.25rem!important}.pe-lg-6{padding-left:1.5rem!important}.pe-lg-7{padding-left:1.75rem!important}.pe-lg-8{padding-left:2rem!important}.pe-lg-9{padding-left:2.25rem!important}.pe-lg-10{padding-left:2.5rem!important}.pe-lg-11{padding-left:2.75rem!important}.pe-lg-12{padding-left:3rem!important}.pe-lg-13{padding-left:3.25rem!important}.pe-lg-14{padding-left:3.5rem!important}.pe-lg-15{padding-left:3.75rem!important}.pe-lg-16{padding-left:4rem!important}.pe-lg-17{padding-left:4.25rem!important}.pe-lg-18{padding-left:4.5rem!important}.pe-lg-19{padding-left:4.75rem!important}.pe-lg-20{padding-left:5rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:.75rem!important}.pb-lg-4{padding-bottom:1rem!important}.pb-lg-5{padding-bottom:1.25rem!important}.pb-lg-6{padding-bottom:1.5rem!important}.pb-lg-7{padding-bottom:1.75rem!important}.pb-lg-8{padding-bottom:2rem!important}.pb-lg-9{padding-bottom:2.25rem!important}.pb-lg-10{padding-bottom:2.5rem!important}.pb-lg-11{padding-bottom:2.75rem!important}.pb-lg-12{padding-bottom:3rem!important}.pb-lg-13{padding-bottom:3.25rem!important}.pb-lg-14{padding-bottom:3.5rem!important}.pb-lg-15{padding-bottom:3.75rem!important}.pb-lg-16{padding-bottom:4rem!important}.pb-lg-17{padding-bottom:4.25rem!important}.pb-lg-18{padding-bottom:4.5rem!important}.pb-lg-19{padding-bottom:4.75rem!important}.pb-lg-20{padding-bottom:5rem!important}.ps-lg-0{padding-right:0!important}.ps-lg-1{padding-right:.25rem!important}.ps-lg-2{padding-right:.5rem!important}.ps-lg-3{padding-right:.75rem!important}.ps-lg-4{padding-right:1rem!important}.ps-lg-5{padding-right:1.25rem!important}.ps-lg-6{padding-right:1.5rem!important}.ps-lg-7{padding-right:1.75rem!important}.ps-lg-8{padding-right:2rem!important}.ps-lg-9{padding-right:2.25rem!important}.ps-lg-10{padding-right:2.5rem!important}.ps-lg-11{padding-right:2.75rem!important}.ps-lg-12{padding-right:3rem!important}.ps-lg-13{padding-right:3.25rem!important}.ps-lg-14{padding-right:3.5rem!important}.ps-lg-15{padding-right:3.75rem!important}.ps-lg-16{padding-right:4rem!important}.ps-lg-17{padding-right:4.25rem!important}.ps-lg-18{padding-right:4.5rem!important}.ps-lg-19{padding-right:4.75rem!important}.ps-lg-20{padding-right:5rem!important}.fs-lg-1{font-size:calc(1.3rem + .6vw)!important}.fs-lg-2{font-size:calc(1.275rem + .3vw)!important}.fs-lg-3{font-size:calc(1.26rem + .12vw)!important}.fs-lg-4{font-size:1.25rem!important}.fs-lg-5{font-size:1.15rem!important}.fs-lg-6{font-size:1.075rem!important}.fs-lg-7{font-size:.95rem!important}.fs-lg-8{font-size:.85rem!important}.fs-lg-9{font-size:.75rem!important}.fs-lg-10{font-size:.5rem!important}.fs-lg-base{font-size:1rem!important}.fs-lg-fluid{font-size:100%!important}.fs-lg-2x{font-size:calc(1.325rem + .9vw)!important}.fs-lg-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-lg-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-lg-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-lg-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-lg-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-lg-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-lg-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-lg-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-lg-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-lg-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-lg-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-lg-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-lg-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-lg-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-lg-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-lg-start{text-align:right!important}.text-lg-end{text-align:left!important}.text-lg-center{text-align:center!important}.min-w-lg-unset{min-width:unset!important}.min-w-lg-25{min-width:25%!important}.min-w-lg-50{min-width:50%!important}.min-w-lg-75{min-width:75%!important}.min-w-lg-100{min-width:100%!important}.min-w-lg-auto{min-width:auto!important}.min-w-lg-1px{min-width:1px!important}.min-w-lg-2px{min-width:2px!important}.min-w-lg-3px{min-width:3px!important}.min-w-lg-4px{min-width:4px!important}.min-w-lg-5px{min-width:5px!important}.min-w-lg-6px{min-width:6px!important}.min-w-lg-7px{min-width:7px!important}.min-w-lg-8px{min-width:8px!important}.min-w-lg-9px{min-width:9px!important}.min-w-lg-10px{min-width:10px!important}.min-w-lg-15px{min-width:15px!important}.min-w-lg-20px{min-width:20px!important}.min-w-lg-25px{min-width:25px!important}.min-w-lg-30px{min-width:30px!important}.min-w-lg-35px{min-width:35px!important}.min-w-lg-40px{min-width:40px!important}.min-w-lg-45px{min-width:45px!important}.min-w-lg-50px{min-width:50px!important}.min-w-lg-55px{min-width:55px!important}.min-w-lg-60px{min-width:60px!important}.min-w-lg-65px{min-width:65px!important}.min-w-lg-70px{min-width:70px!important}.min-w-lg-75px{min-width:75px!important}.min-w-lg-80px{min-width:80px!important}.min-w-lg-85px{min-width:85px!important}.min-w-lg-90px{min-width:90px!important}.min-w-lg-95px{min-width:95px!important}.min-w-lg-100px{min-width:100px!important}.min-w-lg-125px{min-width:125px!important}.min-w-lg-150px{min-width:150px!important}.min-w-lg-175px{min-width:175px!important}.min-w-lg-200px{min-width:200px!important}.min-w-lg-225px{min-width:225px!important}.min-w-lg-250px{min-width:250px!important}.min-w-lg-275px{min-width:275px!important}.min-w-lg-300px{min-width:300px!important}.min-w-lg-325px{min-width:325px!important}.min-w-lg-350px{min-width:350px!important}.min-w-lg-375px{min-width:375px!important}.min-w-lg-400px{min-width:400px!important}.min-w-lg-425px{min-width:425px!important}.min-w-lg-450px{min-width:450px!important}.min-w-lg-475px{min-width:475px!important}.min-w-lg-500px{min-width:500px!important}.min-w-lg-550px{min-width:550px!important}.min-w-lg-600px{min-width:600px!important}.min-w-lg-650px{min-width:650px!important}.min-w-lg-700px{min-width:700px!important}.min-w-lg-750px{min-width:750px!important}.min-w-lg-800px{min-width:800px!important}.min-w-lg-850px{min-width:850px!important}.min-w-lg-900px{min-width:900px!important}.min-w-lg-950px{min-width:950px!important}.min-w-lg-1000px{min-width:1000px!important}.min-h-lg-unset{min-height:unset!important}.min-h-lg-25{min-height:25%!important}.min-h-lg-50{min-height:50%!important}.min-h-lg-75{min-height:75%!important}.min-h-lg-100{min-height:100%!important}.min-h-lg-auto{min-height:auto!important}.min-h-lg-1px{min-height:1px!important}.min-h-lg-2px{min-height:2px!important}.min-h-lg-3px{min-height:3px!important}.min-h-lg-4px{min-height:4px!important}.min-h-lg-5px{min-height:5px!important}.min-h-lg-6px{min-height:6px!important}.min-h-lg-7px{min-height:7px!important}.min-h-lg-8px{min-height:8px!important}.min-h-lg-9px{min-height:9px!important}.min-h-lg-10px{min-height:10px!important}.min-h-lg-15px{min-height:15px!important}.min-h-lg-20px{min-height:20px!important}.min-h-lg-25px{min-height:25px!important}.min-h-lg-30px{min-height:30px!important}.min-h-lg-35px{min-height:35px!important}.min-h-lg-40px{min-height:40px!important}.min-h-lg-45px{min-height:45px!important}.min-h-lg-50px{min-height:50px!important}.min-h-lg-55px{min-height:55px!important}.min-h-lg-60px{min-height:60px!important}.min-h-lg-65px{min-height:65px!important}.min-h-lg-70px{min-height:70px!important}.min-h-lg-75px{min-height:75px!important}.min-h-lg-80px{min-height:80px!important}.min-h-lg-85px{min-height:85px!important}.min-h-lg-90px{min-height:90px!important}.min-h-lg-95px{min-height:95px!important}.min-h-lg-100px{min-height:100px!important}.min-h-lg-125px{min-height:125px!important}.min-h-lg-150px{min-height:150px!important}.min-h-lg-175px{min-height:175px!important}.min-h-lg-200px{min-height:200px!important}.min-h-lg-225px{min-height:225px!important}.min-h-lg-250px{min-height:250px!important}.min-h-lg-275px{min-height:275px!important}.min-h-lg-300px{min-height:300px!important}.min-h-lg-325px{min-height:325px!important}.min-h-lg-350px{min-height:350px!important}.min-h-lg-375px{min-height:375px!important}.min-h-lg-400px{min-height:400px!important}.min-h-lg-425px{min-height:425px!important}.min-h-lg-450px{min-height:450px!important}.min-h-lg-475px{min-height:475px!important}.min-h-lg-500px{min-height:500px!important}.min-h-lg-550px{min-height:550px!important}.min-h-lg-600px{min-height:600px!important}.min-h-lg-650px{min-height:650px!important}.min-h-lg-700px{min-height:700px!important}.min-h-lg-750px{min-height:750px!important}.min-h-lg-800px{min-height:800px!important}.min-h-lg-850px{min-height:850px!important}.min-h-lg-900px{min-height:900px!important}.min-h-lg-950px{min-height:950px!important}.min-h-lg-1000px{min-height:1000px!important}}@media (min-width:1200px){.float-xl-start{float:right!important}.float-xl-end{float:left!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!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}.d-xl-none{display:none!important}.position-xl-static{position:static!important}.position-xl-relative{position:relative!important}.position-xl-absolute{position:absolute!important}.position-xl-fixed{position:fixed!important}.position-xl-sticky{position:sticky!important}.w-xl-unset{width:unset!important}.w-xl-25{width:25%!important}.w-xl-50{width:50%!important}.w-xl-75{width:75%!important}.w-xl-100{width:100%!important}.w-xl-auto{width:auto!important}.w-xl-1px{width:1px!important}.w-xl-2px{width:2px!important}.w-xl-3px{width:3px!important}.w-xl-4px{width:4px!important}.w-xl-5px{width:5px!important}.w-xl-6px{width:6px!important}.w-xl-7px{width:7px!important}.w-xl-8px{width:8px!important}.w-xl-9px{width:9px!important}.w-xl-10px{width:10px!important}.w-xl-15px{width:15px!important}.w-xl-20px{width:20px!important}.w-xl-25px{width:25px!important}.w-xl-30px{width:30px!important}.w-xl-35px{width:35px!important}.w-xl-40px{width:40px!important}.w-xl-45px{width:45px!important}.w-xl-50px{width:50px!important}.w-xl-55px{width:55px!important}.w-xl-60px{width:60px!important}.w-xl-65px{width:65px!important}.w-xl-70px{width:70px!important}.w-xl-75px{width:75px!important}.w-xl-80px{width:80px!important}.w-xl-85px{width:85px!important}.w-xl-90px{width:90px!important}.w-xl-95px{width:95px!important}.w-xl-100px{width:100px!important}.w-xl-125px{width:125px!important}.w-xl-150px{width:150px!important}.w-xl-175px{width:175px!important}.w-xl-200px{width:200px!important}.w-xl-225px{width:225px!important}.w-xl-250px{width:250px!important}.w-xl-275px{width:275px!important}.w-xl-300px{width:300px!important}.w-xl-325px{width:325px!important}.w-xl-350px{width:350px!important}.w-xl-375px{width:375px!important}.w-xl-400px{width:400px!important}.w-xl-425px{width:425px!important}.w-xl-450px{width:450px!important}.w-xl-475px{width:475px!important}.w-xl-500px{width:500px!important}.w-xl-550px{width:550px!important}.w-xl-600px{width:600px!important}.w-xl-650px{width:650px!important}.w-xl-700px{width:700px!important}.w-xl-750px{width:750px!important}.w-xl-800px{width:800px!important}.w-xl-850px{width:850px!important}.w-xl-900px{width:900px!important}.w-xl-950px{width:950px!important}.w-xl-1000px{width:1000px!important}.mw-xl-unset{max-width:unset!important}.mw-xl-25{max-width:25%!important}.mw-xl-50{max-width:50%!important}.mw-xl-75{max-width:75%!important}.mw-xl-100{max-width:100%!important}.mw-xl-auto{max-width:auto!important}.mw-xl-1px{max-width:1px!important}.mw-xl-2px{max-width:2px!important}.mw-xl-3px{max-width:3px!important}.mw-xl-4px{max-width:4px!important}.mw-xl-5px{max-width:5px!important}.mw-xl-6px{max-width:6px!important}.mw-xl-7px{max-width:7px!important}.mw-xl-8px{max-width:8px!important}.mw-xl-9px{max-width:9px!important}.mw-xl-10px{max-width:10px!important}.mw-xl-15px{max-width:15px!important}.mw-xl-20px{max-width:20px!important}.mw-xl-25px{max-width:25px!important}.mw-xl-30px{max-width:30px!important}.mw-xl-35px{max-width:35px!important}.mw-xl-40px{max-width:40px!important}.mw-xl-45px{max-width:45px!important}.mw-xl-50px{max-width:50px!important}.mw-xl-55px{max-width:55px!important}.mw-xl-60px{max-width:60px!important}.mw-xl-65px{max-width:65px!important}.mw-xl-70px{max-width:70px!important}.mw-xl-75px{max-width:75px!important}.mw-xl-80px{max-width:80px!important}.mw-xl-85px{max-width:85px!important}.mw-xl-90px{max-width:90px!important}.mw-xl-95px{max-width:95px!important}.mw-xl-100px{max-width:100px!important}.mw-xl-125px{max-width:125px!important}.mw-xl-150px{max-width:150px!important}.mw-xl-175px{max-width:175px!important}.mw-xl-200px{max-width:200px!important}.mw-xl-225px{max-width:225px!important}.mw-xl-250px{max-width:250px!important}.mw-xl-275px{max-width:275px!important}.mw-xl-300px{max-width:300px!important}.mw-xl-325px{max-width:325px!important}.mw-xl-350px{max-width:350px!important}.mw-xl-375px{max-width:375px!important}.mw-xl-400px{max-width:400px!important}.mw-xl-425px{max-width:425px!important}.mw-xl-450px{max-width:450px!important}.mw-xl-475px{max-width:475px!important}.mw-xl-500px{max-width:500px!important}.mw-xl-550px{max-width:550px!important}.mw-xl-600px{max-width:600px!important}.mw-xl-650px{max-width:650px!important}.mw-xl-700px{max-width:700px!important}.mw-xl-750px{max-width:750px!important}.mw-xl-800px{max-width:800px!important}.mw-xl-850px{max-width:850px!important}.mw-xl-900px{max-width:900px!important}.mw-xl-950px{max-width:950px!important}.mw-xl-1000px{max-width:1000px!important}.h-xl-unset{height:unset!important}.h-xl-25{height:25%!important}.h-xl-50{height:50%!important}.h-xl-75{height:75%!important}.h-xl-100{height:100%!important}.h-xl-auto{height:auto!important}.h-xl-1px{height:1px!important}.h-xl-2px{height:2px!important}.h-xl-3px{height:3px!important}.h-xl-4px{height:4px!important}.h-xl-5px{height:5px!important}.h-xl-6px{height:6px!important}.h-xl-7px{height:7px!important}.h-xl-8px{height:8px!important}.h-xl-9px{height:9px!important}.h-xl-10px{height:10px!important}.h-xl-15px{height:15px!important}.h-xl-20px{height:20px!important}.h-xl-25px{height:25px!important}.h-xl-30px{height:30px!important}.h-xl-35px{height:35px!important}.h-xl-40px{height:40px!important}.h-xl-45px{height:45px!important}.h-xl-50px{height:50px!important}.h-xl-55px{height:55px!important}.h-xl-60px{height:60px!important}.h-xl-65px{height:65px!important}.h-xl-70px{height:70px!important}.h-xl-75px{height:75px!important}.h-xl-80px{height:80px!important}.h-xl-85px{height:85px!important}.h-xl-90px{height:90px!important}.h-xl-95px{height:95px!important}.h-xl-100px{height:100px!important}.h-xl-125px{height:125px!important}.h-xl-150px{height:150px!important}.h-xl-175px{height:175px!important}.h-xl-200px{height:200px!important}.h-xl-225px{height:225px!important}.h-xl-250px{height:250px!important}.h-xl-275px{height:275px!important}.h-xl-300px{height:300px!important}.h-xl-325px{height:325px!important}.h-xl-350px{height:350px!important}.h-xl-375px{height:375px!important}.h-xl-400px{height:400px!important}.h-xl-425px{height:425px!important}.h-xl-450px{height:450px!important}.h-xl-475px{height:475px!important}.h-xl-500px{height:500px!important}.h-xl-550px{height:550px!important}.h-xl-600px{height:600px!important}.h-xl-650px{height:650px!important}.h-xl-700px{height:700px!important}.h-xl-750px{height:750px!important}.h-xl-800px{height:800px!important}.h-xl-850px{height:850px!important}.h-xl-900px{height:900px!important}.h-xl-950px{height:950px!important}.h-xl-1000px{height:1000px!important}.mh-xl-unset{max-height:unset!important}.mh-xl-25{max-height:25%!important}.mh-xl-50{max-height:50%!important}.mh-xl-75{max-height:75%!important}.mh-xl-100{max-height:100%!important}.mh-xl-auto{max-height:auto!important}.mh-xl-1px{max-height:1px!important}.mh-xl-2px{max-height:2px!important}.mh-xl-3px{max-height:3px!important}.mh-xl-4px{max-height:4px!important}.mh-xl-5px{max-height:5px!important}.mh-xl-6px{max-height:6px!important}.mh-xl-7px{max-height:7px!important}.mh-xl-8px{max-height:8px!important}.mh-xl-9px{max-height:9px!important}.mh-xl-10px{max-height:10px!important}.mh-xl-15px{max-height:15px!important}.mh-xl-20px{max-height:20px!important}.mh-xl-25px{max-height:25px!important}.mh-xl-30px{max-height:30px!important}.mh-xl-35px{max-height:35px!important}.mh-xl-40px{max-height:40px!important}.mh-xl-45px{max-height:45px!important}.mh-xl-50px{max-height:50px!important}.mh-xl-55px{max-height:55px!important}.mh-xl-60px{max-height:60px!important}.mh-xl-65px{max-height:65px!important}.mh-xl-70px{max-height:70px!important}.mh-xl-75px{max-height:75px!important}.mh-xl-80px{max-height:80px!important}.mh-xl-85px{max-height:85px!important}.mh-xl-90px{max-height:90px!important}.mh-xl-95px{max-height:95px!important}.mh-xl-100px{max-height:100px!important}.mh-xl-125px{max-height:125px!important}.mh-xl-150px{max-height:150px!important}.mh-xl-175px{max-height:175px!important}.mh-xl-200px{max-height:200px!important}.mh-xl-225px{max-height:225px!important}.mh-xl-250px{max-height:250px!important}.mh-xl-275px{max-height:275px!important}.mh-xl-300px{max-height:300px!important}.mh-xl-325px{max-height:325px!important}.mh-xl-350px{max-height:350px!important}.mh-xl-375px{max-height:375px!important}.mh-xl-400px{max-height:400px!important}.mh-xl-425px{max-height:425px!important}.mh-xl-450px{max-height:450px!important}.mh-xl-475px{max-height:475px!important}.mh-xl-500px{max-height:500px!important}.mh-xl-550px{max-height:550px!important}.mh-xl-600px{max-height:600px!important}.mh-xl-650px{max-height:650px!important}.mh-xl-700px{max-height:700px!important}.mh-xl-750px{max-height:750px!important}.mh-xl-800px{max-height:800px!important}.mh-xl-850px{max-height:850px!important}.mh-xl-900px{max-height:900px!important}.mh-xl-950px{max-height:950px!important}.mh-xl-1000px{max-height:1000px!important}.flex-xl-fill{flex:1 1 auto!important}.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-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}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:.75rem!important}.gap-xl-4{gap:1rem!important}.gap-xl-5{gap:1.25rem!important}.gap-xl-6{gap:1.5rem!important}.gap-xl-7{gap:1.75rem!important}.gap-xl-8{gap:2rem!important}.gap-xl-9{gap:2.25rem!important}.gap-xl-10{gap:2.5rem!important}.gap-xl-11{gap:2.75rem!important}.gap-xl-12{gap:3rem!important}.gap-xl-13{gap:3.25rem!important}.gap-xl-14{gap:3.5rem!important}.gap-xl-15{gap:3.75rem!important}.gap-xl-16{gap:4rem!important}.gap-xl-17{gap:4.25rem!important}.gap-xl-18{gap:4.5rem!important}.gap-xl-19{gap:4.75rem!important}.gap-xl-20{gap:5rem!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}.justify-content-xl-evenly{justify-content:space-evenly!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}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:.75rem!important}.m-xl-4{margin:1rem!important}.m-xl-5{margin:1.25rem!important}.m-xl-6{margin:1.5rem!important}.m-xl-7{margin:1.75rem!important}.m-xl-8{margin:2rem!important}.m-xl-9{margin:2.25rem!important}.m-xl-10{margin:2.5rem!important}.m-xl-11{margin:2.75rem!important}.m-xl-12{margin:3rem!important}.m-xl-13{margin:3.25rem!important}.m-xl-14{margin:3.5rem!important}.m-xl-15{margin:3.75rem!important}.m-xl-16{margin:4rem!important}.m-xl-17{margin:4.25rem!important}.m-xl-18{margin:4.5rem!important}.m-xl-19{margin:4.75rem!important}.m-xl-20{margin:5rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:.75rem!important;margin-right:.75rem!important}.mx-xl-4{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.mx-xl-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.mx-xl-8{margin-left:2rem!important;margin-right:2rem!important}.mx-xl-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.mx-xl-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.mx-xl-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.mx-xl-12{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.mx-xl-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.mx-xl-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.mx-xl-16{margin-left:4rem!important;margin-right:4rem!important}.mx-xl-17{margin-left:4.25rem!important;margin-right:4.25rem!important}.mx-xl-18{margin-left:4.5rem!important;margin-right:4.5rem!important}.mx-xl-19{margin-left:4.75rem!important;margin-right:4.75rem!important}.mx-xl-20{margin-left:5rem!important;margin-right:5rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-xl-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-xl-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-xl-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-xl-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-xl-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-xl-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-xl-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-xl-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-xl-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-xl-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-xl-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-xl-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-xl-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-xl-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:.75rem!important}.mt-xl-4{margin-top:1rem!important}.mt-xl-5{margin-top:1.25rem!important}.mt-xl-6{margin-top:1.5rem!important}.mt-xl-7{margin-top:1.75rem!important}.mt-xl-8{margin-top:2rem!important}.mt-xl-9{margin-top:2.25rem!important}.mt-xl-10{margin-top:2.5rem!important}.mt-xl-11{margin-top:2.75rem!important}.mt-xl-12{margin-top:3rem!important}.mt-xl-13{margin-top:3.25rem!important}.mt-xl-14{margin-top:3.5rem!important}.mt-xl-15{margin-top:3.75rem!important}.mt-xl-16{margin-top:4rem!important}.mt-xl-17{margin-top:4.25rem!important}.mt-xl-18{margin-top:4.5rem!important}.mt-xl-19{margin-top:4.75rem!important}.mt-xl-20{margin-top:5rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-left:0!important}.me-xl-1{margin-left:.25rem!important}.me-xl-2{margin-left:.5rem!important}.me-xl-3{margin-left:.75rem!important}.me-xl-4{margin-left:1rem!important}.me-xl-5{margin-left:1.25rem!important}.me-xl-6{margin-left:1.5rem!important}.me-xl-7{margin-left:1.75rem!important}.me-xl-8{margin-left:2rem!important}.me-xl-9{margin-left:2.25rem!important}.me-xl-10{margin-left:2.5rem!important}.me-xl-11{margin-left:2.75rem!important}.me-xl-12{margin-left:3rem!important}.me-xl-13{margin-left:3.25rem!important}.me-xl-14{margin-left:3.5rem!important}.me-xl-15{margin-left:3.75rem!important}.me-xl-16{margin-left:4rem!important}.me-xl-17{margin-left:4.25rem!important}.me-xl-18{margin-left:4.5rem!important}.me-xl-19{margin-left:4.75rem!important}.me-xl-20{margin-left:5rem!important}.me-xl-auto{margin-left:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:.75rem!important}.mb-xl-4{margin-bottom:1rem!important}.mb-xl-5{margin-bottom:1.25rem!important}.mb-xl-6{margin-bottom:1.5rem!important}.mb-xl-7{margin-bottom:1.75rem!important}.mb-xl-8{margin-bottom:2rem!important}.mb-xl-9{margin-bottom:2.25rem!important}.mb-xl-10{margin-bottom:2.5rem!important}.mb-xl-11{margin-bottom:2.75rem!important}.mb-xl-12{margin-bottom:3rem!important}.mb-xl-13{margin-bottom:3.25rem!important}.mb-xl-14{margin-bottom:3.5rem!important}.mb-xl-15{margin-bottom:3.75rem!important}.mb-xl-16{margin-bottom:4rem!important}.mb-xl-17{margin-bottom:4.25rem!important}.mb-xl-18{margin-bottom:4.5rem!important}.mb-xl-19{margin-bottom:4.75rem!important}.mb-xl-20{margin-bottom:5rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-right:0!important}.ms-xl-1{margin-right:.25rem!important}.ms-xl-2{margin-right:.5rem!important}.ms-xl-3{margin-right:.75rem!important}.ms-xl-4{margin-right:1rem!important}.ms-xl-5{margin-right:1.25rem!important}.ms-xl-6{margin-right:1.5rem!important}.ms-xl-7{margin-right:1.75rem!important}.ms-xl-8{margin-right:2rem!important}.ms-xl-9{margin-right:2.25rem!important}.ms-xl-10{margin-right:2.5rem!important}.ms-xl-11{margin-right:2.75rem!important}.ms-xl-12{margin-right:3rem!important}.ms-xl-13{margin-right:3.25rem!important}.ms-xl-14{margin-right:3.5rem!important}.ms-xl-15{margin-right:3.75rem!important}.ms-xl-16{margin-right:4rem!important}.ms-xl-17{margin-right:4.25rem!important}.ms-xl-18{margin-right:4.5rem!important}.ms-xl-19{margin-right:4.75rem!important}.ms-xl-20{margin-right:5rem!important}.ms-xl-auto{margin-right:auto!important}.m-xl-n1{margin:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.m-xl-n3{margin:-.75rem!important}.m-xl-n4{margin:-1rem!important}.m-xl-n5{margin:-1.25rem!important}.m-xl-n6{margin:-1.5rem!important}.m-xl-n7{margin:-1.75rem!important}.m-xl-n8{margin:-2rem!important}.m-xl-n9{margin:-2.25rem!important}.m-xl-n10{margin:-2.5rem!important}.m-xl-n11{margin:-2.75rem!important}.m-xl-n12{margin:-3rem!important}.m-xl-n13{margin:-3.25rem!important}.m-xl-n14{margin:-3.5rem!important}.m-xl-n15{margin:-3.75rem!important}.m-xl-n16{margin:-4rem!important}.m-xl-n17{margin:-4.25rem!important}.m-xl-n18{margin:-4.5rem!important}.m-xl-n19{margin:-4.75rem!important}.m-xl-n20{margin:-5rem!important}.mx-xl-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-xl-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-xl-n3{margin-left:-.75rem!important;margin-right:-.75rem!important}.mx-xl-n4{margin-left:-1rem!important;margin-right:-1rem!important}.mx-xl-n5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.mx-xl-n6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-xl-n7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.mx-xl-n8{margin-left:-2rem!important;margin-right:-2rem!important}.mx-xl-n9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.mx-xl-n10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.mx-xl-n11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.mx-xl-n12{margin-left:-3rem!important;margin-right:-3rem!important}.mx-xl-n13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.mx-xl-n14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.mx-xl-n15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.mx-xl-n16{margin-left:-4rem!important;margin-right:-4rem!important}.mx-xl-n17{margin-left:-4.25rem!important;margin-right:-4.25rem!important}.mx-xl-n18{margin-left:-4.5rem!important;margin-right:-4.5rem!important}.mx-xl-n19{margin-left:-4.75rem!important;margin-right:-4.75rem!important}.mx-xl-n20{margin-left:-5rem!important;margin-right:-5rem!important}.my-xl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xl-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-xl-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xl-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-xl-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xl-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-xl-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-xl-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-xl-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-xl-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-xl-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-xl-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-xl-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-xl-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-xl-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-xl-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-xl-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-xl-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-xl-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-xl-n1{margin-top:-.25rem!important}.mt-xl-n2{margin-top:-.5rem!important}.mt-xl-n3{margin-top:-.75rem!important}.mt-xl-n4{margin-top:-1rem!important}.mt-xl-n5{margin-top:-1.25rem!important}.mt-xl-n6{margin-top:-1.5rem!important}.mt-xl-n7{margin-top:-1.75rem!important}.mt-xl-n8{margin-top:-2rem!important}.mt-xl-n9{margin-top:-2.25rem!important}.mt-xl-n10{margin-top:-2.5rem!important}.mt-xl-n11{margin-top:-2.75rem!important}.mt-xl-n12{margin-top:-3rem!important}.mt-xl-n13{margin-top:-3.25rem!important}.mt-xl-n14{margin-top:-3.5rem!important}.mt-xl-n15{margin-top:-3.75rem!important}.mt-xl-n16{margin-top:-4rem!important}.mt-xl-n17{margin-top:-4.25rem!important}.mt-xl-n18{margin-top:-4.5rem!important}.mt-xl-n19{margin-top:-4.75rem!important}.mt-xl-n20{margin-top:-5rem!important}.me-xl-n1{margin-left:-.25rem!important}.me-xl-n2{margin-left:-.5rem!important}.me-xl-n3{margin-left:-.75rem!important}.me-xl-n4{margin-left:-1rem!important}.me-xl-n5{margin-left:-1.25rem!important}.me-xl-n6{margin-left:-1.5rem!important}.me-xl-n7{margin-left:-1.75rem!important}.me-xl-n8{margin-left:-2rem!important}.me-xl-n9{margin-left:-2.25rem!important}.me-xl-n10{margin-left:-2.5rem!important}.me-xl-n11{margin-left:-2.75rem!important}.me-xl-n12{margin-left:-3rem!important}.me-xl-n13{margin-left:-3.25rem!important}.me-xl-n14{margin-left:-3.5rem!important}.me-xl-n15{margin-left:-3.75rem!important}.me-xl-n16{margin-left:-4rem!important}.me-xl-n17{margin-left:-4.25rem!important}.me-xl-n18{margin-left:-4.5rem!important}.me-xl-n19{margin-left:-4.75rem!important}.me-xl-n20{margin-left:-5rem!important}.mb-xl-n1{margin-bottom:-.25rem!important}.mb-xl-n2{margin-bottom:-.5rem!important}.mb-xl-n3{margin-bottom:-.75rem!important}.mb-xl-n4{margin-bottom:-1rem!important}.mb-xl-n5{margin-bottom:-1.25rem!important}.mb-xl-n6{margin-bottom:-1.5rem!important}.mb-xl-n7{margin-bottom:-1.75rem!important}.mb-xl-n8{margin-bottom:-2rem!important}.mb-xl-n9{margin-bottom:-2.25rem!important}.mb-xl-n10{margin-bottom:-2.5rem!important}.mb-xl-n11{margin-bottom:-2.75rem!important}.mb-xl-n12{margin-bottom:-3rem!important}.mb-xl-n13{margin-bottom:-3.25rem!important}.mb-xl-n14{margin-bottom:-3.5rem!important}.mb-xl-n15{margin-bottom:-3.75rem!important}.mb-xl-n16{margin-bottom:-4rem!important}.mb-xl-n17{margin-bottom:-4.25rem!important}.mb-xl-n18{margin-bottom:-4.5rem!important}.mb-xl-n19{margin-bottom:-4.75rem!important}.mb-xl-n20{margin-bottom:-5rem!important}.ms-xl-n1{margin-right:-.25rem!important}.ms-xl-n2{margin-right:-.5rem!important}.ms-xl-n3{margin-right:-.75rem!important}.ms-xl-n4{margin-right:-1rem!important}.ms-xl-n5{margin-right:-1.25rem!important}.ms-xl-n6{margin-right:-1.5rem!important}.ms-xl-n7{margin-right:-1.75rem!important}.ms-xl-n8{margin-right:-2rem!important}.ms-xl-n9{margin-right:-2.25rem!important}.ms-xl-n10{margin-right:-2.5rem!important}.ms-xl-n11{margin-right:-2.75rem!important}.ms-xl-n12{margin-right:-3rem!important}.ms-xl-n13{margin-right:-3.25rem!important}.ms-xl-n14{margin-right:-3.5rem!important}.ms-xl-n15{margin-right:-3.75rem!important}.ms-xl-n16{margin-right:-4rem!important}.ms-xl-n17{margin-right:-4.25rem!important}.ms-xl-n18{margin-right:-4.5rem!important}.ms-xl-n19{margin-right:-4.75rem!important}.ms-xl-n20{margin-right:-5rem!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:.75rem!important}.p-xl-4{padding:1rem!important}.p-xl-5{padding:1.25rem!important}.p-xl-6{padding:1.5rem!important}.p-xl-7{padding:1.75rem!important}.p-xl-8{padding:2rem!important}.p-xl-9{padding:2.25rem!important}.p-xl-10{padding:2.5rem!important}.p-xl-11{padding:2.75rem!important}.p-xl-12{padding:3rem!important}.p-xl-13{padding:3.25rem!important}.p-xl-14{padding:3.5rem!important}.p-xl-15{padding:3.75rem!important}.p-xl-16{padding:4rem!important}.p-xl-17{padding:4.25rem!important}.p-xl-18{padding:4.5rem!important}.p-xl-19{padding:4.75rem!important}.p-xl-20{padding:5rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-xl-4{padding-left:1rem!important;padding-right:1rem!important}.px-xl-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-xl-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.px-xl-8{padding-left:2rem!important;padding-right:2rem!important}.px-xl-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.px-xl-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.px-xl-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.px-xl-12{padding-left:3rem!important;padding-right:3rem!important}.px-xl-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.px-xl-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.px-xl-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.px-xl-16{padding-left:4rem!important;padding-right:4rem!important}.px-xl-17{padding-left:4.25rem!important;padding-right:4.25rem!important}.px-xl-18{padding-left:4.5rem!important;padding-right:4.5rem!important}.px-xl-19{padding-left:4.75rem!important;padding-right:4.75rem!important}.px-xl-20{padding-left:5rem!important;padding-right:5rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-xl-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-xl-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-xl-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-xl-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-xl-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-xl-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-xl-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-xl-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-xl-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-xl-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-xl-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-xl-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-xl-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-xl-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-xl-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:.75rem!important}.pt-xl-4{padding-top:1rem!important}.pt-xl-5{padding-top:1.25rem!important}.pt-xl-6{padding-top:1.5rem!important}.pt-xl-7{padding-top:1.75rem!important}.pt-xl-8{padding-top:2rem!important}.pt-xl-9{padding-top:2.25rem!important}.pt-xl-10{padding-top:2.5rem!important}.pt-xl-11{padding-top:2.75rem!important}.pt-xl-12{padding-top:3rem!important}.pt-xl-13{padding-top:3.25rem!important}.pt-xl-14{padding-top:3.5rem!important}.pt-xl-15{padding-top:3.75rem!important}.pt-xl-16{padding-top:4rem!important}.pt-xl-17{padding-top:4.25rem!important}.pt-xl-18{padding-top:4.5rem!important}.pt-xl-19{padding-top:4.75rem!important}.pt-xl-20{padding-top:5rem!important}.pe-xl-0{padding-left:0!important}.pe-xl-1{padding-left:.25rem!important}.pe-xl-2{padding-left:.5rem!important}.pe-xl-3{padding-left:.75rem!important}.pe-xl-4{padding-left:1rem!important}.pe-xl-5{padding-left:1.25rem!important}.pe-xl-6{padding-left:1.5rem!important}.pe-xl-7{padding-left:1.75rem!important}.pe-xl-8{padding-left:2rem!important}.pe-xl-9{padding-left:2.25rem!important}.pe-xl-10{padding-left:2.5rem!important}.pe-xl-11{padding-left:2.75rem!important}.pe-xl-12{padding-left:3rem!important}.pe-xl-13{padding-left:3.25rem!important}.pe-xl-14{padding-left:3.5rem!important}.pe-xl-15{padding-left:3.75rem!important}.pe-xl-16{padding-left:4rem!important}.pe-xl-17{padding-left:4.25rem!important}.pe-xl-18{padding-left:4.5rem!important}.pe-xl-19{padding-left:4.75rem!important}.pe-xl-20{padding-left:5rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:.75rem!important}.pb-xl-4{padding-bottom:1rem!important}.pb-xl-5{padding-bottom:1.25rem!important}.pb-xl-6{padding-bottom:1.5rem!important}.pb-xl-7{padding-bottom:1.75rem!important}.pb-xl-8{padding-bottom:2rem!important}.pb-xl-9{padding-bottom:2.25rem!important}.pb-xl-10{padding-bottom:2.5rem!important}.pb-xl-11{padding-bottom:2.75rem!important}.pb-xl-12{padding-bottom:3rem!important}.pb-xl-13{padding-bottom:3.25rem!important}.pb-xl-14{padding-bottom:3.5rem!important}.pb-xl-15{padding-bottom:3.75rem!important}.pb-xl-16{padding-bottom:4rem!important}.pb-xl-17{padding-bottom:4.25rem!important}.pb-xl-18{padding-bottom:4.5rem!important}.pb-xl-19{padding-bottom:4.75rem!important}.pb-xl-20{padding-bottom:5rem!important}.ps-xl-0{padding-right:0!important}.ps-xl-1{padding-right:.25rem!important}.ps-xl-2{padding-right:.5rem!important}.ps-xl-3{padding-right:.75rem!important}.ps-xl-4{padding-right:1rem!important}.ps-xl-5{padding-right:1.25rem!important}.ps-xl-6{padding-right:1.5rem!important}.ps-xl-7{padding-right:1.75rem!important}.ps-xl-8{padding-right:2rem!important}.ps-xl-9{padding-right:2.25rem!important}.ps-xl-10{padding-right:2.5rem!important}.ps-xl-11{padding-right:2.75rem!important}.ps-xl-12{padding-right:3rem!important}.ps-xl-13{padding-right:3.25rem!important}.ps-xl-14{padding-right:3.5rem!important}.ps-xl-15{padding-right:3.75rem!important}.ps-xl-16{padding-right:4rem!important}.ps-xl-17{padding-right:4.25rem!important}.ps-xl-18{padding-right:4.5rem!important}.ps-xl-19{padding-right:4.75rem!important}.ps-xl-20{padding-right:5rem!important}.fs-xl-1{font-size:calc(1.3rem + .6vw)!important}.fs-xl-2{font-size:calc(1.275rem + .3vw)!important}.fs-xl-3{font-size:calc(1.26rem + .12vw)!important}.fs-xl-4{font-size:1.25rem!important}.fs-xl-5{font-size:1.15rem!important}.fs-xl-6{font-size:1.075rem!important}.fs-xl-7{font-size:.95rem!important}.fs-xl-8{font-size:.85rem!important}.fs-xl-9{font-size:.75rem!important}.fs-xl-10{font-size:.5rem!important}.fs-xl-base{font-size:1rem!important}.fs-xl-fluid{font-size:100%!important}.fs-xl-2x{font-size:calc(1.325rem + .9vw)!important}.fs-xl-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-xl-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-xl-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-xl-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-xl-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-xl-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-xl-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-xl-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-xl-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-xl-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-xl-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-xl-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-xl-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-xl-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-xl-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-xl-start{text-align:right!important}.text-xl-end{text-align:left!important}.text-xl-center{text-align:center!important}.min-w-xl-unset{min-width:unset!important}.min-w-xl-25{min-width:25%!important}.min-w-xl-50{min-width:50%!important}.min-w-xl-75{min-width:75%!important}.min-w-xl-100{min-width:100%!important}.min-w-xl-auto{min-width:auto!important}.min-w-xl-1px{min-width:1px!important}.min-w-xl-2px{min-width:2px!important}.min-w-xl-3px{min-width:3px!important}.min-w-xl-4px{min-width:4px!important}.min-w-xl-5px{min-width:5px!important}.min-w-xl-6px{min-width:6px!important}.min-w-xl-7px{min-width:7px!important}.min-w-xl-8px{min-width:8px!important}.min-w-xl-9px{min-width:9px!important}.min-w-xl-10px{min-width:10px!important}.min-w-xl-15px{min-width:15px!important}.min-w-xl-20px{min-width:20px!important}.min-w-xl-25px{min-width:25px!important}.min-w-xl-30px{min-width:30px!important}.min-w-xl-35px{min-width:35px!important}.min-w-xl-40px{min-width:40px!important}.min-w-xl-45px{min-width:45px!important}.min-w-xl-50px{min-width:50px!important}.min-w-xl-55px{min-width:55px!important}.min-w-xl-60px{min-width:60px!important}.min-w-xl-65px{min-width:65px!important}.min-w-xl-70px{min-width:70px!important}.min-w-xl-75px{min-width:75px!important}.min-w-xl-80px{min-width:80px!important}.min-w-xl-85px{min-width:85px!important}.min-w-xl-90px{min-width:90px!important}.min-w-xl-95px{min-width:95px!important}.min-w-xl-100px{min-width:100px!important}.min-w-xl-125px{min-width:125px!important}.min-w-xl-150px{min-width:150px!important}.min-w-xl-175px{min-width:175px!important}.min-w-xl-200px{min-width:200px!important}.min-w-xl-225px{min-width:225px!important}.min-w-xl-250px{min-width:250px!important}.min-w-xl-275px{min-width:275px!important}.min-w-xl-300px{min-width:300px!important}.min-w-xl-325px{min-width:325px!important}.min-w-xl-350px{min-width:350px!important}.min-w-xl-375px{min-width:375px!important}.min-w-xl-400px{min-width:400px!important}.min-w-xl-425px{min-width:425px!important}.min-w-xl-450px{min-width:450px!important}.min-w-xl-475px{min-width:475px!important}.min-w-xl-500px{min-width:500px!important}.min-w-xl-550px{min-width:550px!important}.min-w-xl-600px{min-width:600px!important}.min-w-xl-650px{min-width:650px!important}.min-w-xl-700px{min-width:700px!important}.min-w-xl-750px{min-width:750px!important}.min-w-xl-800px{min-width:800px!important}.min-w-xl-850px{min-width:850px!important}.min-w-xl-900px{min-width:900px!important}.min-w-xl-950px{min-width:950px!important}.min-w-xl-1000px{min-width:1000px!important}.min-h-xl-unset{min-height:unset!important}.min-h-xl-25{min-height:25%!important}.min-h-xl-50{min-height:50%!important}.min-h-xl-75{min-height:75%!important}.min-h-xl-100{min-height:100%!important}.min-h-xl-auto{min-height:auto!important}.min-h-xl-1px{min-height:1px!important}.min-h-xl-2px{min-height:2px!important}.min-h-xl-3px{min-height:3px!important}.min-h-xl-4px{min-height:4px!important}.min-h-xl-5px{min-height:5px!important}.min-h-xl-6px{min-height:6px!important}.min-h-xl-7px{min-height:7px!important}.min-h-xl-8px{min-height:8px!important}.min-h-xl-9px{min-height:9px!important}.min-h-xl-10px{min-height:10px!important}.min-h-xl-15px{min-height:15px!important}.min-h-xl-20px{min-height:20px!important}.min-h-xl-25px{min-height:25px!important}.min-h-xl-30px{min-height:30px!important}.min-h-xl-35px{min-height:35px!important}.min-h-xl-40px{min-height:40px!important}.min-h-xl-45px{min-height:45px!important}.min-h-xl-50px{min-height:50px!important}.min-h-xl-55px{min-height:55px!important}.min-h-xl-60px{min-height:60px!important}.min-h-xl-65px{min-height:65px!important}.min-h-xl-70px{min-height:70px!important}.min-h-xl-75px{min-height:75px!important}.min-h-xl-80px{min-height:80px!important}.min-h-xl-85px{min-height:85px!important}.min-h-xl-90px{min-height:90px!important}.min-h-xl-95px{min-height:95px!important}.min-h-xl-100px{min-height:100px!important}.min-h-xl-125px{min-height:125px!important}.min-h-xl-150px{min-height:150px!important}.min-h-xl-175px{min-height:175px!important}.min-h-xl-200px{min-height:200px!important}.min-h-xl-225px{min-height:225px!important}.min-h-xl-250px{min-height:250px!important}.min-h-xl-275px{min-height:275px!important}.min-h-xl-300px{min-height:300px!important}.min-h-xl-325px{min-height:325px!important}.min-h-xl-350px{min-height:350px!important}.min-h-xl-375px{min-height:375px!important}.min-h-xl-400px{min-height:400px!important}.min-h-xl-425px{min-height:425px!important}.min-h-xl-450px{min-height:450px!important}.min-h-xl-475px{min-height:475px!important}.min-h-xl-500px{min-height:500px!important}.min-h-xl-550px{min-height:550px!important}.min-h-xl-600px{min-height:600px!important}.min-h-xl-650px{min-height:650px!important}.min-h-xl-700px{min-height:700px!important}.min-h-xl-750px{min-height:750px!important}.min-h-xl-800px{min-height:800px!important}.min-h-xl-850px{min-height:850px!important}.min-h-xl-900px{min-height:900px!important}.min-h-xl-950px{min-height:950px!important}.min-h-xl-1000px{min-height:1000px!important}}@media (min-width:1400px){.float-xxl-start{float:right!important}.float-xxl-end{float:left!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.position-xxl-static{position:static!important}.position-xxl-relative{position:relative!important}.position-xxl-absolute{position:absolute!important}.position-xxl-fixed{position:fixed!important}.position-xxl-sticky{position:sticky!important}.w-xxl-unset{width:unset!important}.w-xxl-25{width:25%!important}.w-xxl-50{width:50%!important}.w-xxl-75{width:75%!important}.w-xxl-100{width:100%!important}.w-xxl-auto{width:auto!important}.w-xxl-1px{width:1px!important}.w-xxl-2px{width:2px!important}.w-xxl-3px{width:3px!important}.w-xxl-4px{width:4px!important}.w-xxl-5px{width:5px!important}.w-xxl-6px{width:6px!important}.w-xxl-7px{width:7px!important}.w-xxl-8px{width:8px!important}.w-xxl-9px{width:9px!important}.w-xxl-10px{width:10px!important}.w-xxl-15px{width:15px!important}.w-xxl-20px{width:20px!important}.w-xxl-25px{width:25px!important}.w-xxl-30px{width:30px!important}.w-xxl-35px{width:35px!important}.w-xxl-40px{width:40px!important}.w-xxl-45px{width:45px!important}.w-xxl-50px{width:50px!important}.w-xxl-55px{width:55px!important}.w-xxl-60px{width:60px!important}.w-xxl-65px{width:65px!important}.w-xxl-70px{width:70px!important}.w-xxl-75px{width:75px!important}.w-xxl-80px{width:80px!important}.w-xxl-85px{width:85px!important}.w-xxl-90px{width:90px!important}.w-xxl-95px{width:95px!important}.w-xxl-100px{width:100px!important}.w-xxl-125px{width:125px!important}.w-xxl-150px{width:150px!important}.w-xxl-175px{width:175px!important}.w-xxl-200px{width:200px!important}.w-xxl-225px{width:225px!important}.w-xxl-250px{width:250px!important}.w-xxl-275px{width:275px!important}.w-xxl-300px{width:300px!important}.w-xxl-325px{width:325px!important}.w-xxl-350px{width:350px!important}.w-xxl-375px{width:375px!important}.w-xxl-400px{width:400px!important}.w-xxl-425px{width:425px!important}.w-xxl-450px{width:450px!important}.w-xxl-475px{width:475px!important}.w-xxl-500px{width:500px!important}.w-xxl-550px{width:550px!important}.w-xxl-600px{width:600px!important}.w-xxl-650px{width:650px!important}.w-xxl-700px{width:700px!important}.w-xxl-750px{width:750px!important}.w-xxl-800px{width:800px!important}.w-xxl-850px{width:850px!important}.w-xxl-900px{width:900px!important}.w-xxl-950px{width:950px!important}.w-xxl-1000px{width:1000px!important}.mw-xxl-unset{max-width:unset!important}.mw-xxl-25{max-width:25%!important}.mw-xxl-50{max-width:50%!important}.mw-xxl-75{max-width:75%!important}.mw-xxl-100{max-width:100%!important}.mw-xxl-auto{max-width:auto!important}.mw-xxl-1px{max-width:1px!important}.mw-xxl-2px{max-width:2px!important}.mw-xxl-3px{max-width:3px!important}.mw-xxl-4px{max-width:4px!important}.mw-xxl-5px{max-width:5px!important}.mw-xxl-6px{max-width:6px!important}.mw-xxl-7px{max-width:7px!important}.mw-xxl-8px{max-width:8px!important}.mw-xxl-9px{max-width:9px!important}.mw-xxl-10px{max-width:10px!important}.mw-xxl-15px{max-width:15px!important}.mw-xxl-20px{max-width:20px!important}.mw-xxl-25px{max-width:25px!important}.mw-xxl-30px{max-width:30px!important}.mw-xxl-35px{max-width:35px!important}.mw-xxl-40px{max-width:40px!important}.mw-xxl-45px{max-width:45px!important}.mw-xxl-50px{max-width:50px!important}.mw-xxl-55px{max-width:55px!important}.mw-xxl-60px{max-width:60px!important}.mw-xxl-65px{max-width:65px!important}.mw-xxl-70px{max-width:70px!important}.mw-xxl-75px{max-width:75px!important}.mw-xxl-80px{max-width:80px!important}.mw-xxl-85px{max-width:85px!important}.mw-xxl-90px{max-width:90px!important}.mw-xxl-95px{max-width:95px!important}.mw-xxl-100px{max-width:100px!important}.mw-xxl-125px{max-width:125px!important}.mw-xxl-150px{max-width:150px!important}.mw-xxl-175px{max-width:175px!important}.mw-xxl-200px{max-width:200px!important}.mw-xxl-225px{max-width:225px!important}.mw-xxl-250px{max-width:250px!important}.mw-xxl-275px{max-width:275px!important}.mw-xxl-300px{max-width:300px!important}.mw-xxl-325px{max-width:325px!important}.mw-xxl-350px{max-width:350px!important}.mw-xxl-375px{max-width:375px!important}.mw-xxl-400px{max-width:400px!important}.mw-xxl-425px{max-width:425px!important}.mw-xxl-450px{max-width:450px!important}.mw-xxl-475px{max-width:475px!important}.mw-xxl-500px{max-width:500px!important}.mw-xxl-550px{max-width:550px!important}.mw-xxl-600px{max-width:600px!important}.mw-xxl-650px{max-width:650px!important}.mw-xxl-700px{max-width:700px!important}.mw-xxl-750px{max-width:750px!important}.mw-xxl-800px{max-width:800px!important}.mw-xxl-850px{max-width:850px!important}.mw-xxl-900px{max-width:900px!important}.mw-xxl-950px{max-width:950px!important}.mw-xxl-1000px{max-width:1000px!important}.h-xxl-unset{height:unset!important}.h-xxl-25{height:25%!important}.h-xxl-50{height:50%!important}.h-xxl-75{height:75%!important}.h-xxl-100{height:100%!important}.h-xxl-auto{height:auto!important}.h-xxl-1px{height:1px!important}.h-xxl-2px{height:2px!important}.h-xxl-3px{height:3px!important}.h-xxl-4px{height:4px!important}.h-xxl-5px{height:5px!important}.h-xxl-6px{height:6px!important}.h-xxl-7px{height:7px!important}.h-xxl-8px{height:8px!important}.h-xxl-9px{height:9px!important}.h-xxl-10px{height:10px!important}.h-xxl-15px{height:15px!important}.h-xxl-20px{height:20px!important}.h-xxl-25px{height:25px!important}.h-xxl-30px{height:30px!important}.h-xxl-35px{height:35px!important}.h-xxl-40px{height:40px!important}.h-xxl-45px{height:45px!important}.h-xxl-50px{height:50px!important}.h-xxl-55px{height:55px!important}.h-xxl-60px{height:60px!important}.h-xxl-65px{height:65px!important}.h-xxl-70px{height:70px!important}.h-xxl-75px{height:75px!important}.h-xxl-80px{height:80px!important}.h-xxl-85px{height:85px!important}.h-xxl-90px{height:90px!important}.h-xxl-95px{height:95px!important}.h-xxl-100px{height:100px!important}.h-xxl-125px{height:125px!important}.h-xxl-150px{height:150px!important}.h-xxl-175px{height:175px!important}.h-xxl-200px{height:200px!important}.h-xxl-225px{height:225px!important}.h-xxl-250px{height:250px!important}.h-xxl-275px{height:275px!important}.h-xxl-300px{height:300px!important}.h-xxl-325px{height:325px!important}.h-xxl-350px{height:350px!important}.h-xxl-375px{height:375px!important}.h-xxl-400px{height:400px!important}.h-xxl-425px{height:425px!important}.h-xxl-450px{height:450px!important}.h-xxl-475px{height:475px!important}.h-xxl-500px{height:500px!important}.h-xxl-550px{height:550px!important}.h-xxl-600px{height:600px!important}.h-xxl-650px{height:650px!important}.h-xxl-700px{height:700px!important}.h-xxl-750px{height:750px!important}.h-xxl-800px{height:800px!important}.h-xxl-850px{height:850px!important}.h-xxl-900px{height:900px!important}.h-xxl-950px{height:950px!important}.h-xxl-1000px{height:1000px!important}.mh-xxl-unset{max-height:unset!important}.mh-xxl-25{max-height:25%!important}.mh-xxl-50{max-height:50%!important}.mh-xxl-75{max-height:75%!important}.mh-xxl-100{max-height:100%!important}.mh-xxl-auto{max-height:auto!important}.mh-xxl-1px{max-height:1px!important}.mh-xxl-2px{max-height:2px!important}.mh-xxl-3px{max-height:3px!important}.mh-xxl-4px{max-height:4px!important}.mh-xxl-5px{max-height:5px!important}.mh-xxl-6px{max-height:6px!important}.mh-xxl-7px{max-height:7px!important}.mh-xxl-8px{max-height:8px!important}.mh-xxl-9px{max-height:9px!important}.mh-xxl-10px{max-height:10px!important}.mh-xxl-15px{max-height:15px!important}.mh-xxl-20px{max-height:20px!important}.mh-xxl-25px{max-height:25px!important}.mh-xxl-30px{max-height:30px!important}.mh-xxl-35px{max-height:35px!important}.mh-xxl-40px{max-height:40px!important}.mh-xxl-45px{max-height:45px!important}.mh-xxl-50px{max-height:50px!important}.mh-xxl-55px{max-height:55px!important}.mh-xxl-60px{max-height:60px!important}.mh-xxl-65px{max-height:65px!important}.mh-xxl-70px{max-height:70px!important}.mh-xxl-75px{max-height:75px!important}.mh-xxl-80px{max-height:80px!important}.mh-xxl-85px{max-height:85px!important}.mh-xxl-90px{max-height:90px!important}.mh-xxl-95px{max-height:95px!important}.mh-xxl-100px{max-height:100px!important}.mh-xxl-125px{max-height:125px!important}.mh-xxl-150px{max-height:150px!important}.mh-xxl-175px{max-height:175px!important}.mh-xxl-200px{max-height:200px!important}.mh-xxl-225px{max-height:225px!important}.mh-xxl-250px{max-height:250px!important}.mh-xxl-275px{max-height:275px!important}.mh-xxl-300px{max-height:300px!important}.mh-xxl-325px{max-height:325px!important}.mh-xxl-350px{max-height:350px!important}.mh-xxl-375px{max-height:375px!important}.mh-xxl-400px{max-height:400px!important}.mh-xxl-425px{max-height:425px!important}.mh-xxl-450px{max-height:450px!important}.mh-xxl-475px{max-height:475px!important}.mh-xxl-500px{max-height:500px!important}.mh-xxl-550px{max-height:550px!important}.mh-xxl-600px{max-height:600px!important}.mh-xxl-650px{max-height:650px!important}.mh-xxl-700px{max-height:700px!important}.mh-xxl-750px{max-height:750px!important}.mh-xxl-800px{max-height:800px!important}.mh-xxl-850px{max-height:850px!important}.mh-xxl-900px{max-height:900px!important}.mh-xxl-950px{max-height:950px!important}.mh-xxl-1000px{max-height:1000px!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:.75rem!important}.gap-xxl-4{gap:1rem!important}.gap-xxl-5{gap:1.25rem!important}.gap-xxl-6{gap:1.5rem!important}.gap-xxl-7{gap:1.75rem!important}.gap-xxl-8{gap:2rem!important}.gap-xxl-9{gap:2.25rem!important}.gap-xxl-10{gap:2.5rem!important}.gap-xxl-11{gap:2.75rem!important}.gap-xxl-12{gap:3rem!important}.gap-xxl-13{gap:3.25rem!important}.gap-xxl-14{gap:3.5rem!important}.gap-xxl-15{gap:3.75rem!important}.gap-xxl-16{gap:4rem!important}.gap-xxl-17{gap:4.25rem!important}.gap-xxl-18{gap:4.5rem!important}.gap-xxl-19{gap:4.75rem!important}.gap-xxl-20{gap:5rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:.75rem!important}.m-xxl-4{margin:1rem!important}.m-xxl-5{margin:1.25rem!important}.m-xxl-6{margin:1.5rem!important}.m-xxl-7{margin:1.75rem!important}.m-xxl-8{margin:2rem!important}.m-xxl-9{margin:2.25rem!important}.m-xxl-10{margin:2.5rem!important}.m-xxl-11{margin:2.75rem!important}.m-xxl-12{margin:3rem!important}.m-xxl-13{margin:3.25rem!important}.m-xxl-14{margin:3.5rem!important}.m-xxl-15{margin:3.75rem!important}.m-xxl-16{margin:4rem!important}.m-xxl-17{margin:4.25rem!important}.m-xxl-18{margin:4.5rem!important}.m-xxl-19{margin:4.75rem!important}.m-xxl-20{margin:5rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:.75rem!important;margin-right:.75rem!important}.mx-xxl-4{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.mx-xxl-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.mx-xxl-8{margin-left:2rem!important;margin-right:2rem!important}.mx-xxl-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.mx-xxl-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.mx-xxl-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.mx-xxl-12{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.mx-xxl-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.mx-xxl-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.mx-xxl-16{margin-left:4rem!important;margin-right:4rem!important}.mx-xxl-17{margin-left:4.25rem!important;margin-right:4.25rem!important}.mx-xxl-18{margin-left:4.5rem!important;margin-right:4.5rem!important}.mx-xxl-19{margin-left:4.75rem!important;margin-right:4.75rem!important}.mx-xxl-20{margin-left:5rem!important;margin-right:5rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-xxl-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-xxl-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-xxl-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-xxl-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-xxl-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-xxl-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-xxl-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-xxl-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-xxl-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-xxl-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-xxl-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-xxl-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-xxl-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-xxl-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:.75rem!important}.mt-xxl-4{margin-top:1rem!important}.mt-xxl-5{margin-top:1.25rem!important}.mt-xxl-6{margin-top:1.5rem!important}.mt-xxl-7{margin-top:1.75rem!important}.mt-xxl-8{margin-top:2rem!important}.mt-xxl-9{margin-top:2.25rem!important}.mt-xxl-10{margin-top:2.5rem!important}.mt-xxl-11{margin-top:2.75rem!important}.mt-xxl-12{margin-top:3rem!important}.mt-xxl-13{margin-top:3.25rem!important}.mt-xxl-14{margin-top:3.5rem!important}.mt-xxl-15{margin-top:3.75rem!important}.mt-xxl-16{margin-top:4rem!important}.mt-xxl-17{margin-top:4.25rem!important}.mt-xxl-18{margin-top:4.5rem!important}.mt-xxl-19{margin-top:4.75rem!important}.mt-xxl-20{margin-top:5rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-left:0!important}.me-xxl-1{margin-left:.25rem!important}.me-xxl-2{margin-left:.5rem!important}.me-xxl-3{margin-left:.75rem!important}.me-xxl-4{margin-left:1rem!important}.me-xxl-5{margin-left:1.25rem!important}.me-xxl-6{margin-left:1.5rem!important}.me-xxl-7{margin-left:1.75rem!important}.me-xxl-8{margin-left:2rem!important}.me-xxl-9{margin-left:2.25rem!important}.me-xxl-10{margin-left:2.5rem!important}.me-xxl-11{margin-left:2.75rem!important}.me-xxl-12{margin-left:3rem!important}.me-xxl-13{margin-left:3.25rem!important}.me-xxl-14{margin-left:3.5rem!important}.me-xxl-15{margin-left:3.75rem!important}.me-xxl-16{margin-left:4rem!important}.me-xxl-17{margin-left:4.25rem!important}.me-xxl-18{margin-left:4.5rem!important}.me-xxl-19{margin-left:4.75rem!important}.me-xxl-20{margin-left:5rem!important}.me-xxl-auto{margin-left:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:.75rem!important}.mb-xxl-4{margin-bottom:1rem!important}.mb-xxl-5{margin-bottom:1.25rem!important}.mb-xxl-6{margin-bottom:1.5rem!important}.mb-xxl-7{margin-bottom:1.75rem!important}.mb-xxl-8{margin-bottom:2rem!important}.mb-xxl-9{margin-bottom:2.25rem!important}.mb-xxl-10{margin-bottom:2.5rem!important}.mb-xxl-11{margin-bottom:2.75rem!important}.mb-xxl-12{margin-bottom:3rem!important}.mb-xxl-13{margin-bottom:3.25rem!important}.mb-xxl-14{margin-bottom:3.5rem!important}.mb-xxl-15{margin-bottom:3.75rem!important}.mb-xxl-16{margin-bottom:4rem!important}.mb-xxl-17{margin-bottom:4.25rem!important}.mb-xxl-18{margin-bottom:4.5rem!important}.mb-xxl-19{margin-bottom:4.75rem!important}.mb-xxl-20{margin-bottom:5rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-right:0!important}.ms-xxl-1{margin-right:.25rem!important}.ms-xxl-2{margin-right:.5rem!important}.ms-xxl-3{margin-right:.75rem!important}.ms-xxl-4{margin-right:1rem!important}.ms-xxl-5{margin-right:1.25rem!important}.ms-xxl-6{margin-right:1.5rem!important}.ms-xxl-7{margin-right:1.75rem!important}.ms-xxl-8{margin-right:2rem!important}.ms-xxl-9{margin-right:2.25rem!important}.ms-xxl-10{margin-right:2.5rem!important}.ms-xxl-11{margin-right:2.75rem!important}.ms-xxl-12{margin-right:3rem!important}.ms-xxl-13{margin-right:3.25rem!important}.ms-xxl-14{margin-right:3.5rem!important}.ms-xxl-15{margin-right:3.75rem!important}.ms-xxl-16{margin-right:4rem!important}.ms-xxl-17{margin-right:4.25rem!important}.ms-xxl-18{margin-right:4.5rem!important}.ms-xxl-19{margin-right:4.75rem!important}.ms-xxl-20{margin-right:5rem!important}.ms-xxl-auto{margin-right:auto!important}.m-xxl-n1{margin:-.25rem!important}.m-xxl-n2{margin:-.5rem!important}.m-xxl-n3{margin:-.75rem!important}.m-xxl-n4{margin:-1rem!important}.m-xxl-n5{margin:-1.25rem!important}.m-xxl-n6{margin:-1.5rem!important}.m-xxl-n7{margin:-1.75rem!important}.m-xxl-n8{margin:-2rem!important}.m-xxl-n9{margin:-2.25rem!important}.m-xxl-n10{margin:-2.5rem!important}.m-xxl-n11{margin:-2.75rem!important}.m-xxl-n12{margin:-3rem!important}.m-xxl-n13{margin:-3.25rem!important}.m-xxl-n14{margin:-3.5rem!important}.m-xxl-n15{margin:-3.75rem!important}.m-xxl-n16{margin:-4rem!important}.m-xxl-n17{margin:-4.25rem!important}.m-xxl-n18{margin:-4.5rem!important}.m-xxl-n19{margin:-4.75rem!important}.m-xxl-n20{margin:-5rem!important}.mx-xxl-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-xxl-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-xxl-n3{margin-left:-.75rem!important;margin-right:-.75rem!important}.mx-xxl-n4{margin-left:-1rem!important;margin-right:-1rem!important}.mx-xxl-n5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.mx-xxl-n6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-xxl-n7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.mx-xxl-n8{margin-left:-2rem!important;margin-right:-2rem!important}.mx-xxl-n9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.mx-xxl-n10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.mx-xxl-n11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.mx-xxl-n12{margin-left:-3rem!important;margin-right:-3rem!important}.mx-xxl-n13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.mx-xxl-n14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.mx-xxl-n15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.mx-xxl-n16{margin-left:-4rem!important;margin-right:-4rem!important}.mx-xxl-n17{margin-left:-4.25rem!important;margin-right:-4.25rem!important}.mx-xxl-n18{margin-left:-4.5rem!important;margin-right:-4.5rem!important}.mx-xxl-n19{margin-left:-4.75rem!important;margin-right:-4.75rem!important}.mx-xxl-n20{margin-left:-5rem!important;margin-right:-5rem!important}.my-xxl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xxl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xxl-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-xxl-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xxl-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-xxl-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xxl-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-xxl-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-xxl-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-xxl-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-xxl-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-xxl-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-xxl-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-xxl-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-xxl-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-xxl-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-xxl-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-xxl-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-xxl-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-xxl-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-xxl-n1{margin-top:-.25rem!important}.mt-xxl-n2{margin-top:-.5rem!important}.mt-xxl-n3{margin-top:-.75rem!important}.mt-xxl-n4{margin-top:-1rem!important}.mt-xxl-n5{margin-top:-1.25rem!important}.mt-xxl-n6{margin-top:-1.5rem!important}.mt-xxl-n7{margin-top:-1.75rem!important}.mt-xxl-n8{margin-top:-2rem!important}.mt-xxl-n9{margin-top:-2.25rem!important}.mt-xxl-n10{margin-top:-2.5rem!important}.mt-xxl-n11{margin-top:-2.75rem!important}.mt-xxl-n12{margin-top:-3rem!important}.mt-xxl-n13{margin-top:-3.25rem!important}.mt-xxl-n14{margin-top:-3.5rem!important}.mt-xxl-n15{margin-top:-3.75rem!important}.mt-xxl-n16{margin-top:-4rem!important}.mt-xxl-n17{margin-top:-4.25rem!important}.mt-xxl-n18{margin-top:-4.5rem!important}.mt-xxl-n19{margin-top:-4.75rem!important}.mt-xxl-n20{margin-top:-5rem!important}.me-xxl-n1{margin-left:-.25rem!important}.me-xxl-n2{margin-left:-.5rem!important}.me-xxl-n3{margin-left:-.75rem!important}.me-xxl-n4{margin-left:-1rem!important}.me-xxl-n5{margin-left:-1.25rem!important}.me-xxl-n6{margin-left:-1.5rem!important}.me-xxl-n7{margin-left:-1.75rem!important}.me-xxl-n8{margin-left:-2rem!important}.me-xxl-n9{margin-left:-2.25rem!important}.me-xxl-n10{margin-left:-2.5rem!important}.me-xxl-n11{margin-left:-2.75rem!important}.me-xxl-n12{margin-left:-3rem!important}.me-xxl-n13{margin-left:-3.25rem!important}.me-xxl-n14{margin-left:-3.5rem!important}.me-xxl-n15{margin-left:-3.75rem!important}.me-xxl-n16{margin-left:-4rem!important}.me-xxl-n17{margin-left:-4.25rem!important}.me-xxl-n18{margin-left:-4.5rem!important}.me-xxl-n19{margin-left:-4.75rem!important}.me-xxl-n20{margin-left:-5rem!important}.mb-xxl-n1{margin-bottom:-.25rem!important}.mb-xxl-n2{margin-bottom:-.5rem!important}.mb-xxl-n3{margin-bottom:-.75rem!important}.mb-xxl-n4{margin-bottom:-1rem!important}.mb-xxl-n5{margin-bottom:-1.25rem!important}.mb-xxl-n6{margin-bottom:-1.5rem!important}.mb-xxl-n7{margin-bottom:-1.75rem!important}.mb-xxl-n8{margin-bottom:-2rem!important}.mb-xxl-n9{margin-bottom:-2.25rem!important}.mb-xxl-n10{margin-bottom:-2.5rem!important}.mb-xxl-n11{margin-bottom:-2.75rem!important}.mb-xxl-n12{margin-bottom:-3rem!important}.mb-xxl-n13{margin-bottom:-3.25rem!important}.mb-xxl-n14{margin-bottom:-3.5rem!important}.mb-xxl-n15{margin-bottom:-3.75rem!important}.mb-xxl-n16{margin-bottom:-4rem!important}.mb-xxl-n17{margin-bottom:-4.25rem!important}.mb-xxl-n18{margin-bottom:-4.5rem!important}.mb-xxl-n19{margin-bottom:-4.75rem!important}.mb-xxl-n20{margin-bottom:-5rem!important}.ms-xxl-n1{margin-right:-.25rem!important}.ms-xxl-n2{margin-right:-.5rem!important}.ms-xxl-n3{margin-right:-.75rem!important}.ms-xxl-n4{margin-right:-1rem!important}.ms-xxl-n5{margin-right:-1.25rem!important}.ms-xxl-n6{margin-right:-1.5rem!important}.ms-xxl-n7{margin-right:-1.75rem!important}.ms-xxl-n8{margin-right:-2rem!important}.ms-xxl-n9{margin-right:-2.25rem!important}.ms-xxl-n10{margin-right:-2.5rem!important}.ms-xxl-n11{margin-right:-2.75rem!important}.ms-xxl-n12{margin-right:-3rem!important}.ms-xxl-n13{margin-right:-3.25rem!important}.ms-xxl-n14{margin-right:-3.5rem!important}.ms-xxl-n15{margin-right:-3.75rem!important}.ms-xxl-n16{margin-right:-4rem!important}.ms-xxl-n17{margin-right:-4.25rem!important}.ms-xxl-n18{margin-right:-4.5rem!important}.ms-xxl-n19{margin-right:-4.75rem!important}.ms-xxl-n20{margin-right:-5rem!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:.75rem!important}.p-xxl-4{padding:1rem!important}.p-xxl-5{padding:1.25rem!important}.p-xxl-6{padding:1.5rem!important}.p-xxl-7{padding:1.75rem!important}.p-xxl-8{padding:2rem!important}.p-xxl-9{padding:2.25rem!important}.p-xxl-10{padding:2.5rem!important}.p-xxl-11{padding:2.75rem!important}.p-xxl-12{padding:3rem!important}.p-xxl-13{padding:3.25rem!important}.p-xxl-14{padding:3.5rem!important}.p-xxl-15{padding:3.75rem!important}.p-xxl-16{padding:4rem!important}.p-xxl-17{padding:4.25rem!important}.p-xxl-18{padding:4.5rem!important}.p-xxl-19{padding:4.75rem!important}.p-xxl-20{padding:5rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-xxl-4{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-xxl-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.px-xxl-8{padding-left:2rem!important;padding-right:2rem!important}.px-xxl-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.px-xxl-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.px-xxl-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.px-xxl-12{padding-left:3rem!important;padding-right:3rem!important}.px-xxl-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.px-xxl-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.px-xxl-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.px-xxl-16{padding-left:4rem!important;padding-right:4rem!important}.px-xxl-17{padding-left:4.25rem!important;padding-right:4.25rem!important}.px-xxl-18{padding-left:4.5rem!important;padding-right:4.5rem!important}.px-xxl-19{padding-left:4.75rem!important;padding-right:4.75rem!important}.px-xxl-20{padding-left:5rem!important;padding-right:5rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-xxl-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-xxl-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-xxl-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-xxl-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-xxl-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-xxl-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-xxl-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-xxl-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-xxl-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-xxl-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-xxl-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-xxl-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-xxl-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-xxl-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-xxl-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:.75rem!important}.pt-xxl-4{padding-top:1rem!important}.pt-xxl-5{padding-top:1.25rem!important}.pt-xxl-6{padding-top:1.5rem!important}.pt-xxl-7{padding-top:1.75rem!important}.pt-xxl-8{padding-top:2rem!important}.pt-xxl-9{padding-top:2.25rem!important}.pt-xxl-10{padding-top:2.5rem!important}.pt-xxl-11{padding-top:2.75rem!important}.pt-xxl-12{padding-top:3rem!important}.pt-xxl-13{padding-top:3.25rem!important}.pt-xxl-14{padding-top:3.5rem!important}.pt-xxl-15{padding-top:3.75rem!important}.pt-xxl-16{padding-top:4rem!important}.pt-xxl-17{padding-top:4.25rem!important}.pt-xxl-18{padding-top:4.5rem!important}.pt-xxl-19{padding-top:4.75rem!important}.pt-xxl-20{padding-top:5rem!important}.pe-xxl-0{padding-left:0!important}.pe-xxl-1{padding-left:.25rem!important}.pe-xxl-2{padding-left:.5rem!important}.pe-xxl-3{padding-left:.75rem!important}.pe-xxl-4{padding-left:1rem!important}.pe-xxl-5{padding-left:1.25rem!important}.pe-xxl-6{padding-left:1.5rem!important}.pe-xxl-7{padding-left:1.75rem!important}.pe-xxl-8{padding-left:2rem!important}.pe-xxl-9{padding-left:2.25rem!important}.pe-xxl-10{padding-left:2.5rem!important}.pe-xxl-11{padding-left:2.75rem!important}.pe-xxl-12{padding-left:3rem!important}.pe-xxl-13{padding-left:3.25rem!important}.pe-xxl-14{padding-left:3.5rem!important}.pe-xxl-15{padding-left:3.75rem!important}.pe-xxl-16{padding-left:4rem!important}.pe-xxl-17{padding-left:4.25rem!important}.pe-xxl-18{padding-left:4.5rem!important}.pe-xxl-19{padding-left:4.75rem!important}.pe-xxl-20{padding-left:5rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:.75rem!important}.pb-xxl-4{padding-bottom:1rem!important}.pb-xxl-5{padding-bottom:1.25rem!important}.pb-xxl-6{padding-bottom:1.5rem!important}.pb-xxl-7{padding-bottom:1.75rem!important}.pb-xxl-8{padding-bottom:2rem!important}.pb-xxl-9{padding-bottom:2.25rem!important}.pb-xxl-10{padding-bottom:2.5rem!important}.pb-xxl-11{padding-bottom:2.75rem!important}.pb-xxl-12{padding-bottom:3rem!important}.pb-xxl-13{padding-bottom:3.25rem!important}.pb-xxl-14{padding-bottom:3.5rem!important}.pb-xxl-15{padding-bottom:3.75rem!important}.pb-xxl-16{padding-bottom:4rem!important}.pb-xxl-17{padding-bottom:4.25rem!important}.pb-xxl-18{padding-bottom:4.5rem!important}.pb-xxl-19{padding-bottom:4.75rem!important}.pb-xxl-20{padding-bottom:5rem!important}.ps-xxl-0{padding-right:0!important}.ps-xxl-1{padding-right:.25rem!important}.ps-xxl-2{padding-right:.5rem!important}.ps-xxl-3{padding-right:.75rem!important}.ps-xxl-4{padding-right:1rem!important}.ps-xxl-5{padding-right:1.25rem!important}.ps-xxl-6{padding-right:1.5rem!important}.ps-xxl-7{padding-right:1.75rem!important}.ps-xxl-8{padding-right:2rem!important}.ps-xxl-9{padding-right:2.25rem!important}.ps-xxl-10{padding-right:2.5rem!important}.ps-xxl-11{padding-right:2.75rem!important}.ps-xxl-12{padding-right:3rem!important}.ps-xxl-13{padding-right:3.25rem!important}.ps-xxl-14{padding-right:3.5rem!important}.ps-xxl-15{padding-right:3.75rem!important}.ps-xxl-16{padding-right:4rem!important}.ps-xxl-17{padding-right:4.25rem!important}.ps-xxl-18{padding-right:4.5rem!important}.ps-xxl-19{padding-right:4.75rem!important}.ps-xxl-20{padding-right:5rem!important}.fs-xxl-1{font-size:calc(1.3rem + .6vw)!important}.fs-xxl-2{font-size:calc(1.275rem + .3vw)!important}.fs-xxl-3{font-size:calc(1.26rem + .12vw)!important}.fs-xxl-4{font-size:1.25rem!important}.fs-xxl-5{font-size:1.15rem!important}.fs-xxl-6{font-size:1.075rem!important}.fs-xxl-7{font-size:.95rem!important}.fs-xxl-8{font-size:.85rem!important}.fs-xxl-9{font-size:.75rem!important}.fs-xxl-10{font-size:.5rem!important}.fs-xxl-base{font-size:1rem!important}.fs-xxl-fluid{font-size:100%!important}.fs-xxl-2x{font-size:calc(1.325rem + .9vw)!important}.fs-xxl-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-xxl-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-xxl-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-xxl-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-xxl-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-xxl-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-xxl-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-xxl-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-xxl-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-xxl-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-xxl-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-xxl-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-xxl-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-xxl-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-xxl-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-xxl-start{text-align:right!important}.text-xxl-end{text-align:left!important}.text-xxl-center{text-align:center!important}.min-w-xxl-unset{min-width:unset!important}.min-w-xxl-25{min-width:25%!important}.min-w-xxl-50{min-width:50%!important}.min-w-xxl-75{min-width:75%!important}.min-w-xxl-100{min-width:100%!important}.min-w-xxl-auto{min-width:auto!important}.min-w-xxl-1px{min-width:1px!important}.min-w-xxl-2px{min-width:2px!important}.min-w-xxl-3px{min-width:3px!important}.min-w-xxl-4px{min-width:4px!important}.min-w-xxl-5px{min-width:5px!important}.min-w-xxl-6px{min-width:6px!important}.min-w-xxl-7px{min-width:7px!important}.min-w-xxl-8px{min-width:8px!important}.min-w-xxl-9px{min-width:9px!important}.min-w-xxl-10px{min-width:10px!important}.min-w-xxl-15px{min-width:15px!important}.min-w-xxl-20px{min-width:20px!important}.min-w-xxl-25px{min-width:25px!important}.min-w-xxl-30px{min-width:30px!important}.min-w-xxl-35px{min-width:35px!important}.min-w-xxl-40px{min-width:40px!important}.min-w-xxl-45px{min-width:45px!important}.min-w-xxl-50px{min-width:50px!important}.min-w-xxl-55px{min-width:55px!important}.min-w-xxl-60px{min-width:60px!important}.min-w-xxl-65px{min-width:65px!important}.min-w-xxl-70px{min-width:70px!important}.min-w-xxl-75px{min-width:75px!important}.min-w-xxl-80px{min-width:80px!important}.min-w-xxl-85px{min-width:85px!important}.min-w-xxl-90px{min-width:90px!important}.min-w-xxl-95px{min-width:95px!important}.min-w-xxl-100px{min-width:100px!important}.min-w-xxl-125px{min-width:125px!important}.min-w-xxl-150px{min-width:150px!important}.min-w-xxl-175px{min-width:175px!important}.min-w-xxl-200px{min-width:200px!important}.min-w-xxl-225px{min-width:225px!important}.min-w-xxl-250px{min-width:250px!important}.min-w-xxl-275px{min-width:275px!important}.min-w-xxl-300px{min-width:300px!important}.min-w-xxl-325px{min-width:325px!important}.min-w-xxl-350px{min-width:350px!important}.min-w-xxl-375px{min-width:375px!important}.min-w-xxl-400px{min-width:400px!important}.min-w-xxl-425px{min-width:425px!important}.min-w-xxl-450px{min-width:450px!important}.min-w-xxl-475px{min-width:475px!important}.min-w-xxl-500px{min-width:500px!important}.min-w-xxl-550px{min-width:550px!important}.min-w-xxl-600px{min-width:600px!important}.min-w-xxl-650px{min-width:650px!important}.min-w-xxl-700px{min-width:700px!important}.min-w-xxl-750px{min-width:750px!important}.min-w-xxl-800px{min-width:800px!important}.min-w-xxl-850px{min-width:850px!important}.min-w-xxl-900px{min-width:900px!important}.min-w-xxl-950px{min-width:950px!important}.min-w-xxl-1000px{min-width:1000px!important}.min-h-xxl-unset{min-height:unset!important}.min-h-xxl-25{min-height:25%!important}.min-h-xxl-50{min-height:50%!important}.min-h-xxl-75{min-height:75%!important}.min-h-xxl-100{min-height:100%!important}.min-h-xxl-auto{min-height:auto!important}.min-h-xxl-1px{min-height:1px!important}.min-h-xxl-2px{min-height:2px!important}.min-h-xxl-3px{min-height:3px!important}.min-h-xxl-4px{min-height:4px!important}.min-h-xxl-5px{min-height:5px!important}.min-h-xxl-6px{min-height:6px!important}.min-h-xxl-7px{min-height:7px!important}.min-h-xxl-8px{min-height:8px!important}.min-h-xxl-9px{min-height:9px!important}.min-h-xxl-10px{min-height:10px!important}.min-h-xxl-15px{min-height:15px!important}.min-h-xxl-20px{min-height:20px!important}.min-h-xxl-25px{min-height:25px!important}.min-h-xxl-30px{min-height:30px!important}.min-h-xxl-35px{min-height:35px!important}.min-h-xxl-40px{min-height:40px!important}.min-h-xxl-45px{min-height:45px!important}.min-h-xxl-50px{min-height:50px!important}.min-h-xxl-55px{min-height:55px!important}.min-h-xxl-60px{min-height:60px!important}.min-h-xxl-65px{min-height:65px!important}.min-h-xxl-70px{min-height:70px!important}.min-h-xxl-75px{min-height:75px!important}.min-h-xxl-80px{min-height:80px!important}.min-h-xxl-85px{min-height:85px!important}.min-h-xxl-90px{min-height:90px!important}.min-h-xxl-95px{min-height:95px!important}.min-h-xxl-100px{min-height:100px!important}.min-h-xxl-125px{min-height:125px!important}.min-h-xxl-150px{min-height:150px!important}.min-h-xxl-175px{min-height:175px!important}.min-h-xxl-200px{min-height:200px!important}.min-h-xxl-225px{min-height:225px!important}.min-h-xxl-250px{min-height:250px!important}.min-h-xxl-275px{min-height:275px!important}.min-h-xxl-300px{min-height:300px!important}.min-h-xxl-325px{min-height:325px!important}.min-h-xxl-350px{min-height:350px!important}.min-h-xxl-375px{min-height:375px!important}.min-h-xxl-400px{min-height:400px!important}.min-h-xxl-425px{min-height:425px!important}.min-h-xxl-450px{min-height:450px!important}.min-h-xxl-475px{min-height:475px!important}.min-h-xxl-500px{min-height:500px!important}.min-h-xxl-550px{min-height:550px!important}.min-h-xxl-600px{min-height:600px!important}.min-h-xxl-650px{min-height:650px!important}.min-h-xxl-700px{min-height:700px!important}.min-h-xxl-750px{min-height:750px!important}.min-h-xxl-800px{min-height:800px!important}.min-h-xxl-850px{min-height:850px!important}.min-h-xxl-900px{min-height:900px!important}.min-h-xxl-950px{min-height:950px!important}.min-h-xxl-1000px{min-height:1000px!important}}@media (min-width:1200px){.fs-1{font-size:1.75rem!important}.fs-2{font-size:1.5rem!important}.fs-3{font-size:1.35rem!important}.fs-2x{font-size:2rem!important}.fs-2qx{font-size:2.25rem!important}.fs-2hx{font-size:2.5rem!important}.fs-2tx{font-size:2.75rem!important}.fs-3x{font-size:3rem!important}.fs-3qx{font-size:3.25rem!important}.fs-3hx{font-size:3.5rem!important}.fs-3tx{font-size:3.75rem!important}.fs-4x{font-size:4rem!important}.fs-4qx{font-size:4.25rem!important}.fs-4hx{font-size:4.5rem!important}.fs-4tx{font-size:4.75rem!important}.fs-5x{font-size:5rem!important}.fs-5qx{font-size:5.25rem!important}.fs-5hx{font-size:5.5rem!important}.fs-5tx{font-size:5.75rem!important}.fs-sm-1{font-size:1.75rem!important}.fs-sm-2{font-size:1.5rem!important}.fs-sm-3{font-size:1.35rem!important}.fs-sm-2x{font-size:2rem!important}.fs-sm-2qx{font-size:2.25rem!important}.fs-sm-2hx{font-size:2.5rem!important}.fs-sm-2tx{font-size:2.75rem!important}.fs-sm-3x{font-size:3rem!important}.fs-sm-3qx{font-size:3.25rem!important}.fs-sm-3hx{font-size:3.5rem!important}.fs-sm-3tx{font-size:3.75rem!important}.fs-sm-4x{font-size:4rem!important}.fs-sm-4qx{font-size:4.25rem!important}.fs-sm-4hx{font-size:4.5rem!important}.fs-sm-4tx{font-size:4.75rem!important}.fs-sm-5x{font-size:5rem!important}.fs-sm-5qx{font-size:5.25rem!important}.fs-sm-5hx{font-size:5.5rem!important}.fs-sm-5tx{font-size:5.75rem!important}.fs-md-1{font-size:1.75rem!important}.fs-md-2{font-size:1.5rem!important}.fs-md-3{font-size:1.35rem!important}.fs-md-2x{font-size:2rem!important}.fs-md-2qx{font-size:2.25rem!important}.fs-md-2hx{font-size:2.5rem!important}.fs-md-2tx{font-size:2.75rem!important}.fs-md-3x{font-size:3rem!important}.fs-md-3qx{font-size:3.25rem!important}.fs-md-3hx{font-size:3.5rem!important}.fs-md-3tx{font-size:3.75rem!important}.fs-md-4x{font-size:4rem!important}.fs-md-4qx{font-size:4.25rem!important}.fs-md-4hx{font-size:4.5rem!important}.fs-md-4tx{font-size:4.75rem!important}.fs-md-5x{font-size:5rem!important}.fs-md-5qx{font-size:5.25rem!important}.fs-md-5hx{font-size:5.5rem!important}.fs-md-5tx{font-size:5.75rem!important}.fs-lg-1{font-size:1.75rem!important}.fs-lg-2{font-size:1.5rem!important}.fs-lg-3{font-size:1.35rem!important}.fs-lg-2x{font-size:2rem!important}.fs-lg-2qx{font-size:2.25rem!important}.fs-lg-2hx{font-size:2.5rem!important}.fs-lg-2tx{font-size:2.75rem!important}.fs-lg-3x{font-size:3rem!important}.fs-lg-3qx{font-size:3.25rem!important}.fs-lg-3hx{font-size:3.5rem!important}.fs-lg-3tx{font-size:3.75rem!important}.fs-lg-4x{font-size:4rem!important}.fs-lg-4qx{font-size:4.25rem!important}.fs-lg-4hx{font-size:4.5rem!important}.fs-lg-4tx{font-size:4.75rem!important}.fs-lg-5x{font-size:5rem!important}.fs-lg-5qx{font-size:5.25rem!important}.fs-lg-5hx{font-size:5.5rem!important}.fs-lg-5tx{font-size:5.75rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!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}.d-print-none{display:none!important}}:root{--bs-light-primary:#F1FAFF;--bs-active-primary:#0095E8;--bs-light-success:#E8FFF3;--bs-active-success:#47BE7D;--bs-light-info:#F8F5FF;--bs-active-info:#5014D0;--bs-light-warning:#FFF8DD;--bs-active-warning:#F1BC00;--bs-light-danger:#FFF5F8;--bs-active-danger:#D9214E;--bs-light-dark:#EFF2F5;--bs-active-dark:#131628;--bs-gray-100:#F5F8FA;--bs-gray-200:#EFF2F5;--bs-gray-300:#E4E6EF;--bs-gray-400:#B5B5C3;--bs-gray-500:#A1A5B7;--bs-gray-600:#7E8299;--bs-gray-700:#5E6278;--bs-gray-800:#3F4254;--bs-gray-900:#181C32;--bs-xs:0;--bs-sm:576px;--bs-md:768px;--bs-lg:992px;--bs-xl:1200px;--bs-xxl:1400px;--bs-border-color:#EFF2F5;--bs-border-dashed-color:#E4E6EF}.bg-white{background-color:#fff!important;--bg-color:255,255,255!important}.bg-white.hoverable:hover{background-color:#f5f8fa!important}.bg-hover-white{cursor:pointer}.bg-hover-white:hover{--bg-color:255,255,255;background-color:#fff!important}.bg-active-white.active{--bg-color:255,255,255;background-color:#fff!important}.bg-state-white{cursor:pointer}.bg-state-white.active,.bg-state-white:hover{--bg-color:255,255,255;background-color:#fff!important}.bg-light{background-color:#f5f8fa!important;--bg-color:245,248,250!important}.bg-light.hoverable:hover{background-color:#eff2f5!important}.bg-hover-light{cursor:pointer}.bg-hover-light:hover{--bg-color:245,248,250;background-color:#f5f8fa!important}.bg-active-light.active{--bg-color:245,248,250;background-color:#f5f8fa!important}.bg-state-light{cursor:pointer}.bg-state-light.active,.bg-state-light:hover{--bg-color:245,248,250;background-color:#f5f8fa!important}.bg-light-primary{background-color:#f1faff!important}.bg-light-primary.hoverable:hover{background-color:#d2efff!important}.bg-primary{background-color:#009ef7!important;--bg-color:0,158,247!important}.bg-primary.hoverable:hover{background-color:#0095e8!important}.bg-hover-light-primary{cursor:pointer}.bg-hover-light-primary:hover{background-color:#f1faff!important}.bg-state-light-primary{cursor:pointer}.bg-state-light-primary.active,.bg-state-light-primary:hover{background-color:#f1faff!important}.bg-hover-primary{cursor:pointer}.bg-hover-primary:hover{--bg-color:0,158,247;background-color:#009ef7!important}.bg-active-primary.active{--bg-color:0,158,247;background-color:#009ef7!important}.bg-state-primary{cursor:pointer}.bg-state-primary.active,.bg-state-primary:hover{--bg-color:0,158,247;background-color:#009ef7!important}.bg-secondary{background-color:#e4e6ef!important;--bg-color:228,230,239!important}.bg-secondary.hoverable:hover{background-color:#b5b5c3!important}.bg-hover-secondary{cursor:pointer}.bg-hover-secondary:hover{--bg-color:228,230,239;background-color:#e4e6ef!important}.bg-active-secondary.active{--bg-color:228,230,239;background-color:#e4e6ef!important}.bg-state-secondary{cursor:pointer}.bg-state-secondary.active,.bg-state-secondary:hover{--bg-color:228,230,239;background-color:#e4e6ef!important}.bg-light-success{background-color:#e8fff3!important}.bg-light-success.hoverable:hover{background-color:#c9ffe3!important}.bg-success{background-color:#50cd89!important;--bg-color:80,205,137!important}.bg-success.hoverable:hover{background-color:#47be7d!important}.bg-hover-light-success{cursor:pointer}.bg-hover-light-success:hover{background-color:#e8fff3!important}.bg-state-light-success{cursor:pointer}.bg-state-light-success.active,.bg-state-light-success:hover{background-color:#e8fff3!important}.bg-hover-success{cursor:pointer}.bg-hover-success:hover{--bg-color:80,205,137;background-color:#50cd89!important}.bg-active-success.active{--bg-color:80,205,137;background-color:#50cd89!important}.bg-state-success{cursor:pointer}.bg-state-success.active,.bg-state-success:hover{--bg-color:80,205,137;background-color:#50cd89!important}.bg-light-info{background-color:#f8f5ff!important}.bg-light-info.hoverable:hover{background-color:#e3d6ff!important}.bg-info{background-color:#7239ea!important;--bg-color:114,57,234!important}.bg-info.hoverable:hover{background-color:#5014d0!important}.bg-hover-light-info{cursor:pointer}.bg-hover-light-info:hover{background-color:#f8f5ff!important}.bg-state-light-info{cursor:pointer}.bg-state-light-info.active,.bg-state-light-info:hover{background-color:#f8f5ff!important}.bg-hover-info{cursor:pointer}.bg-hover-info:hover{--bg-color:114,57,234;background-color:#7239ea!important}.bg-active-info.active{--bg-color:114,57,234;background-color:#7239ea!important}.bg-state-info{cursor:pointer}.bg-state-info.active,.bg-state-info:hover{--bg-color:114,57,234;background-color:#7239ea!important}.bg-light-warning{background-color:#fff8dd!important}.bg-light-warning.hoverable:hover{background-color:#fff2be!important}.bg-warning{background-color:#ffc700!important;--bg-color:255,199,0!important}.bg-warning.hoverable:hover{background-color:#f1bc00!important}.bg-hover-light-warning{cursor:pointer}.bg-hover-light-warning:hover{background-color:#fff8dd!important}.bg-state-light-warning{cursor:pointer}.bg-state-light-warning.active,.bg-state-light-warning:hover{background-color:#fff8dd!important}.bg-hover-warning{cursor:pointer}.bg-hover-warning:hover{--bg-color:255,199,0;background-color:#ffc700!important}.bg-active-warning.active{--bg-color:255,199,0;background-color:#ffc700!important}.bg-state-warning{cursor:pointer}.bg-state-warning.active,.bg-state-warning:hover{--bg-color:255,199,0;background-color:#ffc700!important}.bg-light-danger{background-color:#fff5f8!important}.bg-light-danger.hoverable:hover{background-color:#ffd6e3!important}.bg-danger{background-color:#f1416c!important;--bg-color:241,65,108!important}.bg-danger.hoverable:hover{background-color:#d9214e!important}.bg-hover-light-danger{cursor:pointer}.bg-hover-light-danger:hover{background-color:#fff5f8!important}.bg-state-light-danger{cursor:pointer}.bg-state-light-danger.active,.bg-state-light-danger:hover{background-color:#fff5f8!important}.bg-hover-danger{cursor:pointer}.bg-hover-danger:hover{--bg-color:241,65,108;background-color:#f1416c!important}.bg-active-danger.active{--bg-color:241,65,108;background-color:#f1416c!important}.bg-state-danger{cursor:pointer}.bg-state-danger.active,.bg-state-danger:hover{--bg-color:241,65,108;background-color:#f1416c!important}.bg-light-dark{background-color:#eff2f5!important}.bg-light-dark.hoverable:hover{background-color:#dce3e9!important}.bg-dark{background-color:#181c32!important;--bg-color:24,28,50!important}.bg-dark.hoverable:hover{background-color:#131628!important}.bg-hover-light-dark{cursor:pointer}.bg-hover-light-dark:hover{background-color:#eff2f5!important}.bg-state-light-dark{cursor:pointer}.bg-state-light-dark.active,.bg-state-light-dark:hover{background-color:#eff2f5!important}.bg-hover-dark{cursor:pointer}.bg-hover-dark:hover{--bg-color:24,28,50;background-color:#181c32!important}.bg-active-dark.active{--bg-color:24,28,50;background-color:#181c32!important}.bg-state-dark{cursor:pointer}.bg-state-dark.active,.bg-state-dark:hover{--bg-color:24,28,50;background-color:#181c32!important}.bg-gray-100{background-color:#f5f8fa}.bg-gray-200{background-color:#eff2f5}.bg-gray-300{background-color:#e4e6ef}.bg-gray-400{background-color:#b5b5c3}.bg-gray-500{background-color:#a1a5b7}.bg-gray-600{background-color:#7e8299}.bg-gray-700{background-color:#5e6278}.bg-gray-800{background-color:#3f4254}.bg-gray-900{background-color:#181c32}.bg-opacity-0{background-color:rgba(var(--bg-color),0)!important}.bg-hover-opacity-0:hover{background-color:rgba(var(--bg-color),0)!important}.bg-active-opacity-0.active{background-color:rgba(var(--bg-color),0)!important}.bg-state-opacity-0 .active,.bg-state-opacity-0:hover{background-color:rgba(var(--bg-color),0)!important}.bg-opacity-5{background-color:rgba(var(--bg-color),.05)!important}.bg-hover-opacity-5:hover{background-color:rgba(var(--bg-color),.05)!important}.bg-active-opacity-5.active{background-color:rgba(var(--bg-color),.05)!important}.bg-state-opacity-5 .active,.bg-state-opacity-5:hover{background-color:rgba(var(--bg-color),.05)!important}.bg-opacity-10{background-color:rgba(var(--bg-color),.1)!important}.bg-hover-opacity-10:hover{background-color:rgba(var(--bg-color),.1)!important}.bg-active-opacity-10.active{background-color:rgba(var(--bg-color),.1)!important}.bg-state-opacity-10 .active,.bg-state-opacity-10:hover{background-color:rgba(var(--bg-color),.1)!important}.bg-opacity-15{background-color:rgba(var(--bg-color),.15)!important}.bg-hover-opacity-15:hover{background-color:rgba(var(--bg-color),.15)!important}.bg-active-opacity-15.active{background-color:rgba(var(--bg-color),.15)!important}.bg-state-opacity-15 .active,.bg-state-opacity-15:hover{background-color:rgba(var(--bg-color),.15)!important}.bg-opacity-20{background-color:rgba(var(--bg-color),.2)!important}.bg-hover-opacity-20:hover{background-color:rgba(var(--bg-color),.2)!important}.bg-active-opacity-20.active{background-color:rgba(var(--bg-color),.2)!important}.bg-state-opacity-20 .active,.bg-state-opacity-20:hover{background-color:rgba(var(--bg-color),.2)!important}.bg-opacity-25{background-color:rgba(var(--bg-color),.25)!important}.bg-hover-opacity-25:hover{background-color:rgba(var(--bg-color),.25)!important}.bg-active-opacity-25.active{background-color:rgba(var(--bg-color),.25)!important}.bg-state-opacity-25 .active,.bg-state-opacity-25:hover{background-color:rgba(var(--bg-color),.25)!important}.bg-opacity-50{background-color:rgba(var(--bg-color),.5)!important}.bg-hover-opacity-50:hover{background-color:rgba(var(--bg-color),.5)!important}.bg-active-opacity-50.active{background-color:rgba(var(--bg-color),.5)!important}.bg-state-opacity-50 .active,.bg-state-opacity-50:hover{background-color:rgba(var(--bg-color),.5)!important}.bg-opacity-75{background-color:rgba(var(--bg-color),.75)!important}.bg-hover-opacity-75:hover{background-color:rgba(var(--bg-color),.75)!important}.bg-active-opacity-75.active{background-color:rgba(var(--bg-color),.75)!important}.bg-state-opacity-75 .active,.bg-state-opacity-75:hover{background-color:rgba(var(--bg-color),.75)!important}.bg-opacity-100{background-color:rgba(var(--bg-color),1)!important}.bg-hover-opacity-100:hover{background-color:rgba(var(--bg-color),1)!important}.bg-active-opacity-100.active{background-color:rgba(var(--bg-color),1)!important}.bg-state-opacity-100 .active,.bg-state-opacity-100:hover{background-color:rgba(var(--bg-color),1)!important}.bg-black{background-color:#000}.bg-body{--bg-color:255,255,255;background-color:#fff}.bg-lighten{background-color:rgba(245,248,250,.5)}.bg-hover-lighten{cursor:pointer}.bg-hover-lighten:hover{background-color:rgba(245,248,250,.5)}.bg-active-lighten.active{background-color:rgba(245,248,250,.5)}.bg-state-lighten{cursor:pointer}.bg-state-lighten.active,.bg-state-lighten:hover{background-color:rgba(245,248,250,.5)}.hoverable{cursor:pointer;transition:all .2s ease}.hoverable:hover{transition:all .2s ease}.bgi-no-repeat{background-repeat:no-repeat}.bgi-position-y-top{background-position-y:top}.bgi-position-y-bottom{background-position-y:bottom}.bgi-position-y-center{background-position-y:center}.bgi-position-x-start{background-position-x:right}.bgi-position-x-end{background-position-x:left}.bgi-position-x-center{background-position-x:center}.bgi-position-top{background-position:100% top}.bgi-position-bottom{background-position:100% bottom}.bgi-position-center{background-position:center}.bgi-size-auto{background-size:auto}.bgi-size-cover{background-size:cover}.bgi-size-contain{background-size:contain}.bgi-attachment-fixed{background-attachment:fixed}.bgi-attachment-scroll{background-attachment:scroll}@media (min-width:576px){.bgi-size-sm-auto{background-size:auto}.bgi-size-sm-cover{background-size:cover}.bgi-size-sm-contain{background-size:contain}.bgi-attachment-sm-fixed{background-attachment:fixed}.bgi-attachment-sm-scroll{background-attachment:scroll}}@media (min-width:768px){.bgi-size-md-auto{background-size:auto}.bgi-size-md-cover{background-size:cover}.bgi-size-md-contain{background-size:contain}.bgi-attachment-md-fixed{background-attachment:fixed}.bgi-attachment-md-scroll{background-attachment:scroll}}@media (min-width:992px){.bgi-size-lg-auto{background-size:auto}.bgi-size-lg-cover{background-size:cover}.bgi-size-lg-contain{background-size:contain}.bgi-attachment-lg-fixed{background-attachment:fixed}.bgi-attachment-lg-scroll{background-attachment:scroll}}@media (min-width:1200px){.bgi-size-xl-auto{background-size:auto}.bgi-size-xl-cover{background-size:cover}.bgi-size-xl-contain{background-size:contain}.bgi-attachment-xl-fixed{background-attachment:fixed}.bgi-attachment-xl-scroll{background-attachment:scroll}}@media (min-width:1400px){.bgi-size-xxl-auto{background-size:auto}.bgi-size-xxl-cover{background-size:cover}.bgi-size-xxl-contain{background-size:contain}.bgi-attachment-xxl-fixed{background-attachment:fixed}.bgi-attachment-xxl-scroll{background-attachment:scroll}}.border-active:not(.active):not(:active):not(:hover):not(:focus){border-color:transparent!important}.border-hover:not(:hover):not(:focus):not(.active):not(:active){cursor:pointer;border-color:transparent!important}.border-gray-100{border-color:#f5f8fa!important}.border-gray-200{border-color:#eff2f5!important}.border-gray-300{border-color:#e4e6ef!important}.border-gray-400{border-color:#b5b5c3!important}.border-gray-500{border-color:#a1a5b7!important}.border-gray-600{border-color:#7e8299!important}.border-gray-700{border-color:#5e6278!important}.border-gray-800{border-color:#3f4254!important}.border-gray-900{border-color:#181c32!important}.border-hover-white:hover{border-color:#fff!important}.border-active-white.active{border-color:#fff!important}.border-hover-light:hover{border-color:#f5f8fa!important}.border-active-light.active{border-color:#f5f8fa!important}.border-hover-primary:hover{border-color:#009ef7!important}.border-active-primary.active{border-color:#009ef7!important}.border-hover-secondary:hover{border-color:#e4e6ef!important}.border-active-secondary.active{border-color:#e4e6ef!important}.border-hover-success:hover{border-color:#50cd89!important}.border-active-success.active{border-color:#50cd89!important}.border-hover-info:hover{border-color:#7239ea!important}.border-active-info.active{border-color:#7239ea!important}.border-hover-warning:hover{border-color:#ffc700!important}.border-active-warning.active{border-color:#ffc700!important}.border-hover-danger:hover{border-color:#f1416c!important}.border-active-danger.active{border-color:#f1416c!important}.border-hover-dark:hover{border-color:#181c32!important}.border-active-dark.active{border-color:#181c32!important}.border-hover-transparent:hover{border-color:transparent!important}.border-dashed{border-style:dashed!important;border-color:#e4e6ef}.border-top-dashed{border-top-style:dashed!important}.border-bottom-dashed{border-bottom-style:dashed!important}.border-start-dashed{border-right-style:dashed!important}.border-end-dashed{border-left-style:dashed!important}.border-dotted{border-style:dotted!important}.border-top-dotted{border-top-style:dotted!important}.border-bottom-dotted{border-bottom-style:dotted!important}.border-start-dotted{border-right-style:dotted!important}.border-end-dotted{border-left-style:dotted!important}.border-transparent{border-color:transparent!important}.border-body{border-color:#fff!important}.rounded-top-0{border-top-right-radius:0!important;border-top-left-radius:0!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-start-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-0{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.rounded-circle{border-radius:50%!important}.flex-root{flex:1}.flex-column-auto{flex:none}.flex-column-fluid{flex:1 0 auto}.flex-row-auto{flex:0 0 auto}.flex-row-fluid{flex:1 auto;min-width:0}.flex-center{justify-content:center;align-items:center}.flex-stack{justify-content:space-between;align-items:center}@media (min-width:576px){.flex-sm-root{flex:1}.flex-sm-column-auto{flex:none}.flex-sm-column-fluid{flex:1 0 auto}.flex-sm-row-auto{flex:0 0 auto}.flex-sm-row-fluid{flex:1 auto;min-width:0}.flex-sm-center{justify-content:center;align-items:center}.flex-sm-stack{justify-content:space-between;align-items:center}}@media (min-width:768px){.flex-md-root{flex:1}.flex-md-column-auto{flex:none}.flex-md-column-fluid{flex:1 0 auto}.flex-md-row-auto{flex:0 0 auto}.flex-md-row-fluid{flex:1 auto;min-width:0}.flex-md-center{justify-content:center;align-items:center}.flex-md-stack{justify-content:space-between;align-items:center}}@media (min-width:992px){.flex-lg-root{flex:1}.flex-lg-column-auto{flex:none}.flex-lg-column-fluid{flex:1 0 auto}.flex-lg-row-auto{flex:0 0 auto}.flex-lg-row-fluid{flex:1 auto;min-width:0}.flex-lg-center{justify-content:center;align-items:center}.flex-lg-stack{justify-content:space-between;align-items:center}}@media (min-width:1200px){.flex-xl-root{flex:1}.flex-xl-column-auto{flex:none}.flex-xl-column-fluid{flex:1 0 auto}.flex-xl-row-auto{flex:0 0 auto}.flex-xl-row-fluid{flex:1 auto;min-width:0}.flex-xl-center{justify-content:center;align-items:center}.flex-xl-stack{justify-content:space-between;align-items:center}}@media (min-width:1400px){.flex-xxl-root{flex:1}.flex-xxl-column-auto{flex:none}.flex-xxl-column-fluid{flex:1 0 auto}.flex-xxl-row-auto{flex:0 0 auto}.flex-xxl-row-fluid{flex:1 auto;min-width:0}.flex-xxl-center{justify-content:center;align-items:center}.flex-xxl-stack{justify-content:space-between;align-items:center}}.flex-equal{flex-grow:1;flex-basis:0;flex-shrink:0}.shadow-xs{box-shadow:0 .1rem .75rem .25rem rgba(0,0,0,.05)}.text-white{color:#fff!important}.text-inverse-white{color:#7e8299!important}.text-hover-white{transition:color .2s ease,background-color .2s ease}.text-hover-white i{transition:color .2s ease,background-color .2s ease}.text-hover-white:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-white:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-white:hover .svg-icon{color:#fff!important}.text-hover-inverse-white{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-white i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-white:hover{transition:color .2s ease,background-color .2s ease;color:#7e8299!important}.text-hover-inverse-white:hover i{transition:color .2s ease,background-color .2s ease;color:#7e8299!important}.text-hover-inverse-white:hover .svg-icon{color:#7e8299!important}.text-active-white{transition:color .2s ease,background-color .2s ease}.text-active-white i{transition:color .2s ease,background-color .2s ease}.text-active-white.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-white.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-white.active .svg-icon{color:#fff!important}.text-active-inverse-white{transition:color .2s ease,background-color .2s ease}.text-active-inverse-white i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-white.active{transition:color .2s ease,background-color .2s ease;color:#7e8299!important}.text-active-inverse-white.active i{transition:color .2s ease,background-color .2s ease;color:#7e8299!important}.text-active-inverse-white.active .svg-icon{color:#7e8299!important}.text-primary{color:#009ef7!important}.text-inverse-primary{color:#fff!important}.text-light-primary{color:#f1faff!important}.text-hover-primary{transition:color .2s ease,background-color .2s ease}.text-hover-primary i{transition:color .2s ease,background-color .2s ease}.text-hover-primary:hover{transition:color .2s ease,background-color .2s ease;color:#009ef7!important}.text-hover-primary:hover i{transition:color .2s ease,background-color .2s ease;color:#009ef7!important}.text-hover-primary:hover .svg-icon{color:#009ef7!important}.text-hover-inverse-primary{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-primary i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-primary:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-primary:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-primary:hover .svg-icon{color:#fff!important}.text-active-primary{transition:color .2s ease,background-color .2s ease}.text-active-primary i{transition:color .2s ease,background-color .2s ease}.text-active-primary.active{transition:color .2s ease,background-color .2s ease;color:#009ef7!important}.text-active-primary.active i{transition:color .2s ease,background-color .2s ease;color:#009ef7!important}.text-active-primary.active .svg-icon{color:#009ef7!important}.text-active-inverse-primary{transition:color .2s ease,background-color .2s ease}.text-active-inverse-primary i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-primary.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-primary.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-primary.active .svg-icon{color:#fff!important}.text-secondary{color:#e4e6ef!important}.text-inverse-secondary{color:#3f4254!important}.text-hover-secondary{transition:color .2s ease,background-color .2s ease}.text-hover-secondary i{transition:color .2s ease,background-color .2s ease}.text-hover-secondary:hover{transition:color .2s ease,background-color .2s ease;color:#e4e6ef!important}.text-hover-secondary:hover i{transition:color .2s ease,background-color .2s ease;color:#e4e6ef!important}.text-hover-secondary:hover .svg-icon{color:#e4e6ef!important}.text-hover-inverse-secondary{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-secondary i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-secondary:hover{transition:color .2s ease,background-color .2s ease;color:#3f4254!important}.text-hover-inverse-secondary:hover i{transition:color .2s ease,background-color .2s ease;color:#3f4254!important}.text-hover-inverse-secondary:hover .svg-icon{color:#3f4254!important}.text-active-secondary{transition:color .2s ease,background-color .2s ease}.text-active-secondary i{transition:color .2s ease,background-color .2s ease}.text-active-secondary.active{transition:color .2s ease,background-color .2s ease;color:#e4e6ef!important}.text-active-secondary.active i{transition:color .2s ease,background-color .2s ease;color:#e4e6ef!important}.text-active-secondary.active .svg-icon{color:#e4e6ef!important}.text-active-inverse-secondary{transition:color .2s ease,background-color .2s ease}.text-active-inverse-secondary i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-secondary.active{transition:color .2s ease,background-color .2s ease;color:#3f4254!important}.text-active-inverse-secondary.active i{transition:color .2s ease,background-color .2s ease;color:#3f4254!important}.text-active-inverse-secondary.active .svg-icon{color:#3f4254!important}.text-light{color:#f5f8fa!important}.text-inverse-light{color:#7e8299!important}.text-hover-light{transition:color .2s ease,background-color .2s ease}.text-hover-light i{transition:color .2s ease,background-color .2s ease}.text-hover-light:hover{transition:color .2s ease,background-color .2s ease;color:#f5f8fa!important}.text-hover-light:hover i{transition:color .2s ease,background-color .2s ease;color:#f5f8fa!important}.text-hover-light:hover .svg-icon{color:#f5f8fa!important}.text-hover-inverse-light{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-light i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-light:hover{transition:color .2s ease,background-color .2s ease;color:#7e8299!important}.text-hover-inverse-light:hover i{transition:color .2s ease,background-color .2s ease;color:#7e8299!important}.text-hover-inverse-light:hover .svg-icon{color:#7e8299!important}.text-active-light{transition:color .2s ease,background-color .2s ease}.text-active-light i{transition:color .2s ease,background-color .2s ease}.text-active-light.active{transition:color .2s ease,background-color .2s ease;color:#f5f8fa!important}.text-active-light.active i{transition:color .2s ease,background-color .2s ease;color:#f5f8fa!important}.text-active-light.active .svg-icon{color:#f5f8fa!important}.text-active-inverse-light{transition:color .2s ease,background-color .2s ease}.text-active-inverse-light i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-light.active{transition:color .2s ease,background-color .2s ease;color:#7e8299!important}.text-active-inverse-light.active i{transition:color .2s ease,background-color .2s ease;color:#7e8299!important}.text-active-inverse-light.active .svg-icon{color:#7e8299!important}.text-success{color:#50cd89!important}.text-inverse-success{color:#fff!important}.text-light-success{color:#e8fff3!important}.text-hover-success{transition:color .2s ease,background-color .2s ease}.text-hover-success i{transition:color .2s ease,background-color .2s ease}.text-hover-success:hover{transition:color .2s ease,background-color .2s ease;color:#50cd89!important}.text-hover-success:hover i{transition:color .2s ease,background-color .2s ease;color:#50cd89!important}.text-hover-success:hover .svg-icon{color:#50cd89!important}.text-hover-inverse-success{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-success i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-success:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-success:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-success:hover .svg-icon{color:#fff!important}.text-active-success{transition:color .2s ease,background-color .2s ease}.text-active-success i{transition:color .2s ease,background-color .2s ease}.text-active-success.active{transition:color .2s ease,background-color .2s ease;color:#50cd89!important}.text-active-success.active i{transition:color .2s ease,background-color .2s ease;color:#50cd89!important}.text-active-success.active .svg-icon{color:#50cd89!important}.text-active-inverse-success{transition:color .2s ease,background-color .2s ease}.text-active-inverse-success i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-success.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-success.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-success.active .svg-icon{color:#fff!important}.text-info{color:#7239ea!important}.text-inverse-info{color:#fff!important}.text-light-info{color:#f8f5ff!important}.text-hover-info{transition:color .2s ease,background-color .2s ease}.text-hover-info i{transition:color .2s ease,background-color .2s ease}.text-hover-info:hover{transition:color .2s ease,background-color .2s ease;color:#7239ea!important}.text-hover-info:hover i{transition:color .2s ease,background-color .2s ease;color:#7239ea!important}.text-hover-info:hover .svg-icon{color:#7239ea!important}.text-hover-inverse-info{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-info i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-info:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-info:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-info:hover .svg-icon{color:#fff!important}.text-active-info{transition:color .2s ease,background-color .2s ease}.text-active-info i{transition:color .2s ease,background-color .2s ease}.text-active-info.active{transition:color .2s ease,background-color .2s ease;color:#7239ea!important}.text-active-info.active i{transition:color .2s ease,background-color .2s ease;color:#7239ea!important}.text-active-info.active .svg-icon{color:#7239ea!important}.text-active-inverse-info{transition:color .2s ease,background-color .2s ease}.text-active-inverse-info i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-info.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-info.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-info.active .svg-icon{color:#fff!important}.text-warning{color:#ffc700!important}.text-inverse-warning{color:#fff!important}.text-light-warning{color:#fff8dd!important}.text-hover-warning{transition:color .2s ease,background-color .2s ease}.text-hover-warning i{transition:color .2s ease,background-color .2s ease}.text-hover-warning:hover{transition:color .2s ease,background-color .2s ease;color:#ffc700!important}.text-hover-warning:hover i{transition:color .2s ease,background-color .2s ease;color:#ffc700!important}.text-hover-warning:hover .svg-icon{color:#ffc700!important}.text-hover-inverse-warning{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-warning i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-warning:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-warning:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-warning:hover .svg-icon{color:#fff!important}.text-active-warning{transition:color .2s ease,background-color .2s ease}.text-active-warning i{transition:color .2s ease,background-color .2s ease}.text-active-warning.active{transition:color .2s ease,background-color .2s ease;color:#ffc700!important}.text-active-warning.active i{transition:color .2s ease,background-color .2s ease;color:#ffc700!important}.text-active-warning.active .svg-icon{color:#ffc700!important}.text-active-inverse-warning{transition:color .2s ease,background-color .2s ease}.text-active-inverse-warning i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-warning.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-warning.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-warning.active .svg-icon{color:#fff!important}.text-danger{color:#f1416c!important}.text-inverse-danger{color:#fff!important}.text-light-danger{color:#fff5f8!important}.text-hover-danger{transition:color .2s ease,background-color .2s ease}.text-hover-danger i{transition:color .2s ease,background-color .2s ease}.text-hover-danger:hover{transition:color .2s ease,background-color .2s ease;color:#f1416c!important}.text-hover-danger:hover i{transition:color .2s ease,background-color .2s ease;color:#f1416c!important}.text-hover-danger:hover .svg-icon{color:#f1416c!important}.text-hover-inverse-danger{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-danger i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-danger:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-danger:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-danger:hover .svg-icon{color:#fff!important}.text-active-danger{transition:color .2s ease,background-color .2s ease}.text-active-danger i{transition:color .2s ease,background-color .2s ease}.text-active-danger.active{transition:color .2s ease,background-color .2s ease;color:#f1416c!important}.text-active-danger.active i{transition:color .2s ease,background-color .2s ease;color:#f1416c!important}.text-active-danger.active .svg-icon{color:#f1416c!important}.text-active-inverse-danger{transition:color .2s ease,background-color .2s ease}.text-active-inverse-danger i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-danger.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-danger.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-danger.active .svg-icon{color:#fff!important}.text-dark{color:#181c32!important}.text-inverse-dark{color:#fff!important}.text-light-dark{color:#eff2f5!important}.text-hover-dark{transition:color .2s ease,background-color .2s ease}.text-hover-dark i{transition:color .2s ease,background-color .2s ease}.text-hover-dark:hover{transition:color .2s ease,background-color .2s ease;color:#181c32!important}.text-hover-dark:hover i{transition:color .2s ease,background-color .2s ease;color:#181c32!important}.text-hover-dark:hover .svg-icon{color:#181c32!important}.text-hover-inverse-dark{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-dark i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-dark:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-dark:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-dark:hover .svg-icon{color:#fff!important}.text-active-dark{transition:color .2s ease,background-color .2s ease}.text-active-dark i{transition:color .2s ease,background-color .2s ease}.text-active-dark.active{transition:color .2s ease,background-color .2s ease;color:#181c32!important}.text-active-dark.active i{transition:color .2s ease,background-color .2s ease;color:#181c32!important}.text-active-dark.active .svg-icon{color:#181c32!important}.text-active-inverse-dark{transition:color .2s ease,background-color .2s ease}.text-active-inverse-dark i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-dark.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-dark.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-dark.active .svg-icon{color:#fff!important}.text-muted{color:#a1a5b7!important}.text-hover-muted{transition:color .2s ease,background-color .2s ease}.text-hover-muted i{transition:color .2s ease,background-color .2s ease}.text-hover-muted:hover{transition:color .2s ease,background-color .2s ease;color:#a1a5b7!important}.text-hover-muted:hover i{transition:color .2s ease,background-color .2s ease;color:#a1a5b7!important}.text-hover-muted:hover .svg-icon{color:#a1a5b7!important}.text-active-muted{transition:color .2s ease,background-color .2s ease}.text-active-muted i{transition:color .2s ease,background-color .2s ease}.text-active-muted.active{transition:color .2s ease,background-color .2s ease;color:#a1a5b7!important}.text-active-muted.active i{transition:color .2s ease,background-color .2s ease;color:#a1a5b7!important}.text-active-muted.active .svg-icon{color:#a1a5b7!important}.text-gray-100{color:#f5f8fa!important}.text-hover-gray-100{transition:color .2s ease,background-color .2s ease}.text-hover-gray-100 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-100:hover{transition:color .2s ease,background-color .2s ease;color:#f5f8fa!important}.text-hover-gray-100:hover i{transition:color .2s ease,background-color .2s ease;color:#f5f8fa!important}.text-hover-gray-100:hover .svg-icon{color:#f5f8fa!important}.text-active-gray-100{transition:color .2s ease,background-color .2s ease}.text-active-gray-100 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-100.active{transition:color .2s ease,background-color .2s ease;color:#f5f8fa!important}.text-active-gray-100.active i{transition:color .2s ease,background-color .2s ease;color:#f5f8fa!important}.text-active-gray-100.active .svg-icon{color:#f5f8fa!important}.text-gray-200{color:#eff2f5!important}.text-hover-gray-200{transition:color .2s ease,background-color .2s ease}.text-hover-gray-200 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-200:hover{transition:color .2s ease,background-color .2s ease;color:#eff2f5!important}.text-hover-gray-200:hover i{transition:color .2s ease,background-color .2s ease;color:#eff2f5!important}.text-hover-gray-200:hover .svg-icon{color:#eff2f5!important}.text-active-gray-200{transition:color .2s ease,background-color .2s ease}.text-active-gray-200 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-200.active{transition:color .2s ease,background-color .2s ease;color:#eff2f5!important}.text-active-gray-200.active i{transition:color .2s ease,background-color .2s ease;color:#eff2f5!important}.text-active-gray-200.active .svg-icon{color:#eff2f5!important}.text-gray-300{color:#e4e6ef!important}.text-hover-gray-300{transition:color .2s ease,background-color .2s ease}.text-hover-gray-300 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-300:hover{transition:color .2s ease,background-color .2s ease;color:#e4e6ef!important}.text-hover-gray-300:hover i{transition:color .2s ease,background-color .2s ease;color:#e4e6ef!important}.text-hover-gray-300:hover .svg-icon{color:#e4e6ef!important}.text-active-gray-300{transition:color .2s ease,background-color .2s ease}.text-active-gray-300 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-300.active{transition:color .2s ease,background-color .2s ease;color:#e4e6ef!important}.text-active-gray-300.active i{transition:color .2s ease,background-color .2s ease;color:#e4e6ef!important}.text-active-gray-300.active .svg-icon{color:#e4e6ef!important}.text-gray-400{color:#b5b5c3!important}.text-hover-gray-400{transition:color .2s ease,background-color .2s ease}.text-hover-gray-400 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-400:hover{transition:color .2s ease,background-color .2s ease;color:#b5b5c3!important}.text-hover-gray-400:hover i{transition:color .2s ease,background-color .2s ease;color:#b5b5c3!important}.text-hover-gray-400:hover .svg-icon{color:#b5b5c3!important}.text-active-gray-400{transition:color .2s ease,background-color .2s ease}.text-active-gray-400 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-400.active{transition:color .2s ease,background-color .2s ease;color:#b5b5c3!important}.text-active-gray-400.active i{transition:color .2s ease,background-color .2s ease;color:#b5b5c3!important}.text-active-gray-400.active .svg-icon{color:#b5b5c3!important}.text-gray-500{color:#a1a5b7!important}.text-hover-gray-500{transition:color .2s ease,background-color .2s ease}.text-hover-gray-500 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-500:hover{transition:color .2s ease,background-color .2s ease;color:#a1a5b7!important}.text-hover-gray-500:hover i{transition:color .2s ease,background-color .2s ease;color:#a1a5b7!important}.text-hover-gray-500:hover .svg-icon{color:#a1a5b7!important}.text-active-gray-500{transition:color .2s ease,background-color .2s ease}.text-active-gray-500 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-500.active{transition:color .2s ease,background-color .2s ease;color:#a1a5b7!important}.text-active-gray-500.active i{transition:color .2s ease,background-color .2s ease;color:#a1a5b7!important}.text-active-gray-500.active .svg-icon{color:#a1a5b7!important}.text-gray-600{color:#7e8299!important}.text-hover-gray-600{transition:color .2s ease,background-color .2s ease}.text-hover-gray-600 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-600:hover{transition:color .2s ease,background-color .2s ease;color:#7e8299!important}.text-hover-gray-600:hover i{transition:color .2s ease,background-color .2s ease;color:#7e8299!important}.text-hover-gray-600:hover .svg-icon{color:#7e8299!important}.text-active-gray-600{transition:color .2s ease,background-color .2s ease}.text-active-gray-600 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-600.active{transition:color .2s ease,background-color .2s ease;color:#7e8299!important}.text-active-gray-600.active i{transition:color .2s ease,background-color .2s ease;color:#7e8299!important}.text-active-gray-600.active .svg-icon{color:#7e8299!important}.text-gray-700{color:#5e6278!important}.text-hover-gray-700{transition:color .2s ease,background-color .2s ease}.text-hover-gray-700 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-700:hover{transition:color .2s ease,background-color .2s ease;color:#5e6278!important}.text-hover-gray-700:hover i{transition:color .2s ease,background-color .2s ease;color:#5e6278!important}.text-hover-gray-700:hover .svg-icon{color:#5e6278!important}.text-active-gray-700{transition:color .2s ease,background-color .2s ease}.text-active-gray-700 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-700.active{transition:color .2s ease,background-color .2s ease;color:#5e6278!important}.text-active-gray-700.active i{transition:color .2s ease,background-color .2s ease;color:#5e6278!important}.text-active-gray-700.active .svg-icon{color:#5e6278!important}.text-gray-800{color:#3f4254!important}.text-hover-gray-800{transition:color .2s ease,background-color .2s ease}.text-hover-gray-800 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-800:hover{transition:color .2s ease,background-color .2s ease;color:#3f4254!important}.text-hover-gray-800:hover i{transition:color .2s ease,background-color .2s ease;color:#3f4254!important}.text-hover-gray-800:hover .svg-icon{color:#3f4254!important}.text-active-gray-800{transition:color .2s ease,background-color .2s ease}.text-active-gray-800 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-800.active{transition:color .2s ease,background-color .2s ease;color:#3f4254!important}.text-active-gray-800.active i{transition:color .2s ease,background-color .2s ease;color:#3f4254!important}.text-active-gray-800.active .svg-icon{color:#3f4254!important}.text-gray-900{color:#181c32!important}.text-hover-gray-900{transition:color .2s ease,background-color .2s ease}.text-hover-gray-900 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-900:hover{transition:color .2s ease,background-color .2s ease;color:#181c32!important}.text-hover-gray-900:hover i{transition:color .2s ease,background-color .2s ease;color:#181c32!important}.text-hover-gray-900:hover .svg-icon{color:#181c32!important}.text-active-gray-900{transition:color .2s ease,background-color .2s ease}.text-active-gray-900 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-900.active{transition:color .2s ease,background-color .2s ease;color:#181c32!important}.text-active-gray-900.active i{transition:color .2s ease,background-color .2s ease;color:#181c32!important}.text-active-gray-900.active .svg-icon{color:#181c32!important}.fw-boldest{font-weight:700!important}.text-transparent{color:transparent}.cursor-pointer{cursor:pointer}.cursor-default{cursor:default}.cursor-move{cursor:move}i{line-height:1;font-size:1rem;color:#a1a5b7}a{transition:color .2s ease,background-color .2s ease}a:hover{transition:color .2s ease,background-color .2s ease}.opacity-active-0.active{opacity:0!important}.opacity-state-0.active,.opacity-state-0:hover{opacity:0!important}.opacity-active-5.active{opacity:.05!important}.opacity-state-5.active,.opacity-state-5:hover{opacity:.05!important}.opacity-active-10.active{opacity:.1!important}.opacity-state-10.active,.opacity-state-10:hover{opacity:.1!important}.opacity-active-15.active{opacity:.15!important}.opacity-state-15.active,.opacity-state-15:hover{opacity:.15!important}.opacity-active-20.active{opacity:.2!important}.opacity-state-20.active,.opacity-state-20:hover{opacity:.2!important}.opacity-active-25.active{opacity:.25!important}.opacity-state-25.active,.opacity-state-25:hover{opacity:.25!important}.opacity-active-50.active{opacity:.5!important}.opacity-state-50.active,.opacity-state-50:hover{opacity:.5!important}.opacity-active-75.active{opacity:.75!important}.opacity-state-75.active,.opacity-state-75:hover{opacity:.75!important}.opacity-active-100.active{opacity:1!important}.opacity-state-100.active,.opacity-state-100:hover{opacity:1!important}.transform-90{transform:rotate(-90deg);transform-origin:left top}.animation{animation-duration:1s;animation-fill-mode:both}@keyframes animationSlideInDown{from{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translate3d(0,0,0)}}.animation-slide-in-down{animation-name:animationSlideInDown}@keyframes animationSlideInUp{from{transform:translate3d(0,100%,0);visibility:visible}to{transform:translate3d(0,0,0)}}.animation-slide-in-up{animation-name:animationSlideInUp}@keyframes animationFadeIn{from{opacity:0}to{opacity:1}}.animation-fade-in{animation-name:animationFadeIn}@keyframes animationFadeOut{from{opacity:1}to{opacity:0}}.animation-fade-out{animation-name:animationFadeOut}.animation-blink{animation:animationBlink 1s steps(5,start) infinite}@keyframes animationBlink{to{visibility:hidden}}.nav-line-tabs{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eff2f5}.nav-line-tabs .nav-item{margin-bottom:-1px}.nav-line-tabs .nav-item .nav-link{color:#a1a5b7;border:0;border-bottom:1px solid transparent;transition:color .2s ease,background-color .2s ease;padding:.5rem 0;margin:0 1rem}.nav-line-tabs .nav-item:first-child .nav-link{margin-right:0}.nav-line-tabs .nav-item:last-child .nav-link{margin-left:0}.nav-line-tabs .nav-item .nav-link.active,.nav-line-tabs .nav-item .nav-link:hover:not(.disabled),.nav-line-tabs .nav-item.show .nav-link{background-color:transparent;border:0;border-bottom:1px solid #009ef7;transition:color .2s ease,background-color .2s ease}.nav-line-tabs.nav-line-tabs-2x{border-bottom-width:2px}.nav-line-tabs.nav-line-tabs-2x .nav-item{margin-bottom:-2px}.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link{border-bottom-width:2px}.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link.active,.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link:hover:not(.disabled),.nav-line-tabs.nav-line-tabs-2x .nav-item.show .nav-link{border-bottom-width:2px}.nav-pills .nav-item{margin-left:.5rem}.nav-pills .nav-item:last-child{margin-left:0}.nav-stretch{align-items:stretch;padding-top:0!important;padding-bottom:0!important}.nav-stretch .nav-item{display:flex;align-items:stretch;padding-top:0!important;padding-bottom:0!important}.nav-stretch .nav-link{display:flex;align-items:center}.nav-group{padding:.35rem;border-radius:.475rem;background-color:#f5f8fa}.nav-group.nav-group-outline{background-color:transparent;border:1px solid #eff2f5}.nav-group.nav-group-fluid{display:flex}.nav-group.nav-group-fluid>.btn,.nav-group.nav-group-fluid>label{position:relative;flex-shrink:0;flex-grow:1;flex-basis:0}.nav-group.nav-group-fluid>label{margin-left:.1rem}.nav-group.nav-group-fluid>label>.btn{width:100%}.nav-group.nav-group-fluid>label:last-child{margin-left:0}.nav.nav-pills.nav-pills-custom .nav-link,.nav.nav-pills.nav-pills-custom .show>.nav-link{border:1px dashed #e4e6ef;border-radius:12px}.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img,.nav.nav-pills.nav-pills-custom .show>.nav-link .nav-icon img{width:30px;transition:color .2s ease,background-color .2s ease}.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img.default,.nav.nav-pills.nav-pills-custom .show>.nav-link .nav-icon img.default{display:inline-block}.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img.active,.nav.nav-pills.nav-pills-custom .show>.nav-link .nav-icon img.active{display:none}.nav.nav-pills.nav-pills-custom .nav-link.active,.nav.nav-pills.nav-pills-custom .show>.nav-link.active{background-color:transparent;border:1px solid #e4e6ef;transition-duration:1ms;position:relative}.nav.nav-pills.nav-pills-custom .nav-link.active .nav-text,.nav.nav-pills.nav-pills-custom .show>.nav-link.active .nav-text{color:#3f4254!important;transition:color .2s ease,background-color .2s ease}.nav.nav-pills.nav-pills-custom .nav-link.active .bullet-custom,.nav.nav-pills.nav-pills-custom .show>.nav-link.active .bullet-custom{display:block}.nav.nav-pills.nav-pills-custom .nav-link .bullet-custom,.nav.nav-pills.nav-pills-custom .show>.nav-link .bullet-custom{display:none}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:not(:active) span:nth-child(1){color:#b5b5c3}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:not(:active) span:nth-child(2){color:#3f4254}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:hover span:nth-child(1){color:#fff!important}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:hover span:nth-child(2){color:#fff!important}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link.active span:nth-child(1){color:#fff!important}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link.active span:nth-child(2){color:#fff!important}.pagination{display:flex;flex-wrap:wrap;justify-content:center;margin:0}.pagination.pagination-circle .page-link{border-radius:50%}.pagination.pagination-outline .page-link{border:1px solid #eff2f5}.pagination.pagination-outline .page-item.active .page-link,.pagination.pagination-outline .page-item:hover .page-link{border-color:#f1faff}.page-item{margin-left:.5rem}.page-item:last-child{margin-left:0}.page-item .page-link{display:flex;justify-content:center;align-items:center;border-radius:.475rem;height:2.5rem;min-width:2.5rem;font-weight:500;font-size:1.075rem}.page-item .page-link i{font-size:.85rem}.page-item .page-link .next,.page-item .page-link .previous{display:block;height:.875rem;width:.875rem;transform:rotateZ(-180deg)}.page-item .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.page-item.next .page-link,.page-item.previous .page-link{background-color:#fff;color:#5e6278}.page-item.next .page-link i,.page-item.previous .page-link i{color:#5e6278}.page-item:focus .page-link{color:#009ef7}.page-item:focus .page-link i{color:#009ef7}.page-item:focus .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item:focus .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.page-item:hover:not(.offset) .page-link{color:#009ef7}.page-item:hover:not(.offset) .page-link i{color:#009ef7}.page-item:hover:not(.offset) .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item:hover:not(.offset) .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.page-item.active .page-link{color:#fff}.page-item.active .page-link i{color:#fff}.page-item.active .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item.active .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.page-item.disabled .page-link{color:#b5b5c3}.page-item.disabled .page-link i{color:#b5b5c3}.page-item.disabled .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item.disabled .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}@media (max-width:991.98px){.page-item{margin-left:.25rem}.page-item:last-child{margin-left:0}}.separator{display:block;height:0;border-bottom:1px solid #eff2f5}.separator.separator-dotted{border-bottom-style:dotted;border-bottom-color:#e4e6ef}.separator.separator-dashed{border-bottom-style:dashed;border-bottom-color:#e4e6ef}.separator.separator-content{display:flex;align-items:center;border-bottom:0;text-align:center}.separator.separator-content::after,.separator.separator-content::before{content:" ";width:50%;border-bottom:1px solid #eff2f5}.separator.separator-content::before{margin-left:1.25rem}.separator.separator-content::after{margin-right:1.25rem}.separator.separator-content.separator-dotted::after,.separator.separator-content.separator-dotted::before{border-bottom-style:dotted;border-bottom-color:#e4e6ef}.separator.separator-content.separator-dashed::after,.separator.separator-content.separator-dashed::before{border-bottom-style:dashed;border-bottom-color:#e4e6ef}.separator.separator-content.border-white::after,.separator.separator-content.border-white::before{border-color:#fff!important}.separator.separator-content.border-light::after,.separator.separator-content.border-light::before{border-color:#f5f8fa!important}.separator.separator-content.border-primary::after,.separator.separator-content.border-primary::before{border-color:#009ef7!important}.separator.separator-content.border-secondary::after,.separator.separator-content.border-secondary::before{border-color:#e4e6ef!important}.separator.separator-content.border-success::after,.separator.separator-content.border-success::before{border-color:#50cd89!important}.separator.separator-content.border-info::after,.separator.separator-content.border-info::before{border-color:#7239ea!important}.separator.separator-content.border-warning::after,.separator.separator-content.border-warning::before{border-color:#ffc700!important}.separator.separator-content.border-danger::after,.separator.separator-content.border-danger::before{border-color:#f1416c!important}.separator.separator-content.border-dark::after,.separator.separator-content.border-dark::before{border-color:#181c32!important}.carousel.carousel-custom .carousel-indicators{align-items:center;position:static;z-index:auto;margin:0;padding:0;list-style:none}.carousel.carousel-custom .carousel-indicators li{transform:none;opacity:1}.carousel.carousel-custom .carousel-indicators li.active{transform:none;opacity:1}.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li{border-radius:0;background-color:transparent;height:13px;width:13px;display:flex;align-items:center;justify-content:center;text-align:center}.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li:after{display:inline-block;content:" ";border-radius:50%;transition:all .3s ease;background-color:#eff2f5;height:9px;width:9px}.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li.active{background-color:transparent}.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li.active:after{transition:all .3s ease;height:13px;width:13px;background-color:#b5b5c3}.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li{transition:all .3s ease;background-color:transparent;border-radius:6px;height:6px;width:6px;display:flex;align-items:center;justify-content:center;text-align:center}.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li:after{display:inline-block;content:" ";transition:all .3s ease;background-color:#b5b5c3;border-radius:6px;height:6px;width:6px}.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li.active{transition:all .3s ease;background-color:transparent;height:6px;width:16px}.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li.active:after{transition:all .3s ease;height:6px;width:16px;background-color:#7e8299}.carousel.carousel-custom .carousel-indicators-active-white li.active:after{background-color:#fff!important}.carousel.carousel-custom .carousel-indicators-active-light li.active:after{background-color:#f5f8fa!important}.carousel.carousel-custom .carousel-indicators-active-primary li.active:after{background-color:#009ef7!important}.carousel.carousel-custom .carousel-indicators-active-secondary li.active:after{background-color:#e4e6ef!important}.carousel.carousel-custom .carousel-indicators-active-success li.active:after{background-color:#50cd89!important}.carousel.carousel-custom .carousel-indicators-active-info li.active:after{background-color:#7239ea!important}.carousel.carousel-custom .carousel-indicators-active-warning li.active:after{background-color:#ffc700!important}.carousel.carousel-custom .carousel-indicators-active-danger li.active:after{background-color:#f1416c!important}.carousel.carousel-custom .carousel-indicators-active-dark li.active:after{background-color:#181c32!important}.carousel.carousel-custom.carousel-stretch{height:100%;display:flex;flex-direction:column}.carousel.carousel-custom.carousel-stretch .carousel-inner{flex-grow:1}.carousel.carousel-custom.carousel-stretch .carousel-item{height:100%}.carousel.carousel-custom.carousel-stretch .carousel-wrapper{display:flex;flex-direction:column;height:100%}.menu-group{display:flex}.menu,.menu-wrapper{display:flex;padding:0;margin:0;list-style:none}.menu-inner{padding:0;margin:0;list-style:none}.menu-sub{display:none;padding:0;margin:0;list-style:none;flex-direction:column}.menu-item{display:block;padding:0}.menu-item .menu-link{cursor:pointer;display:flex;align-items:center;padding:0;flex:0 0 100%;padding:.65rem 1rem;transition:none;outline:0!important}.menu-item .menu-link .menu-icon{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:2rem;margin-left:.5rem}.menu-item .menu-link .menu-icon .svg-icon{line-height:1}.menu-item .menu-link .menu-bullet{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:1.25rem;margin-left:.5rem}.menu-item .menu-link .menu-title{display:flex;align-items:center;flex-grow:1}.menu-item .menu-link .menu-badge{display:flex;align-items:center;flex-shrink:0;margin-right:.5rem}.menu-item .menu-link .menu-arrow{display:flex;align-items:stretch;position:relative;overflow:hidden;flex-shrink:0;margin-right:.5rem;width:.8rem;height:.8rem}.menu-item .menu-link .menu-arrow:after{display:block;width:100%;content:" ";background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-item .menu-content{padding:.65rem 1rem}.menu-item.show .menu-link .menu-arrow:after{backface-visibility:hidden;transition:transform .3s ease}.menu-center{justify-content:center}.menu-item.menu-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-dropdown{display:none;border-radius:.475rem;background-color:#fff;box-shadow:0 0 50px 0 rgba(82,63,105,.15);z-index:107}.menu-sub-dropdown.menu.show,.menu-sub-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-dropdown.menu.show[data-popper-placement=top],.menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-accordion{display:none}.menu-sub-accordion.show,.show:not(.menu-dropdown)>.menu-sub-accordion{display:flex}.menu-inline{display:flex}.menu-fit>.menu-item>.menu-content,.menu-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-column{flex-direction:column;width:100%}.menu-row{flex-direction:row}.menu-row>.menu-item{display:flex;align-items:center}.menu-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-rounded .menu-link{border-radius:.475rem}.menu-pill .menu-link{border-radius:50px}.menu-rounded-0 .menu-link{border-radius:0!important}@media (min-width:576px){.menu-item.menu-sm-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-sm-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-sm-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-sm-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-sm-dropdown{display:none;border-radius:.475rem;background-color:#fff;box-shadow:0 0 50px 0 rgba(82,63,105,.15);z-index:107}.menu-sub-sm-dropdown.menu.show,.menu-sub-sm-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-sm-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-sm-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-sm-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-sm-dropdown.menu.show[data-popper-placement=top],.menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-sm-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-sm-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-sm-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-sm-accordion{display:none}.menu-sub-sm-accordion.show,.show:not(.menu-dropdown)>.menu-sub-sm-accordion{display:flex}.menu-sm-inline{display:flex}.menu-sm-fit>.menu-item>.menu-content,.menu-sm-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-sm-column{flex-direction:column;width:100%}.menu-sm-row{flex-direction:row}.menu-sm-row>.menu-item{display:flex;align-items:center}.menu-sm-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-sm-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sm-rounded .menu-link{border-radius:.475rem}.menu-sm-pill .menu-link{border-radius:50px}.menu-sm-rounded-0 .menu-link{border-radius:0!important}}@media (min-width:768px){.menu-item.menu-md-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-md-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-md-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-md-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-md-dropdown{display:none;border-radius:.475rem;background-color:#fff;box-shadow:0 0 50px 0 rgba(82,63,105,.15);z-index:107}.menu-sub-md-dropdown.menu.show,.menu-sub-md-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-md-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-md-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-md-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-md-dropdown.menu.show[data-popper-placement=top],.menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-md-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-md-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-md-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-md-accordion{display:none}.menu-sub-md-accordion.show,.show:not(.menu-dropdown)>.menu-sub-md-accordion{display:flex}.menu-md-inline{display:flex}.menu-md-fit>.menu-item>.menu-content,.menu-md-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-md-column{flex-direction:column;width:100%}.menu-md-row{flex-direction:row}.menu-md-row>.menu-item{display:flex;align-items:center}.menu-md-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-md-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-md-rounded .menu-link{border-radius:.475rem}.menu-md-pill .menu-link{border-radius:50px}.menu-md-rounded-0 .menu-link{border-radius:0!important}}@media (min-width:992px){.menu-item.menu-lg-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-lg-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-lg-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-lg-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-lg-dropdown{display:none;border-radius:.475rem;background-color:#fff;box-shadow:0 0 50px 0 rgba(82,63,105,.15);z-index:107}.menu-sub-lg-dropdown.menu.show,.menu-sub-lg-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-lg-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-lg-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-lg-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-lg-dropdown.menu.show[data-popper-placement=top],.menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-lg-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-lg-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-lg-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-lg-accordion{display:none}.menu-sub-lg-accordion.show,.show:not(.menu-dropdown)>.menu-sub-lg-accordion{display:flex}.menu-lg-inline{display:flex}.menu-lg-fit>.menu-item>.menu-content,.menu-lg-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-lg-column{flex-direction:column;width:100%}.menu-lg-row{flex-direction:row}.menu-lg-row>.menu-item{display:flex;align-items:center}.menu-lg-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-lg-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-lg-rounded .menu-link{border-radius:.475rem}.menu-lg-pill .menu-link{border-radius:50px}.menu-lg-rounded-0 .menu-link{border-radius:0!important}}@media (min-width:1200px){.menu-item.menu-xl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-xl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-xl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-xl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-xl-dropdown{display:none;border-radius:.475rem;background-color:#fff;box-shadow:0 0 50px 0 rgba(82,63,105,.15);z-index:107}.menu-sub-xl-dropdown.menu.show,.menu-sub-xl-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-xl-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-xl-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-xl-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-xl-dropdown.menu.show[data-popper-placement=top],.menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-xl-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-xl-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-xl-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-xl-accordion{display:none}.menu-sub-xl-accordion.show,.show:not(.menu-dropdown)>.menu-sub-xl-accordion{display:flex}.menu-xl-inline{display:flex}.menu-xl-fit>.menu-item>.menu-content,.menu-xl-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-xl-column{flex-direction:column;width:100%}.menu-xl-row{flex-direction:row}.menu-xl-row>.menu-item{display:flex;align-items:center}.menu-xl-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-xl-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-xl-rounded .menu-link{border-radius:.475rem}.menu-xl-pill .menu-link{border-radius:50px}.menu-xl-rounded-0 .menu-link{border-radius:0!important}}@media (min-width:1400px){.menu-item.menu-xxl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-xxl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-xxl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-xxl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-xxl-dropdown{display:none;border-radius:.475rem;background-color:#fff;box-shadow:0 0 50px 0 rgba(82,63,105,.15);z-index:107}.menu-sub-xxl-dropdown.menu.show,.menu-sub-xxl-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-xxl-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-xxl-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-xxl-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-xxl-dropdown.menu.show[data-popper-placement=top],.menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-xxl-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-xxl-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-xxl-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-xxl-accordion{display:none}.menu-sub-xxl-accordion.show,.show:not(.menu-dropdown)>.menu-sub-xxl-accordion{display:flex}.menu-xxl-inline{display:flex}.menu-xxl-fit>.menu-item>.menu-content,.menu-xxl-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-xxl-column{flex-direction:column;width:100%}.menu-xxl-row{flex-direction:row}.menu-xxl-row>.menu-item{display:flex;align-items:center}.menu-xxl-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-xxl-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-xxl-rounded .menu-link{border-radius:.475rem}.menu-xxl-pill .menu-link{border-radius:50px}.menu-xxl-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:575.98px){.menu-item.menu-sm-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-sm-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-sm-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-sm-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-sm-down-dropdown{display:none;border-radius:.475rem;background-color:#fff;box-shadow:0 0 50px 0 rgba(82,63,105,.15);z-index:107}.menu-sub-sm-down-dropdown.menu.show,.menu-sub-sm-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-sm-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-sm-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-sm-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-sm-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-sm-down-accordion{display:none}.menu-sub-sm-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-sm-down-accordion{display:flex}.menu-sm-down-inline{display:flex}.menu-sm-down-fit>.menu-item>.menu-content,.menu-sm-down-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-sm-down-column{flex-direction:column;width:100%}.menu-sm-down-row{flex-direction:row}.menu-sm-down-row>.menu-item{display:flex;align-items:center}.menu-sm-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-sm-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sm-down-rounded .menu-link{border-radius:.475rem}.menu-sm-down-pill .menu-link{border-radius:50px}.menu-sm-down-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:767.98px){.menu-item.menu-md-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-md-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-md-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-md-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-md-down-dropdown{display:none;border-radius:.475rem;background-color:#fff;box-shadow:0 0 50px 0 rgba(82,63,105,.15);z-index:107}.menu-sub-md-down-dropdown.menu.show,.menu-sub-md-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-md-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-md-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-md-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-md-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-md-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-md-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-md-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-md-down-accordion{display:none}.menu-sub-md-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-md-down-accordion{display:flex}.menu-md-down-inline{display:flex}.menu-md-down-fit>.menu-item>.menu-content,.menu-md-down-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-md-down-column{flex-direction:column;width:100%}.menu-md-down-row{flex-direction:row}.menu-md-down-row>.menu-item{display:flex;align-items:center}.menu-md-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-md-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-md-down-rounded .menu-link{border-radius:.475rem}.menu-md-down-pill .menu-link{border-radius:50px}.menu-md-down-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:991.98px){.menu-item.menu-lg-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-lg-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-lg-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-lg-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-lg-down-dropdown{display:none;border-radius:.475rem;background-color:#fff;box-shadow:0 0 50px 0 rgba(82,63,105,.15);z-index:107}.menu-sub-lg-down-dropdown.menu.show,.menu-sub-lg-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-lg-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-lg-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-lg-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-lg-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-lg-down-accordion{display:none}.menu-sub-lg-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-lg-down-accordion{display:flex}.menu-lg-down-inline{display:flex}.menu-lg-down-fit>.menu-item>.menu-content,.menu-lg-down-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-lg-down-column{flex-direction:column;width:100%}.menu-lg-down-row{flex-direction:row}.menu-lg-down-row>.menu-item{display:flex;align-items:center}.menu-lg-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-lg-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-lg-down-rounded .menu-link{border-radius:.475rem}.menu-lg-down-pill .menu-link{border-radius:50px}.menu-lg-down-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:1199.98px){.menu-item.menu-xl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-xl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-xl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-xl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-xl-down-dropdown{display:none;border-radius:.475rem;background-color:#fff;box-shadow:0 0 50px 0 rgba(82,63,105,.15);z-index:107}.menu-sub-xl-down-dropdown.menu.show,.menu-sub-xl-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-xl-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-xl-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-xl-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-xl-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-xl-down-accordion{display:none}.menu-sub-xl-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-xl-down-accordion{display:flex}.menu-xl-down-inline{display:flex}.menu-xl-down-fit>.menu-item>.menu-content,.menu-xl-down-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-xl-down-column{flex-direction:column;width:100%}.menu-xl-down-row{flex-direction:row}.menu-xl-down-row>.menu-item{display:flex;align-items:center}.menu-xl-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-xl-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-xl-down-rounded .menu-link{border-radius:.475rem}.menu-xl-down-pill .menu-link{border-radius:50px}.menu-xl-down-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:1399.98px){.menu-item.menu-xxl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-xxl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-xxl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-xxl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-xxl-down-dropdown{display:none;border-radius:.475rem;background-color:#fff;box-shadow:0 0 50px 0 rgba(82,63,105,.15);z-index:107}.menu-sub-xxl-down-dropdown.menu.show,.menu-sub-xxl-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-xxl-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-xxl-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-xxl-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-xxl-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-xxl-down-accordion{display:none}.menu-sub-xxl-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-xxl-down-accordion{display:flex}.menu-xxl-down-inline{display:flex}.menu-xxl-down-fit>.menu-item>.menu-content,.menu-xxl-down-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-xxl-down-column{flex-direction:column;width:100%}.menu-xxl-down-row{flex-direction:row}.menu-xxl-down-row>.menu-item{display:flex;align-items:center}.menu-xxl-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-xxl-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-xxl-down-rounded .menu-link{border-radius:.475rem}.menu-xxl-down-pill .menu-link{border-radius:50px}.menu-xxl-down-rounded-0 .menu-link{border-radius:0!important}}.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(1rem + 1rem)}.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(2rem + 1rem)}.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(3rem + 1rem)}.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(4rem + 1rem)}.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:1rem;padding-left:0}.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(2rem);padding-left:0}.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(3rem);padding-left:0}.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(4rem);padding-left:0}@keyframes menu-sub-dropdown-animation-fade-in{from{opacity:0}to{opacity:1}}@keyframes menu-sub-dropdown-animation-move-up{from{margin-top:.75rem}to{margin-top:0}}@keyframes menu-sub-dropdown-animation-move-down{from{margin-bottom:.75rem}to{margin-bottom:0}}.menu-white .menu-item .menu-link{color:#fff}.menu-white .menu-item .menu-link .menu-title{color:#fff}.menu-white .menu-item .menu-link .menu-icon,.menu-white .menu-item .menu-link .menu-icon .svg-icon,.menu-white .menu-item .menu-link .menu-icon i{color:#fff}.menu-white .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-white .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-white .menu-item .menu-link{color:#fff}.menu-title-white .menu-item .menu-link .menu-title{color:#fff}.menu-icon-white .menu-item .menu-link .menu-icon,.menu-icon-white .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-white .menu-item .menu-link .menu-icon i{color:#fff}.menu-bullet-white .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-arrow-white .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-primary .menu-item .menu-link{color:#009ef7}.menu-primary .menu-item .menu-link .menu-title{color:#009ef7}.menu-primary .menu-item .menu-link .menu-icon,.menu-primary .menu-item .menu-link .menu-icon .svg-icon,.menu-primary .menu-item .menu-link .menu-icon i{color:#009ef7}.menu-primary .menu-item .menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-primary .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-primary .menu-item .menu-link{color:#009ef7}.menu-title-primary .menu-item .menu-link .menu-title{color:#009ef7}.menu-icon-primary .menu-item .menu-link .menu-icon,.menu-icon-primary .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-primary .menu-item .menu-link .menu-icon i{color:#009ef7}.menu-bullet-primary .menu-item .menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-arrow-primary .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-secondary .menu-item .menu-link{color:#e4e6ef}.menu-secondary .menu-item .menu-link .menu-title{color:#e4e6ef}.menu-secondary .menu-item .menu-link .menu-icon,.menu-secondary .menu-item .menu-link .menu-icon .svg-icon,.menu-secondary .menu-item .menu-link .menu-icon i{color:#e4e6ef}.menu-secondary .menu-item .menu-link .menu-bullet .bullet{background-color:#e4e6ef}.menu-secondary .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-secondary .menu-item .menu-link{color:#e4e6ef}.menu-title-secondary .menu-item .menu-link .menu-title{color:#e4e6ef}.menu-icon-secondary .menu-item .menu-link .menu-icon,.menu-icon-secondary .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-secondary .menu-item .menu-link .menu-icon i{color:#e4e6ef}.menu-bullet-secondary .menu-item .menu-link .menu-bullet .bullet{background-color:#e4e6ef}.menu-arrow-secondary .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-light .menu-item .menu-link{color:#f5f8fa}.menu-light .menu-item .menu-link .menu-title{color:#f5f8fa}.menu-light .menu-item .menu-link .menu-icon,.menu-light .menu-item .menu-link .menu-icon .svg-icon,.menu-light .menu-item .menu-link .menu-icon i{color:#f5f8fa}.menu-light .menu-item .menu-link .menu-bullet .bullet{background-color:#f5f8fa}.menu-light .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-light .menu-item .menu-link{color:#f5f8fa}.menu-title-light .menu-item .menu-link .menu-title{color:#f5f8fa}.menu-icon-light .menu-item .menu-link .menu-icon,.menu-icon-light .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-light .menu-item .menu-link .menu-icon i{color:#f5f8fa}.menu-bullet-light .menu-item .menu-link .menu-bullet .bullet{background-color:#f5f8fa}.menu-arrow-light .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-success .menu-item .menu-link{color:#50cd89}.menu-success .menu-item .menu-link .menu-title{color:#50cd89}.menu-success .menu-item .menu-link .menu-icon,.menu-success .menu-item .menu-link .menu-icon .svg-icon,.menu-success .menu-item .menu-link .menu-icon i{color:#50cd89}.menu-success .menu-item .menu-link .menu-bullet .bullet{background-color:#50cd89}.menu-success .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2350CD89'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-success .menu-item .menu-link{color:#50cd89}.menu-title-success .menu-item .menu-link .menu-title{color:#50cd89}.menu-icon-success .menu-item .menu-link .menu-icon,.menu-icon-success .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-success .menu-item .menu-link .menu-icon i{color:#50cd89}.menu-bullet-success .menu-item .menu-link .menu-bullet .bullet{background-color:#50cd89}.menu-arrow-success .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2350CD89'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-info .menu-item .menu-link{color:#7239ea}.menu-info .menu-item .menu-link .menu-title{color:#7239ea}.menu-info .menu-item .menu-link .menu-icon,.menu-info .menu-item .menu-link .menu-icon .svg-icon,.menu-info .menu-item .menu-link .menu-icon i{color:#7239ea}.menu-info .menu-item .menu-link .menu-bullet .bullet{background-color:#7239ea}.menu-info .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237239EA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-info .menu-item .menu-link{color:#7239ea}.menu-title-info .menu-item .menu-link .menu-title{color:#7239ea}.menu-icon-info .menu-item .menu-link .menu-icon,.menu-icon-info .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-info .menu-item .menu-link .menu-icon i{color:#7239ea}.menu-bullet-info .menu-item .menu-link .menu-bullet .bullet{background-color:#7239ea}.menu-arrow-info .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237239EA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-warning .menu-item .menu-link{color:#ffc700}.menu-warning .menu-item .menu-link .menu-title{color:#ffc700}.menu-warning .menu-item .menu-link .menu-icon,.menu-warning .menu-item .menu-link .menu-icon .svg-icon,.menu-warning .menu-item .menu-link .menu-icon i{color:#ffc700}.menu-warning .menu-item .menu-link .menu-bullet .bullet{background-color:#ffc700}.menu-warning .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFC700'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-warning .menu-item .menu-link{color:#ffc700}.menu-title-warning .menu-item .menu-link .menu-title{color:#ffc700}.menu-icon-warning .menu-item .menu-link .menu-icon,.menu-icon-warning .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-warning .menu-item .menu-link .menu-icon i{color:#ffc700}.menu-bullet-warning .menu-item .menu-link .menu-bullet .bullet{background-color:#ffc700}.menu-arrow-warning .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFC700'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-danger .menu-item .menu-link{color:#f1416c}.menu-danger .menu-item .menu-link .menu-title{color:#f1416c}.menu-danger .menu-item .menu-link .menu-icon,.menu-danger .menu-item .menu-link .menu-icon .svg-icon,.menu-danger .menu-item .menu-link .menu-icon i{color:#f1416c}.menu-danger .menu-item .menu-link .menu-bullet .bullet{background-color:#f1416c}.menu-danger .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F1416C'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-danger .menu-item .menu-link{color:#f1416c}.menu-title-danger .menu-item .menu-link .menu-title{color:#f1416c}.menu-icon-danger .menu-item .menu-link .menu-icon,.menu-icon-danger .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-danger .menu-item .menu-link .menu-icon i{color:#f1416c}.menu-bullet-danger .menu-item .menu-link .menu-bullet .bullet{background-color:#f1416c}.menu-arrow-danger .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F1416C'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-dark .menu-item .menu-link{color:#181c32}.menu-dark .menu-item .menu-link .menu-title{color:#181c32}.menu-dark .menu-item .menu-link .menu-icon,.menu-dark .menu-item .menu-link .menu-icon .svg-icon,.menu-dark .menu-item .menu-link .menu-icon i{color:#181c32}.menu-dark .menu-item .menu-link .menu-bullet .bullet{background-color:#181c32}.menu-dark .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-dark .menu-item .menu-link{color:#181c32}.menu-title-dark .menu-item .menu-link .menu-title{color:#181c32}.menu-icon-dark .menu-item .menu-link .menu-icon,.menu-icon-dark .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-dark .menu-item .menu-link .menu-icon i{color:#181c32}.menu-bullet-dark .menu-item .menu-link .menu-bullet .bullet{background-color:#181c32}.menu-arrow-dark .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-muted .menu-item .menu-link{color:#a1a5b7}.menu-muted .menu-item .menu-link .menu-title{color:#a1a5b7}.menu-muted .menu-item .menu-link .menu-icon,.menu-muted .menu-item .menu-link .menu-icon .svg-icon,.menu-muted .menu-item .menu-link .menu-icon i{color:#a1a5b7}.menu-muted .menu-item .menu-link .menu-bullet .bullet{background-color:#a1a5b7}.menu-muted .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-muted .menu-item .menu-link{color:#a1a5b7}.menu-title-muted .menu-item .menu-link .menu-title{color:#a1a5b7}.menu-icon-muted .menu-item .menu-link .menu-icon,.menu-icon-muted .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-muted .menu-item .menu-link .menu-icon i{color:#a1a5b7}.menu-bullet-muted .menu-item .menu-link .menu-bullet .bullet{background-color:#a1a5b7}.menu-arrow-muted .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-100 .menu-item .menu-link{color:#f5f8fa}.menu-gray-100 .menu-item .menu-link .menu-title{color:#f5f8fa}.menu-gray-100 .menu-item .menu-link .menu-icon,.menu-gray-100 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-100 .menu-item .menu-link .menu-icon i{color:#f5f8fa}.menu-gray-100 .menu-item .menu-link .menu-bullet .bullet{background-color:#f5f8fa}.menu-gray-100 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-100 .menu-item .menu-link{color:#f5f8fa}.menu-title-gray-100 .menu-item .menu-link .menu-title{color:#f5f8fa}.menu-icon-gray-100 .menu-item .menu-link .menu-icon,.menu-icon-gray-100 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-100 .menu-item .menu-link .menu-icon i{color:#f5f8fa}.menu-bullet-gray-100 .menu-item .menu-link .menu-bullet .bullet{background-color:#f5f8fa}.menu-arrow-gray-100 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-200 .menu-item .menu-link{color:#eff2f5}.menu-gray-200 .menu-item .menu-link .menu-title{color:#eff2f5}.menu-gray-200 .menu-item .menu-link .menu-icon,.menu-gray-200 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-200 .menu-item .menu-link .menu-icon i{color:#eff2f5}.menu-gray-200 .menu-item .menu-link .menu-bullet .bullet{background-color:#eff2f5}.menu-gray-200 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23EFF2F5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-200 .menu-item .menu-link{color:#eff2f5}.menu-title-gray-200 .menu-item .menu-link .menu-title{color:#eff2f5}.menu-icon-gray-200 .menu-item .menu-link .menu-icon,.menu-icon-gray-200 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-200 .menu-item .menu-link .menu-icon i{color:#eff2f5}.menu-bullet-gray-200 .menu-item .menu-link .menu-bullet .bullet{background-color:#eff2f5}.menu-arrow-gray-200 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23EFF2F5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-300 .menu-item .menu-link{color:#e4e6ef}.menu-gray-300 .menu-item .menu-link .menu-title{color:#e4e6ef}.menu-gray-300 .menu-item .menu-link .menu-icon,.menu-gray-300 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-300 .menu-item .menu-link .menu-icon i{color:#e4e6ef}.menu-gray-300 .menu-item .menu-link .menu-bullet .bullet{background-color:#e4e6ef}.menu-gray-300 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-300 .menu-item .menu-link{color:#e4e6ef}.menu-title-gray-300 .menu-item .menu-link .menu-title{color:#e4e6ef}.menu-icon-gray-300 .menu-item .menu-link .menu-icon,.menu-icon-gray-300 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-300 .menu-item .menu-link .menu-icon i{color:#e4e6ef}.menu-bullet-gray-300 .menu-item .menu-link .menu-bullet .bullet{background-color:#e4e6ef}.menu-arrow-gray-300 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-400 .menu-item .menu-link{color:#b5b5c3}.menu-gray-400 .menu-item .menu-link .menu-title{color:#b5b5c3}.menu-gray-400 .menu-item .menu-link .menu-icon,.menu-gray-400 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-400 .menu-item .menu-link .menu-icon i{color:#b5b5c3}.menu-gray-400 .menu-item .menu-link .menu-bullet .bullet{background-color:#b5b5c3}.menu-gray-400 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-400 .menu-item .menu-link{color:#b5b5c3}.menu-title-gray-400 .menu-item .menu-link .menu-title{color:#b5b5c3}.menu-icon-gray-400 .menu-item .menu-link .menu-icon,.menu-icon-gray-400 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-400 .menu-item .menu-link .menu-icon i{color:#b5b5c3}.menu-bullet-gray-400 .menu-item .menu-link .menu-bullet .bullet{background-color:#b5b5c3}.menu-arrow-gray-400 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-500 .menu-item .menu-link{color:#a1a5b7}.menu-gray-500 .menu-item .menu-link .menu-title{color:#a1a5b7}.menu-gray-500 .menu-item .menu-link .menu-icon,.menu-gray-500 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-500 .menu-item .menu-link .menu-icon i{color:#a1a5b7}.menu-gray-500 .menu-item .menu-link .menu-bullet .bullet{background-color:#a1a5b7}.menu-gray-500 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-500 .menu-item .menu-link{color:#a1a5b7}.menu-title-gray-500 .menu-item .menu-link .menu-title{color:#a1a5b7}.menu-icon-gray-500 .menu-item .menu-link .menu-icon,.menu-icon-gray-500 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-500 .menu-item .menu-link .menu-icon i{color:#a1a5b7}.menu-bullet-gray-500 .menu-item .menu-link .menu-bullet .bullet{background-color:#a1a5b7}.menu-arrow-gray-500 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-600 .menu-item .menu-link{color:#7e8299}.menu-gray-600 .menu-item .menu-link .menu-title{color:#7e8299}.menu-gray-600 .menu-item .menu-link .menu-icon,.menu-gray-600 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-600 .menu-item .menu-link .menu-icon i{color:#7e8299}.menu-gray-600 .menu-item .menu-link .menu-bullet .bullet{background-color:#7e8299}.menu-gray-600 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237E8299'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-600 .menu-item .menu-link{color:#7e8299}.menu-title-gray-600 .menu-item .menu-link .menu-title{color:#7e8299}.menu-icon-gray-600 .menu-item .menu-link .menu-icon,.menu-icon-gray-600 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-600 .menu-item .menu-link .menu-icon i{color:#7e8299}.menu-bullet-gray-600 .menu-item .menu-link .menu-bullet .bullet{background-color:#7e8299}.menu-arrow-gray-600 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237E8299'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-700 .menu-item .menu-link{color:#5e6278}.menu-gray-700 .menu-item .menu-link .menu-title{color:#5e6278}.menu-gray-700 .menu-item .menu-link .menu-icon,.menu-gray-700 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-700 .menu-item .menu-link .menu-icon i{color:#5e6278}.menu-gray-700 .menu-item .menu-link .menu-bullet .bullet{background-color:#5e6278}.menu-gray-700 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-700 .menu-item .menu-link{color:#5e6278}.menu-title-gray-700 .menu-item .menu-link .menu-title{color:#5e6278}.menu-icon-gray-700 .menu-item .menu-link .menu-icon,.menu-icon-gray-700 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-700 .menu-item .menu-link .menu-icon i{color:#5e6278}.menu-bullet-gray-700 .menu-item .menu-link .menu-bullet .bullet{background-color:#5e6278}.menu-arrow-gray-700 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-800 .menu-item .menu-link{color:#3f4254}.menu-gray-800 .menu-item .menu-link .menu-title{color:#3f4254}.menu-gray-800 .menu-item .menu-link .menu-icon,.menu-gray-800 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-800 .menu-item .menu-link .menu-icon i{color:#3f4254}.menu-gray-800 .menu-item .menu-link .menu-bullet .bullet{background-color:#3f4254}.menu-gray-800 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233F4254'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-800 .menu-item .menu-link{color:#3f4254}.menu-title-gray-800 .menu-item .menu-link .menu-title{color:#3f4254}.menu-icon-gray-800 .menu-item .menu-link .menu-icon,.menu-icon-gray-800 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-800 .menu-item .menu-link .menu-icon i{color:#3f4254}.menu-bullet-gray-800 .menu-item .menu-link .menu-bullet .bullet{background-color:#3f4254}.menu-arrow-gray-800 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233F4254'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-900 .menu-item .menu-link{color:#181c32}.menu-gray-900 .menu-item .menu-link .menu-title{color:#181c32}.menu-gray-900 .menu-item .menu-link .menu-icon,.menu-gray-900 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-900 .menu-item .menu-link .menu-icon i{color:#181c32}.menu-gray-900 .menu-item .menu-link .menu-bullet .bullet{background-color:#181c32}.menu-gray-900 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-900 .menu-item .menu-link{color:#181c32}.menu-title-gray-900 .menu-item .menu-link .menu-title{color:#181c32}.menu-icon-gray-900 .menu-item .menu-link .menu-icon,.menu-icon-gray-900 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-900 .menu-item .menu-link .menu-icon i{color:#181c32}.menu-bullet-gray-900 .menu-item .menu-link .menu-bullet .bullet{background-color:#181c32}.menu-arrow-gray-900 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-hover-bg .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-bg .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:rgba(245,248,250,.8)}.menu-here-bg .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:rgba(245,248,250,.8)}.menu-show-bg .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:rgba(245,248,250,.8)}.menu-active-bg .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:rgba(245,248,250,.8)}.menu-state-bg .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-bg .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:rgba(245,248,250,.8)}.menu-state-bg .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:rgba(245,248,250,.8)}.menu-state-bg .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:rgba(245,248,250,.8)}.menu-state-bg .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:rgba(245,248,250,.8)}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#009ef7;color:#fff}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#fff}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#fff}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#fff}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-show-bg-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#009ef7;color:#fff}.menu-show-bg-primary .menu-item.show>.menu-link .menu-title{color:#fff}.menu-show-bg-primary .menu-item.show>.menu-link .menu-icon,.menu-show-bg-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-show-bg-primary .menu-item.show>.menu-link .menu-icon i{color:#fff}.menu-show-bg-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#fff}.menu-show-bg-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-here-bg-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#009ef7;color:#fff}.menu-here-bg-primary .menu-item.here>.menu-link .menu-title{color:#fff}.menu-here-bg-primary .menu-item.here>.menu-link .menu-icon,.menu-here-bg-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-here-bg-primary .menu-item.here>.menu-link .menu-icon i{color:#fff}.menu-here-bg-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#fff}.menu-here-bg-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-active-bg-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#009ef7;color:#fff}.menu-active-bg-primary .menu-item .menu-link.active .menu-title{color:#fff}.menu-active-bg-primary .menu-item .menu-link.active .menu-icon,.menu-active-bg-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-active-bg-primary .menu-item .menu-link.active .menu-icon i{color:#fff}.menu-active-bg-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#fff}.menu-active-bg-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#009ef7;color:#fff}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#fff}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#fff}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#fff}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#009ef7;color:#fff}.menu-state-bg-primary .menu-item.show>.menu-link .menu-title{color:#fff}.menu-state-bg-primary .menu-item.show>.menu-link .menu-icon,.menu-state-bg-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-state-bg-primary .menu-item.show>.menu-link .menu-icon i{color:#fff}.menu-state-bg-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#fff}.menu-state-bg-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#009ef7;color:#fff}.menu-state-bg-primary .menu-item.here>.menu-link .menu-title{color:#fff}.menu-state-bg-primary .menu-item.here>.menu-link .menu-icon,.menu-state-bg-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-state-bg-primary .menu-item.here>.menu-link .menu-icon i{color:#fff}.menu-state-bg-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#fff}.menu-state-bg-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#009ef7;color:#fff}.menu-state-bg-primary .menu-item .menu-link.active .menu-title{color:#fff}.menu-state-bg-primary .menu-item .menu-link.active .menu-icon,.menu-state-bg-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-state-bg-primary .menu-item .menu-link.active .menu-icon i{color:#fff}.menu-state-bg-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#fff}.menu-state-bg-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-show-bg-light-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#f1faff;color:#009ef7}.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-title{color:#009ef7}.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-icon,.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-icon i{color:#009ef7}.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-here-bg-light-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#f1faff;color:#009ef7}.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-title{color:#009ef7}.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-icon,.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-icon i{color:#009ef7}.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#f1faff;color:#009ef7}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#009ef7}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#009ef7}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#009ef7}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-active-bg-light-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#f1faff;color:#009ef7}.menu-active-bg-light-primary .menu-item .menu-link.active .menu-title{color:#009ef7}.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon,.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon i{color:#009ef7}.menu-active-bg-light-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#009ef7}.menu-active-bg-light-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-light-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#f1faff;color:#009ef7}.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-title{color:#009ef7}.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-icon,.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-icon i{color:#009ef7}.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-light-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#f1faff;color:#009ef7}.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-title{color:#009ef7}.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-icon,.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-icon i{color:#009ef7}.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#f1faff;color:#009ef7}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#009ef7}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#009ef7}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#009ef7}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-light-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#f1faff;color:#009ef7}.menu-state-bg-light-primary .menu-item .menu-link.active .menu-title{color:#009ef7}.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon,.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon i{color:#009ef7}.menu-state-bg-light-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#009ef7}.menu-state-bg-light-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#009ef7}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#009ef7}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#009ef7}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-show-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-show-primary .menu-item.show>.menu-link .menu-title{color:#009ef7}.menu-show-primary .menu-item.show>.menu-link .menu-icon,.menu-show-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-show-primary .menu-item.show>.menu-link .menu-icon i{color:#009ef7}.menu-show-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-show-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-here-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-here-primary .menu-item.here>.menu-link .menu-title{color:#009ef7}.menu-here-primary .menu-item.here>.menu-link .menu-icon,.menu-here-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-here-primary .menu-item.here>.menu-link .menu-icon i{color:#009ef7}.menu-here-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-here-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-active-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-active-primary .menu-item .menu-link.active .menu-title{color:#009ef7}.menu-active-primary .menu-item .menu-link.active .menu-icon,.menu-active-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-active-primary .menu-item .menu-link.active .menu-icon i{color:#009ef7}.menu-active-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#009ef7}.menu-active-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#009ef7}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#009ef7}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#009ef7}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-state-primary .menu-item.show>.menu-link .menu-title{color:#009ef7}.menu-state-primary .menu-item.show>.menu-link .menu-icon,.menu-state-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-state-primary .menu-item.show>.menu-link .menu-icon i{color:#009ef7}.menu-state-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-state-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-state-primary .menu-item.here>.menu-link .menu-title{color:#009ef7}.menu-state-primary .menu-item.here>.menu-link .menu-icon,.menu-state-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-state-primary .menu-item.here>.menu-link .menu-icon i{color:#009ef7}.menu-state-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-state-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-state-primary .menu-item .menu-link.active .menu-title{color:#009ef7}.menu-state-primary .menu-item .menu-link.active .menu-icon,.menu-state-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-state-primary .menu-item .menu-link.active .menu-icon i{color:#009ef7}.menu-state-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#009ef7}.menu-state-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-hover-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-hover-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-hover-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#009ef7}.menu-here-title-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-here-title-primary .menu-item.here>.menu-link .menu-title{color:#009ef7}.menu-show-title-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-show-title-primary .menu-item.show>.menu-link .menu-title{color:#009ef7}.menu-active-title-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-active-title-primary .menu-item .menu-link.active .menu-title{color:#009ef7}.menu-state-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-state-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-state-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#009ef7}.menu-state-title-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-state-title-primary .menu-item.show>.menu-link .menu-title{color:#009ef7}.menu-state-title-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;color:#009ef7}.menu-state-title-primary .menu-item .menu-link.active .menu-title{color:#009ef7}.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#009ef7}.menu-here-icon-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-here-icon-primary .menu-item.here>.menu-link .menu-icon,.menu-here-icon-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-here-icon-primary .menu-item.here>.menu-link .menu-icon i{color:#009ef7}.menu-show-icon-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-show-icon-primary .menu-item.show>.menu-link .menu-icon,.menu-show-icon-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-show-icon-primary .menu-item.show>.menu-link .menu-icon i{color:#009ef7}.menu-active-icon-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-active-icon-primary .menu-item .menu-link.active .menu-icon,.menu-active-icon-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-active-icon-primary .menu-item .menu-link.active .menu-icon i{color:#009ef7}.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#009ef7}.menu-state-icon-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-state-icon-primary .menu-item.show>.menu-link .menu-icon,.menu-state-icon-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-state-icon-primary .menu-item.show>.menu-link .menu-icon i{color:#009ef7}.menu-state-icon-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-state-icon-primary .menu-item .menu-link.active .menu-icon,.menu-state-icon-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-state-icon-primary .menu-item .menu-link.active .menu-icon i{color:#009ef7}.menu-hover-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-hover-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-hover-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#009ef7}.menu-show-bullet-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-show-bullet-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-here-bullet-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-here-bullet-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-active-bullet-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-active-bullet-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#009ef7}.menu-state-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-state-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-state-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#009ef7}.menu-state-bullet-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-state-bullet-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#009ef7}.menu-state-bullet-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-state-bullet-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#009ef7}.menu-hover-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-hover-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-hover-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-here-arrow-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-here-arrow-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-show-arrow-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-show-arrow-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-active-arrow-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-active-arrow-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-state-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-state-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-arrow-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-state-arrow-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-arrow-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-state-arrow-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.anchor{display:flex;align-items:center}.anchor a{position:relative;display:none;align-items:center;justify-content:flex-start;height:1em;width:1.25em;margin-right:-1.25em;font-weight:500;font-size:.8em;color:#a1a5b7;transition:all .2s ease}.anchor a:before{content:"#"}.anchor:hover a{display:flex}.anchor:hover a:hover{color:#009ef7;transition:all .2s ease}.card{border:0;box-shadow:0 0 20px 0 rgba(76,87,125,.02)}.card .card-header{display:flex;justify-content:space-between;align-items:stretch;flex-wrap:wrap;min-height:70px;padding:0 2.25rem;background-color:transparent;border-bottom:1px solid #eff2f5}.card .card-header .card-title{display:flex;align-items:center;margin:.5rem;margin-right:0}.card .card-header .card-title.flex-column{align-items:flex-start;justify-content:center}.card .card-header .card-title .card-icon{margin-left:.75rem;line-height:0}.card .card-header .card-title .card-icon i{font-size:1.25rem;color:#7e8299;line-height:0}.card .card-header .card-title .card-icon i:after,.card .card-header .card-title .card-icon i:before{line-height:0}.card .card-header .card-title .card-icon .svg-icon{color:#7e8299}.card .card-header .card-title .card-icon .svg-icon svg{height:24px;width:24px}.card .card-header .card-title,.card .card-header .card-title .card-label{font-weight:500;font-size:1.275rem;color:#181c32}.card .card-header .card-title .card-label{margin:0 0 0 .75rem;flex-wrap:wrap}.card .card-header .card-title .small,.card .card-header .card-title small{color:#a1a5b7;font-size:1rem}.card .card-header .card-title .h1,.card .card-header .card-title .h2,.card .card-header .card-title .h3,.card .card-header .card-title .h4,.card .card-header .card-title .h5,.card .card-header .card-title .h6,.card .card-header .card-title h1,.card .card-header .card-title h2,.card .card-header .card-title h3,.card .card-header .card-title h4,.card .card-header .card-title h5,.card .card-header .card-title h6{margin-bottom:0}.card .card-header .card-toolbar{display:flex;align-items:center;margin:.5rem 0;flex-wrap:wrap}.card .card-body{padding:2rem 2.25rem}.card .card-footer{padding:2rem 2.25rem;background-color:transparent;border-top:1px solid #eff2f5}.card .card-scroll{position:relative;overflow:auto}.card.card-px-0 .card-body,.card.card-px-0 .card-footer,.card.card-px-0 .card-header{padding-right:0;padding-left:0}.card.card-py-0 .card-body,.card.card-py-0 .card-footer,.card.card-py-0 .card-header{padding-top:0;padding-bottom:0}.card.card-p-0 .card-body,.card.card-p-0 .card-footer,.card.card-p-0 .card-header{padding:0}.card.card-dashed{box-shadow:none;border:1px dashed #e4e6ef}.card.card-dashed>.card-header{border-bottom:1px dashed #e4e6ef}.card.card-dashed>.card-footer{border-top:1px dashed #e4e6ef}.card.card-bordered{box-shadow:none;border:1px solid #eff2f5}.card.card-flush>.card-header{border-bottom:0}.card.card-flush>.card-footer{border-top:0}.card.card-shadow{box-shadow:0 0 20px 0 rgba(76,87,125,.02);border:0}.card.card-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-stretch .card-toolbar{margin:0;align-items:stretch}@media (min-width:576px){.card.card-sm-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-sm-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-sm-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-sm-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-sm-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-sm-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-sm-stretch .card-toolbar{margin:0;align-items:stretch}}@media (min-width:768px){.card.card-md-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-md-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-md-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-md-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-md-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-md-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-md-stretch .card-toolbar{margin:0;align-items:stretch}}@media (min-width:992px){.card.card-lg-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-lg-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-lg-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-lg-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-lg-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-lg-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-lg-stretch .card-toolbar{margin:0;align-items:stretch}}@media (min-width:1200px){.card.card-xl-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-xl-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-xl-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-xl-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-xl-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-xl-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-xl-stretch .card-toolbar{margin:0;align-items:stretch}}@media (min-width:1400px){.card.card-xxl-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-xxl-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-xxl-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-xxl-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-xxl-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-xxl-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-xxl-stretch .card-toolbar{margin:0;align-items:stretch}}.card-p{padding:2rem 2.25rem!important}.card-px{padding-right:2.25rem!important;padding-left:2.25rem!important}.card-shadow{box-shadow:0 0 20px 0 rgba(76,87,125,.02)}.card-py{padding-top:2rem!important;padding-bottom:2rem!important}.card-rounded{border-radius:.625rem}.card-rounded-start{border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.card-rounded-end{border-top-left-radius:.625rem;border-bottom-left-radius:.625rem}.card-rounded-top{border-top-right-radius:.625rem;border-top-left-radius:.625rem}.card-rounded-bottom{border-bottom-right-radius:.625rem;border-bottom-left-radius:.625rem}@media (max-width:767.98px){.card>.card-header:not(.flex-nowrap){padding-top:.5rem;padding-bottom:.5rem}}.breadcrumb{display:flex;align-items:center;background-color:transparent;padding:0;margin:0}.breadcrumb .breadcrumb-item{display:flex;align-items:center;padding-right:0;padding-left:.5rem}.breadcrumb .breadcrumb-item:last-child{padding-left:0}.breadcrumb .breadcrumb-item:after{content:"/";padding-right:.5rem}.breadcrumb .breadcrumb-item:before{display:none}.breadcrumb .breadcrumb-item:last-child:after{display:none}.breadcrumb-line .breadcrumb-item:after{content:"-"}.breadcrumb-dot .breadcrumb-item:after{content:"•"}.breadcrumb-separatorless .breadcrumb-item:after{display:none}.btn{outline:0!important}.btn:not(.btn-shadow):not(.shadow):not(.shadow-sm):not(.shadow-lg){box-shadow:none!important}.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon){border:0;padding:calc(.75rem + 1px) calc(1.5rem + 1px)}.btn-group-lg>.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon),.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon).btn-lg{padding:calc(.825rem + 1px) calc(1.75rem + 1px)}.btn-group-sm>.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon),.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon).btn-sm{padding:calc(.55rem + 1px) calc(1.25rem + 1px)}.btn.btn-link{border:0;border-radius:0;padding-right:0!important;padding-left:0!important;text-decoration:none;font-weight:500}.btn.btn-outline-dashed{border:1px dashed #e4e6ef}.btn.btn-outline-default{border:1px solid #e4e6ef}.btn.btn-flush{appearance:none;box-shadow:none;border-radius:0;border:none;cursor:pointer;background-color:transparent;outline:0!important;margin:0;padding:0}.btn.btn-flex{display:inline-flex;align-items:center}.btn.btn-trim-start{justify-content:flex-start!important;padding-right:0!important}.btn.btn-trim-end{justify-content:flex-end!important;padding-left:0!important}.btn i{display:inline-flex;font-size:1rem;padding-left:.35rem;vertical-align:middle;line-height:0}.btn .svg-icon{flex-shrink:0;line-height:0;margin-left:.5rem}.btn.btn-icon{display:inline-flex;align-items:center;justify-content:center;padding:0;height:calc(1.5em + 1.5rem + 2px);width:calc(1.5em + 1.5rem + 2px)}.btn.btn-icon:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush){border:0}.btn-group-sm>.btn.btn-icon,.btn.btn-icon.btn-sm{height:calc(1.5em + 1.1rem + 2px);width:calc(1.5em + 1.1rem + 2px)}.btn-group-lg>.btn.btn-icon,.btn.btn-icon.btn-lg{height:calc(1.5em + 1.65rem + 2px);width:calc(1.5em + 1.65rem + 2px)}.btn.btn-icon.btn-circle{border-radius:50%}.btn.btn-icon .svg-icon,.btn.btn-icon i{padding:0;margin:0;line-height:1}.btn.btn-hover-rise{transition:transform .3s ease}.btn.btn-hover-rise:hover{transform:translateY(-10%);transition:transform .3s ease}.btn.btn-hover-scale{transition:transform .3s ease}.btn.btn-hover-scale:hover{transform:scale(1.1);transition:transform .3s ease}.btn.btn-hover-rotate-end{transition:transform .3s ease}.btn.btn-hover-rotate-end:hover{transform:rotate(-4deg);transition:transform .3s ease}.btn.btn-hover-rotate-start{transition:transform .3s ease}.btn.btn-hover-rotate-start:hover{transform:rotate(4deg);transition:transform .3s ease}.btn.btn-white{color:#7e8299;border-color:#fff;background-color:#fff}.btn.btn-white .svg-icon,.btn.btn-white i{color:#7e8299}.btn.btn-white.dropdown-toggle:after{color:#7e8299}.btn-check:active+.btn.btn-white,.btn-check:checked+.btn.btn-white,.btn.btn-white.active,.btn.btn-white.show,.btn.btn-white:active:not(.btn-active),.btn.btn-white:focus:not(.btn-active),.btn.btn-white:hover:not(.btn-active),.show>.btn.btn-white{color:#7e8299;border-color:#f5f8fa;background-color:#f5f8fa!important}.btn-check:active+.btn.btn-white .svg-icon,.btn-check:active+.btn.btn-white i,.btn-check:checked+.btn.btn-white .svg-icon,.btn-check:checked+.btn.btn-white i,.btn.btn-white.active .svg-icon,.btn.btn-white.active i,.btn.btn-white.show .svg-icon,.btn.btn-white.show i,.btn.btn-white:active:not(.btn-active) .svg-icon,.btn.btn-white:active:not(.btn-active) i,.btn.btn-white:focus:not(.btn-active) .svg-icon,.btn.btn-white:focus:not(.btn-active) i,.btn.btn-white:hover:not(.btn-active) .svg-icon,.btn.btn-white:hover:not(.btn-active) i,.show>.btn.btn-white .svg-icon,.show>.btn.btn-white i{color:#7e8299}.btn-check:active+.btn.btn-white.dropdown-toggle:after,.btn-check:checked+.btn.btn-white.dropdown-toggle:after,.btn.btn-white.active.dropdown-toggle:after,.btn.btn-white.show.dropdown-toggle:after,.btn.btn-white:active:not(.btn-active).dropdown-toggle:after,.btn.btn-white:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-white:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-white.dropdown-toggle:after{color:#7e8299}.btn.btn-bg-white{border-color:#fff;background-color:#fff}.btn-check:active+.btn.btn-active-white,.btn-check:checked+.btn.btn-active-white,.btn.btn-active-white.active,.btn.btn-active-white.show,.btn.btn-active-white:active:not(.btn-active),.btn.btn-active-white:focus:not(.btn-active),.btn.btn-active-white:hover:not(.btn-active),.show>.btn.btn-active-white{color:#7e8299;border-color:#fff;background-color:#fff!important}.btn-check:active+.btn.btn-active-white .svg-icon,.btn-check:active+.btn.btn-active-white i,.btn-check:checked+.btn.btn-active-white .svg-icon,.btn-check:checked+.btn.btn-active-white i,.btn.btn-active-white.active .svg-icon,.btn.btn-active-white.active i,.btn.btn-active-white.show .svg-icon,.btn.btn-active-white.show i,.btn.btn-active-white:active:not(.btn-active) .svg-icon,.btn.btn-active-white:active:not(.btn-active) i,.btn.btn-active-white:focus:not(.btn-active) .svg-icon,.btn.btn-active-white:focus:not(.btn-active) i,.btn.btn-active-white:hover:not(.btn-active) .svg-icon,.btn.btn-active-white:hover:not(.btn-active) i,.show>.btn.btn-active-white .svg-icon,.show>.btn.btn-active-white i{color:#7e8299}.btn-check:active+.btn.btn-active-white.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-white.dropdown-toggle:after,.btn.btn-active-white.active.dropdown-toggle:after,.btn.btn-active-white.show.dropdown-toggle:after,.btn.btn-active-white:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-white:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-white:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-white.dropdown-toggle:after{color:#7e8299}.btn.btn-light{color:#7e8299;border-color:#f5f8fa;background-color:#f5f8fa}.btn.btn-light .svg-icon,.btn.btn-light i{color:#7e8299}.btn.btn-light.dropdown-toggle:after{color:#7e8299}.btn-check:active+.btn.btn-light,.btn-check:checked+.btn.btn-light,.btn.btn-light.active,.btn.btn-light.show,.btn.btn-light:active:not(.btn-active),.btn.btn-light:focus:not(.btn-active),.btn.btn-light:hover:not(.btn-active),.show>.btn.btn-light{color:#7e8299;border-color:#eff2f5;background-color:#eff2f5!important}.btn-check:active+.btn.btn-light .svg-icon,.btn-check:active+.btn.btn-light i,.btn-check:checked+.btn.btn-light .svg-icon,.btn-check:checked+.btn.btn-light i,.btn.btn-light.active .svg-icon,.btn.btn-light.active i,.btn.btn-light.show .svg-icon,.btn.btn-light.show i,.btn.btn-light:active:not(.btn-active) .svg-icon,.btn.btn-light:active:not(.btn-active) i,.btn.btn-light:focus:not(.btn-active) .svg-icon,.btn.btn-light:focus:not(.btn-active) i,.btn.btn-light:hover:not(.btn-active) .svg-icon,.btn.btn-light:hover:not(.btn-active) i,.show>.btn.btn-light .svg-icon,.show>.btn.btn-light i{color:#7e8299}.btn-check:active+.btn.btn-light.dropdown-toggle:after,.btn-check:checked+.btn.btn-light.dropdown-toggle:after,.btn.btn-light.active.dropdown-toggle:after,.btn.btn-light.show.dropdown-toggle:after,.btn.btn-light:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light.dropdown-toggle:after{color:#7e8299}.btn.btn-bg-light{border-color:#f5f8fa;background-color:#f5f8fa}.btn-check:active+.btn.btn-active-light,.btn-check:checked+.btn.btn-active-light,.btn.btn-active-light.active,.btn.btn-active-light.show,.btn.btn-active-light:active:not(.btn-active),.btn.btn-active-light:focus:not(.btn-active),.btn.btn-active-light:hover:not(.btn-active),.show>.btn.btn-active-light{color:#7e8299;border-color:#f5f8fa;background-color:#f5f8fa!important}.btn-check:active+.btn.btn-active-light .svg-icon,.btn-check:active+.btn.btn-active-light i,.btn-check:checked+.btn.btn-active-light .svg-icon,.btn-check:checked+.btn.btn-active-light i,.btn.btn-active-light.active .svg-icon,.btn.btn-active-light.active i,.btn.btn-active-light.show .svg-icon,.btn.btn-active-light.show i,.btn.btn-active-light:active:not(.btn-active) .svg-icon,.btn.btn-active-light:active:not(.btn-active) i,.btn.btn-active-light:focus:not(.btn-active) .svg-icon,.btn.btn-active-light:focus:not(.btn-active) i,.btn.btn-active-light:hover:not(.btn-active) .svg-icon,.btn.btn-active-light:hover:not(.btn-active) i,.show>.btn.btn-active-light .svg-icon,.show>.btn.btn-active-light i{color:#7e8299}.btn-check:active+.btn.btn-active-light.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light.dropdown-toggle:after,.btn.btn-active-light.active.dropdown-toggle:after,.btn.btn-active-light.show.dropdown-toggle:after,.btn.btn-active-light:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light.dropdown-toggle:after{color:#7e8299}.btn.btn-primary{color:#fff;border-color:#009ef7;background-color:#009ef7}.btn.btn-primary .svg-icon,.btn.btn-primary i{color:#fff}.btn.btn-primary.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-primary,.btn-check:checked+.btn.btn-primary,.btn.btn-primary.active,.btn.btn-primary.show,.btn.btn-primary:active:not(.btn-active),.btn.btn-primary:focus:not(.btn-active),.btn.btn-primary:hover:not(.btn-active),.show>.btn.btn-primary{color:#fff;border-color:#0095e8;background-color:#0095e8!important}.btn-check:active+.btn.btn-primary .svg-icon,.btn-check:active+.btn.btn-primary i,.btn-check:checked+.btn.btn-primary .svg-icon,.btn-check:checked+.btn.btn-primary i,.btn.btn-primary.active .svg-icon,.btn.btn-primary.active i,.btn.btn-primary.show .svg-icon,.btn.btn-primary.show i,.btn.btn-primary:active:not(.btn-active) .svg-icon,.btn.btn-primary:active:not(.btn-active) i,.btn.btn-primary:focus:not(.btn-active) .svg-icon,.btn.btn-primary:focus:not(.btn-active) i,.btn.btn-primary:hover:not(.btn-active) .svg-icon,.btn.btn-primary:hover:not(.btn-active) i,.show>.btn.btn-primary .svg-icon,.show>.btn.btn-primary i{color:#fff}.btn-check:active+.btn.btn-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-primary.dropdown-toggle:after,.btn.btn-primary.active.dropdown-toggle:after,.btn.btn-primary.show.dropdown-toggle:after,.btn.btn-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-primary.dropdown-toggle:after{color:#fff}.btn.btn-light-primary{color:#009ef7;border-color:#f1faff;background-color:#f1faff}.btn.btn-light-primary .svg-icon,.btn.btn-light-primary i{color:#009ef7}.btn.btn-light-primary.dropdown-toggle:after{color:#009ef7}.btn-check:active+.btn.btn-light-primary,.btn-check:checked+.btn.btn-light-primary,.btn.btn-light-primary.active,.btn.btn-light-primary.show,.btn.btn-light-primary:active:not(.btn-active),.btn.btn-light-primary:focus:not(.btn-active),.btn.btn-light-primary:hover:not(.btn-active),.show>.btn.btn-light-primary{color:#fff;border-color:#009ef7;background-color:#009ef7!important}.btn-check:active+.btn.btn-light-primary .svg-icon,.btn-check:active+.btn.btn-light-primary i,.btn-check:checked+.btn.btn-light-primary .svg-icon,.btn-check:checked+.btn.btn-light-primary i,.btn.btn-light-primary.active .svg-icon,.btn.btn-light-primary.active i,.btn.btn-light-primary.show .svg-icon,.btn.btn-light-primary.show i,.btn.btn-light-primary:active:not(.btn-active) .svg-icon,.btn.btn-light-primary:active:not(.btn-active) i,.btn.btn-light-primary:focus:not(.btn-active) .svg-icon,.btn.btn-light-primary:focus:not(.btn-active) i,.btn.btn-light-primary:hover:not(.btn-active) .svg-icon,.btn.btn-light-primary:hover:not(.btn-active) i,.show>.btn.btn-light-primary .svg-icon,.show>.btn.btn-light-primary i{color:#fff}.btn-check:active+.btn.btn-light-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-primary.dropdown-toggle:after,.btn.btn-light-primary.active.dropdown-toggle:after,.btn.btn-light-primary.show.dropdown-toggle:after,.btn.btn-light-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-primary.dropdown-toggle:after{color:#fff}.btn.btn-bg-primary{border-color:#009ef7;background-color:#009ef7}.btn-check:active+.btn.btn-active-primary,.btn-check:checked+.btn.btn-active-primary,.btn.btn-active-primary.active,.btn.btn-active-primary.show,.btn.btn-active-primary:active:not(.btn-active),.btn.btn-active-primary:focus:not(.btn-active),.btn.btn-active-primary:hover:not(.btn-active),.show>.btn.btn-active-primary{color:#fff;border-color:#009ef7;background-color:#009ef7!important}.btn-check:active+.btn.btn-active-primary .svg-icon,.btn-check:active+.btn.btn-active-primary i,.btn-check:checked+.btn.btn-active-primary .svg-icon,.btn-check:checked+.btn.btn-active-primary i,.btn.btn-active-primary.active .svg-icon,.btn.btn-active-primary.active i,.btn.btn-active-primary.show .svg-icon,.btn.btn-active-primary.show i,.btn.btn-active-primary:active:not(.btn-active) .svg-icon,.btn.btn-active-primary:active:not(.btn-active) i,.btn.btn-active-primary:focus:not(.btn-active) .svg-icon,.btn.btn-active-primary:focus:not(.btn-active) i,.btn.btn-active-primary:hover:not(.btn-active) .svg-icon,.btn.btn-active-primary:hover:not(.btn-active) i,.show>.btn.btn-active-primary .svg-icon,.show>.btn.btn-active-primary i{color:#fff}.btn-check:active+.btn.btn-active-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-primary.dropdown-toggle:after,.btn.btn-active-primary.active.dropdown-toggle:after,.btn.btn-active-primary.show.dropdown-toggle:after,.btn.btn-active-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-primary.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-primary,.btn-check:checked+.btn.btn-active-light-primary,.btn.btn-active-light-primary.active,.btn.btn-active-light-primary.show,.btn.btn-active-light-primary:active:not(.btn-active),.btn.btn-active-light-primary:focus:not(.btn-active),.btn.btn-active-light-primary:hover:not(.btn-active),.show>.btn.btn-active-light-primary{color:#009ef7;border-color:#f1faff;background-color:#f1faff!important}.btn-check:active+.btn.btn-active-light-primary .svg-icon,.btn-check:active+.btn.btn-active-light-primary i,.btn-check:checked+.btn.btn-active-light-primary .svg-icon,.btn-check:checked+.btn.btn-active-light-primary i,.btn.btn-active-light-primary.active .svg-icon,.btn.btn-active-light-primary.active i,.btn.btn-active-light-primary.show .svg-icon,.btn.btn-active-light-primary.show i,.btn.btn-active-light-primary:active:not(.btn-active) .svg-icon,.btn.btn-active-light-primary:active:not(.btn-active) i,.btn.btn-active-light-primary:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-primary:focus:not(.btn-active) i,.btn.btn-active-light-primary:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-primary:hover:not(.btn-active) i,.show>.btn.btn-active-light-primary .svg-icon,.show>.btn.btn-active-light-primary i{color:#009ef7}.btn-check:active+.btn.btn-active-light-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-primary.dropdown-toggle:after,.btn.btn-active-light-primary.active.dropdown-toggle:after,.btn.btn-active-light-primary.show.dropdown-toggle:after,.btn.btn-active-light-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-primary.dropdown-toggle:after{color:#009ef7}.btn.btn-active-light-primary.btn-outline:not(.btn-outline-default){border-color:#009ef7!important}.btn.btn-secondary{color:#3f4254;border-color:#e4e6ef;background-color:#e4e6ef}.btn.btn-secondary .svg-icon,.btn.btn-secondary i{color:#3f4254}.btn.btn-secondary.dropdown-toggle:after{color:#3f4254}.btn-check:active+.btn.btn-secondary,.btn-check:checked+.btn.btn-secondary,.btn.btn-secondary.active,.btn.btn-secondary.show,.btn.btn-secondary:active:not(.btn-active),.btn.btn-secondary:focus:not(.btn-active),.btn.btn-secondary:hover:not(.btn-active),.show>.btn.btn-secondary{color:#3f4254;border-color:#b5b5c3;background-color:#b5b5c3!important}.btn-check:active+.btn.btn-secondary .svg-icon,.btn-check:active+.btn.btn-secondary i,.btn-check:checked+.btn.btn-secondary .svg-icon,.btn-check:checked+.btn.btn-secondary i,.btn.btn-secondary.active .svg-icon,.btn.btn-secondary.active i,.btn.btn-secondary.show .svg-icon,.btn.btn-secondary.show i,.btn.btn-secondary:active:not(.btn-active) .svg-icon,.btn.btn-secondary:active:not(.btn-active) i,.btn.btn-secondary:focus:not(.btn-active) .svg-icon,.btn.btn-secondary:focus:not(.btn-active) i,.btn.btn-secondary:hover:not(.btn-active) .svg-icon,.btn.btn-secondary:hover:not(.btn-active) i,.show>.btn.btn-secondary .svg-icon,.show>.btn.btn-secondary i{color:#3f4254}.btn-check:active+.btn.btn-secondary.dropdown-toggle:after,.btn-check:checked+.btn.btn-secondary.dropdown-toggle:after,.btn.btn-secondary.active.dropdown-toggle:after,.btn.btn-secondary.show.dropdown-toggle:after,.btn.btn-secondary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-secondary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-secondary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-secondary.dropdown-toggle:after{color:#3f4254}.btn.btn-bg-secondary{border-color:#e4e6ef;background-color:#e4e6ef}.btn-check:active+.btn.btn-active-secondary,.btn-check:checked+.btn.btn-active-secondary,.btn.btn-active-secondary.active,.btn.btn-active-secondary.show,.btn.btn-active-secondary:active:not(.btn-active),.btn.btn-active-secondary:focus:not(.btn-active),.btn.btn-active-secondary:hover:not(.btn-active),.show>.btn.btn-active-secondary{color:#3f4254;border-color:#e4e6ef;background-color:#e4e6ef!important}.btn-check:active+.btn.btn-active-secondary .svg-icon,.btn-check:active+.btn.btn-active-secondary i,.btn-check:checked+.btn.btn-active-secondary .svg-icon,.btn-check:checked+.btn.btn-active-secondary i,.btn.btn-active-secondary.active .svg-icon,.btn.btn-active-secondary.active i,.btn.btn-active-secondary.show .svg-icon,.btn.btn-active-secondary.show i,.btn.btn-active-secondary:active:not(.btn-active) .svg-icon,.btn.btn-active-secondary:active:not(.btn-active) i,.btn.btn-active-secondary:focus:not(.btn-active) .svg-icon,.btn.btn-active-secondary:focus:not(.btn-active) i,.btn.btn-active-secondary:hover:not(.btn-active) .svg-icon,.btn.btn-active-secondary:hover:not(.btn-active) i,.show>.btn.btn-active-secondary .svg-icon,.show>.btn.btn-active-secondary i{color:#3f4254}.btn-check:active+.btn.btn-active-secondary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-secondary.dropdown-toggle:after,.btn.btn-active-secondary.active.dropdown-toggle:after,.btn.btn-active-secondary.show.dropdown-toggle:after,.btn.btn-active-secondary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-secondary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-secondary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-secondary.dropdown-toggle:after{color:#3f4254}.btn.btn-success{color:#fff;border-color:#50cd89;background-color:#50cd89}.btn.btn-success .svg-icon,.btn.btn-success i{color:#fff}.btn.btn-success.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-success,.btn-check:checked+.btn.btn-success,.btn.btn-success.active,.btn.btn-success.show,.btn.btn-success:active:not(.btn-active),.btn.btn-success:focus:not(.btn-active),.btn.btn-success:hover:not(.btn-active),.show>.btn.btn-success{color:#fff;border-color:#47be7d;background-color:#47be7d!important}.btn-check:active+.btn.btn-success .svg-icon,.btn-check:active+.btn.btn-success i,.btn-check:checked+.btn.btn-success .svg-icon,.btn-check:checked+.btn.btn-success i,.btn.btn-success.active .svg-icon,.btn.btn-success.active i,.btn.btn-success.show .svg-icon,.btn.btn-success.show i,.btn.btn-success:active:not(.btn-active) .svg-icon,.btn.btn-success:active:not(.btn-active) i,.btn.btn-success:focus:not(.btn-active) .svg-icon,.btn.btn-success:focus:not(.btn-active) i,.btn.btn-success:hover:not(.btn-active) .svg-icon,.btn.btn-success:hover:not(.btn-active) i,.show>.btn.btn-success .svg-icon,.show>.btn.btn-success i{color:#fff}.btn-check:active+.btn.btn-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-success.dropdown-toggle:after,.btn.btn-success.active.dropdown-toggle:after,.btn.btn-success.show.dropdown-toggle:after,.btn.btn-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-success.dropdown-toggle:after{color:#fff}.btn.btn-light-success{color:#50cd89;border-color:#e8fff3;background-color:#e8fff3}.btn.btn-light-success .svg-icon,.btn.btn-light-success i{color:#50cd89}.btn.btn-light-success.dropdown-toggle:after{color:#50cd89}.btn-check:active+.btn.btn-light-success,.btn-check:checked+.btn.btn-light-success,.btn.btn-light-success.active,.btn.btn-light-success.show,.btn.btn-light-success:active:not(.btn-active),.btn.btn-light-success:focus:not(.btn-active),.btn.btn-light-success:hover:not(.btn-active),.show>.btn.btn-light-success{color:#fff;border-color:#50cd89;background-color:#50cd89!important}.btn-check:active+.btn.btn-light-success .svg-icon,.btn-check:active+.btn.btn-light-success i,.btn-check:checked+.btn.btn-light-success .svg-icon,.btn-check:checked+.btn.btn-light-success i,.btn.btn-light-success.active .svg-icon,.btn.btn-light-success.active i,.btn.btn-light-success.show .svg-icon,.btn.btn-light-success.show i,.btn.btn-light-success:active:not(.btn-active) .svg-icon,.btn.btn-light-success:active:not(.btn-active) i,.btn.btn-light-success:focus:not(.btn-active) .svg-icon,.btn.btn-light-success:focus:not(.btn-active) i,.btn.btn-light-success:hover:not(.btn-active) .svg-icon,.btn.btn-light-success:hover:not(.btn-active) i,.show>.btn.btn-light-success .svg-icon,.show>.btn.btn-light-success i{color:#fff}.btn-check:active+.btn.btn-light-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-success.dropdown-toggle:after,.btn.btn-light-success.active.dropdown-toggle:after,.btn.btn-light-success.show.dropdown-toggle:after,.btn.btn-light-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-success.dropdown-toggle:after{color:#fff}.btn.btn-bg-success{border-color:#50cd89;background-color:#50cd89}.btn-check:active+.btn.btn-active-success,.btn-check:checked+.btn.btn-active-success,.btn.btn-active-success.active,.btn.btn-active-success.show,.btn.btn-active-success:active:not(.btn-active),.btn.btn-active-success:focus:not(.btn-active),.btn.btn-active-success:hover:not(.btn-active),.show>.btn.btn-active-success{color:#fff;border-color:#50cd89;background-color:#50cd89!important}.btn-check:active+.btn.btn-active-success .svg-icon,.btn-check:active+.btn.btn-active-success i,.btn-check:checked+.btn.btn-active-success .svg-icon,.btn-check:checked+.btn.btn-active-success i,.btn.btn-active-success.active .svg-icon,.btn.btn-active-success.active i,.btn.btn-active-success.show .svg-icon,.btn.btn-active-success.show i,.btn.btn-active-success:active:not(.btn-active) .svg-icon,.btn.btn-active-success:active:not(.btn-active) i,.btn.btn-active-success:focus:not(.btn-active) .svg-icon,.btn.btn-active-success:focus:not(.btn-active) i,.btn.btn-active-success:hover:not(.btn-active) .svg-icon,.btn.btn-active-success:hover:not(.btn-active) i,.show>.btn.btn-active-success .svg-icon,.show>.btn.btn-active-success i{color:#fff}.btn-check:active+.btn.btn-active-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-success.dropdown-toggle:after,.btn.btn-active-success.active.dropdown-toggle:after,.btn.btn-active-success.show.dropdown-toggle:after,.btn.btn-active-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-success.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-success,.btn-check:checked+.btn.btn-active-light-success,.btn.btn-active-light-success.active,.btn.btn-active-light-success.show,.btn.btn-active-light-success:active:not(.btn-active),.btn.btn-active-light-success:focus:not(.btn-active),.btn.btn-active-light-success:hover:not(.btn-active),.show>.btn.btn-active-light-success{color:#50cd89;border-color:#e8fff3;background-color:#e8fff3!important}.btn-check:active+.btn.btn-active-light-success .svg-icon,.btn-check:active+.btn.btn-active-light-success i,.btn-check:checked+.btn.btn-active-light-success .svg-icon,.btn-check:checked+.btn.btn-active-light-success i,.btn.btn-active-light-success.active .svg-icon,.btn.btn-active-light-success.active i,.btn.btn-active-light-success.show .svg-icon,.btn.btn-active-light-success.show i,.btn.btn-active-light-success:active:not(.btn-active) .svg-icon,.btn.btn-active-light-success:active:not(.btn-active) i,.btn.btn-active-light-success:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-success:focus:not(.btn-active) i,.btn.btn-active-light-success:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-success:hover:not(.btn-active) i,.show>.btn.btn-active-light-success .svg-icon,.show>.btn.btn-active-light-success i{color:#50cd89}.btn-check:active+.btn.btn-active-light-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-success.dropdown-toggle:after,.btn.btn-active-light-success.active.dropdown-toggle:after,.btn.btn-active-light-success.show.dropdown-toggle:after,.btn.btn-active-light-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-success.dropdown-toggle:after{color:#50cd89}.btn.btn-active-light-success.btn-outline:not(.btn-outline-default){border-color:#50cd89!important}.btn.btn-info{color:#fff;border-color:#7239ea;background-color:#7239ea}.btn.btn-info .svg-icon,.btn.btn-info i{color:#fff}.btn.btn-info.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-info,.btn-check:checked+.btn.btn-info,.btn.btn-info.active,.btn.btn-info.show,.btn.btn-info:active:not(.btn-active),.btn.btn-info:focus:not(.btn-active),.btn.btn-info:hover:not(.btn-active),.show>.btn.btn-info{color:#fff;border-color:#5014d0;background-color:#5014d0!important}.btn-check:active+.btn.btn-info .svg-icon,.btn-check:active+.btn.btn-info i,.btn-check:checked+.btn.btn-info .svg-icon,.btn-check:checked+.btn.btn-info i,.btn.btn-info.active .svg-icon,.btn.btn-info.active i,.btn.btn-info.show .svg-icon,.btn.btn-info.show i,.btn.btn-info:active:not(.btn-active) .svg-icon,.btn.btn-info:active:not(.btn-active) i,.btn.btn-info:focus:not(.btn-active) .svg-icon,.btn.btn-info:focus:not(.btn-active) i,.btn.btn-info:hover:not(.btn-active) .svg-icon,.btn.btn-info:hover:not(.btn-active) i,.show>.btn.btn-info .svg-icon,.show>.btn.btn-info i{color:#fff}.btn-check:active+.btn.btn-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-info.dropdown-toggle:after,.btn.btn-info.active.dropdown-toggle:after,.btn.btn-info.show.dropdown-toggle:after,.btn.btn-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-info.dropdown-toggle:after{color:#fff}.btn.btn-light-info{color:#7239ea;border-color:#f8f5ff;background-color:#f8f5ff}.btn.btn-light-info .svg-icon,.btn.btn-light-info i{color:#7239ea}.btn.btn-light-info.dropdown-toggle:after{color:#7239ea}.btn-check:active+.btn.btn-light-info,.btn-check:checked+.btn.btn-light-info,.btn.btn-light-info.active,.btn.btn-light-info.show,.btn.btn-light-info:active:not(.btn-active),.btn.btn-light-info:focus:not(.btn-active),.btn.btn-light-info:hover:not(.btn-active),.show>.btn.btn-light-info{color:#fff;border-color:#7239ea;background-color:#7239ea!important}.btn-check:active+.btn.btn-light-info .svg-icon,.btn-check:active+.btn.btn-light-info i,.btn-check:checked+.btn.btn-light-info .svg-icon,.btn-check:checked+.btn.btn-light-info i,.btn.btn-light-info.active .svg-icon,.btn.btn-light-info.active i,.btn.btn-light-info.show .svg-icon,.btn.btn-light-info.show i,.btn.btn-light-info:active:not(.btn-active) .svg-icon,.btn.btn-light-info:active:not(.btn-active) i,.btn.btn-light-info:focus:not(.btn-active) .svg-icon,.btn.btn-light-info:focus:not(.btn-active) i,.btn.btn-light-info:hover:not(.btn-active) .svg-icon,.btn.btn-light-info:hover:not(.btn-active) i,.show>.btn.btn-light-info .svg-icon,.show>.btn.btn-light-info i{color:#fff}.btn-check:active+.btn.btn-light-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-info.dropdown-toggle:after,.btn.btn-light-info.active.dropdown-toggle:after,.btn.btn-light-info.show.dropdown-toggle:after,.btn.btn-light-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-info.dropdown-toggle:after{color:#fff}.btn.btn-bg-info{border-color:#7239ea;background-color:#7239ea}.btn-check:active+.btn.btn-active-info,.btn-check:checked+.btn.btn-active-info,.btn.btn-active-info.active,.btn.btn-active-info.show,.btn.btn-active-info:active:not(.btn-active),.btn.btn-active-info:focus:not(.btn-active),.btn.btn-active-info:hover:not(.btn-active),.show>.btn.btn-active-info{color:#fff;border-color:#7239ea;background-color:#7239ea!important}.btn-check:active+.btn.btn-active-info .svg-icon,.btn-check:active+.btn.btn-active-info i,.btn-check:checked+.btn.btn-active-info .svg-icon,.btn-check:checked+.btn.btn-active-info i,.btn.btn-active-info.active .svg-icon,.btn.btn-active-info.active i,.btn.btn-active-info.show .svg-icon,.btn.btn-active-info.show i,.btn.btn-active-info:active:not(.btn-active) .svg-icon,.btn.btn-active-info:active:not(.btn-active) i,.btn.btn-active-info:focus:not(.btn-active) .svg-icon,.btn.btn-active-info:focus:not(.btn-active) i,.btn.btn-active-info:hover:not(.btn-active) .svg-icon,.btn.btn-active-info:hover:not(.btn-active) i,.show>.btn.btn-active-info .svg-icon,.show>.btn.btn-active-info i{color:#fff}.btn-check:active+.btn.btn-active-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-info.dropdown-toggle:after,.btn.btn-active-info.active.dropdown-toggle:after,.btn.btn-active-info.show.dropdown-toggle:after,.btn.btn-active-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-info.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-info,.btn-check:checked+.btn.btn-active-light-info,.btn.btn-active-light-info.active,.btn.btn-active-light-info.show,.btn.btn-active-light-info:active:not(.btn-active),.btn.btn-active-light-info:focus:not(.btn-active),.btn.btn-active-light-info:hover:not(.btn-active),.show>.btn.btn-active-light-info{color:#7239ea;border-color:#f8f5ff;background-color:#f8f5ff!important}.btn-check:active+.btn.btn-active-light-info .svg-icon,.btn-check:active+.btn.btn-active-light-info i,.btn-check:checked+.btn.btn-active-light-info .svg-icon,.btn-check:checked+.btn.btn-active-light-info i,.btn.btn-active-light-info.active .svg-icon,.btn.btn-active-light-info.active i,.btn.btn-active-light-info.show .svg-icon,.btn.btn-active-light-info.show i,.btn.btn-active-light-info:active:not(.btn-active) .svg-icon,.btn.btn-active-light-info:active:not(.btn-active) i,.btn.btn-active-light-info:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-info:focus:not(.btn-active) i,.btn.btn-active-light-info:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-info:hover:not(.btn-active) i,.show>.btn.btn-active-light-info .svg-icon,.show>.btn.btn-active-light-info i{color:#7239ea}.btn-check:active+.btn.btn-active-light-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-info.dropdown-toggle:after,.btn.btn-active-light-info.active.dropdown-toggle:after,.btn.btn-active-light-info.show.dropdown-toggle:after,.btn.btn-active-light-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-info.dropdown-toggle:after{color:#7239ea}.btn.btn-active-light-info.btn-outline:not(.btn-outline-default){border-color:#7239ea!important}.btn.btn-warning{color:#fff;border-color:#ffc700;background-color:#ffc700}.btn.btn-warning .svg-icon,.btn.btn-warning i{color:#fff}.btn.btn-warning.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-warning,.btn-check:checked+.btn.btn-warning,.btn.btn-warning.active,.btn.btn-warning.show,.btn.btn-warning:active:not(.btn-active),.btn.btn-warning:focus:not(.btn-active),.btn.btn-warning:hover:not(.btn-active),.show>.btn.btn-warning{color:#fff;border-color:#f1bc00;background-color:#f1bc00!important}.btn-check:active+.btn.btn-warning .svg-icon,.btn-check:active+.btn.btn-warning i,.btn-check:checked+.btn.btn-warning .svg-icon,.btn-check:checked+.btn.btn-warning i,.btn.btn-warning.active .svg-icon,.btn.btn-warning.active i,.btn.btn-warning.show .svg-icon,.btn.btn-warning.show i,.btn.btn-warning:active:not(.btn-active) .svg-icon,.btn.btn-warning:active:not(.btn-active) i,.btn.btn-warning:focus:not(.btn-active) .svg-icon,.btn.btn-warning:focus:not(.btn-active) i,.btn.btn-warning:hover:not(.btn-active) .svg-icon,.btn.btn-warning:hover:not(.btn-active) i,.show>.btn.btn-warning .svg-icon,.show>.btn.btn-warning i{color:#fff}.btn-check:active+.btn.btn-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-warning.dropdown-toggle:after,.btn.btn-warning.active.dropdown-toggle:after,.btn.btn-warning.show.dropdown-toggle:after,.btn.btn-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-warning.dropdown-toggle:after{color:#fff}.btn.btn-light-warning{color:#ffc700;border-color:#fff8dd;background-color:#fff8dd}.btn.btn-light-warning .svg-icon,.btn.btn-light-warning i{color:#ffc700}.btn.btn-light-warning.dropdown-toggle:after{color:#ffc700}.btn-check:active+.btn.btn-light-warning,.btn-check:checked+.btn.btn-light-warning,.btn.btn-light-warning.active,.btn.btn-light-warning.show,.btn.btn-light-warning:active:not(.btn-active),.btn.btn-light-warning:focus:not(.btn-active),.btn.btn-light-warning:hover:not(.btn-active),.show>.btn.btn-light-warning{color:#fff;border-color:#ffc700;background-color:#ffc700!important}.btn-check:active+.btn.btn-light-warning .svg-icon,.btn-check:active+.btn.btn-light-warning i,.btn-check:checked+.btn.btn-light-warning .svg-icon,.btn-check:checked+.btn.btn-light-warning i,.btn.btn-light-warning.active .svg-icon,.btn.btn-light-warning.active i,.btn.btn-light-warning.show .svg-icon,.btn.btn-light-warning.show i,.btn.btn-light-warning:active:not(.btn-active) .svg-icon,.btn.btn-light-warning:active:not(.btn-active) i,.btn.btn-light-warning:focus:not(.btn-active) .svg-icon,.btn.btn-light-warning:focus:not(.btn-active) i,.btn.btn-light-warning:hover:not(.btn-active) .svg-icon,.btn.btn-light-warning:hover:not(.btn-active) i,.show>.btn.btn-light-warning .svg-icon,.show>.btn.btn-light-warning i{color:#fff}.btn-check:active+.btn.btn-light-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-warning.dropdown-toggle:after,.btn.btn-light-warning.active.dropdown-toggle:after,.btn.btn-light-warning.show.dropdown-toggle:after,.btn.btn-light-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-warning.dropdown-toggle:after{color:#fff}.btn.btn-bg-warning{border-color:#ffc700;background-color:#ffc700}.btn-check:active+.btn.btn-active-warning,.btn-check:checked+.btn.btn-active-warning,.btn.btn-active-warning.active,.btn.btn-active-warning.show,.btn.btn-active-warning:active:not(.btn-active),.btn.btn-active-warning:focus:not(.btn-active),.btn.btn-active-warning:hover:not(.btn-active),.show>.btn.btn-active-warning{color:#fff;border-color:#ffc700;background-color:#ffc700!important}.btn-check:active+.btn.btn-active-warning .svg-icon,.btn-check:active+.btn.btn-active-warning i,.btn-check:checked+.btn.btn-active-warning .svg-icon,.btn-check:checked+.btn.btn-active-warning i,.btn.btn-active-warning.active .svg-icon,.btn.btn-active-warning.active i,.btn.btn-active-warning.show .svg-icon,.btn.btn-active-warning.show i,.btn.btn-active-warning:active:not(.btn-active) .svg-icon,.btn.btn-active-warning:active:not(.btn-active) i,.btn.btn-active-warning:focus:not(.btn-active) .svg-icon,.btn.btn-active-warning:focus:not(.btn-active) i,.btn.btn-active-warning:hover:not(.btn-active) .svg-icon,.btn.btn-active-warning:hover:not(.btn-active) i,.show>.btn.btn-active-warning .svg-icon,.show>.btn.btn-active-warning i{color:#fff}.btn-check:active+.btn.btn-active-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-warning.dropdown-toggle:after,.btn.btn-active-warning.active.dropdown-toggle:after,.btn.btn-active-warning.show.dropdown-toggle:after,.btn.btn-active-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-warning.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-warning,.btn-check:checked+.btn.btn-active-light-warning,.btn.btn-active-light-warning.active,.btn.btn-active-light-warning.show,.btn.btn-active-light-warning:active:not(.btn-active),.btn.btn-active-light-warning:focus:not(.btn-active),.btn.btn-active-light-warning:hover:not(.btn-active),.show>.btn.btn-active-light-warning{color:#ffc700;border-color:#fff8dd;background-color:#fff8dd!important}.btn-check:active+.btn.btn-active-light-warning .svg-icon,.btn-check:active+.btn.btn-active-light-warning i,.btn-check:checked+.btn.btn-active-light-warning .svg-icon,.btn-check:checked+.btn.btn-active-light-warning i,.btn.btn-active-light-warning.active .svg-icon,.btn.btn-active-light-warning.active i,.btn.btn-active-light-warning.show .svg-icon,.btn.btn-active-light-warning.show i,.btn.btn-active-light-warning:active:not(.btn-active) .svg-icon,.btn.btn-active-light-warning:active:not(.btn-active) i,.btn.btn-active-light-warning:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-warning:focus:not(.btn-active) i,.btn.btn-active-light-warning:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-warning:hover:not(.btn-active) i,.show>.btn.btn-active-light-warning .svg-icon,.show>.btn.btn-active-light-warning i{color:#ffc700}.btn-check:active+.btn.btn-active-light-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-warning.dropdown-toggle:after,.btn.btn-active-light-warning.active.dropdown-toggle:after,.btn.btn-active-light-warning.show.dropdown-toggle:after,.btn.btn-active-light-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-warning.dropdown-toggle:after{color:#ffc700}.btn.btn-active-light-warning.btn-outline:not(.btn-outline-default){border-color:#ffc700!important}.btn.btn-danger{color:#fff;border-color:#f1416c;background-color:#f1416c}.btn.btn-danger .svg-icon,.btn.btn-danger i{color:#fff}.btn.btn-danger.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-danger,.btn-check:checked+.btn.btn-danger,.btn.btn-danger.active,.btn.btn-danger.show,.btn.btn-danger:active:not(.btn-active),.btn.btn-danger:focus:not(.btn-active),.btn.btn-danger:hover:not(.btn-active),.show>.btn.btn-danger{color:#fff;border-color:#d9214e;background-color:#d9214e!important}.btn-check:active+.btn.btn-danger .svg-icon,.btn-check:active+.btn.btn-danger i,.btn-check:checked+.btn.btn-danger .svg-icon,.btn-check:checked+.btn.btn-danger i,.btn.btn-danger.active .svg-icon,.btn.btn-danger.active i,.btn.btn-danger.show .svg-icon,.btn.btn-danger.show i,.btn.btn-danger:active:not(.btn-active) .svg-icon,.btn.btn-danger:active:not(.btn-active) i,.btn.btn-danger:focus:not(.btn-active) .svg-icon,.btn.btn-danger:focus:not(.btn-active) i,.btn.btn-danger:hover:not(.btn-active) .svg-icon,.btn.btn-danger:hover:not(.btn-active) i,.show>.btn.btn-danger .svg-icon,.show>.btn.btn-danger i{color:#fff}.btn-check:active+.btn.btn-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-danger.dropdown-toggle:after,.btn.btn-danger.active.dropdown-toggle:after,.btn.btn-danger.show.dropdown-toggle:after,.btn.btn-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-danger.dropdown-toggle:after{color:#fff}.btn.btn-light-danger{color:#f1416c;border-color:#fff5f8;background-color:#fff5f8}.btn.btn-light-danger .svg-icon,.btn.btn-light-danger i{color:#f1416c}.btn.btn-light-danger.dropdown-toggle:after{color:#f1416c}.btn-check:active+.btn.btn-light-danger,.btn-check:checked+.btn.btn-light-danger,.btn.btn-light-danger.active,.btn.btn-light-danger.show,.btn.btn-light-danger:active:not(.btn-active),.btn.btn-light-danger:focus:not(.btn-active),.btn.btn-light-danger:hover:not(.btn-active),.show>.btn.btn-light-danger{color:#fff;border-color:#f1416c;background-color:#f1416c!important}.btn-check:active+.btn.btn-light-danger .svg-icon,.btn-check:active+.btn.btn-light-danger i,.btn-check:checked+.btn.btn-light-danger .svg-icon,.btn-check:checked+.btn.btn-light-danger i,.btn.btn-light-danger.active .svg-icon,.btn.btn-light-danger.active i,.btn.btn-light-danger.show .svg-icon,.btn.btn-light-danger.show i,.btn.btn-light-danger:active:not(.btn-active) .svg-icon,.btn.btn-light-danger:active:not(.btn-active) i,.btn.btn-light-danger:focus:not(.btn-active) .svg-icon,.btn.btn-light-danger:focus:not(.btn-active) i,.btn.btn-light-danger:hover:not(.btn-active) .svg-icon,.btn.btn-light-danger:hover:not(.btn-active) i,.show>.btn.btn-light-danger .svg-icon,.show>.btn.btn-light-danger i{color:#fff}.btn-check:active+.btn.btn-light-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-danger.dropdown-toggle:after,.btn.btn-light-danger.active.dropdown-toggle:after,.btn.btn-light-danger.show.dropdown-toggle:after,.btn.btn-light-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-danger.dropdown-toggle:after{color:#fff}.btn.btn-bg-danger{border-color:#f1416c;background-color:#f1416c}.btn-check:active+.btn.btn-active-danger,.btn-check:checked+.btn.btn-active-danger,.btn.btn-active-danger.active,.btn.btn-active-danger.show,.btn.btn-active-danger:active:not(.btn-active),.btn.btn-active-danger:focus:not(.btn-active),.btn.btn-active-danger:hover:not(.btn-active),.show>.btn.btn-active-danger{color:#fff;border-color:#f1416c;background-color:#f1416c!important}.btn-check:active+.btn.btn-active-danger .svg-icon,.btn-check:active+.btn.btn-active-danger i,.btn-check:checked+.btn.btn-active-danger .svg-icon,.btn-check:checked+.btn.btn-active-danger i,.btn.btn-active-danger.active .svg-icon,.btn.btn-active-danger.active i,.btn.btn-active-danger.show .svg-icon,.btn.btn-active-danger.show i,.btn.btn-active-danger:active:not(.btn-active) .svg-icon,.btn.btn-active-danger:active:not(.btn-active) i,.btn.btn-active-danger:focus:not(.btn-active) .svg-icon,.btn.btn-active-danger:focus:not(.btn-active) i,.btn.btn-active-danger:hover:not(.btn-active) .svg-icon,.btn.btn-active-danger:hover:not(.btn-active) i,.show>.btn.btn-active-danger .svg-icon,.show>.btn.btn-active-danger i{color:#fff}.btn-check:active+.btn.btn-active-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-danger.dropdown-toggle:after,.btn.btn-active-danger.active.dropdown-toggle:after,.btn.btn-active-danger.show.dropdown-toggle:after,.btn.btn-active-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-danger.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-danger,.btn-check:checked+.btn.btn-active-light-danger,.btn.btn-active-light-danger.active,.btn.btn-active-light-danger.show,.btn.btn-active-light-danger:active:not(.btn-active),.btn.btn-active-light-danger:focus:not(.btn-active),.btn.btn-active-light-danger:hover:not(.btn-active),.show>.btn.btn-active-light-danger{color:#f1416c;border-color:#fff5f8;background-color:#fff5f8!important}.btn-check:active+.btn.btn-active-light-danger .svg-icon,.btn-check:active+.btn.btn-active-light-danger i,.btn-check:checked+.btn.btn-active-light-danger .svg-icon,.btn-check:checked+.btn.btn-active-light-danger i,.btn.btn-active-light-danger.active .svg-icon,.btn.btn-active-light-danger.active i,.btn.btn-active-light-danger.show .svg-icon,.btn.btn-active-light-danger.show i,.btn.btn-active-light-danger:active:not(.btn-active) .svg-icon,.btn.btn-active-light-danger:active:not(.btn-active) i,.btn.btn-active-light-danger:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-danger:focus:not(.btn-active) i,.btn.btn-active-light-danger:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-danger:hover:not(.btn-active) i,.show>.btn.btn-active-light-danger .svg-icon,.show>.btn.btn-active-light-danger i{color:#f1416c}.btn-check:active+.btn.btn-active-light-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-danger.dropdown-toggle:after,.btn.btn-active-light-danger.active.dropdown-toggle:after,.btn.btn-active-light-danger.show.dropdown-toggle:after,.btn.btn-active-light-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-danger.dropdown-toggle:after{color:#f1416c}.btn.btn-active-light-danger.btn-outline:not(.btn-outline-default){border-color:#f1416c!important}.btn.btn-dark{color:#fff;border-color:#181c32;background-color:#181c32}.btn.btn-dark .svg-icon,.btn.btn-dark i{color:#fff}.btn.btn-dark.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-dark,.btn-check:checked+.btn.btn-dark,.btn.btn-dark.active,.btn.btn-dark.show,.btn.btn-dark:active:not(.btn-active),.btn.btn-dark:focus:not(.btn-active),.btn.btn-dark:hover:not(.btn-active),.show>.btn.btn-dark{color:#fff;border-color:#131628;background-color:#131628!important}.btn-check:active+.btn.btn-dark .svg-icon,.btn-check:active+.btn.btn-dark i,.btn-check:checked+.btn.btn-dark .svg-icon,.btn-check:checked+.btn.btn-dark i,.btn.btn-dark.active .svg-icon,.btn.btn-dark.active i,.btn.btn-dark.show .svg-icon,.btn.btn-dark.show i,.btn.btn-dark:active:not(.btn-active) .svg-icon,.btn.btn-dark:active:not(.btn-active) i,.btn.btn-dark:focus:not(.btn-active) .svg-icon,.btn.btn-dark:focus:not(.btn-active) i,.btn.btn-dark:hover:not(.btn-active) .svg-icon,.btn.btn-dark:hover:not(.btn-active) i,.show>.btn.btn-dark .svg-icon,.show>.btn.btn-dark i{color:#fff}.btn-check:active+.btn.btn-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-dark.dropdown-toggle:after,.btn.btn-dark.active.dropdown-toggle:after,.btn.btn-dark.show.dropdown-toggle:after,.btn.btn-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-dark.dropdown-toggle:after{color:#fff}.btn.btn-light-dark{color:#181c32;border-color:#eff2f5;background-color:#eff2f5}.btn.btn-light-dark .svg-icon,.btn.btn-light-dark i{color:#181c32}.btn.btn-light-dark.dropdown-toggle:after{color:#181c32}.btn-check:active+.btn.btn-light-dark,.btn-check:checked+.btn.btn-light-dark,.btn.btn-light-dark.active,.btn.btn-light-dark.show,.btn.btn-light-dark:active:not(.btn-active),.btn.btn-light-dark:focus:not(.btn-active),.btn.btn-light-dark:hover:not(.btn-active),.show>.btn.btn-light-dark{color:#fff;border-color:#181c32;background-color:#181c32!important}.btn-check:active+.btn.btn-light-dark .svg-icon,.btn-check:active+.btn.btn-light-dark i,.btn-check:checked+.btn.btn-light-dark .svg-icon,.btn-check:checked+.btn.btn-light-dark i,.btn.btn-light-dark.active .svg-icon,.btn.btn-light-dark.active i,.btn.btn-light-dark.show .svg-icon,.btn.btn-light-dark.show i,.btn.btn-light-dark:active:not(.btn-active) .svg-icon,.btn.btn-light-dark:active:not(.btn-active) i,.btn.btn-light-dark:focus:not(.btn-active) .svg-icon,.btn.btn-light-dark:focus:not(.btn-active) i,.btn.btn-light-dark:hover:not(.btn-active) .svg-icon,.btn.btn-light-dark:hover:not(.btn-active) i,.show>.btn.btn-light-dark .svg-icon,.show>.btn.btn-light-dark i{color:#fff}.btn-check:active+.btn.btn-light-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-dark.dropdown-toggle:after,.btn.btn-light-dark.active.dropdown-toggle:after,.btn.btn-light-dark.show.dropdown-toggle:after,.btn.btn-light-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-dark.dropdown-toggle:after{color:#fff}.btn.btn-bg-dark{border-color:#181c32;background-color:#181c32}.btn-check:active+.btn.btn-active-dark,.btn-check:checked+.btn.btn-active-dark,.btn.btn-active-dark.active,.btn.btn-active-dark.show,.btn.btn-active-dark:active:not(.btn-active),.btn.btn-active-dark:focus:not(.btn-active),.btn.btn-active-dark:hover:not(.btn-active),.show>.btn.btn-active-dark{color:#fff;border-color:#181c32;background-color:#181c32!important}.btn-check:active+.btn.btn-active-dark .svg-icon,.btn-check:active+.btn.btn-active-dark i,.btn-check:checked+.btn.btn-active-dark .svg-icon,.btn-check:checked+.btn.btn-active-dark i,.btn.btn-active-dark.active .svg-icon,.btn.btn-active-dark.active i,.btn.btn-active-dark.show .svg-icon,.btn.btn-active-dark.show i,.btn.btn-active-dark:active:not(.btn-active) .svg-icon,.btn.btn-active-dark:active:not(.btn-active) i,.btn.btn-active-dark:focus:not(.btn-active) .svg-icon,.btn.btn-active-dark:focus:not(.btn-active) i,.btn.btn-active-dark:hover:not(.btn-active) .svg-icon,.btn.btn-active-dark:hover:not(.btn-active) i,.show>.btn.btn-active-dark .svg-icon,.show>.btn.btn-active-dark i{color:#fff}.btn-check:active+.btn.btn-active-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-dark.dropdown-toggle:after,.btn.btn-active-dark.active.dropdown-toggle:after,.btn.btn-active-dark.show.dropdown-toggle:after,.btn.btn-active-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-dark.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-dark,.btn-check:checked+.btn.btn-active-light-dark,.btn.btn-active-light-dark.active,.btn.btn-active-light-dark.show,.btn.btn-active-light-dark:active:not(.btn-active),.btn.btn-active-light-dark:focus:not(.btn-active),.btn.btn-active-light-dark:hover:not(.btn-active),.show>.btn.btn-active-light-dark{color:#181c32;border-color:#eff2f5;background-color:#eff2f5!important}.btn-check:active+.btn.btn-active-light-dark .svg-icon,.btn-check:active+.btn.btn-active-light-dark i,.btn-check:checked+.btn.btn-active-light-dark .svg-icon,.btn-check:checked+.btn.btn-active-light-dark i,.btn.btn-active-light-dark.active .svg-icon,.btn.btn-active-light-dark.active i,.btn.btn-active-light-dark.show .svg-icon,.btn.btn-active-light-dark.show i,.btn.btn-active-light-dark:active:not(.btn-active) .svg-icon,.btn.btn-active-light-dark:active:not(.btn-active) i,.btn.btn-active-light-dark:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-dark:focus:not(.btn-active) i,.btn.btn-active-light-dark:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-dark:hover:not(.btn-active) i,.show>.btn.btn-active-light-dark .svg-icon,.show>.btn.btn-active-light-dark i{color:#181c32}.btn-check:active+.btn.btn-active-light-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-dark.dropdown-toggle:after,.btn.btn-active-light-dark.active.dropdown-toggle:after,.btn.btn-active-light-dark.show.dropdown-toggle:after,.btn.btn-active-light-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-dark.dropdown-toggle:after{color:#181c32}.btn.btn-active-light-dark.btn-outline:not(.btn-outline-default){border-color:#181c32!important}.btn.btn-color-white{color:#fff}.btn.btn-color-white .svg-icon,.btn.btn-color-white i{color:#fff}.btn.btn-color-white.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-color-white,.btn-check:checked+.btn.btn-active-color-white,.btn.btn-active-color-white.active,.btn.btn-active-color-white.show,.btn.btn-active-color-white:active:not(.btn-active),.btn.btn-active-color-white:focus:not(.btn-active),.btn.btn-active-color-white:hover:not(.btn-active),.show>.btn.btn-active-color-white{color:#fff}.btn-check:active+.btn.btn-active-color-white .svg-icon,.btn-check:active+.btn.btn-active-color-white i,.btn-check:checked+.btn.btn-active-color-white .svg-icon,.btn-check:checked+.btn.btn-active-color-white i,.btn.btn-active-color-white.active .svg-icon,.btn.btn-active-color-white.active i,.btn.btn-active-color-white.show .svg-icon,.btn.btn-active-color-white.show i,.btn.btn-active-color-white:active:not(.btn-active) .svg-icon,.btn.btn-active-color-white:active:not(.btn-active) i,.btn.btn-active-color-white:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-white:focus:not(.btn-active) i,.btn.btn-active-color-white:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-white:hover:not(.btn-active) i,.show>.btn.btn-active-color-white .svg-icon,.show>.btn.btn-active-color-white i{color:#fff}.btn-check:active+.btn.btn-active-color-white.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-white.dropdown-toggle:after,.btn.btn-active-color-white.active.dropdown-toggle:after,.btn.btn-active-color-white.show.dropdown-toggle:after,.btn.btn-active-color-white:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-white:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-white:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-white.dropdown-toggle:after{color:#fff}.btn.btn-icon-white .svg-icon,.btn.btn-icon-white i{color:#fff}.btn.btn-icon-white.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-icon-white .svg-icon,.btn-check:active+.btn.btn-active-icon-white i,.btn-check:checked+.btn.btn-active-icon-white .svg-icon,.btn-check:checked+.btn.btn-active-icon-white i,.btn.btn-active-icon-white.active .svg-icon,.btn.btn-active-icon-white.active i,.btn.btn-active-icon-white.show .svg-icon,.btn.btn-active-icon-white.show i,.btn.btn-active-icon-white:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-white:active:not(.btn-active) i,.btn.btn-active-icon-white:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-white:focus:not(.btn-active) i,.btn.btn-active-icon-white:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-white:hover:not(.btn-active) i,.show>.btn.btn-active-icon-white .svg-icon,.show>.btn.btn-active-icon-white i{color:#fff}.btn-check:active+.btn.btn-active-icon-white.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-white.dropdown-toggle:after,.btn.btn-active-icon-white.active.dropdown-toggle:after,.btn.btn-active-icon-white.show.dropdown-toggle:after,.btn.btn-active-icon-white:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-white:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-white:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-white.dropdown-toggle:after{color:#fff}.btn.btn-text-white{color:#fff}.btn-check:active+.btn.btn-active-text-white,.btn-check:checked+.btn.btn-active-text-white,.btn.btn-active-text-white.active,.btn.btn-active-text-white.show,.btn.btn-active-text-white:active:not(.btn-active),.btn.btn-active-text-white:focus:not(.btn-active),.btn.btn-active-text-white:hover:not(.btn-active),.show>.btn.btn-active-text-white{color:#fff}.btn.btn-color-primary{color:#009ef7}.btn.btn-color-primary .svg-icon,.btn.btn-color-primary i{color:#009ef7}.btn.btn-color-primary.dropdown-toggle:after{color:#009ef7}.btn-check:active+.btn.btn-active-color-primary,.btn-check:checked+.btn.btn-active-color-primary,.btn.btn-active-color-primary.active,.btn.btn-active-color-primary.show,.btn.btn-active-color-primary:active:not(.btn-active),.btn.btn-active-color-primary:focus:not(.btn-active),.btn.btn-active-color-primary:hover:not(.btn-active),.show>.btn.btn-active-color-primary{color:#009ef7}.btn-check:active+.btn.btn-active-color-primary .svg-icon,.btn-check:active+.btn.btn-active-color-primary i,.btn-check:checked+.btn.btn-active-color-primary .svg-icon,.btn-check:checked+.btn.btn-active-color-primary i,.btn.btn-active-color-primary.active .svg-icon,.btn.btn-active-color-primary.active i,.btn.btn-active-color-primary.show .svg-icon,.btn.btn-active-color-primary.show i,.btn.btn-active-color-primary:active:not(.btn-active) .svg-icon,.btn.btn-active-color-primary:active:not(.btn-active) i,.btn.btn-active-color-primary:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-primary:focus:not(.btn-active) i,.btn.btn-active-color-primary:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-primary:hover:not(.btn-active) i,.show>.btn.btn-active-color-primary .svg-icon,.show>.btn.btn-active-color-primary i{color:#009ef7}.btn-check:active+.btn.btn-active-color-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-primary.dropdown-toggle:after,.btn.btn-active-color-primary.active.dropdown-toggle:after,.btn.btn-active-color-primary.show.dropdown-toggle:after,.btn.btn-active-color-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-primary.dropdown-toggle:after{color:#009ef7}.btn.btn-icon-primary .svg-icon,.btn.btn-icon-primary i{color:#009ef7}.btn.btn-icon-primary.dropdown-toggle:after{color:#009ef7}.btn-check:active+.btn.btn-active-icon-primary .svg-icon,.btn-check:active+.btn.btn-active-icon-primary i,.btn-check:checked+.btn.btn-active-icon-primary .svg-icon,.btn-check:checked+.btn.btn-active-icon-primary i,.btn.btn-active-icon-primary.active .svg-icon,.btn.btn-active-icon-primary.active i,.btn.btn-active-icon-primary.show .svg-icon,.btn.btn-active-icon-primary.show i,.btn.btn-active-icon-primary:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-primary:active:not(.btn-active) i,.btn.btn-active-icon-primary:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-primary:focus:not(.btn-active) i,.btn.btn-active-icon-primary:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-primary:hover:not(.btn-active) i,.show>.btn.btn-active-icon-primary .svg-icon,.show>.btn.btn-active-icon-primary i{color:#009ef7}.btn-check:active+.btn.btn-active-icon-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-primary.dropdown-toggle:after,.btn.btn-active-icon-primary.active.dropdown-toggle:after,.btn.btn-active-icon-primary.show.dropdown-toggle:after,.btn.btn-active-icon-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-primary.dropdown-toggle:after{color:#009ef7}.btn.btn-text-primary{color:#009ef7}.btn-check:active+.btn.btn-active-text-primary,.btn-check:checked+.btn.btn-active-text-primary,.btn.btn-active-text-primary.active,.btn.btn-active-text-primary.show,.btn.btn-active-text-primary:active:not(.btn-active),.btn.btn-active-text-primary:focus:not(.btn-active),.btn.btn-active-text-primary:hover:not(.btn-active),.show>.btn.btn-active-text-primary{color:#009ef7}.btn.btn-color-secondary{color:#e4e6ef}.btn.btn-color-secondary .svg-icon,.btn.btn-color-secondary i{color:#e4e6ef}.btn.btn-color-secondary.dropdown-toggle:after{color:#e4e6ef}.btn-check:active+.btn.btn-active-color-secondary,.btn-check:checked+.btn.btn-active-color-secondary,.btn.btn-active-color-secondary.active,.btn.btn-active-color-secondary.show,.btn.btn-active-color-secondary:active:not(.btn-active),.btn.btn-active-color-secondary:focus:not(.btn-active),.btn.btn-active-color-secondary:hover:not(.btn-active),.show>.btn.btn-active-color-secondary{color:#e4e6ef}.btn-check:active+.btn.btn-active-color-secondary .svg-icon,.btn-check:active+.btn.btn-active-color-secondary i,.btn-check:checked+.btn.btn-active-color-secondary .svg-icon,.btn-check:checked+.btn.btn-active-color-secondary i,.btn.btn-active-color-secondary.active .svg-icon,.btn.btn-active-color-secondary.active i,.btn.btn-active-color-secondary.show .svg-icon,.btn.btn-active-color-secondary.show i,.btn.btn-active-color-secondary:active:not(.btn-active) .svg-icon,.btn.btn-active-color-secondary:active:not(.btn-active) i,.btn.btn-active-color-secondary:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-secondary:focus:not(.btn-active) i,.btn.btn-active-color-secondary:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-secondary:hover:not(.btn-active) i,.show>.btn.btn-active-color-secondary .svg-icon,.show>.btn.btn-active-color-secondary i{color:#e4e6ef}.btn-check:active+.btn.btn-active-color-secondary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-secondary.dropdown-toggle:after,.btn.btn-active-color-secondary.active.dropdown-toggle:after,.btn.btn-active-color-secondary.show.dropdown-toggle:after,.btn.btn-active-color-secondary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-secondary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-secondary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-secondary.dropdown-toggle:after{color:#e4e6ef}.btn.btn-icon-secondary .svg-icon,.btn.btn-icon-secondary i{color:#e4e6ef}.btn.btn-icon-secondary.dropdown-toggle:after{color:#e4e6ef}.btn-check:active+.btn.btn-active-icon-secondary .svg-icon,.btn-check:active+.btn.btn-active-icon-secondary i,.btn-check:checked+.btn.btn-active-icon-secondary .svg-icon,.btn-check:checked+.btn.btn-active-icon-secondary i,.btn.btn-active-icon-secondary.active .svg-icon,.btn.btn-active-icon-secondary.active i,.btn.btn-active-icon-secondary.show .svg-icon,.btn.btn-active-icon-secondary.show i,.btn.btn-active-icon-secondary:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-secondary:active:not(.btn-active) i,.btn.btn-active-icon-secondary:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-secondary:focus:not(.btn-active) i,.btn.btn-active-icon-secondary:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-secondary:hover:not(.btn-active) i,.show>.btn.btn-active-icon-secondary .svg-icon,.show>.btn.btn-active-icon-secondary i{color:#e4e6ef}.btn-check:active+.btn.btn-active-icon-secondary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-secondary.dropdown-toggle:after,.btn.btn-active-icon-secondary.active.dropdown-toggle:after,.btn.btn-active-icon-secondary.show.dropdown-toggle:after,.btn.btn-active-icon-secondary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-secondary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-secondary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-secondary.dropdown-toggle:after{color:#e4e6ef}.btn.btn-text-secondary{color:#e4e6ef}.btn-check:active+.btn.btn-active-text-secondary,.btn-check:checked+.btn.btn-active-text-secondary,.btn.btn-active-text-secondary.active,.btn.btn-active-text-secondary.show,.btn.btn-active-text-secondary:active:not(.btn-active),.btn.btn-active-text-secondary:focus:not(.btn-active),.btn.btn-active-text-secondary:hover:not(.btn-active),.show>.btn.btn-active-text-secondary{color:#e4e6ef}.btn.btn-color-light{color:#f5f8fa}.btn.btn-color-light .svg-icon,.btn.btn-color-light i{color:#f5f8fa}.btn.btn-color-light.dropdown-toggle:after{color:#f5f8fa}.btn-check:active+.btn.btn-active-color-light,.btn-check:checked+.btn.btn-active-color-light,.btn.btn-active-color-light.active,.btn.btn-active-color-light.show,.btn.btn-active-color-light:active:not(.btn-active),.btn.btn-active-color-light:focus:not(.btn-active),.btn.btn-active-color-light:hover:not(.btn-active),.show>.btn.btn-active-color-light{color:#f5f8fa}.btn-check:active+.btn.btn-active-color-light .svg-icon,.btn-check:active+.btn.btn-active-color-light i,.btn-check:checked+.btn.btn-active-color-light .svg-icon,.btn-check:checked+.btn.btn-active-color-light i,.btn.btn-active-color-light.active .svg-icon,.btn.btn-active-color-light.active i,.btn.btn-active-color-light.show .svg-icon,.btn.btn-active-color-light.show i,.btn.btn-active-color-light:active:not(.btn-active) .svg-icon,.btn.btn-active-color-light:active:not(.btn-active) i,.btn.btn-active-color-light:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-light:focus:not(.btn-active) i,.btn.btn-active-color-light:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-light:hover:not(.btn-active) i,.show>.btn.btn-active-color-light .svg-icon,.show>.btn.btn-active-color-light i{color:#f5f8fa}.btn-check:active+.btn.btn-active-color-light.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-light.dropdown-toggle:after,.btn.btn-active-color-light.active.dropdown-toggle:after,.btn.btn-active-color-light.show.dropdown-toggle:after,.btn.btn-active-color-light:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-light:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-light:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-light.dropdown-toggle:after{color:#f5f8fa}.btn.btn-icon-light .svg-icon,.btn.btn-icon-light i{color:#f5f8fa}.btn.btn-icon-light.dropdown-toggle:after{color:#f5f8fa}.btn-check:active+.btn.btn-active-icon-light .svg-icon,.btn-check:active+.btn.btn-active-icon-light i,.btn-check:checked+.btn.btn-active-icon-light .svg-icon,.btn-check:checked+.btn.btn-active-icon-light i,.btn.btn-active-icon-light.active .svg-icon,.btn.btn-active-icon-light.active i,.btn.btn-active-icon-light.show .svg-icon,.btn.btn-active-icon-light.show i,.btn.btn-active-icon-light:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-light:active:not(.btn-active) i,.btn.btn-active-icon-light:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-light:focus:not(.btn-active) i,.btn.btn-active-icon-light:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-light:hover:not(.btn-active) i,.show>.btn.btn-active-icon-light .svg-icon,.show>.btn.btn-active-icon-light i{color:#f5f8fa}.btn-check:active+.btn.btn-active-icon-light.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-light.dropdown-toggle:after,.btn.btn-active-icon-light.active.dropdown-toggle:after,.btn.btn-active-icon-light.show.dropdown-toggle:after,.btn.btn-active-icon-light:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-light:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-light:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-light.dropdown-toggle:after{color:#f5f8fa}.btn.btn-text-light{color:#f5f8fa}.btn-check:active+.btn.btn-active-text-light,.btn-check:checked+.btn.btn-active-text-light,.btn.btn-active-text-light.active,.btn.btn-active-text-light.show,.btn.btn-active-text-light:active:not(.btn-active),.btn.btn-active-text-light:focus:not(.btn-active),.btn.btn-active-text-light:hover:not(.btn-active),.show>.btn.btn-active-text-light{color:#f5f8fa}.btn.btn-color-success{color:#50cd89}.btn.btn-color-success .svg-icon,.btn.btn-color-success i{color:#50cd89}.btn.btn-color-success.dropdown-toggle:after{color:#50cd89}.btn-check:active+.btn.btn-active-color-success,.btn-check:checked+.btn.btn-active-color-success,.btn.btn-active-color-success.active,.btn.btn-active-color-success.show,.btn.btn-active-color-success:active:not(.btn-active),.btn.btn-active-color-success:focus:not(.btn-active),.btn.btn-active-color-success:hover:not(.btn-active),.show>.btn.btn-active-color-success{color:#50cd89}.btn-check:active+.btn.btn-active-color-success .svg-icon,.btn-check:active+.btn.btn-active-color-success i,.btn-check:checked+.btn.btn-active-color-success .svg-icon,.btn-check:checked+.btn.btn-active-color-success i,.btn.btn-active-color-success.active .svg-icon,.btn.btn-active-color-success.active i,.btn.btn-active-color-success.show .svg-icon,.btn.btn-active-color-success.show i,.btn.btn-active-color-success:active:not(.btn-active) .svg-icon,.btn.btn-active-color-success:active:not(.btn-active) i,.btn.btn-active-color-success:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-success:focus:not(.btn-active) i,.btn.btn-active-color-success:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-success:hover:not(.btn-active) i,.show>.btn.btn-active-color-success .svg-icon,.show>.btn.btn-active-color-success i{color:#50cd89}.btn-check:active+.btn.btn-active-color-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-success.dropdown-toggle:after,.btn.btn-active-color-success.active.dropdown-toggle:after,.btn.btn-active-color-success.show.dropdown-toggle:after,.btn.btn-active-color-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-success.dropdown-toggle:after{color:#50cd89}.btn.btn-icon-success .svg-icon,.btn.btn-icon-success i{color:#50cd89}.btn.btn-icon-success.dropdown-toggle:after{color:#50cd89}.btn-check:active+.btn.btn-active-icon-success .svg-icon,.btn-check:active+.btn.btn-active-icon-success i,.btn-check:checked+.btn.btn-active-icon-success .svg-icon,.btn-check:checked+.btn.btn-active-icon-success i,.btn.btn-active-icon-success.active .svg-icon,.btn.btn-active-icon-success.active i,.btn.btn-active-icon-success.show .svg-icon,.btn.btn-active-icon-success.show i,.btn.btn-active-icon-success:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-success:active:not(.btn-active) i,.btn.btn-active-icon-success:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-success:focus:not(.btn-active) i,.btn.btn-active-icon-success:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-success:hover:not(.btn-active) i,.show>.btn.btn-active-icon-success .svg-icon,.show>.btn.btn-active-icon-success i{color:#50cd89}.btn-check:active+.btn.btn-active-icon-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-success.dropdown-toggle:after,.btn.btn-active-icon-success.active.dropdown-toggle:after,.btn.btn-active-icon-success.show.dropdown-toggle:after,.btn.btn-active-icon-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-success.dropdown-toggle:after{color:#50cd89}.btn.btn-text-success{color:#50cd89}.btn-check:active+.btn.btn-active-text-success,.btn-check:checked+.btn.btn-active-text-success,.btn.btn-active-text-success.active,.btn.btn-active-text-success.show,.btn.btn-active-text-success:active:not(.btn-active),.btn.btn-active-text-success:focus:not(.btn-active),.btn.btn-active-text-success:hover:not(.btn-active),.show>.btn.btn-active-text-success{color:#50cd89}.btn.btn-color-info{color:#7239ea}.btn.btn-color-info .svg-icon,.btn.btn-color-info i{color:#7239ea}.btn.btn-color-info.dropdown-toggle:after{color:#7239ea}.btn-check:active+.btn.btn-active-color-info,.btn-check:checked+.btn.btn-active-color-info,.btn.btn-active-color-info.active,.btn.btn-active-color-info.show,.btn.btn-active-color-info:active:not(.btn-active),.btn.btn-active-color-info:focus:not(.btn-active),.btn.btn-active-color-info:hover:not(.btn-active),.show>.btn.btn-active-color-info{color:#7239ea}.btn-check:active+.btn.btn-active-color-info .svg-icon,.btn-check:active+.btn.btn-active-color-info i,.btn-check:checked+.btn.btn-active-color-info .svg-icon,.btn-check:checked+.btn.btn-active-color-info i,.btn.btn-active-color-info.active .svg-icon,.btn.btn-active-color-info.active i,.btn.btn-active-color-info.show .svg-icon,.btn.btn-active-color-info.show i,.btn.btn-active-color-info:active:not(.btn-active) .svg-icon,.btn.btn-active-color-info:active:not(.btn-active) i,.btn.btn-active-color-info:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-info:focus:not(.btn-active) i,.btn.btn-active-color-info:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-info:hover:not(.btn-active) i,.show>.btn.btn-active-color-info .svg-icon,.show>.btn.btn-active-color-info i{color:#7239ea}.btn-check:active+.btn.btn-active-color-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-info.dropdown-toggle:after,.btn.btn-active-color-info.active.dropdown-toggle:after,.btn.btn-active-color-info.show.dropdown-toggle:after,.btn.btn-active-color-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-info.dropdown-toggle:after{color:#7239ea}.btn.btn-icon-info .svg-icon,.btn.btn-icon-info i{color:#7239ea}.btn.btn-icon-info.dropdown-toggle:after{color:#7239ea}.btn-check:active+.btn.btn-active-icon-info .svg-icon,.btn-check:active+.btn.btn-active-icon-info i,.btn-check:checked+.btn.btn-active-icon-info .svg-icon,.btn-check:checked+.btn.btn-active-icon-info i,.btn.btn-active-icon-info.active .svg-icon,.btn.btn-active-icon-info.active i,.btn.btn-active-icon-info.show .svg-icon,.btn.btn-active-icon-info.show i,.btn.btn-active-icon-info:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-info:active:not(.btn-active) i,.btn.btn-active-icon-info:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-info:focus:not(.btn-active) i,.btn.btn-active-icon-info:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-info:hover:not(.btn-active) i,.show>.btn.btn-active-icon-info .svg-icon,.show>.btn.btn-active-icon-info i{color:#7239ea}.btn-check:active+.btn.btn-active-icon-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-info.dropdown-toggle:after,.btn.btn-active-icon-info.active.dropdown-toggle:after,.btn.btn-active-icon-info.show.dropdown-toggle:after,.btn.btn-active-icon-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-info.dropdown-toggle:after{color:#7239ea}.btn.btn-text-info{color:#7239ea}.btn-check:active+.btn.btn-active-text-info,.btn-check:checked+.btn.btn-active-text-info,.btn.btn-active-text-info.active,.btn.btn-active-text-info.show,.btn.btn-active-text-info:active:not(.btn-active),.btn.btn-active-text-info:focus:not(.btn-active),.btn.btn-active-text-info:hover:not(.btn-active),.show>.btn.btn-active-text-info{color:#7239ea}.btn.btn-color-warning{color:#ffc700}.btn.btn-color-warning .svg-icon,.btn.btn-color-warning i{color:#ffc700}.btn.btn-color-warning.dropdown-toggle:after{color:#ffc700}.btn-check:active+.btn.btn-active-color-warning,.btn-check:checked+.btn.btn-active-color-warning,.btn.btn-active-color-warning.active,.btn.btn-active-color-warning.show,.btn.btn-active-color-warning:active:not(.btn-active),.btn.btn-active-color-warning:focus:not(.btn-active),.btn.btn-active-color-warning:hover:not(.btn-active),.show>.btn.btn-active-color-warning{color:#ffc700}.btn-check:active+.btn.btn-active-color-warning .svg-icon,.btn-check:active+.btn.btn-active-color-warning i,.btn-check:checked+.btn.btn-active-color-warning .svg-icon,.btn-check:checked+.btn.btn-active-color-warning i,.btn.btn-active-color-warning.active .svg-icon,.btn.btn-active-color-warning.active i,.btn.btn-active-color-warning.show .svg-icon,.btn.btn-active-color-warning.show i,.btn.btn-active-color-warning:active:not(.btn-active) .svg-icon,.btn.btn-active-color-warning:active:not(.btn-active) i,.btn.btn-active-color-warning:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-warning:focus:not(.btn-active) i,.btn.btn-active-color-warning:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-warning:hover:not(.btn-active) i,.show>.btn.btn-active-color-warning .svg-icon,.show>.btn.btn-active-color-warning i{color:#ffc700}.btn-check:active+.btn.btn-active-color-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-warning.dropdown-toggle:after,.btn.btn-active-color-warning.active.dropdown-toggle:after,.btn.btn-active-color-warning.show.dropdown-toggle:after,.btn.btn-active-color-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-warning.dropdown-toggle:after{color:#ffc700}.btn.btn-icon-warning .svg-icon,.btn.btn-icon-warning i{color:#ffc700}.btn.btn-icon-warning.dropdown-toggle:after{color:#ffc700}.btn-check:active+.btn.btn-active-icon-warning .svg-icon,.btn-check:active+.btn.btn-active-icon-warning i,.btn-check:checked+.btn.btn-active-icon-warning .svg-icon,.btn-check:checked+.btn.btn-active-icon-warning i,.btn.btn-active-icon-warning.active .svg-icon,.btn.btn-active-icon-warning.active i,.btn.btn-active-icon-warning.show .svg-icon,.btn.btn-active-icon-warning.show i,.btn.btn-active-icon-warning:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-warning:active:not(.btn-active) i,.btn.btn-active-icon-warning:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-warning:focus:not(.btn-active) i,.btn.btn-active-icon-warning:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-warning:hover:not(.btn-active) i,.show>.btn.btn-active-icon-warning .svg-icon,.show>.btn.btn-active-icon-warning i{color:#ffc700}.btn-check:active+.btn.btn-active-icon-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-warning.dropdown-toggle:after,.btn.btn-active-icon-warning.active.dropdown-toggle:after,.btn.btn-active-icon-warning.show.dropdown-toggle:after,.btn.btn-active-icon-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-warning.dropdown-toggle:after{color:#ffc700}.btn.btn-text-warning{color:#ffc700}.btn-check:active+.btn.btn-active-text-warning,.btn-check:checked+.btn.btn-active-text-warning,.btn.btn-active-text-warning.active,.btn.btn-active-text-warning.show,.btn.btn-active-text-warning:active:not(.btn-active),.btn.btn-active-text-warning:focus:not(.btn-active),.btn.btn-active-text-warning:hover:not(.btn-active),.show>.btn.btn-active-text-warning{color:#ffc700}.btn.btn-color-danger{color:#f1416c}.btn.btn-color-danger .svg-icon,.btn.btn-color-danger i{color:#f1416c}.btn.btn-color-danger.dropdown-toggle:after{color:#f1416c}.btn-check:active+.btn.btn-active-color-danger,.btn-check:checked+.btn.btn-active-color-danger,.btn.btn-active-color-danger.active,.btn.btn-active-color-danger.show,.btn.btn-active-color-danger:active:not(.btn-active),.btn.btn-active-color-danger:focus:not(.btn-active),.btn.btn-active-color-danger:hover:not(.btn-active),.show>.btn.btn-active-color-danger{color:#f1416c}.btn-check:active+.btn.btn-active-color-danger .svg-icon,.btn-check:active+.btn.btn-active-color-danger i,.btn-check:checked+.btn.btn-active-color-danger .svg-icon,.btn-check:checked+.btn.btn-active-color-danger i,.btn.btn-active-color-danger.active .svg-icon,.btn.btn-active-color-danger.active i,.btn.btn-active-color-danger.show .svg-icon,.btn.btn-active-color-danger.show i,.btn.btn-active-color-danger:active:not(.btn-active) .svg-icon,.btn.btn-active-color-danger:active:not(.btn-active) i,.btn.btn-active-color-danger:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-danger:focus:not(.btn-active) i,.btn.btn-active-color-danger:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-danger:hover:not(.btn-active) i,.show>.btn.btn-active-color-danger .svg-icon,.show>.btn.btn-active-color-danger i{color:#f1416c}.btn-check:active+.btn.btn-active-color-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-danger.dropdown-toggle:after,.btn.btn-active-color-danger.active.dropdown-toggle:after,.btn.btn-active-color-danger.show.dropdown-toggle:after,.btn.btn-active-color-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-danger.dropdown-toggle:after{color:#f1416c}.btn.btn-icon-danger .svg-icon,.btn.btn-icon-danger i{color:#f1416c}.btn.btn-icon-danger.dropdown-toggle:after{color:#f1416c}.btn-check:active+.btn.btn-active-icon-danger .svg-icon,.btn-check:active+.btn.btn-active-icon-danger i,.btn-check:checked+.btn.btn-active-icon-danger .svg-icon,.btn-check:checked+.btn.btn-active-icon-danger i,.btn.btn-active-icon-danger.active .svg-icon,.btn.btn-active-icon-danger.active i,.btn.btn-active-icon-danger.show .svg-icon,.btn.btn-active-icon-danger.show i,.btn.btn-active-icon-danger:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-danger:active:not(.btn-active) i,.btn.btn-active-icon-danger:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-danger:focus:not(.btn-active) i,.btn.btn-active-icon-danger:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-danger:hover:not(.btn-active) i,.show>.btn.btn-active-icon-danger .svg-icon,.show>.btn.btn-active-icon-danger i{color:#f1416c}.btn-check:active+.btn.btn-active-icon-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-danger.dropdown-toggle:after,.btn.btn-active-icon-danger.active.dropdown-toggle:after,.btn.btn-active-icon-danger.show.dropdown-toggle:after,.btn.btn-active-icon-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-danger.dropdown-toggle:after{color:#f1416c}.btn.btn-text-danger{color:#f1416c}.btn-check:active+.btn.btn-active-text-danger,.btn-check:checked+.btn.btn-active-text-danger,.btn.btn-active-text-danger.active,.btn.btn-active-text-danger.show,.btn.btn-active-text-danger:active:not(.btn-active),.btn.btn-active-text-danger:focus:not(.btn-active),.btn.btn-active-text-danger:hover:not(.btn-active),.show>.btn.btn-active-text-danger{color:#f1416c}.btn.btn-color-dark{color:#181c32}.btn.btn-color-dark .svg-icon,.btn.btn-color-dark i{color:#181c32}.btn.btn-color-dark.dropdown-toggle:after{color:#181c32}.btn-check:active+.btn.btn-active-color-dark,.btn-check:checked+.btn.btn-active-color-dark,.btn.btn-active-color-dark.active,.btn.btn-active-color-dark.show,.btn.btn-active-color-dark:active:not(.btn-active),.btn.btn-active-color-dark:focus:not(.btn-active),.btn.btn-active-color-dark:hover:not(.btn-active),.show>.btn.btn-active-color-dark{color:#181c32}.btn-check:active+.btn.btn-active-color-dark .svg-icon,.btn-check:active+.btn.btn-active-color-dark i,.btn-check:checked+.btn.btn-active-color-dark .svg-icon,.btn-check:checked+.btn.btn-active-color-dark i,.btn.btn-active-color-dark.active .svg-icon,.btn.btn-active-color-dark.active i,.btn.btn-active-color-dark.show .svg-icon,.btn.btn-active-color-dark.show i,.btn.btn-active-color-dark:active:not(.btn-active) .svg-icon,.btn.btn-active-color-dark:active:not(.btn-active) i,.btn.btn-active-color-dark:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-dark:focus:not(.btn-active) i,.btn.btn-active-color-dark:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-dark:hover:not(.btn-active) i,.show>.btn.btn-active-color-dark .svg-icon,.show>.btn.btn-active-color-dark i{color:#181c32}.btn-check:active+.btn.btn-active-color-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-dark.dropdown-toggle:after,.btn.btn-active-color-dark.active.dropdown-toggle:after,.btn.btn-active-color-dark.show.dropdown-toggle:after,.btn.btn-active-color-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-dark.dropdown-toggle:after{color:#181c32}.btn.btn-icon-dark .svg-icon,.btn.btn-icon-dark i{color:#181c32}.btn.btn-icon-dark.dropdown-toggle:after{color:#181c32}.btn-check:active+.btn.btn-active-icon-dark .svg-icon,.btn-check:active+.btn.btn-active-icon-dark i,.btn-check:checked+.btn.btn-active-icon-dark .svg-icon,.btn-check:checked+.btn.btn-active-icon-dark i,.btn.btn-active-icon-dark.active .svg-icon,.btn.btn-active-icon-dark.active i,.btn.btn-active-icon-dark.show .svg-icon,.btn.btn-active-icon-dark.show i,.btn.btn-active-icon-dark:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-dark:active:not(.btn-active) i,.btn.btn-active-icon-dark:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-dark:focus:not(.btn-active) i,.btn.btn-active-icon-dark:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-dark:hover:not(.btn-active) i,.show>.btn.btn-active-icon-dark .svg-icon,.show>.btn.btn-active-icon-dark i{color:#181c32}.btn-check:active+.btn.btn-active-icon-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-dark.dropdown-toggle:after,.btn.btn-active-icon-dark.active.dropdown-toggle:after,.btn.btn-active-icon-dark.show.dropdown-toggle:after,.btn.btn-active-icon-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-dark.dropdown-toggle:after{color:#181c32}.btn.btn-text-dark{color:#181c32}.btn-check:active+.btn.btn-active-text-dark,.btn-check:checked+.btn.btn-active-text-dark,.btn.btn-active-text-dark.active,.btn.btn-active-text-dark.show,.btn.btn-active-text-dark:active:not(.btn-active),.btn.btn-active-text-dark:focus:not(.btn-active),.btn.btn-active-text-dark:hover:not(.btn-active),.show>.btn.btn-active-text-dark{color:#181c32}.btn.btn-color-muted{color:#a1a5b7}.btn.btn-color-muted .svg-icon,.btn.btn-color-muted i{color:#a1a5b7}.btn.btn-color-muted.dropdown-toggle:after{color:#a1a5b7}.btn-check:active+.btn.btn-active-color-muted,.btn-check:checked+.btn.btn-active-color-muted,.btn.btn-active-color-muted.active,.btn.btn-active-color-muted.show,.btn.btn-active-color-muted:active:not(.btn-active),.btn.btn-active-color-muted:focus:not(.btn-active),.btn.btn-active-color-muted:hover:not(.btn-active),.show>.btn.btn-active-color-muted{color:#a1a5b7}.btn-check:active+.btn.btn-active-color-muted .svg-icon,.btn-check:active+.btn.btn-active-color-muted i,.btn-check:checked+.btn.btn-active-color-muted .svg-icon,.btn-check:checked+.btn.btn-active-color-muted i,.btn.btn-active-color-muted.active .svg-icon,.btn.btn-active-color-muted.active i,.btn.btn-active-color-muted.show .svg-icon,.btn.btn-active-color-muted.show i,.btn.btn-active-color-muted:active:not(.btn-active) .svg-icon,.btn.btn-active-color-muted:active:not(.btn-active) i,.btn.btn-active-color-muted:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-muted:focus:not(.btn-active) i,.btn.btn-active-color-muted:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-muted:hover:not(.btn-active) i,.show>.btn.btn-active-color-muted .svg-icon,.show>.btn.btn-active-color-muted i{color:#a1a5b7}.btn-check:active+.btn.btn-active-color-muted.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-muted.dropdown-toggle:after,.btn.btn-active-color-muted.active.dropdown-toggle:after,.btn.btn-active-color-muted.show.dropdown-toggle:after,.btn.btn-active-color-muted:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-muted:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-muted:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-muted.dropdown-toggle:after{color:#a1a5b7}.btn.btn-icon-muted .svg-icon,.btn.btn-icon-muted i{color:#a1a5b7}.btn.btn-icon-muted.dropdown-toggle:after{color:#a1a5b7}.btn-check:active+.btn.btn-active-icon-muted .svg-icon,.btn-check:active+.btn.btn-active-icon-muted i,.btn-check:checked+.btn.btn-active-icon-muted .svg-icon,.btn-check:checked+.btn.btn-active-icon-muted i,.btn.btn-active-icon-muted.active .svg-icon,.btn.btn-active-icon-muted.active i,.btn.btn-active-icon-muted.show .svg-icon,.btn.btn-active-icon-muted.show i,.btn.btn-active-icon-muted:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-muted:active:not(.btn-active) i,.btn.btn-active-icon-muted:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-muted:focus:not(.btn-active) i,.btn.btn-active-icon-muted:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-muted:hover:not(.btn-active) i,.show>.btn.btn-active-icon-muted .svg-icon,.show>.btn.btn-active-icon-muted i{color:#a1a5b7}.btn-check:active+.btn.btn-active-icon-muted.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-muted.dropdown-toggle:after,.btn.btn-active-icon-muted.active.dropdown-toggle:after,.btn.btn-active-icon-muted.show.dropdown-toggle:after,.btn.btn-active-icon-muted:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-muted:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-muted:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-muted.dropdown-toggle:after{color:#a1a5b7}.btn.btn-text-muted{color:#a1a5b7}.btn-check:active+.btn.btn-active-text-muted,.btn-check:checked+.btn.btn-active-text-muted,.btn.btn-active-text-muted.active,.btn.btn-active-text-muted.show,.btn.btn-active-text-muted:active:not(.btn-active),.btn.btn-active-text-muted:focus:not(.btn-active),.btn.btn-active-text-muted:hover:not(.btn-active),.show>.btn.btn-active-text-muted{color:#a1a5b7}.btn.btn-color-gray-100{color:#f5f8fa}.btn.btn-color-gray-100 .svg-icon,.btn.btn-color-gray-100 i{color:#f5f8fa}.btn.btn-color-gray-100.dropdown-toggle:after{color:#f5f8fa}.btn-check:active+.btn.btn-active-color-gray-100,.btn-check:checked+.btn.btn-active-color-gray-100,.btn.btn-active-color-gray-100.active,.btn.btn-active-color-gray-100.show,.btn.btn-active-color-gray-100:active:not(.btn-active),.btn.btn-active-color-gray-100:focus:not(.btn-active),.btn.btn-active-color-gray-100:hover:not(.btn-active),.show>.btn.btn-active-color-gray-100{color:#f5f8fa}.btn-check:active+.btn.btn-active-color-gray-100 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-100 i,.btn-check:checked+.btn.btn-active-color-gray-100 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-100 i,.btn.btn-active-color-gray-100.active .svg-icon,.btn.btn-active-color-gray-100.active i,.btn.btn-active-color-gray-100.show .svg-icon,.btn.btn-active-color-gray-100.show i,.btn.btn-active-color-gray-100:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-100:active:not(.btn-active) i,.btn.btn-active-color-gray-100:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-100:focus:not(.btn-active) i,.btn.btn-active-color-gray-100:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-100:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-100 .svg-icon,.show>.btn.btn-active-color-gray-100 i{color:#f5f8fa}.btn-check:active+.btn.btn-active-color-gray-100.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-100.dropdown-toggle:after,.btn.btn-active-color-gray-100.active.dropdown-toggle:after,.btn.btn-active-color-gray-100.show.dropdown-toggle:after,.btn.btn-active-color-gray-100:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-100:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-100:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-100.dropdown-toggle:after{color:#f5f8fa}.btn.btn-icon-gray-100 .svg-icon,.btn.btn-icon-gray-100 i{color:#f5f8fa}.btn.btn-icon-gray-100.dropdown-toggle:after{color:#f5f8fa}.btn-check:active+.btn.btn-active-icon-gray-100 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-100 i,.btn-check:checked+.btn.btn-active-icon-gray-100 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-100 i,.btn.btn-active-icon-gray-100.active .svg-icon,.btn.btn-active-icon-gray-100.active i,.btn.btn-active-icon-gray-100.show .svg-icon,.btn.btn-active-icon-gray-100.show i,.btn.btn-active-icon-gray-100:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-100:active:not(.btn-active) i,.btn.btn-active-icon-gray-100:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-100:focus:not(.btn-active) i,.btn.btn-active-icon-gray-100:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-100:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-100 .svg-icon,.show>.btn.btn-active-icon-gray-100 i{color:#f5f8fa}.btn-check:active+.btn.btn-active-icon-gray-100.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-100.dropdown-toggle:after,.btn.btn-active-icon-gray-100.active.dropdown-toggle:after,.btn.btn-active-icon-gray-100.show.dropdown-toggle:after,.btn.btn-active-icon-gray-100:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-100:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-100:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-100.dropdown-toggle:after{color:#f5f8fa}.btn.btn-text-gray-100{color:#f5f8fa}.btn-check:active+.btn.btn-active-text-gray-100,.btn-check:checked+.btn.btn-active-text-gray-100,.btn.btn-active-text-gray-100.active,.btn.btn-active-text-gray-100.show,.btn.btn-active-text-gray-100:active:not(.btn-active),.btn.btn-active-text-gray-100:focus:not(.btn-active),.btn.btn-active-text-gray-100:hover:not(.btn-active),.show>.btn.btn-active-text-gray-100{color:#f5f8fa}.btn.btn-color-gray-200{color:#eff2f5}.btn.btn-color-gray-200 .svg-icon,.btn.btn-color-gray-200 i{color:#eff2f5}.btn.btn-color-gray-200.dropdown-toggle:after{color:#eff2f5}.btn-check:active+.btn.btn-active-color-gray-200,.btn-check:checked+.btn.btn-active-color-gray-200,.btn.btn-active-color-gray-200.active,.btn.btn-active-color-gray-200.show,.btn.btn-active-color-gray-200:active:not(.btn-active),.btn.btn-active-color-gray-200:focus:not(.btn-active),.btn.btn-active-color-gray-200:hover:not(.btn-active),.show>.btn.btn-active-color-gray-200{color:#eff2f5}.btn-check:active+.btn.btn-active-color-gray-200 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-200 i,.btn-check:checked+.btn.btn-active-color-gray-200 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-200 i,.btn.btn-active-color-gray-200.active .svg-icon,.btn.btn-active-color-gray-200.active i,.btn.btn-active-color-gray-200.show .svg-icon,.btn.btn-active-color-gray-200.show i,.btn.btn-active-color-gray-200:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-200:active:not(.btn-active) i,.btn.btn-active-color-gray-200:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-200:focus:not(.btn-active) i,.btn.btn-active-color-gray-200:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-200:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-200 .svg-icon,.show>.btn.btn-active-color-gray-200 i{color:#eff2f5}.btn-check:active+.btn.btn-active-color-gray-200.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-200.dropdown-toggle:after,.btn.btn-active-color-gray-200.active.dropdown-toggle:after,.btn.btn-active-color-gray-200.show.dropdown-toggle:after,.btn.btn-active-color-gray-200:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-200:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-200:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-200.dropdown-toggle:after{color:#eff2f5}.btn.btn-icon-gray-200 .svg-icon,.btn.btn-icon-gray-200 i{color:#eff2f5}.btn.btn-icon-gray-200.dropdown-toggle:after{color:#eff2f5}.btn-check:active+.btn.btn-active-icon-gray-200 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-200 i,.btn-check:checked+.btn.btn-active-icon-gray-200 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-200 i,.btn.btn-active-icon-gray-200.active .svg-icon,.btn.btn-active-icon-gray-200.active i,.btn.btn-active-icon-gray-200.show .svg-icon,.btn.btn-active-icon-gray-200.show i,.btn.btn-active-icon-gray-200:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-200:active:not(.btn-active) i,.btn.btn-active-icon-gray-200:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-200:focus:not(.btn-active) i,.btn.btn-active-icon-gray-200:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-200:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-200 .svg-icon,.show>.btn.btn-active-icon-gray-200 i{color:#eff2f5}.btn-check:active+.btn.btn-active-icon-gray-200.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-200.dropdown-toggle:after,.btn.btn-active-icon-gray-200.active.dropdown-toggle:after,.btn.btn-active-icon-gray-200.show.dropdown-toggle:after,.btn.btn-active-icon-gray-200:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-200:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-200:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-200.dropdown-toggle:after{color:#eff2f5}.btn.btn-text-gray-200{color:#eff2f5}.btn-check:active+.btn.btn-active-text-gray-200,.btn-check:checked+.btn.btn-active-text-gray-200,.btn.btn-active-text-gray-200.active,.btn.btn-active-text-gray-200.show,.btn.btn-active-text-gray-200:active:not(.btn-active),.btn.btn-active-text-gray-200:focus:not(.btn-active),.btn.btn-active-text-gray-200:hover:not(.btn-active),.show>.btn.btn-active-text-gray-200{color:#eff2f5}.btn.btn-color-gray-300{color:#e4e6ef}.btn.btn-color-gray-300 .svg-icon,.btn.btn-color-gray-300 i{color:#e4e6ef}.btn.btn-color-gray-300.dropdown-toggle:after{color:#e4e6ef}.btn-check:active+.btn.btn-active-color-gray-300,.btn-check:checked+.btn.btn-active-color-gray-300,.btn.btn-active-color-gray-300.active,.btn.btn-active-color-gray-300.show,.btn.btn-active-color-gray-300:active:not(.btn-active),.btn.btn-active-color-gray-300:focus:not(.btn-active),.btn.btn-active-color-gray-300:hover:not(.btn-active),.show>.btn.btn-active-color-gray-300{color:#e4e6ef}.btn-check:active+.btn.btn-active-color-gray-300 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-300 i,.btn-check:checked+.btn.btn-active-color-gray-300 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-300 i,.btn.btn-active-color-gray-300.active .svg-icon,.btn.btn-active-color-gray-300.active i,.btn.btn-active-color-gray-300.show .svg-icon,.btn.btn-active-color-gray-300.show i,.btn.btn-active-color-gray-300:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-300:active:not(.btn-active) i,.btn.btn-active-color-gray-300:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-300:focus:not(.btn-active) i,.btn.btn-active-color-gray-300:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-300:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-300 .svg-icon,.show>.btn.btn-active-color-gray-300 i{color:#e4e6ef}.btn-check:active+.btn.btn-active-color-gray-300.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-300.dropdown-toggle:after,.btn.btn-active-color-gray-300.active.dropdown-toggle:after,.btn.btn-active-color-gray-300.show.dropdown-toggle:after,.btn.btn-active-color-gray-300:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-300:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-300:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-300.dropdown-toggle:after{color:#e4e6ef}.btn.btn-icon-gray-300 .svg-icon,.btn.btn-icon-gray-300 i{color:#e4e6ef}.btn.btn-icon-gray-300.dropdown-toggle:after{color:#e4e6ef}.btn-check:active+.btn.btn-active-icon-gray-300 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-300 i,.btn-check:checked+.btn.btn-active-icon-gray-300 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-300 i,.btn.btn-active-icon-gray-300.active .svg-icon,.btn.btn-active-icon-gray-300.active i,.btn.btn-active-icon-gray-300.show .svg-icon,.btn.btn-active-icon-gray-300.show i,.btn.btn-active-icon-gray-300:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-300:active:not(.btn-active) i,.btn.btn-active-icon-gray-300:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-300:focus:not(.btn-active) i,.btn.btn-active-icon-gray-300:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-300:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-300 .svg-icon,.show>.btn.btn-active-icon-gray-300 i{color:#e4e6ef}.btn-check:active+.btn.btn-active-icon-gray-300.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-300.dropdown-toggle:after,.btn.btn-active-icon-gray-300.active.dropdown-toggle:after,.btn.btn-active-icon-gray-300.show.dropdown-toggle:after,.btn.btn-active-icon-gray-300:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-300:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-300:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-300.dropdown-toggle:after{color:#e4e6ef}.btn.btn-text-gray-300{color:#e4e6ef}.btn-check:active+.btn.btn-active-text-gray-300,.btn-check:checked+.btn.btn-active-text-gray-300,.btn.btn-active-text-gray-300.active,.btn.btn-active-text-gray-300.show,.btn.btn-active-text-gray-300:active:not(.btn-active),.btn.btn-active-text-gray-300:focus:not(.btn-active),.btn.btn-active-text-gray-300:hover:not(.btn-active),.show>.btn.btn-active-text-gray-300{color:#e4e6ef}.btn.btn-color-gray-400{color:#b5b5c3}.btn.btn-color-gray-400 .svg-icon,.btn.btn-color-gray-400 i{color:#b5b5c3}.btn.btn-color-gray-400.dropdown-toggle:after{color:#b5b5c3}.btn-check:active+.btn.btn-active-color-gray-400,.btn-check:checked+.btn.btn-active-color-gray-400,.btn.btn-active-color-gray-400.active,.btn.btn-active-color-gray-400.show,.btn.btn-active-color-gray-400:active:not(.btn-active),.btn.btn-active-color-gray-400:focus:not(.btn-active),.btn.btn-active-color-gray-400:hover:not(.btn-active),.show>.btn.btn-active-color-gray-400{color:#b5b5c3}.btn-check:active+.btn.btn-active-color-gray-400 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-400 i,.btn-check:checked+.btn.btn-active-color-gray-400 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-400 i,.btn.btn-active-color-gray-400.active .svg-icon,.btn.btn-active-color-gray-400.active i,.btn.btn-active-color-gray-400.show .svg-icon,.btn.btn-active-color-gray-400.show i,.btn.btn-active-color-gray-400:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-400:active:not(.btn-active) i,.btn.btn-active-color-gray-400:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-400:focus:not(.btn-active) i,.btn.btn-active-color-gray-400:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-400:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-400 .svg-icon,.show>.btn.btn-active-color-gray-400 i{color:#b5b5c3}.btn-check:active+.btn.btn-active-color-gray-400.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-400.dropdown-toggle:after,.btn.btn-active-color-gray-400.active.dropdown-toggle:after,.btn.btn-active-color-gray-400.show.dropdown-toggle:after,.btn.btn-active-color-gray-400:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-400:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-400:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-400.dropdown-toggle:after{color:#b5b5c3}.btn.btn-icon-gray-400 .svg-icon,.btn.btn-icon-gray-400 i{color:#b5b5c3}.btn.btn-icon-gray-400.dropdown-toggle:after{color:#b5b5c3}.btn-check:active+.btn.btn-active-icon-gray-400 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-400 i,.btn-check:checked+.btn.btn-active-icon-gray-400 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-400 i,.btn.btn-active-icon-gray-400.active .svg-icon,.btn.btn-active-icon-gray-400.active i,.btn.btn-active-icon-gray-400.show .svg-icon,.btn.btn-active-icon-gray-400.show i,.btn.btn-active-icon-gray-400:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-400:active:not(.btn-active) i,.btn.btn-active-icon-gray-400:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-400:focus:not(.btn-active) i,.btn.btn-active-icon-gray-400:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-400:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-400 .svg-icon,.show>.btn.btn-active-icon-gray-400 i{color:#b5b5c3}.btn-check:active+.btn.btn-active-icon-gray-400.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-400.dropdown-toggle:after,.btn.btn-active-icon-gray-400.active.dropdown-toggle:after,.btn.btn-active-icon-gray-400.show.dropdown-toggle:after,.btn.btn-active-icon-gray-400:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-400:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-400:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-400.dropdown-toggle:after{color:#b5b5c3}.btn.btn-text-gray-400{color:#b5b5c3}.btn-check:active+.btn.btn-active-text-gray-400,.btn-check:checked+.btn.btn-active-text-gray-400,.btn.btn-active-text-gray-400.active,.btn.btn-active-text-gray-400.show,.btn.btn-active-text-gray-400:active:not(.btn-active),.btn.btn-active-text-gray-400:focus:not(.btn-active),.btn.btn-active-text-gray-400:hover:not(.btn-active),.show>.btn.btn-active-text-gray-400{color:#b5b5c3}.btn.btn-color-gray-500{color:#a1a5b7}.btn.btn-color-gray-500 .svg-icon,.btn.btn-color-gray-500 i{color:#a1a5b7}.btn.btn-color-gray-500.dropdown-toggle:after{color:#a1a5b7}.btn-check:active+.btn.btn-active-color-gray-500,.btn-check:checked+.btn.btn-active-color-gray-500,.btn.btn-active-color-gray-500.active,.btn.btn-active-color-gray-500.show,.btn.btn-active-color-gray-500:active:not(.btn-active),.btn.btn-active-color-gray-500:focus:not(.btn-active),.btn.btn-active-color-gray-500:hover:not(.btn-active),.show>.btn.btn-active-color-gray-500{color:#a1a5b7}.btn-check:active+.btn.btn-active-color-gray-500 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-500 i,.btn-check:checked+.btn.btn-active-color-gray-500 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-500 i,.btn.btn-active-color-gray-500.active .svg-icon,.btn.btn-active-color-gray-500.active i,.btn.btn-active-color-gray-500.show .svg-icon,.btn.btn-active-color-gray-500.show i,.btn.btn-active-color-gray-500:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-500:active:not(.btn-active) i,.btn.btn-active-color-gray-500:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-500:focus:not(.btn-active) i,.btn.btn-active-color-gray-500:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-500:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-500 .svg-icon,.show>.btn.btn-active-color-gray-500 i{color:#a1a5b7}.btn-check:active+.btn.btn-active-color-gray-500.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-500.dropdown-toggle:after,.btn.btn-active-color-gray-500.active.dropdown-toggle:after,.btn.btn-active-color-gray-500.show.dropdown-toggle:after,.btn.btn-active-color-gray-500:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-500:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-500:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-500.dropdown-toggle:after{color:#a1a5b7}.btn.btn-icon-gray-500 .svg-icon,.btn.btn-icon-gray-500 i{color:#a1a5b7}.btn.btn-icon-gray-500.dropdown-toggle:after{color:#a1a5b7}.btn-check:active+.btn.btn-active-icon-gray-500 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-500 i,.btn-check:checked+.btn.btn-active-icon-gray-500 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-500 i,.btn.btn-active-icon-gray-500.active .svg-icon,.btn.btn-active-icon-gray-500.active i,.btn.btn-active-icon-gray-500.show .svg-icon,.btn.btn-active-icon-gray-500.show i,.btn.btn-active-icon-gray-500:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-500:active:not(.btn-active) i,.btn.btn-active-icon-gray-500:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-500:focus:not(.btn-active) i,.btn.btn-active-icon-gray-500:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-500:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-500 .svg-icon,.show>.btn.btn-active-icon-gray-500 i{color:#a1a5b7}.btn-check:active+.btn.btn-active-icon-gray-500.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-500.dropdown-toggle:after,.btn.btn-active-icon-gray-500.active.dropdown-toggle:after,.btn.btn-active-icon-gray-500.show.dropdown-toggle:after,.btn.btn-active-icon-gray-500:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-500:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-500:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-500.dropdown-toggle:after{color:#a1a5b7}.btn.btn-text-gray-500{color:#a1a5b7}.btn-check:active+.btn.btn-active-text-gray-500,.btn-check:checked+.btn.btn-active-text-gray-500,.btn.btn-active-text-gray-500.active,.btn.btn-active-text-gray-500.show,.btn.btn-active-text-gray-500:active:not(.btn-active),.btn.btn-active-text-gray-500:focus:not(.btn-active),.btn.btn-active-text-gray-500:hover:not(.btn-active),.show>.btn.btn-active-text-gray-500{color:#a1a5b7}.btn.btn-color-gray-600{color:#7e8299}.btn.btn-color-gray-600 .svg-icon,.btn.btn-color-gray-600 i{color:#7e8299}.btn.btn-color-gray-600.dropdown-toggle:after{color:#7e8299}.btn-check:active+.btn.btn-active-color-gray-600,.btn-check:checked+.btn.btn-active-color-gray-600,.btn.btn-active-color-gray-600.active,.btn.btn-active-color-gray-600.show,.btn.btn-active-color-gray-600:active:not(.btn-active),.btn.btn-active-color-gray-600:focus:not(.btn-active),.btn.btn-active-color-gray-600:hover:not(.btn-active),.show>.btn.btn-active-color-gray-600{color:#7e8299}.btn-check:active+.btn.btn-active-color-gray-600 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-600 i,.btn-check:checked+.btn.btn-active-color-gray-600 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-600 i,.btn.btn-active-color-gray-600.active .svg-icon,.btn.btn-active-color-gray-600.active i,.btn.btn-active-color-gray-600.show .svg-icon,.btn.btn-active-color-gray-600.show i,.btn.btn-active-color-gray-600:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-600:active:not(.btn-active) i,.btn.btn-active-color-gray-600:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-600:focus:not(.btn-active) i,.btn.btn-active-color-gray-600:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-600:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-600 .svg-icon,.show>.btn.btn-active-color-gray-600 i{color:#7e8299}.btn-check:active+.btn.btn-active-color-gray-600.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-600.dropdown-toggle:after,.btn.btn-active-color-gray-600.active.dropdown-toggle:after,.btn.btn-active-color-gray-600.show.dropdown-toggle:after,.btn.btn-active-color-gray-600:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-600:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-600:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-600.dropdown-toggle:after{color:#7e8299}.btn.btn-icon-gray-600 .svg-icon,.btn.btn-icon-gray-600 i{color:#7e8299}.btn.btn-icon-gray-600.dropdown-toggle:after{color:#7e8299}.btn-check:active+.btn.btn-active-icon-gray-600 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-600 i,.btn-check:checked+.btn.btn-active-icon-gray-600 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-600 i,.btn.btn-active-icon-gray-600.active .svg-icon,.btn.btn-active-icon-gray-600.active i,.btn.btn-active-icon-gray-600.show .svg-icon,.btn.btn-active-icon-gray-600.show i,.btn.btn-active-icon-gray-600:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-600:active:not(.btn-active) i,.btn.btn-active-icon-gray-600:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-600:focus:not(.btn-active) i,.btn.btn-active-icon-gray-600:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-600:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-600 .svg-icon,.show>.btn.btn-active-icon-gray-600 i{color:#7e8299}.btn-check:active+.btn.btn-active-icon-gray-600.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-600.dropdown-toggle:after,.btn.btn-active-icon-gray-600.active.dropdown-toggle:after,.btn.btn-active-icon-gray-600.show.dropdown-toggle:after,.btn.btn-active-icon-gray-600:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-600:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-600:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-600.dropdown-toggle:after{color:#7e8299}.btn.btn-text-gray-600{color:#7e8299}.btn-check:active+.btn.btn-active-text-gray-600,.btn-check:checked+.btn.btn-active-text-gray-600,.btn.btn-active-text-gray-600.active,.btn.btn-active-text-gray-600.show,.btn.btn-active-text-gray-600:active:not(.btn-active),.btn.btn-active-text-gray-600:focus:not(.btn-active),.btn.btn-active-text-gray-600:hover:not(.btn-active),.show>.btn.btn-active-text-gray-600{color:#7e8299}.btn.btn-color-gray-700{color:#5e6278}.btn.btn-color-gray-700 .svg-icon,.btn.btn-color-gray-700 i{color:#5e6278}.btn.btn-color-gray-700.dropdown-toggle:after{color:#5e6278}.btn-check:active+.btn.btn-active-color-gray-700,.btn-check:checked+.btn.btn-active-color-gray-700,.btn.btn-active-color-gray-700.active,.btn.btn-active-color-gray-700.show,.btn.btn-active-color-gray-700:active:not(.btn-active),.btn.btn-active-color-gray-700:focus:not(.btn-active),.btn.btn-active-color-gray-700:hover:not(.btn-active),.show>.btn.btn-active-color-gray-700{color:#5e6278}.btn-check:active+.btn.btn-active-color-gray-700 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-700 i,.btn-check:checked+.btn.btn-active-color-gray-700 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-700 i,.btn.btn-active-color-gray-700.active .svg-icon,.btn.btn-active-color-gray-700.active i,.btn.btn-active-color-gray-700.show .svg-icon,.btn.btn-active-color-gray-700.show i,.btn.btn-active-color-gray-700:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-700:active:not(.btn-active) i,.btn.btn-active-color-gray-700:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-700:focus:not(.btn-active) i,.btn.btn-active-color-gray-700:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-700:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-700 .svg-icon,.show>.btn.btn-active-color-gray-700 i{color:#5e6278}.btn-check:active+.btn.btn-active-color-gray-700.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-700.dropdown-toggle:after,.btn.btn-active-color-gray-700.active.dropdown-toggle:after,.btn.btn-active-color-gray-700.show.dropdown-toggle:after,.btn.btn-active-color-gray-700:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-700:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-700:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-700.dropdown-toggle:after{color:#5e6278}.btn.btn-icon-gray-700 .svg-icon,.btn.btn-icon-gray-700 i{color:#5e6278}.btn.btn-icon-gray-700.dropdown-toggle:after{color:#5e6278}.btn-check:active+.btn.btn-active-icon-gray-700 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-700 i,.btn-check:checked+.btn.btn-active-icon-gray-700 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-700 i,.btn.btn-active-icon-gray-700.active .svg-icon,.btn.btn-active-icon-gray-700.active i,.btn.btn-active-icon-gray-700.show .svg-icon,.btn.btn-active-icon-gray-700.show i,.btn.btn-active-icon-gray-700:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-700:active:not(.btn-active) i,.btn.btn-active-icon-gray-700:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-700:focus:not(.btn-active) i,.btn.btn-active-icon-gray-700:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-700:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-700 .svg-icon,.show>.btn.btn-active-icon-gray-700 i{color:#5e6278}.btn-check:active+.btn.btn-active-icon-gray-700.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-700.dropdown-toggle:after,.btn.btn-active-icon-gray-700.active.dropdown-toggle:after,.btn.btn-active-icon-gray-700.show.dropdown-toggle:after,.btn.btn-active-icon-gray-700:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-700:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-700:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-700.dropdown-toggle:after{color:#5e6278}.btn.btn-text-gray-700{color:#5e6278}.btn-check:active+.btn.btn-active-text-gray-700,.btn-check:checked+.btn.btn-active-text-gray-700,.btn.btn-active-text-gray-700.active,.btn.btn-active-text-gray-700.show,.btn.btn-active-text-gray-700:active:not(.btn-active),.btn.btn-active-text-gray-700:focus:not(.btn-active),.btn.btn-active-text-gray-700:hover:not(.btn-active),.show>.btn.btn-active-text-gray-700{color:#5e6278}.btn.btn-color-gray-800{color:#3f4254}.btn.btn-color-gray-800 .svg-icon,.btn.btn-color-gray-800 i{color:#3f4254}.btn.btn-color-gray-800.dropdown-toggle:after{color:#3f4254}.btn-check:active+.btn.btn-active-color-gray-800,.btn-check:checked+.btn.btn-active-color-gray-800,.btn.btn-active-color-gray-800.active,.btn.btn-active-color-gray-800.show,.btn.btn-active-color-gray-800:active:not(.btn-active),.btn.btn-active-color-gray-800:focus:not(.btn-active),.btn.btn-active-color-gray-800:hover:not(.btn-active),.show>.btn.btn-active-color-gray-800{color:#3f4254}.btn-check:active+.btn.btn-active-color-gray-800 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-800 i,.btn-check:checked+.btn.btn-active-color-gray-800 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-800 i,.btn.btn-active-color-gray-800.active .svg-icon,.btn.btn-active-color-gray-800.active i,.btn.btn-active-color-gray-800.show .svg-icon,.btn.btn-active-color-gray-800.show i,.btn.btn-active-color-gray-800:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-800:active:not(.btn-active) i,.btn.btn-active-color-gray-800:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-800:focus:not(.btn-active) i,.btn.btn-active-color-gray-800:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-800:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-800 .svg-icon,.show>.btn.btn-active-color-gray-800 i{color:#3f4254}.btn-check:active+.btn.btn-active-color-gray-800.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-800.dropdown-toggle:after,.btn.btn-active-color-gray-800.active.dropdown-toggle:after,.btn.btn-active-color-gray-800.show.dropdown-toggle:after,.btn.btn-active-color-gray-800:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-800:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-800:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-800.dropdown-toggle:after{color:#3f4254}.btn.btn-icon-gray-800 .svg-icon,.btn.btn-icon-gray-800 i{color:#3f4254}.btn.btn-icon-gray-800.dropdown-toggle:after{color:#3f4254}.btn-check:active+.btn.btn-active-icon-gray-800 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-800 i,.btn-check:checked+.btn.btn-active-icon-gray-800 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-800 i,.btn.btn-active-icon-gray-800.active .svg-icon,.btn.btn-active-icon-gray-800.active i,.btn.btn-active-icon-gray-800.show .svg-icon,.btn.btn-active-icon-gray-800.show i,.btn.btn-active-icon-gray-800:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-800:active:not(.btn-active) i,.btn.btn-active-icon-gray-800:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-800:focus:not(.btn-active) i,.btn.btn-active-icon-gray-800:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-800:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-800 .svg-icon,.show>.btn.btn-active-icon-gray-800 i{color:#3f4254}.btn-check:active+.btn.btn-active-icon-gray-800.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-800.dropdown-toggle:after,.btn.btn-active-icon-gray-800.active.dropdown-toggle:after,.btn.btn-active-icon-gray-800.show.dropdown-toggle:after,.btn.btn-active-icon-gray-800:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-800:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-800:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-800.dropdown-toggle:after{color:#3f4254}.btn.btn-text-gray-800{color:#3f4254}.btn-check:active+.btn.btn-active-text-gray-800,.btn-check:checked+.btn.btn-active-text-gray-800,.btn.btn-active-text-gray-800.active,.btn.btn-active-text-gray-800.show,.btn.btn-active-text-gray-800:active:not(.btn-active),.btn.btn-active-text-gray-800:focus:not(.btn-active),.btn.btn-active-text-gray-800:hover:not(.btn-active),.show>.btn.btn-active-text-gray-800{color:#3f4254}.btn.btn-color-gray-900{color:#181c32}.btn.btn-color-gray-900 .svg-icon,.btn.btn-color-gray-900 i{color:#181c32}.btn.btn-color-gray-900.dropdown-toggle:after{color:#181c32}.btn-check:active+.btn.btn-active-color-gray-900,.btn-check:checked+.btn.btn-active-color-gray-900,.btn.btn-active-color-gray-900.active,.btn.btn-active-color-gray-900.show,.btn.btn-active-color-gray-900:active:not(.btn-active),.btn.btn-active-color-gray-900:focus:not(.btn-active),.btn.btn-active-color-gray-900:hover:not(.btn-active),.show>.btn.btn-active-color-gray-900{color:#181c32}.btn-check:active+.btn.btn-active-color-gray-900 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-900 i,.btn-check:checked+.btn.btn-active-color-gray-900 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-900 i,.btn.btn-active-color-gray-900.active .svg-icon,.btn.btn-active-color-gray-900.active i,.btn.btn-active-color-gray-900.show .svg-icon,.btn.btn-active-color-gray-900.show i,.btn.btn-active-color-gray-900:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-900:active:not(.btn-active) i,.btn.btn-active-color-gray-900:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-900:focus:not(.btn-active) i,.btn.btn-active-color-gray-900:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-900:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-900 .svg-icon,.show>.btn.btn-active-color-gray-900 i{color:#181c32}.btn-check:active+.btn.btn-active-color-gray-900.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-900.dropdown-toggle:after,.btn.btn-active-color-gray-900.active.dropdown-toggle:after,.btn.btn-active-color-gray-900.show.dropdown-toggle:after,.btn.btn-active-color-gray-900:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-900:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-900:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-900.dropdown-toggle:after{color:#181c32}.btn.btn-icon-gray-900 .svg-icon,.btn.btn-icon-gray-900 i{color:#181c32}.btn.btn-icon-gray-900.dropdown-toggle:after{color:#181c32}.btn-check:active+.btn.btn-active-icon-gray-900 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-900 i,.btn-check:checked+.btn.btn-active-icon-gray-900 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-900 i,.btn.btn-active-icon-gray-900.active .svg-icon,.btn.btn-active-icon-gray-900.active i,.btn.btn-active-icon-gray-900.show .svg-icon,.btn.btn-active-icon-gray-900.show i,.btn.btn-active-icon-gray-900:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-900:active:not(.btn-active) i,.btn.btn-active-icon-gray-900:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-900:focus:not(.btn-active) i,.btn.btn-active-icon-gray-900:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-900:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-900 .svg-icon,.show>.btn.btn-active-icon-gray-900 i{color:#181c32}.btn-check:active+.btn.btn-active-icon-gray-900.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-900.dropdown-toggle:after,.btn.btn-active-icon-gray-900.active.dropdown-toggle:after,.btn.btn-active-icon-gray-900.show.dropdown-toggle:after,.btn.btn-active-icon-gray-900:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-900:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-900:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-900.dropdown-toggle:after{color:#181c32}.btn.btn-text-gray-900{color:#181c32}.btn-check:active+.btn.btn-active-text-gray-900,.btn-check:checked+.btn.btn-active-text-gray-900,.btn.btn-active-text-gray-900.active,.btn.btn-active-text-gray-900.show,.btn.btn-active-text-gray-900:active:not(.btn-active),.btn.btn-active-text-gray-900:focus:not(.btn-active),.btn.btn-active-text-gray-900:hover:not(.btn-active),.show>.btn.btn-active-text-gray-900{color:#181c32}.btn.btn-facebook{color:#fff;border-color:#3b5998;background-color:#3b5998}.btn.btn-facebook .svg-icon,.btn.btn-facebook i{color:#fff}.btn.btn-facebook.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-facebook,.btn-check:checked+.btn.btn-facebook,.btn.btn-facebook.active,.btn.btn-facebook.show,.btn.btn-facebook:active:not(.btn-active),.btn.btn-facebook:focus:not(.btn-active),.btn.btn-facebook:hover:not(.btn-active),.show>.btn.btn-facebook{border-color:#30497c;background-color:#30497c!important}.btn.btn-light-facebook{color:#3b5998;border-color:rgba(59,89,152,.1);background-color:rgba(59,89,152,.1)}.btn.btn-light-facebook .svg-icon,.btn.btn-light-facebook i{color:#3b5998}.btn.btn-light-facebook.dropdown-toggle:after{color:#3b5998}.btn-check:active+.btn.btn-light-facebook,.btn-check:checked+.btn.btn-light-facebook,.btn.btn-light-facebook.active,.btn.btn-light-facebook.show,.btn.btn-light-facebook:active:not(.btn-active),.btn.btn-light-facebook:focus:not(.btn-active),.btn.btn-light-facebook:hover:not(.btn-active),.show>.btn.btn-light-facebook{color:#fff;border-color:#3b5998;background-color:#3b5998!important}.btn-check:active+.btn.btn-light-facebook .svg-icon,.btn-check:active+.btn.btn-light-facebook i,.btn-check:checked+.btn.btn-light-facebook .svg-icon,.btn-check:checked+.btn.btn-light-facebook i,.btn.btn-light-facebook.active .svg-icon,.btn.btn-light-facebook.active i,.btn.btn-light-facebook.show .svg-icon,.btn.btn-light-facebook.show i,.btn.btn-light-facebook:active:not(.btn-active) .svg-icon,.btn.btn-light-facebook:active:not(.btn-active) i,.btn.btn-light-facebook:focus:not(.btn-active) .svg-icon,.btn.btn-light-facebook:focus:not(.btn-active) i,.btn.btn-light-facebook:hover:not(.btn-active) .svg-icon,.btn.btn-light-facebook:hover:not(.btn-active) i,.show>.btn.btn-light-facebook .svg-icon,.show>.btn.btn-light-facebook i{color:#fff}.btn-check:active+.btn.btn-light-facebook.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-facebook.dropdown-toggle:after,.btn.btn-light-facebook.active.dropdown-toggle:after,.btn.btn-light-facebook.show.dropdown-toggle:after,.btn.btn-light-facebook:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-facebook:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-facebook:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-facebook.dropdown-toggle:after{color:#fff}.btn.btn-google{color:#fff;border-color:#dd4b39;background-color:#dd4b39}.btn.btn-google .svg-icon,.btn.btn-google i{color:#fff}.btn.btn-google.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-google,.btn-check:checked+.btn.btn-google,.btn.btn-google.active,.btn.btn-google.show,.btn.btn-google:active:not(.btn-active),.btn.btn-google:focus:not(.btn-active),.btn.btn-google:hover:not(.btn-active),.show>.btn.btn-google{border-color:#cd3623;background-color:#cd3623!important}.btn.btn-light-google{color:#dd4b39;border-color:rgba(221,75,57,.1);background-color:rgba(221,75,57,.1)}.btn.btn-light-google .svg-icon,.btn.btn-light-google i{color:#dd4b39}.btn.btn-light-google.dropdown-toggle:after{color:#dd4b39}.btn-check:active+.btn.btn-light-google,.btn-check:checked+.btn.btn-light-google,.btn.btn-light-google.active,.btn.btn-light-google.show,.btn.btn-light-google:active:not(.btn-active),.btn.btn-light-google:focus:not(.btn-active),.btn.btn-light-google:hover:not(.btn-active),.show>.btn.btn-light-google{color:#fff;border-color:#dd4b39;background-color:#dd4b39!important}.btn-check:active+.btn.btn-light-google .svg-icon,.btn-check:active+.btn.btn-light-google i,.btn-check:checked+.btn.btn-light-google .svg-icon,.btn-check:checked+.btn.btn-light-google i,.btn.btn-light-google.active .svg-icon,.btn.btn-light-google.active i,.btn.btn-light-google.show .svg-icon,.btn.btn-light-google.show i,.btn.btn-light-google:active:not(.btn-active) .svg-icon,.btn.btn-light-google:active:not(.btn-active) i,.btn.btn-light-google:focus:not(.btn-active) .svg-icon,.btn.btn-light-google:focus:not(.btn-active) i,.btn.btn-light-google:hover:not(.btn-active) .svg-icon,.btn.btn-light-google:hover:not(.btn-active) i,.show>.btn.btn-light-google .svg-icon,.show>.btn.btn-light-google i{color:#fff}.btn-check:active+.btn.btn-light-google.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-google.dropdown-toggle:after,.btn.btn-light-google.active.dropdown-toggle:after,.btn.btn-light-google.show.dropdown-toggle:after,.btn.btn-light-google:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-google:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-google:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-google.dropdown-toggle:after{color:#fff}.btn.btn-twitter{color:#fff;border-color:#1da1f2;background-color:#1da1f2}.btn.btn-twitter .svg-icon,.btn.btn-twitter i{color:#fff}.btn.btn-twitter.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-twitter,.btn-check:checked+.btn.btn-twitter,.btn.btn-twitter.active,.btn.btn-twitter.show,.btn.btn-twitter:active:not(.btn-active),.btn.btn-twitter:focus:not(.btn-active),.btn.btn-twitter:hover:not(.btn-active),.show>.btn.btn-twitter{border-color:#0d8ddc;background-color:#0d8ddc!important}.btn.btn-light-twitter{color:#1da1f2;border-color:rgba(29,161,242,.1);background-color:rgba(29,161,242,.1)}.btn.btn-light-twitter .svg-icon,.btn.btn-light-twitter i{color:#1da1f2}.btn.btn-light-twitter.dropdown-toggle:after{color:#1da1f2}.btn-check:active+.btn.btn-light-twitter,.btn-check:checked+.btn.btn-light-twitter,.btn.btn-light-twitter.active,.btn.btn-light-twitter.show,.btn.btn-light-twitter:active:not(.btn-active),.btn.btn-light-twitter:focus:not(.btn-active),.btn.btn-light-twitter:hover:not(.btn-active),.show>.btn.btn-light-twitter{color:#fff;border-color:#1da1f2;background-color:#1da1f2!important}.btn-check:active+.btn.btn-light-twitter .svg-icon,.btn-check:active+.btn.btn-light-twitter i,.btn-check:checked+.btn.btn-light-twitter .svg-icon,.btn-check:checked+.btn.btn-light-twitter i,.btn.btn-light-twitter.active .svg-icon,.btn.btn-light-twitter.active i,.btn.btn-light-twitter.show .svg-icon,.btn.btn-light-twitter.show i,.btn.btn-light-twitter:active:not(.btn-active) .svg-icon,.btn.btn-light-twitter:active:not(.btn-active) i,.btn.btn-light-twitter:focus:not(.btn-active) .svg-icon,.btn.btn-light-twitter:focus:not(.btn-active) i,.btn.btn-light-twitter:hover:not(.btn-active) .svg-icon,.btn.btn-light-twitter:hover:not(.btn-active) i,.show>.btn.btn-light-twitter .svg-icon,.show>.btn.btn-light-twitter i{color:#fff}.btn-check:active+.btn.btn-light-twitter.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-twitter.dropdown-toggle:after,.btn.btn-light-twitter.active.dropdown-toggle:after,.btn.btn-light-twitter.show.dropdown-toggle:after,.btn.btn-light-twitter:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-twitter:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-twitter:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-twitter.dropdown-toggle:after{color:#fff}.btn.btn-instagram{color:#fff;border-color:#e1306c;background-color:#e1306c}.btn.btn-instagram .svg-icon,.btn.btn-instagram i{color:#fff}.btn.btn-instagram.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-instagram,.btn-check:checked+.btn.btn-instagram,.btn.btn-instagram.active,.btn.btn-instagram.show,.btn.btn-instagram:active:not(.btn-active),.btn.btn-instagram:focus:not(.btn-active),.btn.btn-instagram:hover:not(.btn-active),.show>.btn.btn-instagram{border-color:#cd1e59;background-color:#cd1e59!important}.btn.btn-light-instagram{color:#e1306c;border-color:rgba(225,48,108,.1);background-color:rgba(225,48,108,.1)}.btn.btn-light-instagram .svg-icon,.btn.btn-light-instagram i{color:#e1306c}.btn.btn-light-instagram.dropdown-toggle:after{color:#e1306c}.btn-check:active+.btn.btn-light-instagram,.btn-check:checked+.btn.btn-light-instagram,.btn.btn-light-instagram.active,.btn.btn-light-instagram.show,.btn.btn-light-instagram:active:not(.btn-active),.btn.btn-light-instagram:focus:not(.btn-active),.btn.btn-light-instagram:hover:not(.btn-active),.show>.btn.btn-light-instagram{color:#fff;border-color:#e1306c;background-color:#e1306c!important}.btn-check:active+.btn.btn-light-instagram .svg-icon,.btn-check:active+.btn.btn-light-instagram i,.btn-check:checked+.btn.btn-light-instagram .svg-icon,.btn-check:checked+.btn.btn-light-instagram i,.btn.btn-light-instagram.active .svg-icon,.btn.btn-light-instagram.active i,.btn.btn-light-instagram.show .svg-icon,.btn.btn-light-instagram.show i,.btn.btn-light-instagram:active:not(.btn-active) .svg-icon,.btn.btn-light-instagram:active:not(.btn-active) i,.btn.btn-light-instagram:focus:not(.btn-active) .svg-icon,.btn.btn-light-instagram:focus:not(.btn-active) i,.btn.btn-light-instagram:hover:not(.btn-active) .svg-icon,.btn.btn-light-instagram:hover:not(.btn-active) i,.show>.btn.btn-light-instagram .svg-icon,.show>.btn.btn-light-instagram i{color:#fff}.btn-check:active+.btn.btn-light-instagram.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-instagram.dropdown-toggle:after,.btn.btn-light-instagram.active.dropdown-toggle:after,.btn.btn-light-instagram.show.dropdown-toggle:after,.btn.btn-light-instagram:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-instagram:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-instagram:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-instagram.dropdown-toggle:after{color:#fff}.btn.btn-youtube{color:#fff;border-color:red;background-color:red}.btn.btn-youtube .svg-icon,.btn.btn-youtube i{color:#fff}.btn.btn-youtube.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-youtube,.btn-check:checked+.btn.btn-youtube,.btn.btn-youtube.active,.btn.btn-youtube.show,.btn.btn-youtube:active:not(.btn-active),.btn.btn-youtube:focus:not(.btn-active),.btn.btn-youtube:hover:not(.btn-active),.show>.btn.btn-youtube{border-color:#d90000;background-color:#d90000!important}.btn.btn-light-youtube{color:red;border-color:rgba(255,0,0,.1);background-color:rgba(255,0,0,.1)}.btn.btn-light-youtube .svg-icon,.btn.btn-light-youtube i{color:red}.btn.btn-light-youtube.dropdown-toggle:after{color:red}.btn-check:active+.btn.btn-light-youtube,.btn-check:checked+.btn.btn-light-youtube,.btn.btn-light-youtube.active,.btn.btn-light-youtube.show,.btn.btn-light-youtube:active:not(.btn-active),.btn.btn-light-youtube:focus:not(.btn-active),.btn.btn-light-youtube:hover:not(.btn-active),.show>.btn.btn-light-youtube{color:#fff;border-color:red;background-color:red!important}.btn-check:active+.btn.btn-light-youtube .svg-icon,.btn-check:active+.btn.btn-light-youtube i,.btn-check:checked+.btn.btn-light-youtube .svg-icon,.btn-check:checked+.btn.btn-light-youtube i,.btn.btn-light-youtube.active .svg-icon,.btn.btn-light-youtube.active i,.btn.btn-light-youtube.show .svg-icon,.btn.btn-light-youtube.show i,.btn.btn-light-youtube:active:not(.btn-active) .svg-icon,.btn.btn-light-youtube:active:not(.btn-active) i,.btn.btn-light-youtube:focus:not(.btn-active) .svg-icon,.btn.btn-light-youtube:focus:not(.btn-active) i,.btn.btn-light-youtube:hover:not(.btn-active) .svg-icon,.btn.btn-light-youtube:hover:not(.btn-active) i,.show>.btn.btn-light-youtube .svg-icon,.show>.btn.btn-light-youtube i{color:#fff}.btn-check:active+.btn.btn-light-youtube.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-youtube.dropdown-toggle:after,.btn.btn-light-youtube.active.dropdown-toggle:after,.btn.btn-light-youtube.show.dropdown-toggle:after,.btn.btn-light-youtube:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-youtube:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-youtube:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-youtube.dropdown-toggle:after{color:#fff}.btn.btn-linkedin{color:#fff;border-color:#0077b5;background-color:#0077b5}.btn.btn-linkedin .svg-icon,.btn.btn-linkedin i{color:#fff}.btn.btn-linkedin.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-linkedin,.btn-check:checked+.btn.btn-linkedin,.btn.btn-linkedin.active,.btn.btn-linkedin.show,.btn.btn-linkedin:active:not(.btn-active),.btn.btn-linkedin:focus:not(.btn-active),.btn.btn-linkedin:hover:not(.btn-active),.show>.btn.btn-linkedin{border-color:#005e8f;background-color:#005e8f!important}.btn.btn-light-linkedin{color:#0077b5;border-color:rgba(0,119,181,.1);background-color:rgba(0,119,181,.1)}.btn.btn-light-linkedin .svg-icon,.btn.btn-light-linkedin i{color:#0077b5}.btn.btn-light-linkedin.dropdown-toggle:after{color:#0077b5}.btn-check:active+.btn.btn-light-linkedin,.btn-check:checked+.btn.btn-light-linkedin,.btn.btn-light-linkedin.active,.btn.btn-light-linkedin.show,.btn.btn-light-linkedin:active:not(.btn-active),.btn.btn-light-linkedin:focus:not(.btn-active),.btn.btn-light-linkedin:hover:not(.btn-active),.show>.btn.btn-light-linkedin{color:#fff;border-color:#0077b5;background-color:#0077b5!important}.btn-check:active+.btn.btn-light-linkedin .svg-icon,.btn-check:active+.btn.btn-light-linkedin i,.btn-check:checked+.btn.btn-light-linkedin .svg-icon,.btn-check:checked+.btn.btn-light-linkedin i,.btn.btn-light-linkedin.active .svg-icon,.btn.btn-light-linkedin.active i,.btn.btn-light-linkedin.show .svg-icon,.btn.btn-light-linkedin.show i,.btn.btn-light-linkedin:active:not(.btn-active) .svg-icon,.btn.btn-light-linkedin:active:not(.btn-active) i,.btn.btn-light-linkedin:focus:not(.btn-active) .svg-icon,.btn.btn-light-linkedin:focus:not(.btn-active) i,.btn.btn-light-linkedin:hover:not(.btn-active) .svg-icon,.btn.btn-light-linkedin:hover:not(.btn-active) i,.show>.btn.btn-light-linkedin .svg-icon,.show>.btn.btn-light-linkedin i{color:#fff}.btn-check:active+.btn.btn-light-linkedin.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-linkedin.dropdown-toggle:after,.btn.btn-light-linkedin.active.dropdown-toggle:after,.btn.btn-light-linkedin.show.dropdown-toggle:after,.btn.btn-light-linkedin:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-linkedin:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-linkedin:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-linkedin.dropdown-toggle:after{color:#fff}.btn.btn-outline.btn-outline-dashed{border-width:1px;border-style:dashed}.btn-check:active+.btn.btn-outline.btn-outline-dashed,.btn-check:checked+.btn.btn-outline.btn-outline-dashed,.btn.btn-outline.btn-outline-dashed.active,.btn.btn-outline.btn-outline-dashed.show,.btn.btn-outline.btn-outline-dashed:active:not(.btn-active),.btn.btn-outline.btn-outline-dashed:focus:not(.btn-active),.btn.btn-outline.btn-outline-dashed:hover:not(.btn-active),.show>.btn.btn-outline.btn-outline-dashed{border-color:#009ef7}.btn.btn-outline.btn-outline-dashed.btn-outline-default{border-width:1px;border-style:dashed;color:#7e8299;border-color:#e4e6ef}.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default i{color:#7e8299}.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after{color:#7e8299}.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default,.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default,.btn.btn-outline.btn-outline-dashed.btn-outline-default.active,.btn.btn-outline.btn-outline-dashed.btn-outline-default.show,.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active),.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active),.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active),.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default{color:#009ef7;border-color:#009ef7;background-color:#f1faff!important}.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon,.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default i,.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon,.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default i,.btn.btn-outline.btn-outline-dashed.btn-outline-default.active .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default.active i,.btn.btn-outline.btn-outline-dashed.btn-outline-default.show .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default.show i,.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active) .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active) i,.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active) .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active) i,.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active) .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active) i,.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon,.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default i{color:#009ef7}.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after,.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default.active.dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default.show.dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active).dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after{color:#009ef7}code:not([class*=language-]){font-weight:400;color:#b93993;line-height:inherit;font-size:inherit;background-color:#f1f3f8;padding:.1rem .4rem;margin:0 .5rem;box-shadow:0 3px 9px rgba(0,0,0,.08);border-radius:.3rem}.form-control{box-shadow:none!important}.dropdown.show>.form-control{color:#5e6278;background-color:#fff;border-color:#b5b5c3}.form-control[readonly]{background-color:#fff}.form-control.form-control-solid{background-color:#f5f8fa;border-color:#f5f8fa;color:#5e6278;transition:color .2s ease,background-color .2s ease}.form-control.form-control-solid::placeholder{color:#a1a5b7}.form-control.form-control-solid::-moz-placeholder{color:#a1a5b7;opacity:1}.dropdown.show>.form-control.form-control-solid,.form-control.form-control-solid.active,.form-control.form-control-solid.focus,.form-control.form-control-solid:active,.form-control.form-control-solid:focus{background-color:#eef3f7;border-color:#eef3f7;color:#5e6278;transition:color .2s ease,background-color .2s ease}.form-control.form-control-transparent{background-color:transparent;border-color:transparent}.dropdown.show>.form-control.form-control-transparent,.form-control.form-control-transparent.active,.form-control.form-control-transparent.focus,.form-control.form-control-transparent:active,.form-control.form-control-transparent:focus{background-color:transparent;border-color:transparent}.form-control.form-control-flush{border:0;background-color:transparent;outline:0!important;box-shadow:none;border-radius:0}.placeholder-gray-500::placeholder{color:#a1a5b7}.placeholder-gray-500::-moz-placeholder{color:#a1a5b7;opacity:1}.placeholder-white::placeholder{color:#fff}.placeholder-white::-moz-placeholder{color:#fff;opacity:1}.resize-none{resize:none}.form-control-solid-bg{background-color:#f5f8fa}.form-select{box-shadow:none!important}.form-select.form-select-solid{background-color:#f5f8fa;border-color:#f5f8fa;color:#5e6278;transition:color .2s ease,background-color .2s ease}.form-select.form-select-solid::placeholder{color:#a1a5b7}.form-select.form-select-solid::-moz-placeholder{color:#a1a5b7;opacity:1}.dropdown.show>.form-select.form-select-solid,.form-select.form-select-solid.active,.form-select.form-select-solid.focus,.form-select.form-select-solid:active,.form-select.form-select-solid:focus{background-color:#eef3f7;border-color:#eef3f7!important;color:#5e6278;transition:color .2s ease,background-color .2s ease}.form-select.form-select-transparent{background-color:transparent;border-color:transparent;color:#5e6278}.form-select.form-select-transparent::placeholder{color:#a1a5b7}.form-select.form-select-transparent::-moz-placeholder{color:#a1a5b7;opacity:1}.dropdown.show>.form-select.form-select-transparent,.form-select.form-select-transparent.active,.form-select.form-select-transparent.focus,.form-select.form-select-transparent:active,.form-select.form-select-transparent:focus{background-color:transparent;border-color:transparent!important;color:#5e6278}.form-check .form-check-label{cursor:pointer}.form-check .form-check-input{cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-check.form-check-custom{display:flex;align-items:center;padding-right:0;margin:0}.form-check.form-check-custom .form-check-input{margin:0;float:none;flex-shrink:0}.form-check.form-check-custom .form-check-label{margin-right:.55rem}.form-check:not(.form-switch) .form-check-input[type=checkbox]{background-size:60% 60%}.form-check.form-check-solid .form-check-input{border:0;background-color:#eff2f5}.form-check.form-check-solid .form-check-input:active,.form-check.form-check-solid .form-check-input:focus{filter:none;background-color:#eff2f5}.form-check.form-check-solid .form-check-input:checked{background-color:#009ef7}.form-check.form-check-success .form-check-input:checked{background-color:#50cd89}.form-check.form-check-danger .form-check-input:checked{background-color:#f1416c}.form-check.form-check-warning .form-check-input:checked{background-color:#ffc700}.form-check.form-check-custom.form-check-sm .form-check-input{height:1.5rem;width:1.5rem}.form-check.form-check-custom.form-check-lg .form-check-input{height:2.25rem;width:2.25rem}.form-switch.form-check-solid .form-check-input{height:2.25rem;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='%23ffffff'/%3e%3c/svg%3e");border-radius:3.25rem}.form-switch.form-check-solid .form-check-input:checked{filter:none;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='%23FFFFFF'/%3e%3c/svg%3e")}.form-switch.form-check-solid.form-switch-sm .form-check-input{height:1.5rem;width:2.5rem}.form-switch.form-check-solid.form-switch-lg .form-check-input{height:2.75rem;width:3.75rem}.form-floating .form-control.form-control-solid::placeholder{color:transparent}.input-group.input-group-solid{border-radius:.475rem}.input-group.input-group-solid.input-group-sm{border-radius:.325rem}.input-group.input-group-solid.input-group-lg{border-radius:.625rem}.input-group.input-group-solid .input-group-text{background-color:#f5f8fa;border-color:#f5f8fa}.input-group.input-group-solid .input-group-text+.form-control{border-right-color:#e4e6ef}.input-group.input-group-solid .form-control{background-color:#f5f8fa;border-color:#f5f8fa}.input-group.input-group-solid .form-control+.input-group-text{border-right-color:#e4e6ef}.required:after{content:"*";position:relative;font-size:inherit;color:#f1416c;padding-right:.25rem;font-weight:700}.modal .modal-header{align-items:center;justify-content:space-between;border-top-right-radius:.475rem;border-top-left-radius:.475rem}.modal .modal-header .h1,.modal .modal-header .h2,.modal .modal-header .h3,.modal .modal-header .h4,.modal .modal-header .h5,.modal .modal-header .h6,.modal .modal-header h1,.modal .modal-header h2,.modal .modal-header h3,.modal .modal-header h4,.modal .modal-header h5,.modal .modal-header h6{margin-bottom:0}.modal .modal-dialog{outline:0!important}.modal-rounded{border-radius:.475rem!important}.progress-vertical{display:flex;align-items:stretch;justify-content:space-between}.progress-vertical .progress{height:100%;border-radius:.475rem;display:flex;align-items:flex-end;margin-left:1rem}.progress-vertical .progress:last-child{margin-left:0}.progress-vertical .progress .progress-bar{width:8px;border-radius:.475rem}.table>:not(:first-child){border-color:transparent;border-width:0;border-style:none}.table>:not(:last-child)>:last-child>*{border-bottom-color:inherit}.table td,.table th,.table tr{border-color:inherit;border-width:inherit;border-style:inherit;text-transform:inherit;font-weight:inherit;font-size:inherit;color:inherit;height:inherit;min-height:inherit}.table td:first-child,.table th:first-child,.table tr:first-child{padding-right:0}.table td:last-child,.table th:last-child,.table tr:last-child{padding-left:0}.table tbody tr:last-child,.table tfoot tr:last-child{border-bottom:0!important}.table tbody tr:last-child td,.table tbody tr:last-child th,.table tfoot tr:last-child td,.table tfoot tr:last-child th{border-bottom:0!important}.table tfoot td,.table tfoot th{border-top:inherit}.table.table-rounded{border-radius:.475rem;border-spacing:0;border-collapse:separate}.table.table-flush td,.table.table-flush th,.table.table-flush tr{padding:inherit}.table.table-row-bordered tr{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eff2f5}.table.table-row-bordered tfoot td,.table.table-row-bordered tfoot th{border-top-width:1px!important}.table.table-row-dashed tr{border-bottom-width:1px;border-bottom-style:dashed;border-bottom-color:#eff2f5}.table.table-row-dashed tfoot td,.table.table-row-dashed tfoot th{border-top-width:1px!important}.table.table-row-gray-100 tr{border-bottom-color:#f5f8fa}.table.table-row-gray-200 tr{border-bottom-color:#eff2f5}.table.table-row-gray-300 tr{border-bottom-color:#e4e6ef}.table.table-row-gray-400 tr{border-bottom-color:#b5b5c3}.table.table-row-gray-500 tr{border-bottom-color:#a1a5b7}.table.table-row-gray-600 tr{border-bottom-color:#7e8299}.table.table-row-gray-700 tr{border-bottom-color:#5e6278}.table.table-row-gray-800 tr{border-bottom-color:#3f4254}.table.table-row-gray-900 tr{border-bottom-color:#181c32}.table-sort:after{opacity:0}.table-sort,.table-sort-asc,.table-sort-desc{vertical-align:middle}.table-sort-asc:after,.table-sort-desc:after,.table-sort:after{position:relative;display:inline-block;width:.75rem;height:.75rem;content:" ";bottom:auto;left:auto;right:auto;margin-right:.5rem}.table-sort-asc:after{opacity:1;background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 8' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.42111 2.06463C4.22088 1.96161 3.9637 1.9809 3.78597 2.12863L0.177181 5.12847C-0.046034 5.31402 -0.0602611 5.63049 0.145404 5.83532C0.351069 6.04015 0.698744 6.05578 0.921959 5.87023L4.14137 3.19406L7.06417 5.84414C7.27904 6.03896 7.62686 6.03835 7.84105 5.84278C8.05524 5.64721 8.05469 5.33073 7.83982 5.13591L4.54449 2.14806C4.50704 2.1141 4.46541 2.08629 4.42111 2.06463Z'/%3e%3c/svg%3e")}.table-sort-desc:after{opacity:1;background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 8' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.42111 5.93537C4.22088 6.03839 3.9637 6.0191 3.78597 5.87137L0.177181 2.87153C-0.046034 2.68598 -0.060261 2.36951 0.145404 2.16468C0.351069 1.95985 0.698744 1.94422 0.921959 2.12977L4.14137 4.80594L7.06417 2.15586C7.27904 1.96104 7.62686 1.96165 7.84105 2.15722C8.05524 2.35279 8.05469 2.66927 7.83982 2.86409L4.54449 5.85194C4.50704 5.8859 4.46541 5.91371 4.42111 5.93537Z'/%3e%3c/svg%3e")}.table-loading-message{display:none;position:absolute;top:50%;right:50%;border-radius:.475rem;box-shadow:0 0 50px 0 rgba(82,63,105,.15);background-color:#fff;color:#7e8299;font-weight:500;margin:0!important;width:auto;padding:1rem 2rem!important;transform:translateX(50%) translateY(-50%)}.table-loading{position:relative}.table-loading .table-loading-message{display:block}.table.g-0 td,.table.g-0 th{padding:0}.table.g-0 td.dtr-control,.table.g-0 th.dtr-control{padding-right:0!important}.table.gy-0 td,.table.gy-0 th{padding-top:0;padding-bottom:0}.table.gx-0 td,.table.gx-0 th{padding-right:0;padding-left:0}.table.gx-0 td.dtr-control,.table.gx-0 th.dtr-control{padding-right:0!important}.table.gs-0 td:first-child,.table.gs-0 th:first-child{padding-right:0}.table.gs-0 td:last-child,.table.gs-0 th:last-child{padding-left:0}.table.gs-0 td.dtr-control:first-child,.table.gs-0 th.dtr-control:first-child{padding-right:0!important}.table.g-1 td,.table.g-1 th{padding:.25rem}.table.g-1 td.dtr-control,.table.g-1 th.dtr-control{padding-right:.25rem!important}.table.gy-1 td,.table.gy-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-1 td,.table.gx-1 th{padding-right:.25rem;padding-left:.25rem}.table.gx-1 td.dtr-control,.table.gx-1 th.dtr-control{padding-right:.25rem!important}.table.gs-1 td:first-child,.table.gs-1 th:first-child{padding-right:.25rem}.table.gs-1 td:last-child,.table.gs-1 th:last-child{padding-left:.25rem}.table.gs-1 td.dtr-control:first-child,.table.gs-1 th.dtr-control:first-child{padding-right:.25rem!important}.table.g-2 td,.table.g-2 th{padding:.5rem}.table.g-2 td.dtr-control,.table.g-2 th.dtr-control{padding-right:.5rem!important}.table.gy-2 td,.table.gy-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-2 td,.table.gx-2 th{padding-right:.5rem;padding-left:.5rem}.table.gx-2 td.dtr-control,.table.gx-2 th.dtr-control{padding-right:.5rem!important}.table.gs-2 td:first-child,.table.gs-2 th:first-child{padding-right:.5rem}.table.gs-2 td:last-child,.table.gs-2 th:last-child{padding-left:.5rem}.table.gs-2 td.dtr-control:first-child,.table.gs-2 th.dtr-control:first-child{padding-right:.5rem!important}.table.g-3 td,.table.g-3 th{padding:.75rem}.table.g-3 td.dtr-control,.table.g-3 th.dtr-control{padding-right:.75rem!important}.table.gy-3 td,.table.gy-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-3 td,.table.gx-3 th{padding-right:.75rem;padding-left:.75rem}.table.gx-3 td.dtr-control,.table.gx-3 th.dtr-control{padding-right:.75rem!important}.table.gs-3 td:first-child,.table.gs-3 th:first-child{padding-right:.75rem}.table.gs-3 td:last-child,.table.gs-3 th:last-child{padding-left:.75rem}.table.gs-3 td.dtr-control:first-child,.table.gs-3 th.dtr-control:first-child{padding-right:.75rem!important}.table.g-4 td,.table.g-4 th{padding:1rem}.table.g-4 td.dtr-control,.table.g-4 th.dtr-control{padding-right:1rem!important}.table.gy-4 td,.table.gy-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-4 td,.table.gx-4 th{padding-right:1rem;padding-left:1rem}.table.gx-4 td.dtr-control,.table.gx-4 th.dtr-control{padding-right:1rem!important}.table.gs-4 td:first-child,.table.gs-4 th:first-child{padding-right:1rem}.table.gs-4 td:last-child,.table.gs-4 th:last-child{padding-left:1rem}.table.gs-4 td.dtr-control:first-child,.table.gs-4 th.dtr-control:first-child{padding-right:1rem!important}.table.g-5 td,.table.g-5 th{padding:1.25rem}.table.g-5 td.dtr-control,.table.g-5 th.dtr-control{padding-right:1.25rem!important}.table.gy-5 td,.table.gy-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-5 td,.table.gx-5 th{padding-right:1.25rem;padding-left:1.25rem}.table.gx-5 td.dtr-control,.table.gx-5 th.dtr-control{padding-right:1.25rem!important}.table.gs-5 td:first-child,.table.gs-5 th:first-child{padding-right:1.25rem}.table.gs-5 td:last-child,.table.gs-5 th:last-child{padding-left:1.25rem}.table.gs-5 td.dtr-control:first-child,.table.gs-5 th.dtr-control:first-child{padding-right:1.25rem!important}.table.g-6 td,.table.g-6 th{padding:1.5rem}.table.g-6 td.dtr-control,.table.g-6 th.dtr-control{padding-right:1.5rem!important}.table.gy-6 td,.table.gy-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-6 td,.table.gx-6 th{padding-right:1.5rem;padding-left:1.5rem}.table.gx-6 td.dtr-control,.table.gx-6 th.dtr-control{padding-right:1.5rem!important}.table.gs-6 td:first-child,.table.gs-6 th:first-child{padding-right:1.5rem}.table.gs-6 td:last-child,.table.gs-6 th:last-child{padding-left:1.5rem}.table.gs-6 td.dtr-control:first-child,.table.gs-6 th.dtr-control:first-child{padding-right:1.5rem!important}.table.g-7 td,.table.g-7 th{padding:1.75rem}.table.g-7 td.dtr-control,.table.g-7 th.dtr-control{padding-right:1.75rem!important}.table.gy-7 td,.table.gy-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-7 td,.table.gx-7 th{padding-right:1.75rem;padding-left:1.75rem}.table.gx-7 td.dtr-control,.table.gx-7 th.dtr-control{padding-right:1.75rem!important}.table.gs-7 td:first-child,.table.gs-7 th:first-child{padding-right:1.75rem}.table.gs-7 td:last-child,.table.gs-7 th:last-child{padding-left:1.75rem}.table.gs-7 td.dtr-control:first-child,.table.gs-7 th.dtr-control:first-child{padding-right:1.75rem!important}.table.g-8 td,.table.g-8 th{padding:2rem}.table.g-8 td.dtr-control,.table.g-8 th.dtr-control{padding-right:2rem!important}.table.gy-8 td,.table.gy-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-8 td,.table.gx-8 th{padding-right:2rem;padding-left:2rem}.table.gx-8 td.dtr-control,.table.gx-8 th.dtr-control{padding-right:2rem!important}.table.gs-8 td:first-child,.table.gs-8 th:first-child{padding-right:2rem}.table.gs-8 td:last-child,.table.gs-8 th:last-child{padding-left:2rem}.table.gs-8 td.dtr-control:first-child,.table.gs-8 th.dtr-control:first-child{padding-right:2rem!important}.table.g-9 td,.table.g-9 th{padding:2.25rem}.table.g-9 td.dtr-control,.table.g-9 th.dtr-control{padding-right:2.25rem!important}.table.gy-9 td,.table.gy-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-9 td,.table.gx-9 th{padding-right:2.25rem;padding-left:2.25rem}.table.gx-9 td.dtr-control,.table.gx-9 th.dtr-control{padding-right:2.25rem!important}.table.gs-9 td:first-child,.table.gs-9 th:first-child{padding-right:2.25rem}.table.gs-9 td:last-child,.table.gs-9 th:last-child{padding-left:2.25rem}.table.gs-9 td.dtr-control:first-child,.table.gs-9 th.dtr-control:first-child{padding-right:2.25rem!important}.table.g-10 td,.table.g-10 th{padding:2.5rem}.table.g-10 td.dtr-control,.table.g-10 th.dtr-control{padding-right:2.5rem!important}.table.gy-10 td,.table.gy-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-10 td,.table.gx-10 th{padding-right:2.5rem;padding-left:2.5rem}.table.gx-10 td.dtr-control,.table.gx-10 th.dtr-control{padding-right:2.5rem!important}.table.gs-10 td:first-child,.table.gs-10 th:first-child{padding-right:2.5rem}.table.gs-10 td:last-child,.table.gs-10 th:last-child{padding-left:2.5rem}.table.gs-10 td.dtr-control:first-child,.table.gs-10 th.dtr-control:first-child{padding-right:2.5rem!important}@media (min-width:576px){.table.g-sm-0 td,.table.g-sm-0 th{padding:0}.table.g-sm-0 td.dtr-control,.table.g-sm-0 th.dtr-control{padding-right:0!important}.table.gy-sm-0 td,.table.gy-sm-0 th{padding-top:0;padding-bottom:0}.table.gx-sm-0 td,.table.gx-sm-0 th{padding-right:0;padding-left:0}.table.gx-sm-0 td.dtr-control,.table.gx-sm-0 th.dtr-control{padding-right:0!important}.table.gs-sm-0 td:first-child,.table.gs-sm-0 th:first-child{padding-right:0}.table.gs-sm-0 td:last-child,.table.gs-sm-0 th:last-child{padding-left:0}.table.gs-sm-0 td.dtr-control:first-child,.table.gs-sm-0 th.dtr-control:first-child{padding-right:0!important}.table.g-sm-1 td,.table.g-sm-1 th{padding:.25rem}.table.g-sm-1 td.dtr-control,.table.g-sm-1 th.dtr-control{padding-right:.25rem!important}.table.gy-sm-1 td,.table.gy-sm-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-sm-1 td,.table.gx-sm-1 th{padding-right:.25rem;padding-left:.25rem}.table.gx-sm-1 td.dtr-control,.table.gx-sm-1 th.dtr-control{padding-right:.25rem!important}.table.gs-sm-1 td:first-child,.table.gs-sm-1 th:first-child{padding-right:.25rem}.table.gs-sm-1 td:last-child,.table.gs-sm-1 th:last-child{padding-left:.25rem}.table.gs-sm-1 td.dtr-control:first-child,.table.gs-sm-1 th.dtr-control:first-child{padding-right:.25rem!important}.table.g-sm-2 td,.table.g-sm-2 th{padding:.5rem}.table.g-sm-2 td.dtr-control,.table.g-sm-2 th.dtr-control{padding-right:.5rem!important}.table.gy-sm-2 td,.table.gy-sm-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-sm-2 td,.table.gx-sm-2 th{padding-right:.5rem;padding-left:.5rem}.table.gx-sm-2 td.dtr-control,.table.gx-sm-2 th.dtr-control{padding-right:.5rem!important}.table.gs-sm-2 td:first-child,.table.gs-sm-2 th:first-child{padding-right:.5rem}.table.gs-sm-2 td:last-child,.table.gs-sm-2 th:last-child{padding-left:.5rem}.table.gs-sm-2 td.dtr-control:first-child,.table.gs-sm-2 th.dtr-control:first-child{padding-right:.5rem!important}.table.g-sm-3 td,.table.g-sm-3 th{padding:.75rem}.table.g-sm-3 td.dtr-control,.table.g-sm-3 th.dtr-control{padding-right:.75rem!important}.table.gy-sm-3 td,.table.gy-sm-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-sm-3 td,.table.gx-sm-3 th{padding-right:.75rem;padding-left:.75rem}.table.gx-sm-3 td.dtr-control,.table.gx-sm-3 th.dtr-control{padding-right:.75rem!important}.table.gs-sm-3 td:first-child,.table.gs-sm-3 th:first-child{padding-right:.75rem}.table.gs-sm-3 td:last-child,.table.gs-sm-3 th:last-child{padding-left:.75rem}.table.gs-sm-3 td.dtr-control:first-child,.table.gs-sm-3 th.dtr-control:first-child{padding-right:.75rem!important}.table.g-sm-4 td,.table.g-sm-4 th{padding:1rem}.table.g-sm-4 td.dtr-control,.table.g-sm-4 th.dtr-control{padding-right:1rem!important}.table.gy-sm-4 td,.table.gy-sm-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-sm-4 td,.table.gx-sm-4 th{padding-right:1rem;padding-left:1rem}.table.gx-sm-4 td.dtr-control,.table.gx-sm-4 th.dtr-control{padding-right:1rem!important}.table.gs-sm-4 td:first-child,.table.gs-sm-4 th:first-child{padding-right:1rem}.table.gs-sm-4 td:last-child,.table.gs-sm-4 th:last-child{padding-left:1rem}.table.gs-sm-4 td.dtr-control:first-child,.table.gs-sm-4 th.dtr-control:first-child{padding-right:1rem!important}.table.g-sm-5 td,.table.g-sm-5 th{padding:1.25rem}.table.g-sm-5 td.dtr-control,.table.g-sm-5 th.dtr-control{padding-right:1.25rem!important}.table.gy-sm-5 td,.table.gy-sm-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-sm-5 td,.table.gx-sm-5 th{padding-right:1.25rem;padding-left:1.25rem}.table.gx-sm-5 td.dtr-control,.table.gx-sm-5 th.dtr-control{padding-right:1.25rem!important}.table.gs-sm-5 td:first-child,.table.gs-sm-5 th:first-child{padding-right:1.25rem}.table.gs-sm-5 td:last-child,.table.gs-sm-5 th:last-child{padding-left:1.25rem}.table.gs-sm-5 td.dtr-control:first-child,.table.gs-sm-5 th.dtr-control:first-child{padding-right:1.25rem!important}.table.g-sm-6 td,.table.g-sm-6 th{padding:1.5rem}.table.g-sm-6 td.dtr-control,.table.g-sm-6 th.dtr-control{padding-right:1.5rem!important}.table.gy-sm-6 td,.table.gy-sm-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-sm-6 td,.table.gx-sm-6 th{padding-right:1.5rem;padding-left:1.5rem}.table.gx-sm-6 td.dtr-control,.table.gx-sm-6 th.dtr-control{padding-right:1.5rem!important}.table.gs-sm-6 td:first-child,.table.gs-sm-6 th:first-child{padding-right:1.5rem}.table.gs-sm-6 td:last-child,.table.gs-sm-6 th:last-child{padding-left:1.5rem}.table.gs-sm-6 td.dtr-control:first-child,.table.gs-sm-6 th.dtr-control:first-child{padding-right:1.5rem!important}.table.g-sm-7 td,.table.g-sm-7 th{padding:1.75rem}.table.g-sm-7 td.dtr-control,.table.g-sm-7 th.dtr-control{padding-right:1.75rem!important}.table.gy-sm-7 td,.table.gy-sm-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-sm-7 td,.table.gx-sm-7 th{padding-right:1.75rem;padding-left:1.75rem}.table.gx-sm-7 td.dtr-control,.table.gx-sm-7 th.dtr-control{padding-right:1.75rem!important}.table.gs-sm-7 td:first-child,.table.gs-sm-7 th:first-child{padding-right:1.75rem}.table.gs-sm-7 td:last-child,.table.gs-sm-7 th:last-child{padding-left:1.75rem}.table.gs-sm-7 td.dtr-control:first-child,.table.gs-sm-7 th.dtr-control:first-child{padding-right:1.75rem!important}.table.g-sm-8 td,.table.g-sm-8 th{padding:2rem}.table.g-sm-8 td.dtr-control,.table.g-sm-8 th.dtr-control{padding-right:2rem!important}.table.gy-sm-8 td,.table.gy-sm-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-sm-8 td,.table.gx-sm-8 th{padding-right:2rem;padding-left:2rem}.table.gx-sm-8 td.dtr-control,.table.gx-sm-8 th.dtr-control{padding-right:2rem!important}.table.gs-sm-8 td:first-child,.table.gs-sm-8 th:first-child{padding-right:2rem}.table.gs-sm-8 td:last-child,.table.gs-sm-8 th:last-child{padding-left:2rem}.table.gs-sm-8 td.dtr-control:first-child,.table.gs-sm-8 th.dtr-control:first-child{padding-right:2rem!important}.table.g-sm-9 td,.table.g-sm-9 th{padding:2.25rem}.table.g-sm-9 td.dtr-control,.table.g-sm-9 th.dtr-control{padding-right:2.25rem!important}.table.gy-sm-9 td,.table.gy-sm-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-sm-9 td,.table.gx-sm-9 th{padding-right:2.25rem;padding-left:2.25rem}.table.gx-sm-9 td.dtr-control,.table.gx-sm-9 th.dtr-control{padding-right:2.25rem!important}.table.gs-sm-9 td:first-child,.table.gs-sm-9 th:first-child{padding-right:2.25rem}.table.gs-sm-9 td:last-child,.table.gs-sm-9 th:last-child{padding-left:2.25rem}.table.gs-sm-9 td.dtr-control:first-child,.table.gs-sm-9 th.dtr-control:first-child{padding-right:2.25rem!important}.table.g-sm-10 td,.table.g-sm-10 th{padding:2.5rem}.table.g-sm-10 td.dtr-control,.table.g-sm-10 th.dtr-control{padding-right:2.5rem!important}.table.gy-sm-10 td,.table.gy-sm-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-sm-10 td,.table.gx-sm-10 th{padding-right:2.5rem;padding-left:2.5rem}.table.gx-sm-10 td.dtr-control,.table.gx-sm-10 th.dtr-control{padding-right:2.5rem!important}.table.gs-sm-10 td:first-child,.table.gs-sm-10 th:first-child{padding-right:2.5rem}.table.gs-sm-10 td:last-child,.table.gs-sm-10 th:last-child{padding-left:2.5rem}.table.gs-sm-10 td.dtr-control:first-child,.table.gs-sm-10 th.dtr-control:first-child{padding-right:2.5rem!important}}@media (min-width:768px){.table.g-md-0 td,.table.g-md-0 th{padding:0}.table.g-md-0 td.dtr-control,.table.g-md-0 th.dtr-control{padding-right:0!important}.table.gy-md-0 td,.table.gy-md-0 th{padding-top:0;padding-bottom:0}.table.gx-md-0 td,.table.gx-md-0 th{padding-right:0;padding-left:0}.table.gx-md-0 td.dtr-control,.table.gx-md-0 th.dtr-control{padding-right:0!important}.table.gs-md-0 td:first-child,.table.gs-md-0 th:first-child{padding-right:0}.table.gs-md-0 td:last-child,.table.gs-md-0 th:last-child{padding-left:0}.table.gs-md-0 td.dtr-control:first-child,.table.gs-md-0 th.dtr-control:first-child{padding-right:0!important}.table.g-md-1 td,.table.g-md-1 th{padding:.25rem}.table.g-md-1 td.dtr-control,.table.g-md-1 th.dtr-control{padding-right:.25rem!important}.table.gy-md-1 td,.table.gy-md-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-md-1 td,.table.gx-md-1 th{padding-right:.25rem;padding-left:.25rem}.table.gx-md-1 td.dtr-control,.table.gx-md-1 th.dtr-control{padding-right:.25rem!important}.table.gs-md-1 td:first-child,.table.gs-md-1 th:first-child{padding-right:.25rem}.table.gs-md-1 td:last-child,.table.gs-md-1 th:last-child{padding-left:.25rem}.table.gs-md-1 td.dtr-control:first-child,.table.gs-md-1 th.dtr-control:first-child{padding-right:.25rem!important}.table.g-md-2 td,.table.g-md-2 th{padding:.5rem}.table.g-md-2 td.dtr-control,.table.g-md-2 th.dtr-control{padding-right:.5rem!important}.table.gy-md-2 td,.table.gy-md-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-md-2 td,.table.gx-md-2 th{padding-right:.5rem;padding-left:.5rem}.table.gx-md-2 td.dtr-control,.table.gx-md-2 th.dtr-control{padding-right:.5rem!important}.table.gs-md-2 td:first-child,.table.gs-md-2 th:first-child{padding-right:.5rem}.table.gs-md-2 td:last-child,.table.gs-md-2 th:last-child{padding-left:.5rem}.table.gs-md-2 td.dtr-control:first-child,.table.gs-md-2 th.dtr-control:first-child{padding-right:.5rem!important}.table.g-md-3 td,.table.g-md-3 th{padding:.75rem}.table.g-md-3 td.dtr-control,.table.g-md-3 th.dtr-control{padding-right:.75rem!important}.table.gy-md-3 td,.table.gy-md-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-md-3 td,.table.gx-md-3 th{padding-right:.75rem;padding-left:.75rem}.table.gx-md-3 td.dtr-control,.table.gx-md-3 th.dtr-control{padding-right:.75rem!important}.table.gs-md-3 td:first-child,.table.gs-md-3 th:first-child{padding-right:.75rem}.table.gs-md-3 td:last-child,.table.gs-md-3 th:last-child{padding-left:.75rem}.table.gs-md-3 td.dtr-control:first-child,.table.gs-md-3 th.dtr-control:first-child{padding-right:.75rem!important}.table.g-md-4 td,.table.g-md-4 th{padding:1rem}.table.g-md-4 td.dtr-control,.table.g-md-4 th.dtr-control{padding-right:1rem!important}.table.gy-md-4 td,.table.gy-md-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-md-4 td,.table.gx-md-4 th{padding-right:1rem;padding-left:1rem}.table.gx-md-4 td.dtr-control,.table.gx-md-4 th.dtr-control{padding-right:1rem!important}.table.gs-md-4 td:first-child,.table.gs-md-4 th:first-child{padding-right:1rem}.table.gs-md-4 td:last-child,.table.gs-md-4 th:last-child{padding-left:1rem}.table.gs-md-4 td.dtr-control:first-child,.table.gs-md-4 th.dtr-control:first-child{padding-right:1rem!important}.table.g-md-5 td,.table.g-md-5 th{padding:1.25rem}.table.g-md-5 td.dtr-control,.table.g-md-5 th.dtr-control{padding-right:1.25rem!important}.table.gy-md-5 td,.table.gy-md-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-md-5 td,.table.gx-md-5 th{padding-right:1.25rem;padding-left:1.25rem}.table.gx-md-5 td.dtr-control,.table.gx-md-5 th.dtr-control{padding-right:1.25rem!important}.table.gs-md-5 td:first-child,.table.gs-md-5 th:first-child{padding-right:1.25rem}.table.gs-md-5 td:last-child,.table.gs-md-5 th:last-child{padding-left:1.25rem}.table.gs-md-5 td.dtr-control:first-child,.table.gs-md-5 th.dtr-control:first-child{padding-right:1.25rem!important}.table.g-md-6 td,.table.g-md-6 th{padding:1.5rem}.table.g-md-6 td.dtr-control,.table.g-md-6 th.dtr-control{padding-right:1.5rem!important}.table.gy-md-6 td,.table.gy-md-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-md-6 td,.table.gx-md-6 th{padding-right:1.5rem;padding-left:1.5rem}.table.gx-md-6 td.dtr-control,.table.gx-md-6 th.dtr-control{padding-right:1.5rem!important}.table.gs-md-6 td:first-child,.table.gs-md-6 th:first-child{padding-right:1.5rem}.table.gs-md-6 td:last-child,.table.gs-md-6 th:last-child{padding-left:1.5rem}.table.gs-md-6 td.dtr-control:first-child,.table.gs-md-6 th.dtr-control:first-child{padding-right:1.5rem!important}.table.g-md-7 td,.table.g-md-7 th{padding:1.75rem}.table.g-md-7 td.dtr-control,.table.g-md-7 th.dtr-control{padding-right:1.75rem!important}.table.gy-md-7 td,.table.gy-md-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-md-7 td,.table.gx-md-7 th{padding-right:1.75rem;padding-left:1.75rem}.table.gx-md-7 td.dtr-control,.table.gx-md-7 th.dtr-control{padding-right:1.75rem!important}.table.gs-md-7 td:first-child,.table.gs-md-7 th:first-child{padding-right:1.75rem}.table.gs-md-7 td:last-child,.table.gs-md-7 th:last-child{padding-left:1.75rem}.table.gs-md-7 td.dtr-control:first-child,.table.gs-md-7 th.dtr-control:first-child{padding-right:1.75rem!important}.table.g-md-8 td,.table.g-md-8 th{padding:2rem}.table.g-md-8 td.dtr-control,.table.g-md-8 th.dtr-control{padding-right:2rem!important}.table.gy-md-8 td,.table.gy-md-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-md-8 td,.table.gx-md-8 th{padding-right:2rem;padding-left:2rem}.table.gx-md-8 td.dtr-control,.table.gx-md-8 th.dtr-control{padding-right:2rem!important}.table.gs-md-8 td:first-child,.table.gs-md-8 th:first-child{padding-right:2rem}.table.gs-md-8 td:last-child,.table.gs-md-8 th:last-child{padding-left:2rem}.table.gs-md-8 td.dtr-control:first-child,.table.gs-md-8 th.dtr-control:first-child{padding-right:2rem!important}.table.g-md-9 td,.table.g-md-9 th{padding:2.25rem}.table.g-md-9 td.dtr-control,.table.g-md-9 th.dtr-control{padding-right:2.25rem!important}.table.gy-md-9 td,.table.gy-md-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-md-9 td,.table.gx-md-9 th{padding-right:2.25rem;padding-left:2.25rem}.table.gx-md-9 td.dtr-control,.table.gx-md-9 th.dtr-control{padding-right:2.25rem!important}.table.gs-md-9 td:first-child,.table.gs-md-9 th:first-child{padding-right:2.25rem}.table.gs-md-9 td:last-child,.table.gs-md-9 th:last-child{padding-left:2.25rem}.table.gs-md-9 td.dtr-control:first-child,.table.gs-md-9 th.dtr-control:first-child{padding-right:2.25rem!important}.table.g-md-10 td,.table.g-md-10 th{padding:2.5rem}.table.g-md-10 td.dtr-control,.table.g-md-10 th.dtr-control{padding-right:2.5rem!important}.table.gy-md-10 td,.table.gy-md-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-md-10 td,.table.gx-md-10 th{padding-right:2.5rem;padding-left:2.5rem}.table.gx-md-10 td.dtr-control,.table.gx-md-10 th.dtr-control{padding-right:2.5rem!important}.table.gs-md-10 td:first-child,.table.gs-md-10 th:first-child{padding-right:2.5rem}.table.gs-md-10 td:last-child,.table.gs-md-10 th:last-child{padding-left:2.5rem}.table.gs-md-10 td.dtr-control:first-child,.table.gs-md-10 th.dtr-control:first-child{padding-right:2.5rem!important}}@media (min-width:992px){.table.g-lg-0 td,.table.g-lg-0 th{padding:0}.table.g-lg-0 td.dtr-control,.table.g-lg-0 th.dtr-control{padding-right:0!important}.table.gy-lg-0 td,.table.gy-lg-0 th{padding-top:0;padding-bottom:0}.table.gx-lg-0 td,.table.gx-lg-0 th{padding-right:0;padding-left:0}.table.gx-lg-0 td.dtr-control,.table.gx-lg-0 th.dtr-control{padding-right:0!important}.table.gs-lg-0 td:first-child,.table.gs-lg-0 th:first-child{padding-right:0}.table.gs-lg-0 td:last-child,.table.gs-lg-0 th:last-child{padding-left:0}.table.gs-lg-0 td.dtr-control:first-child,.table.gs-lg-0 th.dtr-control:first-child{padding-right:0!important}.table.g-lg-1 td,.table.g-lg-1 th{padding:.25rem}.table.g-lg-1 td.dtr-control,.table.g-lg-1 th.dtr-control{padding-right:.25rem!important}.table.gy-lg-1 td,.table.gy-lg-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-lg-1 td,.table.gx-lg-1 th{padding-right:.25rem;padding-left:.25rem}.table.gx-lg-1 td.dtr-control,.table.gx-lg-1 th.dtr-control{padding-right:.25rem!important}.table.gs-lg-1 td:first-child,.table.gs-lg-1 th:first-child{padding-right:.25rem}.table.gs-lg-1 td:last-child,.table.gs-lg-1 th:last-child{padding-left:.25rem}.table.gs-lg-1 td.dtr-control:first-child,.table.gs-lg-1 th.dtr-control:first-child{padding-right:.25rem!important}.table.g-lg-2 td,.table.g-lg-2 th{padding:.5rem}.table.g-lg-2 td.dtr-control,.table.g-lg-2 th.dtr-control{padding-right:.5rem!important}.table.gy-lg-2 td,.table.gy-lg-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-lg-2 td,.table.gx-lg-2 th{padding-right:.5rem;padding-left:.5rem}.table.gx-lg-2 td.dtr-control,.table.gx-lg-2 th.dtr-control{padding-right:.5rem!important}.table.gs-lg-2 td:first-child,.table.gs-lg-2 th:first-child{padding-right:.5rem}.table.gs-lg-2 td:last-child,.table.gs-lg-2 th:last-child{padding-left:.5rem}.table.gs-lg-2 td.dtr-control:first-child,.table.gs-lg-2 th.dtr-control:first-child{padding-right:.5rem!important}.table.g-lg-3 td,.table.g-lg-3 th{padding:.75rem}.table.g-lg-3 td.dtr-control,.table.g-lg-3 th.dtr-control{padding-right:.75rem!important}.table.gy-lg-3 td,.table.gy-lg-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-lg-3 td,.table.gx-lg-3 th{padding-right:.75rem;padding-left:.75rem}.table.gx-lg-3 td.dtr-control,.table.gx-lg-3 th.dtr-control{padding-right:.75rem!important}.table.gs-lg-3 td:first-child,.table.gs-lg-3 th:first-child{padding-right:.75rem}.table.gs-lg-3 td:last-child,.table.gs-lg-3 th:last-child{padding-left:.75rem}.table.gs-lg-3 td.dtr-control:first-child,.table.gs-lg-3 th.dtr-control:first-child{padding-right:.75rem!important}.table.g-lg-4 td,.table.g-lg-4 th{padding:1rem}.table.g-lg-4 td.dtr-control,.table.g-lg-4 th.dtr-control{padding-right:1rem!important}.table.gy-lg-4 td,.table.gy-lg-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-lg-4 td,.table.gx-lg-4 th{padding-right:1rem;padding-left:1rem}.table.gx-lg-4 td.dtr-control,.table.gx-lg-4 th.dtr-control{padding-right:1rem!important}.table.gs-lg-4 td:first-child,.table.gs-lg-4 th:first-child{padding-right:1rem}.table.gs-lg-4 td:last-child,.table.gs-lg-4 th:last-child{padding-left:1rem}.table.gs-lg-4 td.dtr-control:first-child,.table.gs-lg-4 th.dtr-control:first-child{padding-right:1rem!important}.table.g-lg-5 td,.table.g-lg-5 th{padding:1.25rem}.table.g-lg-5 td.dtr-control,.table.g-lg-5 th.dtr-control{padding-right:1.25rem!important}.table.gy-lg-5 td,.table.gy-lg-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-lg-5 td,.table.gx-lg-5 th{padding-right:1.25rem;padding-left:1.25rem}.table.gx-lg-5 td.dtr-control,.table.gx-lg-5 th.dtr-control{padding-right:1.25rem!important}.table.gs-lg-5 td:first-child,.table.gs-lg-5 th:first-child{padding-right:1.25rem}.table.gs-lg-5 td:last-child,.table.gs-lg-5 th:last-child{padding-left:1.25rem}.table.gs-lg-5 td.dtr-control:first-child,.table.gs-lg-5 th.dtr-control:first-child{padding-right:1.25rem!important}.table.g-lg-6 td,.table.g-lg-6 th{padding:1.5rem}.table.g-lg-6 td.dtr-control,.table.g-lg-6 th.dtr-control{padding-right:1.5rem!important}.table.gy-lg-6 td,.table.gy-lg-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-lg-6 td,.table.gx-lg-6 th{padding-right:1.5rem;padding-left:1.5rem}.table.gx-lg-6 td.dtr-control,.table.gx-lg-6 th.dtr-control{padding-right:1.5rem!important}.table.gs-lg-6 td:first-child,.table.gs-lg-6 th:first-child{padding-right:1.5rem}.table.gs-lg-6 td:last-child,.table.gs-lg-6 th:last-child{padding-left:1.5rem}.table.gs-lg-6 td.dtr-control:first-child,.table.gs-lg-6 th.dtr-control:first-child{padding-right:1.5rem!important}.table.g-lg-7 td,.table.g-lg-7 th{padding:1.75rem}.table.g-lg-7 td.dtr-control,.table.g-lg-7 th.dtr-control{padding-right:1.75rem!important}.table.gy-lg-7 td,.table.gy-lg-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-lg-7 td,.table.gx-lg-7 th{padding-right:1.75rem;padding-left:1.75rem}.table.gx-lg-7 td.dtr-control,.table.gx-lg-7 th.dtr-control{padding-right:1.75rem!important}.table.gs-lg-7 td:first-child,.table.gs-lg-7 th:first-child{padding-right:1.75rem}.table.gs-lg-7 td:last-child,.table.gs-lg-7 th:last-child{padding-left:1.75rem}.table.gs-lg-7 td.dtr-control:first-child,.table.gs-lg-7 th.dtr-control:first-child{padding-right:1.75rem!important}.table.g-lg-8 td,.table.g-lg-8 th{padding:2rem}.table.g-lg-8 td.dtr-control,.table.g-lg-8 th.dtr-control{padding-right:2rem!important}.table.gy-lg-8 td,.table.gy-lg-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-lg-8 td,.table.gx-lg-8 th{padding-right:2rem;padding-left:2rem}.table.gx-lg-8 td.dtr-control,.table.gx-lg-8 th.dtr-control{padding-right:2rem!important}.table.gs-lg-8 td:first-child,.table.gs-lg-8 th:first-child{padding-right:2rem}.table.gs-lg-8 td:last-child,.table.gs-lg-8 th:last-child{padding-left:2rem}.table.gs-lg-8 td.dtr-control:first-child,.table.gs-lg-8 th.dtr-control:first-child{padding-right:2rem!important}.table.g-lg-9 td,.table.g-lg-9 th{padding:2.25rem}.table.g-lg-9 td.dtr-control,.table.g-lg-9 th.dtr-control{padding-right:2.25rem!important}.table.gy-lg-9 td,.table.gy-lg-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-lg-9 td,.table.gx-lg-9 th{padding-right:2.25rem;padding-left:2.25rem}.table.gx-lg-9 td.dtr-control,.table.gx-lg-9 th.dtr-control{padding-right:2.25rem!important}.table.gs-lg-9 td:first-child,.table.gs-lg-9 th:first-child{padding-right:2.25rem}.table.gs-lg-9 td:last-child,.table.gs-lg-9 th:last-child{padding-left:2.25rem}.table.gs-lg-9 td.dtr-control:first-child,.table.gs-lg-9 th.dtr-control:first-child{padding-right:2.25rem!important}.table.g-lg-10 td,.table.g-lg-10 th{padding:2.5rem}.table.g-lg-10 td.dtr-control,.table.g-lg-10 th.dtr-control{padding-right:2.5rem!important}.table.gy-lg-10 td,.table.gy-lg-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-lg-10 td,.table.gx-lg-10 th{padding-right:2.5rem;padding-left:2.5rem}.table.gx-lg-10 td.dtr-control,.table.gx-lg-10 th.dtr-control{padding-right:2.5rem!important}.table.gs-lg-10 td:first-child,.table.gs-lg-10 th:first-child{padding-right:2.5rem}.table.gs-lg-10 td:last-child,.table.gs-lg-10 th:last-child{padding-left:2.5rem}.table.gs-lg-10 td.dtr-control:first-child,.table.gs-lg-10 th.dtr-control:first-child{padding-right:2.5rem!important}}@media (min-width:1200px){.table.g-xl-0 td,.table.g-xl-0 th{padding:0}.table.g-xl-0 td.dtr-control,.table.g-xl-0 th.dtr-control{padding-right:0!important}.table.gy-xl-0 td,.table.gy-xl-0 th{padding-top:0;padding-bottom:0}.table.gx-xl-0 td,.table.gx-xl-0 th{padding-right:0;padding-left:0}.table.gx-xl-0 td.dtr-control,.table.gx-xl-0 th.dtr-control{padding-right:0!important}.table.gs-xl-0 td:first-child,.table.gs-xl-0 th:first-child{padding-right:0}.table.gs-xl-0 td:last-child,.table.gs-xl-0 th:last-child{padding-left:0}.table.gs-xl-0 td.dtr-control:first-child,.table.gs-xl-0 th.dtr-control:first-child{padding-right:0!important}.table.g-xl-1 td,.table.g-xl-1 th{padding:.25rem}.table.g-xl-1 td.dtr-control,.table.g-xl-1 th.dtr-control{padding-right:.25rem!important}.table.gy-xl-1 td,.table.gy-xl-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-xl-1 td,.table.gx-xl-1 th{padding-right:.25rem;padding-left:.25rem}.table.gx-xl-1 td.dtr-control,.table.gx-xl-1 th.dtr-control{padding-right:.25rem!important}.table.gs-xl-1 td:first-child,.table.gs-xl-1 th:first-child{padding-right:.25rem}.table.gs-xl-1 td:last-child,.table.gs-xl-1 th:last-child{padding-left:.25rem}.table.gs-xl-1 td.dtr-control:first-child,.table.gs-xl-1 th.dtr-control:first-child{padding-right:.25rem!important}.table.g-xl-2 td,.table.g-xl-2 th{padding:.5rem}.table.g-xl-2 td.dtr-control,.table.g-xl-2 th.dtr-control{padding-right:.5rem!important}.table.gy-xl-2 td,.table.gy-xl-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-xl-2 td,.table.gx-xl-2 th{padding-right:.5rem;padding-left:.5rem}.table.gx-xl-2 td.dtr-control,.table.gx-xl-2 th.dtr-control{padding-right:.5rem!important}.table.gs-xl-2 td:first-child,.table.gs-xl-2 th:first-child{padding-right:.5rem}.table.gs-xl-2 td:last-child,.table.gs-xl-2 th:last-child{padding-left:.5rem}.table.gs-xl-2 td.dtr-control:first-child,.table.gs-xl-2 th.dtr-control:first-child{padding-right:.5rem!important}.table.g-xl-3 td,.table.g-xl-3 th{padding:.75rem}.table.g-xl-3 td.dtr-control,.table.g-xl-3 th.dtr-control{padding-right:.75rem!important}.table.gy-xl-3 td,.table.gy-xl-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-xl-3 td,.table.gx-xl-3 th{padding-right:.75rem;padding-left:.75rem}.table.gx-xl-3 td.dtr-control,.table.gx-xl-3 th.dtr-control{padding-right:.75rem!important}.table.gs-xl-3 td:first-child,.table.gs-xl-3 th:first-child{padding-right:.75rem}.table.gs-xl-3 td:last-child,.table.gs-xl-3 th:last-child{padding-left:.75rem}.table.gs-xl-3 td.dtr-control:first-child,.table.gs-xl-3 th.dtr-control:first-child{padding-right:.75rem!important}.table.g-xl-4 td,.table.g-xl-4 th{padding:1rem}.table.g-xl-4 td.dtr-control,.table.g-xl-4 th.dtr-control{padding-right:1rem!important}.table.gy-xl-4 td,.table.gy-xl-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-xl-4 td,.table.gx-xl-4 th{padding-right:1rem;padding-left:1rem}.table.gx-xl-4 td.dtr-control,.table.gx-xl-4 th.dtr-control{padding-right:1rem!important}.table.gs-xl-4 td:first-child,.table.gs-xl-4 th:first-child{padding-right:1rem}.table.gs-xl-4 td:last-child,.table.gs-xl-4 th:last-child{padding-left:1rem}.table.gs-xl-4 td.dtr-control:first-child,.table.gs-xl-4 th.dtr-control:first-child{padding-right:1rem!important}.table.g-xl-5 td,.table.g-xl-5 th{padding:1.25rem}.table.g-xl-5 td.dtr-control,.table.g-xl-5 th.dtr-control{padding-right:1.25rem!important}.table.gy-xl-5 td,.table.gy-xl-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-xl-5 td,.table.gx-xl-5 th{padding-right:1.25rem;padding-left:1.25rem}.table.gx-xl-5 td.dtr-control,.table.gx-xl-5 th.dtr-control{padding-right:1.25rem!important}.table.gs-xl-5 td:first-child,.table.gs-xl-5 th:first-child{padding-right:1.25rem}.table.gs-xl-5 td:last-child,.table.gs-xl-5 th:last-child{padding-left:1.25rem}.table.gs-xl-5 td.dtr-control:first-child,.table.gs-xl-5 th.dtr-control:first-child{padding-right:1.25rem!important}.table.g-xl-6 td,.table.g-xl-6 th{padding:1.5rem}.table.g-xl-6 td.dtr-control,.table.g-xl-6 th.dtr-control{padding-right:1.5rem!important}.table.gy-xl-6 td,.table.gy-xl-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-xl-6 td,.table.gx-xl-6 th{padding-right:1.5rem;padding-left:1.5rem}.table.gx-xl-6 td.dtr-control,.table.gx-xl-6 th.dtr-control{padding-right:1.5rem!important}.table.gs-xl-6 td:first-child,.table.gs-xl-6 th:first-child{padding-right:1.5rem}.table.gs-xl-6 td:last-child,.table.gs-xl-6 th:last-child{padding-left:1.5rem}.table.gs-xl-6 td.dtr-control:first-child,.table.gs-xl-6 th.dtr-control:first-child{padding-right:1.5rem!important}.table.g-xl-7 td,.table.g-xl-7 th{padding:1.75rem}.table.g-xl-7 td.dtr-control,.table.g-xl-7 th.dtr-control{padding-right:1.75rem!important}.table.gy-xl-7 td,.table.gy-xl-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-xl-7 td,.table.gx-xl-7 th{padding-right:1.75rem;padding-left:1.75rem}.table.gx-xl-7 td.dtr-control,.table.gx-xl-7 th.dtr-control{padding-right:1.75rem!important}.table.gs-xl-7 td:first-child,.table.gs-xl-7 th:first-child{padding-right:1.75rem}.table.gs-xl-7 td:last-child,.table.gs-xl-7 th:last-child{padding-left:1.75rem}.table.gs-xl-7 td.dtr-control:first-child,.table.gs-xl-7 th.dtr-control:first-child{padding-right:1.75rem!important}.table.g-xl-8 td,.table.g-xl-8 th{padding:2rem}.table.g-xl-8 td.dtr-control,.table.g-xl-8 th.dtr-control{padding-right:2rem!important}.table.gy-xl-8 td,.table.gy-xl-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-xl-8 td,.table.gx-xl-8 th{padding-right:2rem;padding-left:2rem}.table.gx-xl-8 td.dtr-control,.table.gx-xl-8 th.dtr-control{padding-right:2rem!important}.table.gs-xl-8 td:first-child,.table.gs-xl-8 th:first-child{padding-right:2rem}.table.gs-xl-8 td:last-child,.table.gs-xl-8 th:last-child{padding-left:2rem}.table.gs-xl-8 td.dtr-control:first-child,.table.gs-xl-8 th.dtr-control:first-child{padding-right:2rem!important}.table.g-xl-9 td,.table.g-xl-9 th{padding:2.25rem}.table.g-xl-9 td.dtr-control,.table.g-xl-9 th.dtr-control{padding-right:2.25rem!important}.table.gy-xl-9 td,.table.gy-xl-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-xl-9 td,.table.gx-xl-9 th{padding-right:2.25rem;padding-left:2.25rem}.table.gx-xl-9 td.dtr-control,.table.gx-xl-9 th.dtr-control{padding-right:2.25rem!important}.table.gs-xl-9 td:first-child,.table.gs-xl-9 th:first-child{padding-right:2.25rem}.table.gs-xl-9 td:last-child,.table.gs-xl-9 th:last-child{padding-left:2.25rem}.table.gs-xl-9 td.dtr-control:first-child,.table.gs-xl-9 th.dtr-control:first-child{padding-right:2.25rem!important}.table.g-xl-10 td,.table.g-xl-10 th{padding:2.5rem}.table.g-xl-10 td.dtr-control,.table.g-xl-10 th.dtr-control{padding-right:2.5rem!important}.table.gy-xl-10 td,.table.gy-xl-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-xl-10 td,.table.gx-xl-10 th{padding-right:2.5rem;padding-left:2.5rem}.table.gx-xl-10 td.dtr-control,.table.gx-xl-10 th.dtr-control{padding-right:2.5rem!important}.table.gs-xl-10 td:first-child,.table.gs-xl-10 th:first-child{padding-right:2.5rem}.table.gs-xl-10 td:last-child,.table.gs-xl-10 th:last-child{padding-left:2.5rem}.table.gs-xl-10 td.dtr-control:first-child,.table.gs-xl-10 th.dtr-control:first-child{padding-right:2.5rem!important}}@media (min-width:1400px){.table.g-xxl-0 td,.table.g-xxl-0 th{padding:0}.table.g-xxl-0 td.dtr-control,.table.g-xxl-0 th.dtr-control{padding-right:0!important}.table.gy-xxl-0 td,.table.gy-xxl-0 th{padding-top:0;padding-bottom:0}.table.gx-xxl-0 td,.table.gx-xxl-0 th{padding-right:0;padding-left:0}.table.gx-xxl-0 td.dtr-control,.table.gx-xxl-0 th.dtr-control{padding-right:0!important}.table.gs-xxl-0 td:first-child,.table.gs-xxl-0 th:first-child{padding-right:0}.table.gs-xxl-0 td:last-child,.table.gs-xxl-0 th:last-child{padding-left:0}.table.gs-xxl-0 td.dtr-control:first-child,.table.gs-xxl-0 th.dtr-control:first-child{padding-right:0!important}.table.g-xxl-1 td,.table.g-xxl-1 th{padding:.25rem}.table.g-xxl-1 td.dtr-control,.table.g-xxl-1 th.dtr-control{padding-right:.25rem!important}.table.gy-xxl-1 td,.table.gy-xxl-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-xxl-1 td,.table.gx-xxl-1 th{padding-right:.25rem;padding-left:.25rem}.table.gx-xxl-1 td.dtr-control,.table.gx-xxl-1 th.dtr-control{padding-right:.25rem!important}.table.gs-xxl-1 td:first-child,.table.gs-xxl-1 th:first-child{padding-right:.25rem}.table.gs-xxl-1 td:last-child,.table.gs-xxl-1 th:last-child{padding-left:.25rem}.table.gs-xxl-1 td.dtr-control:first-child,.table.gs-xxl-1 th.dtr-control:first-child{padding-right:.25rem!important}.table.g-xxl-2 td,.table.g-xxl-2 th{padding:.5rem}.table.g-xxl-2 td.dtr-control,.table.g-xxl-2 th.dtr-control{padding-right:.5rem!important}.table.gy-xxl-2 td,.table.gy-xxl-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-xxl-2 td,.table.gx-xxl-2 th{padding-right:.5rem;padding-left:.5rem}.table.gx-xxl-2 td.dtr-control,.table.gx-xxl-2 th.dtr-control{padding-right:.5rem!important}.table.gs-xxl-2 td:first-child,.table.gs-xxl-2 th:first-child{padding-right:.5rem}.table.gs-xxl-2 td:last-child,.table.gs-xxl-2 th:last-child{padding-left:.5rem}.table.gs-xxl-2 td.dtr-control:first-child,.table.gs-xxl-2 th.dtr-control:first-child{padding-right:.5rem!important}.table.g-xxl-3 td,.table.g-xxl-3 th{padding:.75rem}.table.g-xxl-3 td.dtr-control,.table.g-xxl-3 th.dtr-control{padding-right:.75rem!important}.table.gy-xxl-3 td,.table.gy-xxl-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-xxl-3 td,.table.gx-xxl-3 th{padding-right:.75rem;padding-left:.75rem}.table.gx-xxl-3 td.dtr-control,.table.gx-xxl-3 th.dtr-control{padding-right:.75rem!important}.table.gs-xxl-3 td:first-child,.table.gs-xxl-3 th:first-child{padding-right:.75rem}.table.gs-xxl-3 td:last-child,.table.gs-xxl-3 th:last-child{padding-left:.75rem}.table.gs-xxl-3 td.dtr-control:first-child,.table.gs-xxl-3 th.dtr-control:first-child{padding-right:.75rem!important}.table.g-xxl-4 td,.table.g-xxl-4 th{padding:1rem}.table.g-xxl-4 td.dtr-control,.table.g-xxl-4 th.dtr-control{padding-right:1rem!important}.table.gy-xxl-4 td,.table.gy-xxl-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-xxl-4 td,.table.gx-xxl-4 th{padding-right:1rem;padding-left:1rem}.table.gx-xxl-4 td.dtr-control,.table.gx-xxl-4 th.dtr-control{padding-right:1rem!important}.table.gs-xxl-4 td:first-child,.table.gs-xxl-4 th:first-child{padding-right:1rem}.table.gs-xxl-4 td:last-child,.table.gs-xxl-4 th:last-child{padding-left:1rem}.table.gs-xxl-4 td.dtr-control:first-child,.table.gs-xxl-4 th.dtr-control:first-child{padding-right:1rem!important}.table.g-xxl-5 td,.table.g-xxl-5 th{padding:1.25rem}.table.g-xxl-5 td.dtr-control,.table.g-xxl-5 th.dtr-control{padding-right:1.25rem!important}.table.gy-xxl-5 td,.table.gy-xxl-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-xxl-5 td,.table.gx-xxl-5 th{padding-right:1.25rem;padding-left:1.25rem}.table.gx-xxl-5 td.dtr-control,.table.gx-xxl-5 th.dtr-control{padding-right:1.25rem!important}.table.gs-xxl-5 td:first-child,.table.gs-xxl-5 th:first-child{padding-right:1.25rem}.table.gs-xxl-5 td:last-child,.table.gs-xxl-5 th:last-child{padding-left:1.25rem}.table.gs-xxl-5 td.dtr-control:first-child,.table.gs-xxl-5 th.dtr-control:first-child{padding-right:1.25rem!important}.table.g-xxl-6 td,.table.g-xxl-6 th{padding:1.5rem}.table.g-xxl-6 td.dtr-control,.table.g-xxl-6 th.dtr-control{padding-right:1.5rem!important}.table.gy-xxl-6 td,.table.gy-xxl-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-xxl-6 td,.table.gx-xxl-6 th{padding-right:1.5rem;padding-left:1.5rem}.table.gx-xxl-6 td.dtr-control,.table.gx-xxl-6 th.dtr-control{padding-right:1.5rem!important}.table.gs-xxl-6 td:first-child,.table.gs-xxl-6 th:first-child{padding-right:1.5rem}.table.gs-xxl-6 td:last-child,.table.gs-xxl-6 th:last-child{padding-left:1.5rem}.table.gs-xxl-6 td.dtr-control:first-child,.table.gs-xxl-6 th.dtr-control:first-child{padding-right:1.5rem!important}.table.g-xxl-7 td,.table.g-xxl-7 th{padding:1.75rem}.table.g-xxl-7 td.dtr-control,.table.g-xxl-7 th.dtr-control{padding-right:1.75rem!important}.table.gy-xxl-7 td,.table.gy-xxl-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-xxl-7 td,.table.gx-xxl-7 th{padding-right:1.75rem;padding-left:1.75rem}.table.gx-xxl-7 td.dtr-control,.table.gx-xxl-7 th.dtr-control{padding-right:1.75rem!important}.table.gs-xxl-7 td:first-child,.table.gs-xxl-7 th:first-child{padding-right:1.75rem}.table.gs-xxl-7 td:last-child,.table.gs-xxl-7 th:last-child{padding-left:1.75rem}.table.gs-xxl-7 td.dtr-control:first-child,.table.gs-xxl-7 th.dtr-control:first-child{padding-right:1.75rem!important}.table.g-xxl-8 td,.table.g-xxl-8 th{padding:2rem}.table.g-xxl-8 td.dtr-control,.table.g-xxl-8 th.dtr-control{padding-right:2rem!important}.table.gy-xxl-8 td,.table.gy-xxl-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-xxl-8 td,.table.gx-xxl-8 th{padding-right:2rem;padding-left:2rem}.table.gx-xxl-8 td.dtr-control,.table.gx-xxl-8 th.dtr-control{padding-right:2rem!important}.table.gs-xxl-8 td:first-child,.table.gs-xxl-8 th:first-child{padding-right:2rem}.table.gs-xxl-8 td:last-child,.table.gs-xxl-8 th:last-child{padding-left:2rem}.table.gs-xxl-8 td.dtr-control:first-child,.table.gs-xxl-8 th.dtr-control:first-child{padding-right:2rem!important}.table.g-xxl-9 td,.table.g-xxl-9 th{padding:2.25rem}.table.g-xxl-9 td.dtr-control,.table.g-xxl-9 th.dtr-control{padding-right:2.25rem!important}.table.gy-xxl-9 td,.table.gy-xxl-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-xxl-9 td,.table.gx-xxl-9 th{padding-right:2.25rem;padding-left:2.25rem}.table.gx-xxl-9 td.dtr-control,.table.gx-xxl-9 th.dtr-control{padding-right:2.25rem!important}.table.gs-xxl-9 td:first-child,.table.gs-xxl-9 th:first-child{padding-right:2.25rem}.table.gs-xxl-9 td:last-child,.table.gs-xxl-9 th:last-child{padding-left:2.25rem}.table.gs-xxl-9 td.dtr-control:first-child,.table.gs-xxl-9 th.dtr-control:first-child{padding-right:2.25rem!important}.table.g-xxl-10 td,.table.g-xxl-10 th{padding:2.5rem}.table.g-xxl-10 td.dtr-control,.table.g-xxl-10 th.dtr-control{padding-right:2.5rem!important}.table.gy-xxl-10 td,.table.gy-xxl-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-xxl-10 td,.table.gx-xxl-10 th{padding-right:2.5rem;padding-left:2.5rem}.table.gx-xxl-10 td.dtr-control,.table.gx-xxl-10 th.dtr-control{padding-right:2.5rem!important}.table.gs-xxl-10 td:first-child,.table.gs-xxl-10 th:first-child{padding-right:2.5rem}.table.gs-xxl-10 td:last-child,.table.gs-xxl-10 th:last-child{padding-left:2.5rem}.table.gs-xxl-10 td.dtr-control:first-child,.table.gs-xxl-10 th.dtr-control:first-child{padding-right:2.5rem!important}}.popover .popover-header{font-size:1rem;font-weight:500;border-bottom:1px solid #f5f8fa}.popover .popover-dismiss{position:absolute;top:.85rem;left:.85rem;height:1.5rem;width:1.5rem;background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A1A5B7'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");background-size:45%}.popover .popover-dismiss:hover{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009EF7'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")}.popover .popover-dismiss+.popover-header{padding-left:2.75rem}.popover-dark{background-color:#181c32;border:0}.popover-dark .popover-header{background-color:#181c32;color:#eff2f5;border-bottom-color:#3f4254}.popover-dark .popover-body{color:#b5b5c3}.popover-dark.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.popover-dark.bs-popover-top>.popover-arrow::before{border-top-color:#f5f8fa}.popover-dark.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.popover-dark.bs-popover-top>.popover-arrow::after{border-top-color:#181c32}.popover-dark.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.popover-dark.bs-popover-end>.popover-arrow::before{border-left-color:#f5f8fa}.popover-dark.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.popover-dark.bs-popover-end>.popover-arrow::after{border-left-color:#181c32}.popover-dark.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.popover-dark.bs-popover-bottom>.popover-arrow::before{border-bottom-color:#f5f8fa}.popover-dark.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.popover-dark.bs-popover-bottom>.popover-arrow::after{border-bottom-color:#181c32}.popover-dark.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.popover-dark.bs-popover-bottom .popover-header::before{border-bottom-color:#181c32}.popover-dark.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.popover-dark.bs-popover-start>.popover-arrow::before{border-right-color:#f5f8fa}.popover-dark.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.popover-dark.bs-popover-start>.popover-arrow::after{border-right-color:#181c32}.tooltip .tooltip-inner{box-shadow:0 0 50px 0 rgba(82,63,105,.15)}.tooltip.tooltop-auto-width .tooltip-inner{white-space:nowrap;max-width:none}.tooltip.tooltip-dark .tooltip-inner{color:#fff;background-color:#181c32}.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.tooltip.tooltip-dark.bs-tooltip-top .tooltip-arrow::before{border-top-color:#181c32}.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.tooltip.tooltip-dark.bs-tooltip-end .tooltip-arrow::before{border-left-color:#181c32}.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.tooltip.tooltip-dark.bs-tooltip-bottom .tooltip-arrow::before{border-bottom-color:#181c32}.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.tooltip.tooltip-dark.bs-tooltip-start .tooltip-arrow::before{border-right-color:#181c32}.accordion .accordion-header{cursor:pointer}.accordion.accordion-icon-toggle .accordion-icon{display:flex;flex-shrink:0;transition:all .2s ease;transform:rotate(-90deg);align-items:center;justify-content:center}.accordion.accordion-icon-toggle .accordion-icon .svg-icon,.accordion.accordion-icon-toggle .accordion-icon i{color:#009ef7}.accordion.accordion-icon-toggle .collapsed .accordion-icon{transition:all .2s ease;transform:rotate(0)}.accordion.accordion-icon-toggle .collapsed .accordion-icon .svg-icon,.accordion.accordion-icon-toggle .collapsed .accordion-icon i{color:#a1a5b7}.accordion.accordion-borderless .accordion-item{border:0}.accordion.accordion-flush .accordion-item{background-color:transparent;border:0;border-radius:0;padding-right:0;padding-left:0}.feedback{display:none}.feedback-popup{display:flex;justify-content:center;margin:0 auto;position:fixed;z-index:1000;box-shadow:0 0 50px 0 rgba(82,63,105,.15);background-color:#fff;border-radius:.475rem;padding:1rem 1.25rem}.feedback-top-center{display:flex;transition:top .6s ease;right:50%;transform:translateX(50%);border-top-right-radius:0;border-top-left-radius:0}.feedback-top-center.feedback-shown{top:0;transition:top .6s ease}.image-input{position:relative;display:inline-block;border-radius:.475rem;background-repeat:no-repeat;background-size:cover}.image-input:not(.image-input-empty){background-image:none!important}.image-input .image-input-wrapper{width:120px;height:120px;border-radius:.475rem;background-repeat:no-repeat;background-size:cover}.image-input [data-kt-image-input-action]{cursor:pointer;position:absolute;transform:translate(50%,-50%)}.image-input [data-kt-image-input-action=change]{right:100%;top:0}.image-input [data-kt-image-input-action=change] input{width:0!important;height:0!important;overflow:hidden;opacity:0}.image-input [data-kt-image-input-action=cancel],.image-input [data-kt-image-input-action=remove]{position:absolute;right:100%;top:100%}.image-input [data-kt-image-input-action=cancel]{display:none}.image-input.image-input-changed [data-kt-image-input-action=cancel]{display:flex}.image-input.image-input-changed [data-kt-image-input-action=remove]{display:none}.image-input.image-input-empty [data-kt-image-input-action=cancel],.image-input.image-input-empty [data-kt-image-input-action=remove]{display:none}.image-input.image-input-circle{border-radius:50%}.image-input.image-input-circle .image-input-wrapper{border-radius:50%}.image-input.image-input-circle [data-kt-image-input-action=change]{right:100%;top:0;transform:translate(100%,0)}.image-input.image-input-circle [data-kt-image-input-action=cancel],.image-input.image-input-circle [data-kt-image-input-action=remove]{right:100%;top:100%;transform:translate(100%,-100%)}.image-input.image-input-outline .image-input-wrapper{border:3px solid #fff;box-shadow:0 .1rem 1rem .25rem rgba(0,0,0,.05)}.symbol{display:inline-block;flex-shrink:0;position:relative;border-radius:.475rem}.symbol .symbol-label{display:flex;align-items:center;justify-content:center;font-weight:500;color:#3f4254;background-color:#f5f8fa;background-repeat:no-repeat;background-position:center center;background-size:cover;border-radius:.475rem}.symbol .symbol-badge{position:absolute;border:2px solid #fff;border-radius:100%;top:0;right:50%;transform:translateX(50%) translateY(-50%)!important}.symbol>img{width:100%;flex-shrink:0;display:inline-block;border-radius:.475rem}.symbol.symbol-square,.symbol.symbol-square .symbol-label,.symbol.symbol-square>img{border-radius:0!important}.symbol.symbol-circle,.symbol.symbol-circle .symbol-label,.symbol.symbol-circle>img{border-radius:50%}.symbol>img{width:50px;height:50px}.symbol .symbol-label{width:50px;height:50px}.symbol.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-20px>img{width:20px;height:20px}.symbol.symbol-20px .symbol-label{width:20px;height:20px}.symbol.symbol-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-25px>img{width:25px;height:25px}.symbol.symbol-25px .symbol-label{width:25px;height:25px}.symbol.symbol-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-30px>img{width:30px;height:30px}.symbol.symbol-30px .symbol-label{width:30px;height:30px}.symbol.symbol-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-35px>img{width:35px;height:35px}.symbol.symbol-35px .symbol-label{width:35px;height:35px}.symbol.symbol-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-40px>img{width:40px;height:40px}.symbol.symbol-40px .symbol-label{width:40px;height:40px}.symbol.symbol-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-45px>img{width:45px;height:45px}.symbol.symbol-45px .symbol-label{width:45px;height:45px}.symbol.symbol-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-50px>img{width:50px;height:50px}.symbol.symbol-50px .symbol-label{width:50px;height:50px}.symbol.symbol-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-55px>img{width:55px;height:55px}.symbol.symbol-55px .symbol-label{width:55px;height:55px}.symbol.symbol-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-60px>img{width:60px;height:60px}.symbol.symbol-60px .symbol-label{width:60px;height:60px}.symbol.symbol-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-65px>img{width:65px;height:65px}.symbol.symbol-65px .symbol-label{width:65px;height:65px}.symbol.symbol-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-70px>img{width:70px;height:70px}.symbol.symbol-70px .symbol-label{width:70px;height:70px}.symbol.symbol-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-75px>img{width:75px;height:75px}.symbol.symbol-75px .symbol-label{width:75px;height:75px}.symbol.symbol-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-100px>img{width:100px;height:100px}.symbol.symbol-100px .symbol-label{width:100px;height:100px}.symbol.symbol-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-125px>img{width:125px;height:125px}.symbol.symbol-125px .symbol-label{width:125px;height:125px}.symbol.symbol-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-150px>img{width:150px;height:150px}.symbol.symbol-150px .symbol-label{width:150px;height:150px}.symbol.symbol-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-160px>img{width:160px;height:160px}.symbol.symbol-160px .symbol-label{width:160px;height:160px}.symbol.symbol-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-175px>img{width:175px;height:175px}.symbol.symbol-175px .symbol-label{width:175px;height:175px}.symbol.symbol-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-200px>img{width:200px;height:200px}.symbol.symbol-200px .symbol-label{width:200px;height:200px}.symbol.symbol-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}@media (min-width:576px){.symbol.symbol-sm-20px>img{width:20px;height:20px}.symbol.symbol-sm-20px .symbol-label{width:20px;height:20px}.symbol.symbol-sm-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-sm-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-sm-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-sm-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-sm-25px>img{width:25px;height:25px}.symbol.symbol-sm-25px .symbol-label{width:25px;height:25px}.symbol.symbol-sm-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-sm-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-sm-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-sm-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-sm-30px>img{width:30px;height:30px}.symbol.symbol-sm-30px .symbol-label{width:30px;height:30px}.symbol.symbol-sm-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-sm-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-sm-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-sm-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-sm-35px>img{width:35px;height:35px}.symbol.symbol-sm-35px .symbol-label{width:35px;height:35px}.symbol.symbol-sm-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-sm-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-sm-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-sm-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-sm-40px>img{width:40px;height:40px}.symbol.symbol-sm-40px .symbol-label{width:40px;height:40px}.symbol.symbol-sm-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-sm-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-sm-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-sm-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-sm-45px>img{width:45px;height:45px}.symbol.symbol-sm-45px .symbol-label{width:45px;height:45px}.symbol.symbol-sm-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-sm-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-sm-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-sm-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-sm-50px>img{width:50px;height:50px}.symbol.symbol-sm-50px .symbol-label{width:50px;height:50px}.symbol.symbol-sm-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-sm-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-sm-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-sm-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-sm-55px>img{width:55px;height:55px}.symbol.symbol-sm-55px .symbol-label{width:55px;height:55px}.symbol.symbol-sm-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-sm-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-sm-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-sm-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-sm-60px>img{width:60px;height:60px}.symbol.symbol-sm-60px .symbol-label{width:60px;height:60px}.symbol.symbol-sm-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-sm-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-sm-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-sm-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-sm-65px>img{width:65px;height:65px}.symbol.symbol-sm-65px .symbol-label{width:65px;height:65px}.symbol.symbol-sm-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-sm-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-sm-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-sm-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-sm-70px>img{width:70px;height:70px}.symbol.symbol-sm-70px .symbol-label{width:70px;height:70px}.symbol.symbol-sm-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-sm-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-sm-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-sm-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-sm-75px>img{width:75px;height:75px}.symbol.symbol-sm-75px .symbol-label{width:75px;height:75px}.symbol.symbol-sm-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-sm-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-sm-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-sm-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-sm-100px>img{width:100px;height:100px}.symbol.symbol-sm-100px .symbol-label{width:100px;height:100px}.symbol.symbol-sm-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-sm-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-sm-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-sm-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-sm-125px>img{width:125px;height:125px}.symbol.symbol-sm-125px .symbol-label{width:125px;height:125px}.symbol.symbol-sm-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-sm-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-sm-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-sm-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-sm-150px>img{width:150px;height:150px}.symbol.symbol-sm-150px .symbol-label{width:150px;height:150px}.symbol.symbol-sm-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-sm-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-sm-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-sm-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-sm-160px>img{width:160px;height:160px}.symbol.symbol-sm-160px .symbol-label{width:160px;height:160px}.symbol.symbol-sm-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-sm-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-sm-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-sm-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-sm-175px>img{width:175px;height:175px}.symbol.symbol-sm-175px .symbol-label{width:175px;height:175px}.symbol.symbol-sm-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-sm-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-sm-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-sm-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-sm-200px>img{width:200px;height:200px}.symbol.symbol-sm-200px .symbol-label{width:200px;height:200px}.symbol.symbol-sm-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-sm-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-sm-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-sm-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}@media (min-width:768px){.symbol.symbol-md-20px>img{width:20px;height:20px}.symbol.symbol-md-20px .symbol-label{width:20px;height:20px}.symbol.symbol-md-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-md-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-md-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-md-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-md-25px>img{width:25px;height:25px}.symbol.symbol-md-25px .symbol-label{width:25px;height:25px}.symbol.symbol-md-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-md-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-md-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-md-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-md-30px>img{width:30px;height:30px}.symbol.symbol-md-30px .symbol-label{width:30px;height:30px}.symbol.symbol-md-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-md-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-md-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-md-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-md-35px>img{width:35px;height:35px}.symbol.symbol-md-35px .symbol-label{width:35px;height:35px}.symbol.symbol-md-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-md-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-md-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-md-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-md-40px>img{width:40px;height:40px}.symbol.symbol-md-40px .symbol-label{width:40px;height:40px}.symbol.symbol-md-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-md-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-md-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-md-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-md-45px>img{width:45px;height:45px}.symbol.symbol-md-45px .symbol-label{width:45px;height:45px}.symbol.symbol-md-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-md-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-md-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-md-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-md-50px>img{width:50px;height:50px}.symbol.symbol-md-50px .symbol-label{width:50px;height:50px}.symbol.symbol-md-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-md-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-md-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-md-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-md-55px>img{width:55px;height:55px}.symbol.symbol-md-55px .symbol-label{width:55px;height:55px}.symbol.symbol-md-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-md-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-md-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-md-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-md-60px>img{width:60px;height:60px}.symbol.symbol-md-60px .symbol-label{width:60px;height:60px}.symbol.symbol-md-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-md-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-md-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-md-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-md-65px>img{width:65px;height:65px}.symbol.symbol-md-65px .symbol-label{width:65px;height:65px}.symbol.symbol-md-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-md-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-md-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-md-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-md-70px>img{width:70px;height:70px}.symbol.symbol-md-70px .symbol-label{width:70px;height:70px}.symbol.symbol-md-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-md-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-md-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-md-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-md-75px>img{width:75px;height:75px}.symbol.symbol-md-75px .symbol-label{width:75px;height:75px}.symbol.symbol-md-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-md-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-md-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-md-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-md-100px>img{width:100px;height:100px}.symbol.symbol-md-100px .symbol-label{width:100px;height:100px}.symbol.symbol-md-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-md-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-md-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-md-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-md-125px>img{width:125px;height:125px}.symbol.symbol-md-125px .symbol-label{width:125px;height:125px}.symbol.symbol-md-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-md-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-md-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-md-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-md-150px>img{width:150px;height:150px}.symbol.symbol-md-150px .symbol-label{width:150px;height:150px}.symbol.symbol-md-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-md-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-md-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-md-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-md-160px>img{width:160px;height:160px}.symbol.symbol-md-160px .symbol-label{width:160px;height:160px}.symbol.symbol-md-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-md-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-md-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-md-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-md-175px>img{width:175px;height:175px}.symbol.symbol-md-175px .symbol-label{width:175px;height:175px}.symbol.symbol-md-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-md-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-md-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-md-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-md-200px>img{width:200px;height:200px}.symbol.symbol-md-200px .symbol-label{width:200px;height:200px}.symbol.symbol-md-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-md-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-md-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-md-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}@media (min-width:992px){.symbol.symbol-lg-20px>img{width:20px;height:20px}.symbol.symbol-lg-20px .symbol-label{width:20px;height:20px}.symbol.symbol-lg-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-lg-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-lg-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-lg-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-lg-25px>img{width:25px;height:25px}.symbol.symbol-lg-25px .symbol-label{width:25px;height:25px}.symbol.symbol-lg-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-lg-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-lg-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-lg-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-lg-30px>img{width:30px;height:30px}.symbol.symbol-lg-30px .symbol-label{width:30px;height:30px}.symbol.symbol-lg-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-lg-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-lg-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-lg-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-lg-35px>img{width:35px;height:35px}.symbol.symbol-lg-35px .symbol-label{width:35px;height:35px}.symbol.symbol-lg-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-lg-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-lg-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-lg-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-lg-40px>img{width:40px;height:40px}.symbol.symbol-lg-40px .symbol-label{width:40px;height:40px}.symbol.symbol-lg-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-lg-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-lg-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-lg-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-lg-45px>img{width:45px;height:45px}.symbol.symbol-lg-45px .symbol-label{width:45px;height:45px}.symbol.symbol-lg-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-lg-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-lg-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-lg-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-lg-50px>img{width:50px;height:50px}.symbol.symbol-lg-50px .symbol-label{width:50px;height:50px}.symbol.symbol-lg-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-lg-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-lg-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-lg-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-lg-55px>img{width:55px;height:55px}.symbol.symbol-lg-55px .symbol-label{width:55px;height:55px}.symbol.symbol-lg-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-lg-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-lg-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-lg-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-lg-60px>img{width:60px;height:60px}.symbol.symbol-lg-60px .symbol-label{width:60px;height:60px}.symbol.symbol-lg-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-lg-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-lg-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-lg-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-lg-65px>img{width:65px;height:65px}.symbol.symbol-lg-65px .symbol-label{width:65px;height:65px}.symbol.symbol-lg-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-lg-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-lg-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-lg-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-lg-70px>img{width:70px;height:70px}.symbol.symbol-lg-70px .symbol-label{width:70px;height:70px}.symbol.symbol-lg-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-lg-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-lg-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-lg-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-lg-75px>img{width:75px;height:75px}.symbol.symbol-lg-75px .symbol-label{width:75px;height:75px}.symbol.symbol-lg-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-lg-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-lg-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-lg-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-lg-100px>img{width:100px;height:100px}.symbol.symbol-lg-100px .symbol-label{width:100px;height:100px}.symbol.symbol-lg-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-lg-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-lg-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-lg-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-lg-125px>img{width:125px;height:125px}.symbol.symbol-lg-125px .symbol-label{width:125px;height:125px}.symbol.symbol-lg-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-lg-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-lg-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-lg-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-lg-150px>img{width:150px;height:150px}.symbol.symbol-lg-150px .symbol-label{width:150px;height:150px}.symbol.symbol-lg-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-lg-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-lg-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-lg-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-lg-160px>img{width:160px;height:160px}.symbol.symbol-lg-160px .symbol-label{width:160px;height:160px}.symbol.symbol-lg-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-lg-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-lg-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-lg-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-lg-175px>img{width:175px;height:175px}.symbol.symbol-lg-175px .symbol-label{width:175px;height:175px}.symbol.symbol-lg-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-lg-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-lg-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-lg-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-lg-200px>img{width:200px;height:200px}.symbol.symbol-lg-200px .symbol-label{width:200px;height:200px}.symbol.symbol-lg-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-lg-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-lg-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-lg-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}@media (min-width:1200px){.symbol.symbol-xl-20px>img{width:20px;height:20px}.symbol.symbol-xl-20px .symbol-label{width:20px;height:20px}.symbol.symbol-xl-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-xl-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-xl-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-xl-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-xl-25px>img{width:25px;height:25px}.symbol.symbol-xl-25px .symbol-label{width:25px;height:25px}.symbol.symbol-xl-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-xl-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-xl-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-xl-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-xl-30px>img{width:30px;height:30px}.symbol.symbol-xl-30px .symbol-label{width:30px;height:30px}.symbol.symbol-xl-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-xl-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-xl-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-xl-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-xl-35px>img{width:35px;height:35px}.symbol.symbol-xl-35px .symbol-label{width:35px;height:35px}.symbol.symbol-xl-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-xl-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-xl-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-xl-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-xl-40px>img{width:40px;height:40px}.symbol.symbol-xl-40px .symbol-label{width:40px;height:40px}.symbol.symbol-xl-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-xl-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-xl-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-xl-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-xl-45px>img{width:45px;height:45px}.symbol.symbol-xl-45px .symbol-label{width:45px;height:45px}.symbol.symbol-xl-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-xl-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-xl-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-xl-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-xl-50px>img{width:50px;height:50px}.symbol.symbol-xl-50px .symbol-label{width:50px;height:50px}.symbol.symbol-xl-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-xl-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-xl-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-xl-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-xl-55px>img{width:55px;height:55px}.symbol.symbol-xl-55px .symbol-label{width:55px;height:55px}.symbol.symbol-xl-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-xl-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-xl-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-xl-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-xl-60px>img{width:60px;height:60px}.symbol.symbol-xl-60px .symbol-label{width:60px;height:60px}.symbol.symbol-xl-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-xl-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-xl-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-xl-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-xl-65px>img{width:65px;height:65px}.symbol.symbol-xl-65px .symbol-label{width:65px;height:65px}.symbol.symbol-xl-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-xl-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-xl-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-xl-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-xl-70px>img{width:70px;height:70px}.symbol.symbol-xl-70px .symbol-label{width:70px;height:70px}.symbol.symbol-xl-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-xl-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-xl-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-xl-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-xl-75px>img{width:75px;height:75px}.symbol.symbol-xl-75px .symbol-label{width:75px;height:75px}.symbol.symbol-xl-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-xl-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-xl-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-xl-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-xl-100px>img{width:100px;height:100px}.symbol.symbol-xl-100px .symbol-label{width:100px;height:100px}.symbol.symbol-xl-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-xl-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-xl-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-xl-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-xl-125px>img{width:125px;height:125px}.symbol.symbol-xl-125px .symbol-label{width:125px;height:125px}.symbol.symbol-xl-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-xl-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-xl-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-xl-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-xl-150px>img{width:150px;height:150px}.symbol.symbol-xl-150px .symbol-label{width:150px;height:150px}.symbol.symbol-xl-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-xl-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-xl-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-xl-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-xl-160px>img{width:160px;height:160px}.symbol.symbol-xl-160px .symbol-label{width:160px;height:160px}.symbol.symbol-xl-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-xl-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-xl-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-xl-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-xl-175px>img{width:175px;height:175px}.symbol.symbol-xl-175px .symbol-label{width:175px;height:175px}.symbol.symbol-xl-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-xl-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-xl-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-xl-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-xl-200px>img{width:200px;height:200px}.symbol.symbol-xl-200px .symbol-label{width:200px;height:200px}.symbol.symbol-xl-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-xl-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-xl-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-xl-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}@media (min-width:1400px){.symbol.symbol-xxl-20px>img{width:20px;height:20px}.symbol.symbol-xxl-20px .symbol-label{width:20px;height:20px}.symbol.symbol-xxl-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-xxl-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-xxl-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-xxl-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-xxl-25px>img{width:25px;height:25px}.symbol.symbol-xxl-25px .symbol-label{width:25px;height:25px}.symbol.symbol-xxl-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-xxl-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-xxl-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-xxl-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-xxl-30px>img{width:30px;height:30px}.symbol.symbol-xxl-30px .symbol-label{width:30px;height:30px}.symbol.symbol-xxl-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-xxl-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-xxl-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-xxl-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-xxl-35px>img{width:35px;height:35px}.symbol.symbol-xxl-35px .symbol-label{width:35px;height:35px}.symbol.symbol-xxl-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-xxl-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-xxl-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-xxl-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-xxl-40px>img{width:40px;height:40px}.symbol.symbol-xxl-40px .symbol-label{width:40px;height:40px}.symbol.symbol-xxl-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-xxl-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-xxl-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-xxl-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-xxl-45px>img{width:45px;height:45px}.symbol.symbol-xxl-45px .symbol-label{width:45px;height:45px}.symbol.symbol-xxl-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-xxl-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-xxl-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-xxl-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-xxl-50px>img{width:50px;height:50px}.symbol.symbol-xxl-50px .symbol-label{width:50px;height:50px}.symbol.symbol-xxl-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-xxl-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-xxl-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-xxl-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-xxl-55px>img{width:55px;height:55px}.symbol.symbol-xxl-55px .symbol-label{width:55px;height:55px}.symbol.symbol-xxl-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-xxl-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-xxl-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-xxl-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-xxl-60px>img{width:60px;height:60px}.symbol.symbol-xxl-60px .symbol-label{width:60px;height:60px}.symbol.symbol-xxl-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-xxl-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-xxl-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-xxl-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-xxl-65px>img{width:65px;height:65px}.symbol.symbol-xxl-65px .symbol-label{width:65px;height:65px}.symbol.symbol-xxl-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-xxl-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-xxl-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-xxl-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-xxl-70px>img{width:70px;height:70px}.symbol.symbol-xxl-70px .symbol-label{width:70px;height:70px}.symbol.symbol-xxl-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-xxl-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-xxl-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-xxl-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-xxl-75px>img{width:75px;height:75px}.symbol.symbol-xxl-75px .symbol-label{width:75px;height:75px}.symbol.symbol-xxl-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-xxl-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-xxl-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-xxl-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-xxl-100px>img{width:100px;height:100px}.symbol.symbol-xxl-100px .symbol-label{width:100px;height:100px}.symbol.symbol-xxl-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-xxl-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-xxl-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-xxl-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-xxl-125px>img{width:125px;height:125px}.symbol.symbol-xxl-125px .symbol-label{width:125px;height:125px}.symbol.symbol-xxl-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-xxl-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-xxl-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-xxl-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-xxl-150px>img{width:150px;height:150px}.symbol.symbol-xxl-150px .symbol-label{width:150px;height:150px}.symbol.symbol-xxl-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-xxl-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-xxl-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-xxl-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-xxl-160px>img{width:160px;height:160px}.symbol.symbol-xxl-160px .symbol-label{width:160px;height:160px}.symbol.symbol-xxl-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-xxl-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-xxl-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-xxl-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-xxl-175px>img{width:175px;height:175px}.symbol.symbol-xxl-175px .symbol-label{width:175px;height:175px}.symbol.symbol-xxl-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-xxl-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-xxl-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-xxl-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-xxl-200px>img{width:200px;height:200px}.symbol.symbol-xxl-200px .symbol-label{width:200px;height:200px}.symbol.symbol-xxl-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-xxl-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-xxl-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-xxl-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}.symbol-group{display:flex;flex-wrap:wrap;align-items:center;margin-right:10px}.symbol-group .symbol{position:relative;z-index:0;margin-right:-10px;border:2px solid #fff;transition:all .3s ease}.symbol-group .symbol:hover{transition:all .3s ease;z-index:1}.symbol-group.symbol-hover .symbol{cursor:pointer}.pulse{position:relative}.pulse.pulse-white .pulse-ring{border-color:#fff}.pulse.pulse-light .pulse-ring{border-color:#f5f8fa}.pulse.pulse-primary .pulse-ring{border-color:#009ef7}.pulse.pulse-secondary .pulse-ring{border-color:#e4e6ef}.pulse.pulse-success .pulse-ring{border-color:#50cd89}.pulse.pulse-info .pulse-ring{border-color:#7239ea}.pulse.pulse-warning .pulse-ring{border-color:#ffc700}.pulse.pulse-danger .pulse-ring{border-color:#f1416c}.pulse.pulse-dark .pulse-ring{border-color:#181c32}.pulse-ring{display:block;border-radius:40px;height:40px;width:40px;position:absolute;animation:animation-pulse 3.5s ease-out;animation-iteration-count:infinite;opacity:0;border-width:3px;border-style:solid;border-color:#a1a5b7}@keyframes animation-pulse{0%{-webkit-transform:scale(.1,.1);opacity:0}60%{-webkit-transform:scale(.1,.1);opacity:0}65%{opacity:1}100%{-webkit-transform:scale(1.2,1.2);opacity:0}}.page-loading *{transition:none!important}.page-loader{background:#fff;position:fixed;top:0;bottom:0;right:0;left:0;z-index:1000;display:none}.page-loading .page-loader{display:flex;justify-content:center;align-items:center}.scrolltop{position:fixed;display:none;cursor:pointer;z-index:100;justify-content:center;align-items:center;width:36px;height:36px;bottom:40px;left:20px;background-color:#009ef7;box-shadow:0 .5rem 1.5rem .5rem rgba(0,0,0,.075);opacity:0;transition:color .2s ease,background-color .2s ease;border-radius:.475rem}.scrolltop .svg-icon{color:#fff}.scrolltop .svg-icon svg{height:24px;width:24px}.scrolltop>i{font-size:1.3rem;color:#fff}.scrolltop:hover{background-color:#009ef7}.scrolltop:hover>i{color:#fff}.scrolltop:hover .svg-icon{color:#fff}[data-kt-scrolltop=on] .scrolltop{opacity:.3;animation:animation-scrolltop .4s ease-out 1;display:flex}[data-kt-scrolltop=on] .scrolltop:hover{transition:color .2s ease,background-color .2s ease;opacity:1}@media (max-width:991.98px){.scrolltop{bottom:30px;left:15px;width:30px;height:30px}}@keyframes animation-scrolltop{from{margin-bottom:-15px}to{margin-bottom:0}}.svg-icon{line-height:1;color:#a1a5b7}.svg-icon svg{height:1.15rem;width:1.15rem}.svg-icon.svg-icon-white{color:#fff}.svg-icon.svg-icon-primary{color:#009ef7}.svg-icon.svg-icon-secondary{color:#e4e6ef}.svg-icon.svg-icon-light{color:#f5f8fa}.svg-icon.svg-icon-success{color:#50cd89}.svg-icon.svg-icon-info{color:#7239ea}.svg-icon.svg-icon-warning{color:#ffc700}.svg-icon.svg-icon-danger{color:#f1416c}.svg-icon.svg-icon-dark{color:#181c32}.svg-icon.svg-icon-muted{color:#a1a5b7}.svg-icon.svg-icon-gray-100{color:#f5f8fa}.svg-icon.svg-icon-gray-200{color:#eff2f5}.svg-icon.svg-icon-gray-300{color:#e4e6ef}.svg-icon.svg-icon-gray-400{color:#b5b5c3}.svg-icon.svg-icon-gray-500{color:#a1a5b7}.svg-icon.svg-icon-gray-600{color:#7e8299}.svg-icon.svg-icon-gray-700{color:#5e6278}.svg-icon.svg-icon-gray-800{color:#3f4254}.svg-icon.svg-icon-gray-900{color:#181c32}.svg-icon.svg-icon-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-5tx svg{height:5.75rem!important;width:5.75rem!important}@media (min-width:576px){.svg-icon.svg-icon-sm-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-sm-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-sm-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-sm-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-sm-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-sm-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-sm-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-sm-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-sm-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-sm-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-sm-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-sm-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-sm-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-sm-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-sm-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-sm-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-sm-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-sm-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-sm-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-sm-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-sm-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-sm-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-sm-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-sm-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-sm-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-sm-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-sm-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-sm-5tx svg{height:5.75rem!important;width:5.75rem!important}}@media (min-width:768px){.svg-icon.svg-icon-md-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-md-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-md-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-md-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-md-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-md-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-md-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-md-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-md-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-md-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-md-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-md-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-md-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-md-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-md-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-md-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-md-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-md-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-md-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-md-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-md-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-md-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-md-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-md-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-md-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-md-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-md-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-md-5tx svg{height:5.75rem!important;width:5.75rem!important}}@media (min-width:992px){.svg-icon.svg-icon-lg-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-lg-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-lg-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-lg-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-lg-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-lg-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-lg-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-lg-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-lg-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-lg-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-lg-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-lg-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-lg-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-lg-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-lg-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-lg-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-lg-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-lg-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-lg-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-lg-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-lg-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-lg-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-lg-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-lg-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-lg-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-lg-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-lg-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-lg-5tx svg{height:5.75rem!important;width:5.75rem!important}}@media (min-width:1200px){.svg-icon.svg-icon-xl-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-xl-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-xl-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-xl-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-xl-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-xl-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-xl-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-xl-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-xl-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-xl-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-xl-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-xl-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-xl-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-xl-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-xl-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-xl-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-xl-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-xl-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-xl-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-xl-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-xl-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-xl-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-xl-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-xl-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-xl-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-xl-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-xl-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-xl-5tx svg{height:5.75rem!important;width:5.75rem!important}}@media (min-width:1400px){.svg-icon.svg-icon-xxl-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-xxl-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-xxl-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-xxl-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-xxl-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-xxl-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-xxl-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-xxl-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-xxl-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-xxl-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-xxl-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-xxl-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-xxl-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-xxl-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-xxl-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-xxl-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-xxl-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-xxl-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-xxl-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-xxl-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-xxl-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-xxl-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-xxl-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-xxl-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-xxl-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-xxl-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-xxl-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-xxl-5tx svg{height:5.75rem!important;width:5.75rem!important}}.fixed-top{position:fixed;z-index:101;top:0;right:0;left:0}@media (min-width:576px){.fixed-top-sm{position:fixed;z-index:101;top:0;right:0;left:0}}@media (min-width:768px){.fixed-top-md{position:fixed;z-index:101;top:0;right:0;left:0}}@media (min-width:992px){.fixed-top-lg{position:fixed;z-index:101;top:0;right:0;left:0}}@media (min-width:1200px){.fixed-top-xl{position:fixed;z-index:101;top:0;right:0;left:0}}@media (min-width:1400px){.fixed-top-xxl{position:fixed;z-index:101;top:0;right:0;left:0}}.timeline .timeline-item{position:relative;padding:0;margin:0;display:flex;align-items:flex-start}.timeline .timeline-item:last-child .timeline-line{bottom:100%}.timeline .timeline-line{display:block;content:" ";justify-content:center;position:absolute;z-index:0;right:0;top:0;bottom:0;transform:translate(-50%);border-right-width:1px;border-right-style:dashed;border-right-color:#e4e6ef}.timeline .timeline-icon{z-index:1;flex-shrink:0;margin-left:1rem}.timeline .timeline-content{width:100%;overflow:auto;margin-bottom:1.5rem}.timeline.timeline-center .timeline-item{align-items:center}.timeline.timeline-center .timeline-item:first-child .timeline-line{top:50%}.timeline.timeline-center .timeline-item:last-child .timeline-line{bottom:50%}.timeline-label{position:relative}.timeline-label:before{content:"";position:absolute;right:51px;width:3px;top:0;bottom:0;background-color:#eff2f5}.timeline-label .timeline-item{display:flex;align-items:flex-start;position:relative;margin-bottom:1.7rem}.timeline-label .timeline-item:last-child{margin-bottom:0}.timeline-label .timeline-label{width:50px;flex-shrink:0;position:relative;color:#3f4254}.timeline-label .timeline-badge{flex-shrink:0;background:#fff;width:1rem;height:1rem;border-radius:100%;display:flex;justify-content:center;align-items:center;z-index:1;position:relative;margin-top:1px;margin-right:-.5rem;padding:3px!important;border:6px solid #fff!important}.timeline-label .timeline-badge span{display:block;border-radius:100%;width:6px;height:6px;background-color:#eff2f5}.timeline-label .timeline-content{flex-grow:1}.overlay{position:relative}.overlay .overlay-layer{position:absolute;top:0;bottom:0;right:0;left:0;display:flex;justify-content:center;align-items:center;background-color:rgba(0,0,0,.05);transition:all .3s ease;opacity:0}.overlay.overlay-block .overlay-layer,.overlay.overlay-show .overlay-layer,.overlay:hover .overlay-layer{transition:all .3s ease;opacity:1}.overlay.overlay-block{cursor:wait}.bullet{display:inline-block;background-color:#b5b5c3;border-radius:6px;width:8px;height:4px;flex-shrink:0}.bullet-dot{width:4px;height:4px;border-radius:100%!important}.bullet-vertical{width:4px;height:8px}.bullet-line{width:5px;height:1px;border-radius:0}.drawer{display:flex!important;overflow:auto;z-index:110;position:fixed;top:0;bottom:0;background-color:#fff;transition:transform .3s ease-in-out}.drawer.drawer-start{right:0;transform:translateX(100%)}.drawer.drawer-end{left:0;transform:translateX(-100%)}.drawer.drawer-on{transform:none;box-shadow:0 1px 9px -3px rgba(0,0,0,.05);transition:transform .3s ease-in-out}.drawer-overlay{position:fixed;top:0;right:0;bottom:0;left:0;overflow:hidden;z-index:109;background-color:rgba(0,0,0,.2);animation:animation-drawer-fade-in .3s ease-in-out 1}[data-kt-drawer=true]{display:none}@keyframes animation-drawer-fade-in{from{opacity:0}to{opacity:1}}@media (max-width:991.98px){body[data-kt-drawer=on]{overflow:hidden}}.badge{display:inline-flex;align-items:center}.badge.badge-circle,.badge.badge-square{display:inline-flex;align-items:center;justify-content:center;height:1.75rem;min-width:1.75rem;padding:0 .1rem;line-height:0}.badge.badge-circle{border-radius:50%;padding:0;min-width:unset;width:1.75rem}.badge.badge-sm{min-width:1.5rem;font-size:.8rem}.badge.badge-sm.badge-square{height:1.5rem}.badge.badge-sm.badge-circle{width:1.5rem;height:1.5rem}.badge.badge-lg{min-width:2rem;font-size:1rem}.badge.badge-lg.badge-square{height:2rem}.badge.badge-lg.badge-circle{width:2rem;height:2rem}.badge-white{color:#7e8299;background-color:#fff}.badge-light-white{color:#fff}.badge-light{color:#7e8299;background-color:#f5f8fa}.badge-light-light{color:#f5f8fa}.badge-primary{color:#fff;background-color:#009ef7}.badge-light-primary{color:#009ef7;background-color:#f1faff}.badge-secondary{color:#3f4254;background-color:#e4e6ef}.badge-light-secondary{color:#e4e6ef}.badge-success{color:#fff;background-color:#50cd89}.badge-light-success{color:#50cd89;background-color:#e8fff3}.badge-info{color:#fff;background-color:#7239ea}.badge-light-info{color:#7239ea;background-color:#f8f5ff}.badge-warning{color:#fff;background-color:#ffc700}.badge-light-warning{color:#ffc700;background-color:#fff8dd}.badge-danger{color:#fff;background-color:#f1416c}.badge-light-danger{color:#f1416c;background-color:#fff5f8}.badge-dark{color:#fff;background-color:#181c32}.badge-light-dark{color:#181c32;background-color:#eff2f5}.indicator-progress{display:none}[data-kt-indicator=on]>.indicator-progress{display:inline-block}[data-kt-indicator=on]>.indicator-label{display:none}.rotate{display:inline-flex;align-items:center}.rotate-90{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-90,.collapsible:not(.collapsed)>.rotate-90,.show>.rotate-90{transform:rotateZ(-90deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-90,[direction=rtl] .collapsible:not(.collapsed)>.rotate-90,[direction=rtl] .show>.rotate-90{transform:rotateZ(90deg)}.rotate-n90{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-n90,.collapsible:not(.collapsed)>.rotate-n90,.show>.rotate-n90{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-n90,[direction=rtl] .collapsible:not(.collapsed)>.rotate-n90,[direction=rtl] .show>.rotate-n90{transform:rotateZ(-90deg)}.rotate-180{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-180,.collapsible:not(.collapsed)>.rotate-180,.show>.rotate-180{transform:rotateZ(-180deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-180,[direction=rtl] .collapsible:not(.collapsed)>.rotate-180,[direction=rtl] .show>.rotate-180{transform:rotateZ(180deg)}.rotate-n180{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-n180,.collapsible:not(.collapsed)>.rotate-n180,.show>.rotate-n180{transform:rotateZ(180deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-n180,[direction=rtl] .collapsible:not(.collapsed)>.rotate-n180,[direction=rtl] .show>.rotate-n180{transform:rotateZ(-180deg)}.rotate-270{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-270,.collapsible:not(.collapsed)>.rotate-270,.show>.rotate-270{transform:rotateZ(-270deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-270,[direction=rtl] .collapsible:not(.collapsed)>.rotate-270,[direction=rtl] .show>.rotate-270{transform:rotateZ(270deg)}.rotate-n270{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-n270,.collapsible:not(.collapsed)>.rotate-n270,.show>.rotate-n270{transform:rotateZ(270deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-n270,[direction=rtl] .collapsible:not(.collapsed)>.rotate-n270,[direction=rtl] .show>.rotate-n270{transform:rotateZ(-270deg)}@media (min-width:992px){div,main,ol,pre,span,ul{scrollbar-width:thin;scrollbar-color:#eff2f5 transparent}div::-webkit-scrollbar,main::-webkit-scrollbar,ol::-webkit-scrollbar,pre::-webkit-scrollbar,span::-webkit-scrollbar,ul::-webkit-scrollbar{width:.4rem;height:.4rem}div::-webkit-scrollbar-thumb,main::-webkit-scrollbar-thumb,ol::-webkit-scrollbar-thumb,pre::-webkit-scrollbar-thumb,span::-webkit-scrollbar-thumb,ul::-webkit-scrollbar-thumb{background-color:#eff2f5}div:hover,main:hover,ol:hover,pre:hover,span:hover,ul:hover{scrollbar-color:#e9edf1 transparent}div:hover::-webkit-scrollbar-thumb,main:hover::-webkit-scrollbar-thumb,ol:hover::-webkit-scrollbar-thumb,pre:hover::-webkit-scrollbar-thumb,span:hover::-webkit-scrollbar-thumb,ul:hover::-webkit-scrollbar-thumb{background-color:#e9edf1}}.scroll{overflow:scroll;position:relative}@media (max-width:991.98px){.scroll{overflow:auto}}.scroll-x{overflow-x:scroll;position:relative}@media (max-width:991.98px){.scroll-x{overflow-x:auto}}.scroll-y{overflow-y:scroll;position:relative}@media (max-width:991.98px){.scroll-y{overflow-y:auto}}.hover-scroll{position:relative}@media (min-width:992px){.hover-scroll{overflow:hidden;border-left:.4rem solid transparent;border-bottom:.4rem solid transparent;margin-left:-.4rem;margin-bottom:-.4rem}.hover-scroll:hover{overflow:scroll;border-left:0;border-bottom:0}@-moz-document url-prefix(){.hover-scroll{overflow:scroll;position:relative;border-left:0;border-bottom:0}}}@media (max-width:991.98px){.hover-scroll{overflow:auto}}.hover-scroll-y{position:relative}@media (min-width:992px){.hover-scroll-y{overflow-y:hidden;border-left:.4rem solid transparent;margin-left:-.4rem}.hover-scroll-y:hover{overflow-y:scroll;border-left:0}@-moz-document url-prefix(){.hover-scroll-y{overflow-y:scroll;position:relative;border-left:0}}}@media (max-width:991.98px){.hover-scroll-y{overflow-y:auto}}.hover-scroll-x{position:relative}@media (min-width:992px){.hover-scroll-x{overflow-x:hidden;border-bottom:.4rem solid transparent}.hover-scroll-x:hover{overflow-x:scroll;border-bottom:0}@-moz-document url-prefix(){.hover-scroll-x{overflow-x:scroll;position:relative;border-bottom:0}}}@media (max-width:991.98px){.hover-scroll-x{overflow-x:auto}}.hover-scroll-overlay-y{overflow-y:hidden;position:relative;--scrollbar-space:0.5rem}.hover-scroll-overlay-y::-webkit-scrollbar{width:calc(.4rem + var(--scrollbar-space))}.hover-scroll-overlay-y::-webkit-scrollbar-thumb{background-clip:content-box;border-left:var(--scrollbar-space) solid transparent}.hover-scroll-overlay-y:hover{overflow-y:overlay}@-moz-document url-prefix(){.hover-scroll-overlay-y{overflow-y:scroll;position:relative}}.scroll-ps{padding-right:.4rem!important}.scroll-ms{margin-right:.4rem!important}.scroll-pe{padding-left:.4rem!important}.scroll-me{margin-left:.4rem!important}.scroll-px{padding-right:.4rem!important;padding-left:.4rem!important}.scroll-mx{margin-right:.4rem!important;margin-left:.4rem!important}.rating{display:flex;align-items:center}.rating-input{position:absolute!important;right:-9999px!important}.rating-input[disabled]{display:none}.rating-label{padding:0;margin:0}.rating-label>.svg-icon,.rating-label>i{line-height:1;color:#b5b5c3}label.rating-label{cursor:pointer}div.rating-label.checked>.svg-icon,div.rating-label.checked>i,label.rating-label>.svg-icon,label.rating-label>i{color:#ffad0f}.rating-input:checked~.rating-label>.svg-icon,.rating-input:checked~.rating-label>i{color:#b5b5c3}.rating:hover label.rating-label>.svg-icon,.rating:hover label.rating-label>i{color:#ffad0f}label.rating-label:hover~.rating-label{color:#b5b5c3}label.rating-label:hover~.rating-label>.svg-icon,label.rating-label:hover~.rating-label>i{color:#b5b5c3}.stepper [data-kt-stepper-element=content],.stepper [data-kt-stepper-element=info]{display:none}.stepper [data-kt-stepper-element=content].current,.stepper [data-kt-stepper-element=info].current{display:flex}.stepper .stepper-item[data-kt-stepper-action=step]{cursor:pointer}.stepper [data-kt-stepper-action=previous]{display:none}.stepper [data-kt-stepper-action=next]{display:inline-block}.stepper [data-kt-stepper-action=submit]{display:none}.stepper.first [data-kt-stepper-action=previous]{display:none}.stepper.first [data-kt-stepper-action=next]{display:inline-block}.stepper.first [data-kt-stepper-action=submit]{display:none}.stepper.between [data-kt-stepper-action=previous]{display:inline-block}.stepper.between [data-kt-stepper-action=next]{display:inline-block}.stepper.between [data-kt-stepper-action=submit]{display:none}.stepper.last [data-kt-stepper-action=previous]{display:inline-block}.stepper.last [data-kt-stepper-action=next]{display:none}.stepper.last [data-kt-stepper-action=submit]{display:inline-block}.stepper.last [data-kt-stepper-action=submit].btn-flex{display:flex}.stepper.stepper-pills .stepper-nav{display:flex}.stepper.stepper-pills .stepper-item{display:flex;align-items:center;transition:color .2s ease,background-color .2s ease}.stepper.stepper-pills .stepper-item .stepper-icon{display:flex;align-items:center;justify-content:center;transition:color .2s ease,background-color .2s ease;width:40px;height:40px;border-radius:.475rem;background-color:#f1faff;margin-left:1.5rem}.stepper.stepper-pills .stepper-item .stepper-icon .stepper-check{display:none;font-size:1rem}.stepper.stepper-pills .stepper-item .stepper-icon .stepper-number{font-weight:600;color:#009ef7!important;font-size:1.25rem}.stepper.stepper-pills .stepper-item .stepper-label{display:flex;flex-direction:column;justify-content:center}.stepper.stepper-pills .stepper-item .stepper-label .stepper-title{color:#3f4254;font-weight:600;font-size:1.25rem;margin-bottom:.3rem}.stepper.stepper-pills .stepper-item .stepper-label .stepper-desc{color:#a1a5b7}.stepper.stepper-pills .stepper-item.current{transition:color .2s ease,background-color .2s ease}.stepper.stepper-pills .stepper-item.current .stepper-icon{transition:color .2s ease,background-color .2s ease;background-color:#009ef7}.stepper.stepper-pills .stepper-item.current .stepper-icon .stepper-check{color:#009ef7;display:none}.stepper.stepper-pills .stepper-item.current .stepper-icon .stepper-number{color:#fff!important;font-size:1.35rem}.stepper.stepper-pills .stepper-item.current .stepper-label .stepper-title{color:#7e8299}.stepper.stepper-pills .stepper-item.current .stepper-label .stepper-desc{color:#b5b5c3}.stepper.stepper-pills .stepper-item.completed .stepper-icon,.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon{transition:color .2s ease,background-color .2s ease;background-color:#f1faff}.stepper.stepper-pills .stepper-item.completed .stepper-icon .stepper-check,.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon .stepper-check{color:#009ef7!important;display:inline-block}.stepper.stepper-pills .stepper-item.completed .stepper-icon .stepper-number,.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon .stepper-number{display:none}.stepper.stepper-pills .stepper-item.completed .stepper-label .stepper-title,.stepper.stepper-pills .stepper-item.current:last-child .stepper-label .stepper-title{color:#a1a5b7}.stepper.stepper-pills .stepper-item.completed .stepper-label .stepper-desc,.stepper.stepper-pills .stepper-item.current:last-child .stepper-label .stepper-desc{color:#b5b5c3}.stepper.stepper-pills.stepper-column .stepper-nav{flex-direction:column}.stepper.stepper-pills.stepper-column .stepper-item{position:relative;padding:0;margin:0;padding-bottom:2.5rem}.stepper.stepper-pills.stepper-column .stepper-icon{z-index:1}.stepper.stepper-pills.stepper-column .stepper-line{display:block;content:" ";justify-content:center;position:absolute;z-index:0;right:0;top:0;bottom:0;width:40px;transform:translate(-50%);border-right-width:1px;border-right-style:dashed;border-right-color:#e4e6ef}.stepper.stepper-pills.stepper-column .stepper-item:first-child .stepper-line{top:50%}.stepper.stepper-pills.stepper-column .stepper-item:last-child .stepper-line{bottom:50%}.stepper.stepper-links .stepper-nav{display:flex;margin:0 auto;justify-content:center;align-items:center;flex-wrap:wrap}.stepper.stepper-links .stepper-nav .stepper-item{position:relative;flex-shrink:0;margin:1rem 1.5rem}.stepper.stepper-links .stepper-nav .stepper-item:after{content:" ";position:absolute;top:2.3rem;right:0;height:2px;width:100%;background-color:transparent;transition:color .2s ease,background-color .2s ease}.stepper.stepper-links .stepper-nav .stepper-item .stepper-title{color:#181c32;font-weight:600;font-size:1.25rem}.stepper.stepper-links .stepper-nav .stepper-item.current{transition:color .2s ease,background-color .2s ease}.stepper.stepper-links .stepper-nav .stepper-item.current .stepper-title{color:#009ef7}.stepper.stepper-links .stepper-nav .stepper-item.current:after{background-color:#009ef7}.stepper.stepper-links .stepper-nav .stepper-item.completed .stepper-title{color:#b5b5c3}.toggle.active .toggle-off,.toggle.collapsible:not(.collapsed) .toggle-off{display:none}.toggle.collapsible.collapsed .toggle-on,.toggle:not(.collapsible):not(.active) .toggle-on{display:none}.xehagon{clip-path:polygon(45% 1.3397459622%,46.5797985667% .6030737921%,48.2635182233% .1519224699%,50% 0,51.7364817767% .1519224699%,53.4202014333% .6030737921%,55% 1.3397459622%,89.6410161514% 21.3397459622%,91.0688922482% 22.3395555688%,92.3014605826% 23.5721239031%,93.3012701892% 25%,94.0379423592% 26.5797985667%,94.4890936815% 28.2635182233%,94.6410161514% 30%,94.6410161514% 70%,94.4890936815% 71.7364817767%,94.0379423592% 73.4202014333%,93.3012701892% 75%,92.3014605826% 76.4278760969%,91.0688922482% 77.6604444312%,89.6410161514% 78.6602540378%,55% 98.6602540378%,53.4202014333% 99.3969262079%,51.7364817767% 99.8480775301%,50% 100%,48.2635182233% 99.8480775301%,46.5797985667% 99.3969262079%,45% 98.6602540378%,10.3589838486% 78.6602540378%,8.9311077518% 77.6604444312%,7.6985394174% 76.4278760969%,6.6987298108% 75%,5.9620576408% 73.4202014333%,5.5109063185% 71.7364817767%,5.3589838486% 70%,5.3589838486% 30%,5.5109063185% 28.2635182233%,5.9620576408% 26.5797985667%,6.6987298108% 25%,7.6985394174% 23.5721239031%,8.9311077518% 22.3395555688%,10.3589838486% 21.3397459622%)}.octagon{clip-path:polygon(46.1731656763% .7612046749%,47.411809549% .3407417371%,48.6947380778% .0855513863%,50% 0,51.3052619222% .0855513863%,52.588190451% .3407417371%,53.8268343237% .7612046749%,82.1111055711% 12.4769334274%,83.2842712475% 13.0554747147%,84.3718855375% 13.7821953496%,85.3553390593% 14.6446609407%,86.2178046504% 15.6281144625%,86.9445252853% 16.7157287525%,87.5230665726% 17.8888944289%,99.2387953251% 46.1731656763%,99.6592582629% 47.411809549%,99.9144486137% 48.6947380778%,100% 50%,99.9144486137% 51.3052619222%,99.6592582629% 52.588190451%,99.2387953251% 53.8268343237%,87.5230665726% 82.1111055711%,86.9445252853% 83.2842712475%,86.2178046504% 84.3718855375%,85.3553390593% 85.3553390593%,84.3718855375% 86.2178046504%,83.2842712475% 86.9445252853%,82.1111055711% 87.5230665726%,53.8268343237% 99.2387953251%,52.588190451% 99.6592582629%,51.3052619222% 99.9144486137%,50% 100%,48.6947380778% 99.9144486137%,47.411809549% 99.6592582629%,46.1731656763% 99.2387953251%,17.8888944289% 87.5230665726%,16.7157287525% 86.9445252853%,15.6281144625% 86.2178046504%,14.6446609407% 85.3553390593%,13.7821953496% 84.3718855375%,13.0554747147% 83.2842712475%,12.4769334274% 82.1111055711%,.7612046749% 53.8268343237%,.3407417371% 52.588190451%,.0855513863% 51.3052619222%,0 50%,.0855513863% 48.6947380778%,.3407417371% 47.411809549%,.7612046749% 46.1731656763%,12.4769334274% 17.8888944289%,13.0554747147% 16.7157287525%,13.7821953496% 15.6281144625%,14.6446609407% 14.6446609407%,15.6281144625% 13.7821953496%,16.7157287525% 13.0554747147%,17.8888944289% 12.4769334274%)}.ribbon{position:relative}.ribbon .ribbon-label{display:flex;justify-content:center;align-items:center;padding:5px 10px;position:absolute;z-index:1;background-color:#009ef7;box-shadow:0 -1px 5px 0 rgba(0,0,0,.1);color:#fff;top:50%;left:0;transform:translateX(-5px) translateY(-50%)}.ribbon .ribbon-label>.ribbon-inner{z-index:-1;position:absolute;padding:0;width:100%;height:100%;top:0;right:0}.ribbon .ribbon-label:after{border-color:#003c5e}.ribbon-vertical .ribbon-label{padding:5px 10px;min-width:36px;min-height:46px;text-align:center}.ribbon.ribbon-top .ribbon-label{top:0;transform:translateX(15px) translateY(-4px);border-bottom-left-radius:.475rem;border-bottom-right-radius:.475rem}.ribbon.ribbon-bottom .ribbon-label{border-top-left-radius:.475rem;border-top-right-radius:.475rem}.ribbon.ribbon-start .ribbon-label{top:50%;right:0;left:auto;transform:translateX(5px) translateY(-50%);border-top-left-radius:.475rem;border-bottom-left-radius:.475rem}.ribbon.ribbon-end .ribbon-label{border-top-right-radius:.475rem;border-bottom-right-radius:.475rem}.ribbon.ribbon-clip.ribbon-start .ribbon-label{right:-5px}.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner{border-top-left-radius:.475rem;border-bottom-left-radius:.475rem}.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:after,.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:before{content:"";position:absolute;border-style:solid;border-color:transparent!important;bottom:-10px}.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:before{border-width:0 0 10px 10px;border-left-color:#181c32!important;right:0}.ribbon.ribbon-clip.ribbon-end .ribbon-label{left:-5px}.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner{border-top-right-radius:.475rem;border-bottom-right-radius:.475rem}.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:after,.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:before{content:"";position:absolute;border-style:solid;border-color:transparent!important;bottom:-10px}.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:before{border-width:0 10px 10px 0;border-right-color:#181c32!important;left:0}.ribbon.ribbon-triangle{position:absolute;z-index:1;display:flex;align-items:flex-start;justify-content:flex-start}.ribbon.ribbon-triangle.ribbon-top-start{top:0;right:0;width:4rem;height:4rem;border-bottom:solid 2rem transparent!important;border-right:solid 2rem red;border-left:solid 2rem transparent!important;border-top:solid 2rem red}.ribbon.ribbon-triangle.ribbon-top-end{top:0;left:0;width:4rem;height:4rem;border-bottom:solid 2rem transparent!important;border-right:solid 2rem transparent!important;border-left:solid 2rem red;border-top:solid 2rem red}.ribbon.ribbon-triangle.ribbon-bottom-start{bottom:0;right:0;width:4rem;height:4rem;border-bottom:solid 2rem red;border-right:solid 2rem red;border-left:solid 2rem transparent!important;border-top:solid 2rem transparent!important}.ribbon.ribbon-triangle.ribbon-bottom-end{bottom:0;left:0;width:4rem;height:4rem;border-bottom:solid 2rem red;border-left:solid 2rem red;border-right:solid 2rem transparent!important;border-top:solid 2rem transparent!important}.blockui{position:relative}.blockui .blockui-overlay{transition:all .3s ease;position:absolute;top:0;bottom:0;right:0;left:0;display:flex;justify-content:center;align-items:center;background-color:rgba(0,0,0,.05)}.blockui .blockui-overlay .spinner-border{height:1.35rem;width:1.35rem}.blockui .blockui-message{display:flex;align-items:center;border-radius:.475rem;box-shadow:0 0 50px 0 rgba(82,63,105,.15);background-color:#fff;color:#7e8299;font-weight:500;margin:0!important;width:auto;padding:.85rem 1.75rem!important}.blockui .blockui-message .spinner-border{margin-left:.65rem}.explore-btn-toggle{color:#7e8299;background-color:#fff}.explore-btn-toggle:active,.explore-btn-toggle:focus,.explore-btn-toggle:hover{color:#fff;background-color:#00b2ff}.explore-btn-dismiss{border:0}.explore-btn-dismiss:hover .svg-icon,.explore-btn-dismiss:hover i{color:#00b2ff}.explore-btn-primary{border:0;color:#fff;background-color:#00b2ff}.explore-btn-primary:hover{color:#fff;background-color:#0098da}.explore-btn-secondary{border:0;color:#7e8299;background-color:#f5f8fa}.explore-btn-secondary:hover{color:#3f4254;background-color:#eff2f5}.explore-btn-outline{border:1px dashed #e4e6ef!important}.explore-btn-outline.active,.explore-btn-outline:hover{border:1px dashed #50cd89!important;background-color:#e8fff3}.explore-link{color:#00b2ff}.explore-link:hover{color:#0098da}.explore-link-hover:hover{color:#00b2ff!important}.explore-icon-success{color:#50cd89}.explore-icon-danger{color:#f1416c}.explore-label-free{color:#fff;background-color:#ffc700}.explore-label-pro{color:#fff;background-color:#50cd89}.cookiealert{background:inherit;color:inherit}@media print{.print-content-only{padding:0!important;background:0 0!important}.print-content-only .container,.print-content-only .container-fluid,.print-content-only .container-lg,.print-content-only .container-md,.print-content-only .container-sm,.print-content-only .container-xl,.print-content-only .container-xxl,.print-content-only .page,.print-content-only .page-title .content,.print-content-only .wrapper{background:0 0!important;padding:0!important;margin:0!important}.print-content-only .aside,.print-content-only .btn,.print-content-only .drawer,.print-content-only .footer,.print-content-only .header,.print-content-only .scrolltop,.print-content-only .sidebar,.print-content-only .toolbar{display:none!important}}@media (min-width:992px){.container-custom{padding-right:2rem!important;padding-left:2rem!important}}@media (max-width:991.98px){.container-custom{max-width:none;padding-right:1.5rem!important;padding-left:1.5rem!important}}.landing-dark-bg{background-color:#13263c}.landing-dark-color{color:#13263c}.landing-dark-border{border:1px dashed #2c3f5b}.landing-dark-separator{border-top:1px dashed #2c3f5b}.landing-curve{position:relative}.landing-curve svg{position:relative;top:0;display:block}.landing-header{display:flex;align-items:center;height:100px}.landing-header .logo-default{display:block}.landing-header .logo-sticky{display:none}.landing-header .menu .menu-link.active{color:#fff}[data-kt-sticky-landing-header=on] .landing-header .menu .menu-link.active{color:#009ef7;background-color:rgba(239,242,245,.4)}[data-kt-sticky-landing-header=on] .landing-header{padding:0;position:fixed;top:0;left:0;right:0;z-index:100;background-color:#fff;box-shadow:0 10px 30px 0 rgba(82,63,105,.05);height:70px}[data-kt-sticky-landing-header=on] .landing-header .logo-sticky{display:block}[data-kt-sticky-landing-header=on] .landing-header .logo-default{display:none}body[data-kt-sticky-landing-header=on]{padding-top:100px}@media (max-width:991.98px){.landing-header{height:70px}.landing-header .landing-menu-wrapper{position:relative;overflow:auto}[data-kt-sticky-landing-header=on] .landing-header{height:70px}.landing-header .menu .menu-link.active{color:#009ef7;background-color:rgba(239,242,245,.4)}body[data-kt-sticky-landing-header=on]{padding-top:70px}}html{font-family:sans-serif;text-size-adjust:100%}body,html{height:100%;margin:0;padding:0;font-size:13px!important;font-weight:400;font-family:Poppins,Helvetica,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (max-width:991.98px){body,html{font-size:13px!important}}@media (max-width:767.98px){body,html{font-size:12px!important}}body a:active,body a:focus,body a:hover,html a:active,html a:focus,html a:hover{text-decoration:none!important}body{display:flex;flex-direction:column;color:#181c32}router-outlet{display:none}canvas{user-select:none}@media print{.print-content-only{padding:0!important;background:0 0!important}.print-content-only .container,.print-content-only .container-fluid,.print-content-only .container-lg,.print-content-only .container-md,.print-content-only .container-sm,.print-content-only .container-xl,.print-content-only .container-xxl,.print-content-only .page,.print-content-only .page-title .content,.print-content-only .wrapper{background:0 0!important;padding:0!important;margin:0!important}.print-content-only .aside,.print-content-only .btn,.print-content-only .drawer,.print-content-only .footer,.print-content-only .header,.print-content-only .scrolltop,.print-content-only .sidebar,.print-content-only .toolbar{display:none!important}}body{background-color:#f5f8fa}.text-page-bg{color:#f5f8fa}@media (min-width:992px){.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{padding:0 30px}.wrapper{transition:padding-right .3s ease,margin-left .3s ease}.aside-enabled.aside-fixed .wrapper{transition:padding-right .3s ease;padding-right:265px}.aside-enabled.aside-fixed[data-kt-aside-minimize=on] .wrapper{transition:padding-right .3s ease;padding-right:75px}.header-fixed .wrapper{padding-top:65px}.header-fixed.toolbar-fixed .wrapper{padding-top:calc(65px + var(--kt-toolbar-height))}}@media (max-width:991.98px){.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:none;padding:0 15px}.header-tablet-and-mobile-fixed .wrapper{padding-top:55px}.header-tablet-and-mobile-fixed.toolbar-tablet-and-mobile-fixed .wrapper{padding-top:calc(55px + var(--kt-toolbar-height-tablet-and-mobile))}}@media (min-width:992px){.header{display:flex;justify-content:space-between;align-items:center;position:relative;z-index:2;height:65px;transition:right .3s ease}.header-fixed .header{position:fixed;top:0;left:0;right:0;z-index:100;background-color:#fff;height:65px;padding:0;box-shadow:0 10px 30px 0 rgba(82,63,105,.05)}.header-fixed.toolbar-fixed .header{box-shadow:none}.aside-enabled.aside-fixed.header-fixed .header{right:265px;transition:right .3s ease}.aside-enabled.aside-fixed.header-fixed[data-kt-aside-minimize=on] .header{right:75px;transition:right .3s ease}.header .header-menu{display:flex}}@media (max-width:991.98px){.header{display:flex;justify-content:space-between;align-items:center;height:55px;position:relative;z-index:3}.header-tablet-and-mobile-fixed .header{position:fixed;top:0;left:0;right:0;z-index:100;height:55px;min-height:55px;background-color:#fff;box-shadow:0 10px 30px 0 rgba(82,63,105,.05)}.header-tablet-and-mobile-fixed.toolbar-tablet-and-mobile-fixed .header{box-shadow:none}.header .header-menu{display:none;z-index:99}.header .page-title{display:none!important}}.toolbar{display:flex;align-items:center;background-color:#fff;padding:.5rem 0}@media (min-width:992px){.toolbar-fixed .toolbar{height:var(--kt-toolbar-height);position:fixed;top:0;left:0;right:0;z-index:99;box-shadow:0 10px 30px 0 rgba(82,63,105,.05)}.toolbar-enabled:not(.toolbar-fixed) .toolbar{margin-bottom:30px}.header-fixed.toolbar-fixed .toolbar{padding:0;top:65px;border-top:1px solid #eff2f5}.aside-enabled.aside-fixed.toolbar-fixed .toolbar{right:265px;transition:right .3s ease}.aside-enabled.aside-fixed.toolbar-fixed[data-kt-aside-minimize=on] .toolbar{right:75px;transition:right .3s ease}}@media (max-width:991.98px){.toolbar-tablet-and-mobile-fixed .toolbar{height:var(--kt-toolbar-height-tablet-and-mobile);position:fixed;top:0;left:0;right:0;z-index:99;box-shadow:0 10px 30px 0 rgba(82,63,105,.05)}.toolbar-enabled:not(.toolbar-tablet-and-mobile-fixed) .toolbar{margin-bottom:15px}.header-tablet-and-mobile-fixed.toolbar-tablet-and-mobile-fixed .toolbar{padding:0;top:55px;border-top:1px solid #eff2f5}.toolbar .page-title[data-kt-swapper=true]{display:none!important}}.aside{display:flex;flex-direction:column;box-shadow:0 0 28px 0 rgba(82,63,105,.05);padding:0}.aside .btn-custom{display:flex;align-items:center;justify-content:center;padding-right:0;padding-left:0}.aside .btn-custom .btn-label{transition:opacity .3s ease;display:inline-block;white-space:nowrap;overflow:hidden;opacity:1}.aside .btn-custom .btn-icon{display:inline-block;transition:opacity .3s ease;overflow:hidden;opacity:0;margin:0;width:0}.aside.aside-dark{background-color:#1e1e2d}.aside.aside-dark .aside-logo{background-color:#1a1a27}.aside.aside-dark .aside-toggle{color:#494b74}.aside.aside-dark .separator{border-bottom-color:#282a3d}.aside.aside-dark .btn-custom{color:#b5b5c3;background-color:rgba(63,66,84,.35)}.aside.aside-dark .btn-custom.active,.aside.aside-dark .btn-custom.show,.aside.aside-dark .btn-custom:active:not(.btn-active),.aside.aside-dark .btn-custom:focus:not(.btn-active),.aside.aside-dark .btn-custom:hover:not(.btn-active),.btn-check:active+.aside.aside-dark .btn-custom,.btn-check:checked+.aside.aside-dark .btn-custom,.show>.aside.aside-dark .btn-custom{color:#b5b5c3;background-color:rgba(63,66,84,.35)!important}.aside.aside-dark .btn-custom .btn-icon,.aside.aside-dark .btn-custom .btn-icon .svg-icon,.aside.aside-dark .btn-custom .btn-icon i{color:#b5b5c3}.aside.aside-light{background-color:#fff}@media (min-width:992px){.aside{width:265px;transition:width .3s ease}.aside .aside-logo{display:flex;justify-content:space-between;align-items:center;height:65px;padding:0 25px}.aside .aside-menu{width:265px}.aside-fixed .aside{position:fixed;top:0;bottom:0;right:0;z-index:101;overflow:hidden}.aside-static .aside{position:relative;z-index:1}[data-kt-aside-minimize=on] .aside{width:75px;transition:width .3s ease}[data-kt-aside-minimize=on] .aside .aside-logo .logo-default{display:inline-block}[data-kt-aside-minimize=on] .aside .aside-logo .logo-minimize{display:none}[data-kt-aside-minimize=on] .aside.aside-hoverable:hover:not(.animating){transition:width .3s ease;width:265px;box-shadow:-5px 0 10px rgba(70,78,95,.075)}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo{justify-content:center}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo .logo,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo .logo{display:none}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo .logo-default,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo .logo-default{display:none}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo .logo-minimize,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo .logo-minimize{display:inline-block}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-menu .menu-content,[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-menu .menu-title,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-menu .menu-content,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-menu .menu-title{opacity:0;transition:opacity .3s ease}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-menu .menu-item.show>.menu-sub,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-menu .menu-item.show>.menu-sub{height:0;overflow:hidden;transition:height .3s ease}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .btn-custom .btn-label,[data-kt-aside-minimize=on] .aside:not(:hover) .btn-custom .btn-label{width:0;opacity:0;transition:opacity .3s ease}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .btn-custom .btn-icon,[data-kt-aside-minimize=on] .aside:not(:hover) .btn-custom .btn-icon{width:auto;opacity:1;transition:opacity .3s ease}}@media (max-width:991.98px){.aside{display:none}.aside .aside-logo{display:none}}.aside-menu .menu .menu-item .menu-content,.aside-menu .menu .menu-item .menu-link{padding-right:25px;padding-left:25px}.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(.75rem + 25px)}.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(1.5rem + 25px)}.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(2.25rem + 25px)}.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(3rem + 25px)}.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:.75rem;padding-left:0}.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(1.5rem);padding-left:0}.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(2.25rem);padding-left:0}.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(3rem);padding-left:0}.aside-menu .menu-item{padding:0}.aside-menu .menu-item .menu-link{padding-top:.75rem;padding-bottom:.75rem}.aside-menu .menu-item .menu-icon{justify-content:flex-start}.aside-dark .hover-scroll-overlay-y{--scrollbar-space:0.4rem;scrollbar-color:#3b3b64 transparent}.aside-dark .hover-scroll-overlay-y::-webkit-scrollbar-thumb{background-color:#3b3b64}.aside-dark .hover-scroll-overlay-y:hover{scrollbar-color:#41416e transparent}.aside-dark .hover-scroll-overlay-y:hover::-webkit-scrollbar-thumb{background-color:#41416e}.aside-dark .menu .menu-item .menu-section{color:#4c4e6f!important}.aside-dark .menu .menu-item .menu-link{color:#9899ac}.aside-dark .menu .menu-item .menu-link .menu-title{color:#9899ac}.aside-dark .menu .menu-item .menu-link .menu-icon,.aside-dark .menu .menu-item .menu-link .menu-icon .svg-icon,.aside-dark .menu .menu-item .menu-link .menu-icon i{color:#494b74}.aside-dark .menu .menu-item .menu-link .menu-bullet .bullet{background-color:#9899ac}.aside-dark .menu .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%239899ac'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#1b1b28;color:#fff}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#fff}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#009ef7}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#009ef7}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.aside-dark .menu .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#1b1b28;color:#fff}.aside-dark .menu .menu-item.here>.menu-link .menu-title{color:#fff}.aside-dark .menu .menu-item.here>.menu-link .menu-icon,.aside-dark .menu .menu-item.here>.menu-link .menu-icon .svg-icon,.aside-dark .menu .menu-item.here>.menu-link .menu-icon i{color:#009ef7}.aside-dark .menu .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#009ef7}.aside-dark .menu .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.aside-dark .menu .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#1b1b28;color:#fff}.aside-dark .menu .menu-item.show>.menu-link .menu-title{color:#fff}.aside-dark .menu .menu-item.show>.menu-link .menu-icon,.aside-dark .menu .menu-item.show>.menu-link .menu-icon .svg-icon,.aside-dark .menu .menu-item.show>.menu-link .menu-icon i{color:#009ef7}.aside-dark .menu .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#009ef7}.aside-dark .menu .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.aside-dark .menu .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#1b1b28;color:#fff}.aside-dark .menu .menu-item .menu-link.active .menu-title{color:#fff}.aside-dark .menu .menu-item .menu-link.active .menu-icon,.aside-dark .menu .menu-item .menu-link.active .menu-icon .svg-icon,.aside-dark .menu .menu-item .menu-link.active .menu-icon i{color:#009ef7}.aside-dark .menu .menu-item .menu-link.active .menu-bullet .bullet{background-color:#009ef7}.aside-dark .menu .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.aside-light .menu .menu-title{font-weight:500}@media (min-width:992px){.content{padding:30px 0}.toolbar-enabled:not(.toolbar-fixed) .content{padding-top:0}}@media (max-width:991.98px){.content{padding:15px 0}.toolbar-enabled:not(.toolbar-tablet-and-mobile-fixed) .content{padding-top:0}}.footer{background-color:#fff}@media print{.print-content-only{padding:0!important;background:0 0!important}.print-content-only .container,.print-content-only .container-fluid,.print-content-only .container-lg,.print-content-only .container-md,.print-content-only .container-sm,.print-content-only .container-xl,.print-content-only .container-xxl,.print-content-only .docs-page,.print-content-only .docs-page-title .docs-content,.print-content-only .docs-wrapper{background:0 0!important;padding:0!important;margin:0!important}.print-content-only .btn,.print-content-only .docs-aside,.print-content-only .docs-header,.print-content-only .drawer,.print-content-only docs- .scrolltop{display:none!important}}.docs-wrapper{background-color:#f5f8fa}@media (min-width:992px){.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{padding:0 30px}.docs-wrapper{padding-right:265px}}@media (max-width:991.98px){.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:none;padding:0 15px}}@media (min-width:992px){.docs-header{display:flex;justify-content:space-between;align-items:center}}@media (max-width:991.98px){.docs-header{display:flex;justify-content:space-between;align-items:center}.docs-header .docs-page-title[data-kt-swapper=true]{display:none!important}}.docs-aside{display:flex;flex-direction:column;box-shadow:0 0 28px 0 rgba(82,63,105,.025);background-color:#fff;padding:0}@media (min-width:992px){.docs-aside{position:fixed;top:0;bottom:0;right:0;z-index:101;overflow:hidden;width:265px}.docs-aside .docs-aside-logo{display:flex;justify-content:space-between;align-items:center;padding:0 25px}.docs-aside .docs-aside-menu{width:265px}}@media (max-width:991.98px){.docs-aside{display:none}.docs-aside .docs-aside-logo{display:none}}.docs-aside-menu .menu .menu-item .menu-content,.docs-aside-menu .menu .menu-item .menu-link{padding-right:25px;padding-left:25px}.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(.75rem + 25px)}.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(1.5rem + 25px)}.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(2.25rem + 25px)}.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(3rem + 25px)}.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:.75rem;padding-left:0}.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(1.5rem);padding-left:0}.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(2.25rem);padding-left:0}.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(3rem);padding-left:0}.docs-aside-menu .menu-item{padding:0}.docs-aside-menu .menu-item .menu-link{font-weight:500;padding-top:.75rem;padding-bottom:.75rem}.docs-aside-menu .menu-item .menu-icon{justify-content:flex-start}.card.card-docs{background-color:#fff;border:0} \ No newline at end of file diff --git a/Mid-term/public/assets/css/style.dark.bundle.css b/Mid-term/public/assets/css/style.dark.bundle.css new file mode 100644 index 000000000..897be09b1 --- /dev/null +++ b/Mid-term/public/assets/css/style.dark.bundle.css @@ -0,0 +1 @@ +@charset "UTF-8";:root{--bs-blue:#009ef6;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-gray:#6D6D80;--bs-gray-dark:#CDCDDE;--bs-gray-100:#1b1b29;--bs-gray-200:#2B2B40;--bs-gray-300:#323248;--bs-gray-400:#474761;--bs-gray-500:#565674;--bs-gray-600:#6D6D80;--bs-gray-700:#92929F;--bs-gray-800:#CDCDDE;--bs-gray-900:#FFFFFF;--bs-white:#ffffff;--bs-light:#323248;--bs-primary:#3699FF;--bs-secondary:#323248;--bs-success:#0BB783;--bs-info:#8950FC;--bs-warning:#FFA800;--bs-danger:#F64E60;--bs-dark:#FFFFFF;--bs-white-rgb:255,255,255;--bs-light-rgb:50,50,72;--bs-primary-rgb:54,153,255;--bs-secondary-rgb:50,50,72;--bs-success-rgb:11,183,131;--bs-info-rgb:137,80,252;--bs-warning-rgb:255,168,0;--bs-danger-rgb:246,78,96;--bs-dark-rgb:255,255,255;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:255,255,255;--bs-body-bg-rgb:30,30,45;--bs-font-sans-serif:Poppins,Helvetica,"sans-serif";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#FFFFFF;--bs-body-bg:#1E1E2D}*,::after,::before{box-sizing:border-box}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:600;line-height:1.2;color:#fff}.h1,h1{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h1,h1{font-size:1.75rem}}.h2,h2{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h2,h2{font-size:1.5rem}}.h3,h3{font-size:calc(1.26rem + .12vw)}@media (min-width:1200px){.h3,h3{font-size:1.35rem}}.h4,h4{font-size:1.25rem}.h5,h5{font-size:1.15rem}.h6,h6{font-size:1.075rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:500}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:600}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#3699ff;text-decoration:none}a:hover{color:#0073e9;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#b93993;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#fff;border-radius:.325rem}kbd kbd{padding:0;font-size:1em;font-weight:500}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#565674;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.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:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6d6d80}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#1e1e2d;border:1px solid #323248;border-radius:.475rem;box-shadow:0 .1rem 1rem .25rem rgba(0,0,0,.05);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6d6d80}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,1.5rem);padding-left:var(--bs-gutter-x,1.5rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0rem}.g-0,.gy-0{--bs-gutter-y:0rem}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:0.75rem}.g-3,.gy-3{--bs-gutter-y:0.75rem}.g-4,.gx-4{--bs-gutter-x:1rem}.g-4,.gy-4{--bs-gutter-y:1rem}.g-5,.gx-5{--bs-gutter-x:1.25rem}.g-5,.gy-5{--bs-gutter-y:1.25rem}.g-6,.gx-6{--bs-gutter-x:1.5rem}.g-6,.gy-6{--bs-gutter-y:1.5rem}.g-7,.gx-7{--bs-gutter-x:1.75rem}.g-7,.gy-7{--bs-gutter-y:1.75rem}.g-8,.gx-8{--bs-gutter-x:2rem}.g-8,.gy-8{--bs-gutter-y:2rem}.g-9,.gx-9{--bs-gutter-x:2.25rem}.g-9,.gy-9{--bs-gutter-y:2.25rem}.g-10,.gx-10{--bs-gutter-x:2.5rem}.g-10,.gy-10{--bs-gutter-y:2.5rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0rem}.g-sm-0,.gy-sm-0{--bs-gutter-y:0rem}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:0.75rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:0.75rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:1.25rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:1.25rem}.g-sm-6,.gx-sm-6{--bs-gutter-x:1.5rem}.g-sm-6,.gy-sm-6{--bs-gutter-y:1.5rem}.g-sm-7,.gx-sm-7{--bs-gutter-x:1.75rem}.g-sm-7,.gy-sm-7{--bs-gutter-y:1.75rem}.g-sm-8,.gx-sm-8{--bs-gutter-x:2rem}.g-sm-8,.gy-sm-8{--bs-gutter-y:2rem}.g-sm-9,.gx-sm-9{--bs-gutter-x:2.25rem}.g-sm-9,.gy-sm-9{--bs-gutter-y:2.25rem}.g-sm-10,.gx-sm-10{--bs-gutter-x:2.5rem}.g-sm-10,.gy-sm-10{--bs-gutter-y:2.5rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0rem}.g-md-0,.gy-md-0{--bs-gutter-y:0rem}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:0.75rem}.g-md-3,.gy-md-3{--bs-gutter-y:0.75rem}.g-md-4,.gx-md-4{--bs-gutter-x:1rem}.g-md-4,.gy-md-4{--bs-gutter-y:1rem}.g-md-5,.gx-md-5{--bs-gutter-x:1.25rem}.g-md-5,.gy-md-5{--bs-gutter-y:1.25rem}.g-md-6,.gx-md-6{--bs-gutter-x:1.5rem}.g-md-6,.gy-md-6{--bs-gutter-y:1.5rem}.g-md-7,.gx-md-7{--bs-gutter-x:1.75rem}.g-md-7,.gy-md-7{--bs-gutter-y:1.75rem}.g-md-8,.gx-md-8{--bs-gutter-x:2rem}.g-md-8,.gy-md-8{--bs-gutter-y:2rem}.g-md-9,.gx-md-9{--bs-gutter-x:2.25rem}.g-md-9,.gy-md-9{--bs-gutter-y:2.25rem}.g-md-10,.gx-md-10{--bs-gutter-x:2.5rem}.g-md-10,.gy-md-10{--bs-gutter-y:2.5rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0rem}.g-lg-0,.gy-lg-0{--bs-gutter-y:0rem}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:0.75rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:0.75rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:1.25rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:1.25rem}.g-lg-6,.gx-lg-6{--bs-gutter-x:1.5rem}.g-lg-6,.gy-lg-6{--bs-gutter-y:1.5rem}.g-lg-7,.gx-lg-7{--bs-gutter-x:1.75rem}.g-lg-7,.gy-lg-7{--bs-gutter-y:1.75rem}.g-lg-8,.gx-lg-8{--bs-gutter-x:2rem}.g-lg-8,.gy-lg-8{--bs-gutter-y:2rem}.g-lg-9,.gx-lg-9{--bs-gutter-x:2.25rem}.g-lg-9,.gy-lg-9{--bs-gutter-y:2.25rem}.g-lg-10,.gx-lg-10{--bs-gutter-x:2.5rem}.g-lg-10,.gy-lg-10{--bs-gutter-y:2.5rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0rem}.g-xl-0,.gy-xl-0{--bs-gutter-y:0rem}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:0.75rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:0.75rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:1.25rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:1.25rem}.g-xl-6,.gx-xl-6{--bs-gutter-x:1.5rem}.g-xl-6,.gy-xl-6{--bs-gutter-y:1.5rem}.g-xl-7,.gx-xl-7{--bs-gutter-x:1.75rem}.g-xl-7,.gy-xl-7{--bs-gutter-y:1.75rem}.g-xl-8,.gx-xl-8{--bs-gutter-x:2rem}.g-xl-8,.gy-xl-8{--bs-gutter-y:2rem}.g-xl-9,.gx-xl-9{--bs-gutter-x:2.25rem}.g-xl-9,.gy-xl-9{--bs-gutter-y:2.25rem}.g-xl-10,.gx-xl-10{--bs-gutter-x:2.5rem}.g-xl-10,.gy-xl-10{--bs-gutter-y:2.5rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0rem}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0rem}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:0.75rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:0.75rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:1.25rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:1.25rem}.g-xxl-6,.gx-xxl-6{--bs-gutter-x:1.5rem}.g-xxl-6,.gy-xxl-6{--bs-gutter-y:1.5rem}.g-xxl-7,.gx-xxl-7{--bs-gutter-x:1.75rem}.g-xxl-7,.gy-xxl-7{--bs-gutter-y:1.75rem}.g-xxl-8,.gx-xxl-8{--bs-gutter-x:2rem}.g-xxl-8,.gy-xxl-8{--bs-gutter-y:2rem}.g-xxl-9,.gx-xxl-9{--bs-gutter-x:2.25rem}.g-xxl-9,.gy-xxl-9{--bs-gutter-y:2.25rem}.g-xxl-10,.gx-xxl-10{--bs-gutter-x:2.5rem}.g-xxl-10,.gy-xxl-10{--bs-gutter-y:2.5rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#FFFFFF;--bs-table-striped-bg:rgba(27, 27, 41, 0.75);--bs-table-active-color:#FFFFFF;--bs-table-active-bg:#1b1b29;--bs-table-hover-color:#FFFFFF;--bs-table-hover-bg:#1b1b29;width:100%;margin-bottom:1rem;color:#fff;vertical-align:top;border-color:#2b2b40}.table>:not(caption)>*>*{padding:.75rem .75rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.5rem .5rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#d7ebff;--bs-table-striped-bg:#ccdff2;--bs-table-striped-color:#000000;--bs-table-active-bg:#c2d4e6;--bs-table-active-color:#000000;--bs-table-hover-bg:#c7d9ec;--bs-table-hover-color:#000000;color:#000;border-color:#c2d4e6}.table-secondary{--bs-table-bg:#d6d6da;--bs-table-striped-bg:#cbcbcf;--bs-table-striped-color:#000000;--bs-table-active-bg:#c1c1c4;--bs-table-active-color:#000000;--bs-table-hover-bg:#c6c6ca;--bs-table-hover-color:#000000;color:#000;border-color:#c1c1c4}.table-success{--bs-table-bg:#cef1e6;--bs-table-striped-bg:#c4e5db;--bs-table-striped-color:#000000;--bs-table-active-bg:#b9d9cf;--bs-table-active-color:#000000;--bs-table-hover-bg:#bfdfd5;--bs-table-hover-color:#000000;color:#000;border-color:#b9d9cf}.table-info{--bs-table-bg:#e7dcfe;--bs-table-striped-bg:#dbd1f1;--bs-table-striped-color:#000000;--bs-table-active-bg:#d0c6e5;--bs-table-active-color:#000000;--bs-table-hover-bg:#d6cceb;--bs-table-hover-color:#000000;color:#000;border-color:#d0c6e5}.table-warning{--bs-table-bg:#ffeecc;--bs-table-striped-bg:#f2e2c2;--bs-table-striped-color:#000000;--bs-table-active-bg:#e6d6b8;--bs-table-active-color:#000000;--bs-table-hover-bg:#ecdcbd;--bs-table-hover-color:#000000;color:#000;border-color:#e6d6b8}.table-danger{--bs-table-bg:#fddcdf;--bs-table-striped-bg:#f0d1d4;--bs-table-striped-color:#000000;--bs-table-active-bg:#e4c6c9;--bs-table-active-color:#000000;--bs-table-hover-bg:#eaccce;--bs-table-hover-color:#000000;color:#000;border-color:#e4c6c9}.table-light{--bs-table-bg:#323248;--bs-table-striped-bg:#3c3c51;--bs-table-striped-color:#ffffff;--bs-table-active-bg:#47475a;--bs-table-active-color:#ffffff;--bs-table-hover-bg:#414156;--bs-table-hover-color:#ffffff;color:#fff;border-color:#47475a}.table-dark{--bs-table-bg:#FFFFFF;--bs-table-striped-bg:#f2f2f2;--bs-table-striped-color:#000000;--bs-table-active-bg:#e6e6e6;--bs-table-active-color:#000000;--bs-table-hover-bg:#ececec;--bs-table-hover-color:#000000;color:#000;border-color:#e6e6e6}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem;font-size:1.05rem;font-weight:500;color:#cdcdde}.col-form-label{padding-top:calc(.75rem + 1px);padding-bottom:calc(.75rem + 1px);margin-bottom:0;font-size:inherit;font-weight:500;line-height:1.5;color:#cdcdde}.col-form-label-lg{padding-top:calc(.825rem + 1px);padding-bottom:calc(.825rem + 1px);font-size:1.15rem}.col-form-label-sm{padding-top:calc(.55rem + 1px);padding-bottom:calc(.55rem + 1px);font-size:.925rem}.form-text{margin-top:.5rem;font-size:.925rem;color:#565674}.form-control{display:block;width:100%;padding:.75rem 1rem;font-size:1.1rem;font-weight:500;line-height:1.5;color:#92929f;background-color:#1e1e2d;background-clip:padding-box;border:1px solid #323248;appearance:none;border-radius:.475rem;box-shadow:inset 0 1px 2px rgba(0,0,0,.075);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#92929f;background-color:#1e1e2d;border-color:#474761;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 0 .25rem rgba(54,153,255,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::placeholder{color:#565674;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#2b2b40;opacity:1}.form-control::file-selector-button{padding:.75rem 1rem;margin:-.75rem -1rem;margin-inline-end:1rem;color:#92929f;background-color:#1b1b29;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;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 (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#1a1a27}.form-control::-webkit-file-upload-button{padding:.75rem 1rem;margin:-.75rem -1rem;margin-inline-end:1rem;color:#92929f;background-color:#1b1b29;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;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 (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#1a1a27}.form-control-plaintext{display:block;width:100%;padding:.75rem 0;margin-bottom:0;line-height:1.5;color:#92929f;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{min-height:calc(1.5em + 1.1rem + 2px);padding:.55rem .75rem;font-size:.925rem;border-radius:.325rem}.form-control-sm::file-selector-button{padding:.55rem .75rem;margin:-.55rem -.75rem;margin-inline-end:.75rem}.form-control-sm::-webkit-file-upload-button{padding:.55rem .75rem;margin:-.55rem -.75rem;margin-inline-end:.75rem}.form-control-lg{min-height:calc(1.5em + 1.65rem + 2px);padding:.825rem 1.5rem;font-size:1.15rem;border-radius:.625rem}.form-control-lg::file-selector-button{padding:.825rem 1.5rem;margin:-.825rem -1.5rem;margin-inline-end:1.5rem}.form-control-lg::-webkit-file-upload-button{padding:.825rem 1.5rem;margin:-.825rem -1.5rem;margin-inline-end:1.5rem}textarea.form-control{min-height:calc(1.5em + 1.5rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + 1.1rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1.65rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.75rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.475rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.475rem}.form-select{display:block;width:100%;padding:.75rem 3rem .75rem 1rem;-moz-padding-start:calc(1rem - 3px);font-size:1.1rem;font-weight:500;line-height:1.5;color:#92929f;background-color:#1e1e2d;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236D6D80' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right 1rem center;background-size:16px 12px;border:1px solid #323248;border-radius:.475rem;box-shadow:inset 0 1px 2px rgba(0,0,0,.075);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#474761;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 0 .25rem rgba(54,153,255,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:1rem;background-image:none}.form-select:disabled{background-color:#2b2b40}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #92929f}.form-select-sm{padding-top:.55rem;padding-bottom:.55rem;padding-left:.75rem;font-size:.925rem;border-radius:.325rem}.form-select-lg{padding-top:.825rem;padding-bottom:.825rem;padding-left:1.5rem;font-size:1.15rem;border-radius:.625rem}.form-check{display:block;min-height:1.5rem;padding-left:2.25rem;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-2.25rem}.form-check-input{width:1.75rem;height:1.75rem;margin-top:-.125rem;vertical-align:top;background-color:#1e1e2d;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);appearance:none;color-adjust:exact;transition:background-color .15s ease-in-out,background-position .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-check-input{transition:none}}.form-check-input[type=checkbox]{border-radius:.45em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#474761;outline:0;box-shadow:none}.form-check-input:checked{background-color:#3699ff;border-color:#3699ff}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11' width='13' height='11' fill='none'%3e%3cpath d='M11.0426 1.02893C11.3258 0.695792 11.8254 0.655283 12.1585 0.938451C12.4917 1.22162 12.5322 1.72124 12.249 2.05437L5.51985 9.97104C5.23224 10.3094 4.72261 10.3451 4.3907 10.05L0.828197 6.88335C0.50141 6.59288 0.471975 6.09249 0.762452 5.7657C1.05293 5.43891 1.55332 5.40948 1.88011 5.69995L4.83765 8.32889L11.0426 1.02893Z' fill='%23FFFFFF'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23FFFFFF'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#3699ff;border-color:#3699ff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:3.75rem}.form-switch .form-check-input{width:3.25rem;margin-left:-3.75rem;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='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:3.25rem;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{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='%23474761'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;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='%23FFFFFF'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.6}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #1e1e2d,0 0 0 .25rem rgba(54,153,255,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #1e1e2d,0 0 0 .25rem rgba(54,153,255,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#3699ff;border:0;border-radius:1rem;box-shadow:0 .1rem .25rem rgba(0,0,0,.1);transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#c3e0ff}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#323248;border-color:transparent;border-radius:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075)}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#3699ff;border:0;border-radius:1rem;box-shadow:0 .1rem .25rem rgba(0,0,0,.1);transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:#c3e0ff}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#323248;border-color:transparent;border-radius:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075)}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#565674}.form-range:disabled::-moz-range-thumb{background-color:#565674}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:add(3.75rem,2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem 1rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem 1rem}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:2.15rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:2.15rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:2.15rem;padding-bottom:.625rem}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.75rem 1rem;font-size:1.1rem;font-weight:500;line-height:1.5;color:#cdcdde;text-align:center;white-space:nowrap;background-color:#1b1b29;border:1px solid #323248;border-radius:.475rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.825rem 1.5rem;font-size:1.15rem;border-radius:.625rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.55rem .75rem;font-size:.925rem;border-radius:.325rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:4rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.5rem;font-size:.925rem;color:#0bb783}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.75rem 1rem;margin-top:.1rem;font-size:.925rem;color:#000;background-color:#0bb783;border-radius:.475rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#0bb783;padding-right:calc(1.5em + 1.5rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%230BB783' 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(.375em + .375rem) center;background-size:calc(.75em + .75rem) calc(.75em + .75rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#0bb783;box-shadow:0 0 0 .25rem rgba(11,183,131,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 1.5rem);background-position:top calc(.375em + .375rem) right calc(.375em + .375rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#0bb783}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:5.5rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236D6D80' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%230BB783' 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-position:right 1rem center,center right 3rem;background-size:16px 12px,calc(.75em + .75rem) calc(.75em + .75rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#0bb783;box-shadow:0 0 0 .25rem rgba(11,183,131,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#0bb783}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#0bb783}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(11,183,131,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#0bb783}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.5rem;font-size:.925rem;color:#f64e60}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.75rem 1rem;margin-top:.1rem;font-size:.925rem;color:#000;background-color:#f64e60;border-radius:.475rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#f64e60;padding-right:calc(1.5em + 1.5rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F64E60'%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='%23F64E60' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .375rem) center;background-size:calc(.75em + .75rem) calc(.75em + .75rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#f64e60;box-shadow:0 0 0 .25rem rgba(246,78,96,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 1.5rem);background-position:top calc(.375em + .375rem) right calc(.375em + .375rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#f64e60}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:5.5rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236D6D80' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F64E60'%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='%23F64E60' stroke='none'/%3e%3c/svg%3e");background-position:right 1rem center,center right 3rem;background-size:16px 12px,calc(.75em + .75rem) calc(.75em + .75rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#f64e60;box-shadow:0 0 0 .25rem rgba(246,78,96,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#f64e60}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#f64e60}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(246,78,96,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#f64e60}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:500;line-height:1.5;color:#fff;text-align:center;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.75rem 1.5rem;font-size:1.1rem;border-radius:.475rem;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 (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#fff;text-decoration:none}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(54,153,255,.25)}.btn-check:active+.btn,.btn-check:checked+.btn,.btn.active,.btn:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-check:active+.btn:focus,.btn-check:checked+.btn:focus,.btn.active:focus,.btn:active:focus{box-shadow:0 0 0 .25rem rgba(54,153,255,.25),inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.6;box-shadow:none}.btn-white{color:#000;background-color:#fff;border-color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus{color:#000;background-color:#fff;border-color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(217,217,217,.5)}.btn-check:active+.btn-white,.btn-check:checked+.btn-white,.btn-white.active,.btn-white:active,.show>.btn-white.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-white:focus,.btn-check:checked+.btn-white:focus,.btn-white.active:focus,.btn-white:active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(217,217,217,.5)}.btn-white.disabled,.btn-white:disabled{color:#000;background-color:#fff;border-color:#fff}.btn-light{color:#fff;background-color:#323248;border-color:#323248;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-light:hover{color:#fff;background-color:#2b2b3d;border-color:#28283a}.btn-check:focus+.btn-light,.btn-light:focus{color:#fff;background-color:#2b2b3d;border-color:#28283a;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(81,81,99,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#fff;background-color:#28283a;border-color:#262636}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(81,81,99,.5)}.btn-light.disabled,.btn-light:disabled{color:#fff;background-color:#323248;border-color:#323248}.btn-primary{color:#000;background-color:#3699ff;border-color:#3699ff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-primary:hover{color:#000;background-color:#54a8ff;border-color:#4aa3ff}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#000;background-color:#54a8ff;border-color:#4aa3ff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(46,130,217,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#000;background-color:#5eadff;border-color:#4aa3ff}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(46,130,217,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#000;background-color:#3699ff;border-color:#3699ff}.btn-secondary{color:#fff;background-color:#323248;border-color:#323248;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-secondary:hover{color:#fff;background-color:#2b2b3d;border-color:#28283a}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#2b2b3d;border-color:#28283a;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(81,81,99,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#28283a;border-color:#262636}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(81,81,99,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#323248;border-color:#323248}.btn-success{color:#000;background-color:#0bb783;border-color:#0bb783;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-success:hover{color:#000;background-color:#30c296;border-color:#23be8f}.btn-check:focus+.btn-success,.btn-success:focus{color:#000;background-color:#30c296;border-color:#23be8f;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(9,156,111,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#000;background-color:#3cc59c;border-color:#23be8f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(9,156,111,.5)}.btn-success.disabled,.btn-success:disabled{color:#000;background-color:#0bb783;border-color:#0bb783}.btn-info{color:#fff;background-color:#8950fc;border-color:#8950fc;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-info:hover{color:#fff;background-color:#7444d6;border-color:#6e40ca}.btn-check:focus+.btn-info,.btn-info:focus{color:#fff;background-color:#7444d6;border-color:#6e40ca;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(155,106,252,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#6e40ca;border-color:#673cbd}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(155,106,252,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#8950fc;border-color:#8950fc}.btn-warning{color:#000;background-color:#ffa800;border-color:#ffa800;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-warning:hover{color:#000;background-color:#ffb526;border-color:#ffb11a}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffb526;border-color:#ffb11a;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(217,143,0,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffb933;border-color:#ffb11a}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(217,143,0,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffa800;border-color:#ffa800}.btn-danger{color:#000;background-color:#f64e60;border-color:#f64e60;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger:hover{color:#000;background-color:#f76978;border-color:#f76070}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#000;background-color:#f76978;border-color:#f76070;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(209,66,82,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#000;background-color:#f87180;border-color:#f76070}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(209,66,82,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#000;background-color:#f64e60;border-color:#f64e60}.btn-dark{color:#000;background-color:#fff;border-color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-dark:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#000;background-color:#fff;border-color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(217,217,217,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(217,217,217,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#000;background-color:#fff;border-color:#fff}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-white,.btn-outline-white:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-check:active+.btn-outline-white,.btn-check:checked+.btn-outline-white,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show,.btn-outline-white:active{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-outline-white:focus,.btn-check:checked+.btn-outline-white:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus,.btn-outline-white:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(255,255,255,.5)}.btn-outline-white.disabled,.btn-outline-white:disabled{color:#fff;background-color:transparent}.btn-outline-light{color:#323248;border-color:#323248}.btn-outline-light:hover{color:#fff;background-color:#323248;border-color:#323248}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(50,50,72,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#fff;background-color:#323248;border-color:#323248}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(50,50,72,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#323248;background-color:transparent}.btn-outline-primary{color:#3699ff;border-color:#3699ff}.btn-outline-primary:hover{color:#000;background-color:#3699ff;border-color:#3699ff}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(54,153,255,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#000;background-color:#3699ff;border-color:#3699ff}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(54,153,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#3699ff;background-color:transparent}.btn-outline-secondary{color:#323248;border-color:#323248}.btn-outline-secondary:hover{color:#fff;background-color:#323248;border-color:#323248}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(50,50,72,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#323248;border-color:#323248}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(50,50,72,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#323248;background-color:transparent}.btn-outline-success{color:#0bb783;border-color:#0bb783}.btn-outline-success:hover{color:#000;background-color:#0bb783;border-color:#0bb783}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(11,183,131,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#000;background-color:#0bb783;border-color:#0bb783}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(11,183,131,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#0bb783;background-color:transparent}.btn-outline-info{color:#8950fc;border-color:#8950fc}.btn-outline-info:hover{color:#fff;background-color:#8950fc;border-color:#8950fc}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(137,80,252,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#fff;background-color:#8950fc;border-color:#8950fc}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(137,80,252,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#8950fc;background-color:transparent}.btn-outline-warning{color:#ffa800;border-color:#ffa800}.btn-outline-warning:hover{color:#000;background-color:#ffa800;border-color:#ffa800}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,168,0,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffa800;border-color:#ffa800}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(255,168,0,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffa800;background-color:transparent}.btn-outline-danger{color:#f64e60;border-color:#f64e60}.btn-outline-danger:hover{color:#000;background-color:#f64e60;border-color:#f64e60}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(246,78,96,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#000;background-color:#f64e60;border-color:#f64e60}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(246,78,96,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#f64e60;background-color:transparent}.btn-outline-dark{color:#fff;border-color:#fff}.btn-outline-dark:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(255,255,255,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#fff;background-color:transparent}.btn-link{font-weight:400;color:#3699ff;text-decoration:none}.btn-link:hover{color:#0073e9;text-decoration:underline}.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6d6d80}.btn-group-lg>.btn,.btn-lg{padding:.825rem 1.75rem;font-size:1.15rem;border-radius:.625rem}.btn-group-sm>.btn,.btn-sm{padding:.55rem 1.25rem;font-size:.925rem;border-radius:.325rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{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;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#fff;text-align:left;list-style:none;background-color:#1e1e2d;background-clip:padding-box;border:0 solid rgba(0,0,0,.15);border-radius:.475rem;box-shadow:0 0 30px rgba(0,0,0,.3)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{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}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .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}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .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}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#fff;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#e6e6e6;text-decoration:none;background-color:#2b2b40}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#3699ff}.dropdown-item.disabled,.dropdown-item:disabled{color:#565674;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.925rem;color:#6d6d80;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#fff}.dropdown-menu-dark{color:#323248;background-color:#cdcdde;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#323248}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#3699ff}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#565674}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#323248}.dropdown-menu-dark .dropdown-header{color:#565674}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.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:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:1.125rem;padding-left:1.125rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.9375rem;padding-left:.9375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:1.3125rem;padding-left:1.3125rem}.btn-group.show .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.show .dropdown-toggle.btn-link{box-shadow:none}.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-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.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~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#3699ff;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0073e9;text-decoration:none}.nav-link.disabled{color:#6d6d80;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #2b2b40}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.475rem;border-top-right-radius:.475rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#2b2b40 #2b2b40 #2b2b40;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6d6d80;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#92929f;background-color:#1e1e2d;border-color:#323248 #323248 #1e1e2d}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.475rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#3699ff}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.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-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.44375rem;padding-bottom:.44375rem;margin-right:1rem;font-size:1.075rem;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{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}.navbar-text{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.075rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.475rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap: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 .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap: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 .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap: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 .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap: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 .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.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 .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.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,.55)}.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 .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%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,.55)}.navbar-light .navbar-text a,.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,.55)}.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 .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%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,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#1e1e2d;background-clip:border-box;border:1px solid #2b2b40;border-radius:.625rem;box-shadow:none}.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:calc(.625rem - 1px);border-top-right-radius:calc(.625rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.625rem - 1px);border-bottom-left-radius:calc(.625rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:#fff;border-bottom:1px solid #2b2b40}.card-header:first-child{border-radius:calc(.625rem - 1px) calc(.625rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:#fff;border-top:1px solid #2b2b40}.card-footer:last-child{border-radius:0 0 calc(.625rem - 1px) calc(.625rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.625rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.625rem - 1px);border-top-right-radius:calc(.625rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.625rem - 1px);border-bottom-left-radius:calc(.625rem - 1px)}.card-group>.card{margin-bottom:.75rem}@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-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{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-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1.5rem 1.5rem;font-size:1rem;color:#fff;text-align:left;background-color:#1e1e2d;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#3699ff;background-color:#1b1b29;box-shadow:inset 0 -1px 0 #2b2b40}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233699FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.15rem;height:1.15rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.15rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#2b2b40;outline:0;box-shadow:none}.accordion-header{margin-bottom:0}.accordion-item{background-color:#1e1e2d;border:1px solid #2b2b40}.accordion-item:first-of-type{border-top-left-radius:.475rem;border-top-right-radius:.475rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.475rem - 1px);border-top-right-radius:calc(.475rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.475rem;border-bottom-left-radius:.475rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.475rem - 1px);border-bottom-left-radius:calc(.475rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.475rem;border-bottom-left-radius:.475rem}.accordion-body{padding:1.5rem 1.5rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6d6d80;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#3699ff}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#92929f;background-color:transparent;border:0 solid transparent;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 (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#3699ff;text-decoration:none;background-color:#212e48;border-color:transparent}.page-link:focus{z-index:3;color:#3699ff;background-color:#212e48;outline:0;box-shadow:none}.page-item:not(:first-child) .page-link{margin-left:0}.page-item.active .page-link{z-index:3;color:#fff;background-color:#3699ff;border-color:transparent}.page-item.disabled .page-link{color:#474761;pointer-events:none;background-color:transparent;border-color:transparent}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.475rem;border-bottom-left-radius:.475rem}.page-item:last-child .page-link{border-top-right-radius:.475rem;border-bottom-right-radius:.475rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.075rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.625rem;border-bottom-left-radius:.625rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.925rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.325rem;border-bottom-left-radius:.325rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.325rem;border-bottom-right-radius:.325rem}.badge{display:inline-block;padding:.325rem .5rem;font-size:.85rem;font-weight:600;line-height:1;color:#1e1e2d;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.325rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.475rem}.alert-heading{color:inherit}.alert-link{font-weight:500}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-white{color:#666;background-color:#fff;border-color:#fff}.alert-white .alert-link{color:#525252}.alert-light{color:#14141d;background-color:#adadb6;border-color:#adadb6}.alert-light .alert-link{color:#101017}.alert-primary{color:#163d66;background-color:#afd6ff;border-color:#afd6ff}.alert-primary .alert-link{color:#123152}.alert-secondary{color:#14141d;background-color:#adadb6;border-color:#adadb6}.alert-secondary .alert-link{color:#101017}.alert-success{color:#044934;background-color:#9de2cd;border-color:#9de2cd}.alert-success .alert-link{color:#033a2a}.alert-info{color:#372065;background-color:#d0b9fe;border-color:#d0b9fe}.alert-info .alert-link{color:#2c1a51}.alert-warning{color:#664300;background-color:#ffdc99;border-color:#ffdc99}.alert-warning .alert-link{color:#523600}.alert-danger{color:#621f26;background-color:#fbb8bf;border-color:#fbb8bf}.alert-danger .alert-link{color:#4e191e}.alert-dark{color:#666;background-color:#fff;border-color:#fff}.alert-dark .alert-link{color:#525252}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#1b1b29;border-radius:6px;box-shadow:none}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#3699ff;transition:width .6s ease}@media (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{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.475rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#92929f;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#92929f;text-decoration:none;background-color:#1b1b29}.list-group-item-action:active{color:#fff;background-color:#2b2b40}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#fff;background-color:#fff;border:1px solid rgba(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:#6d6d80;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#3699ff;border-color:#3699ff}.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:.475rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.475rem;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:.475rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.475rem;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:.475rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.475rem;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:.475rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.475rem;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:.475rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.475rem;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}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.475rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.475rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.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-white{color:#666;background-color:#fff}.list-group-item-white.list-group-item-action:focus,.list-group-item-white.list-group-item-action:hover{color:#666;background-color:#e6e6e6}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.list-group-item-light{color:#1e1e2b;background-color:#d6d6da}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#1e1e2b;background-color:#c1c1c4}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#1e1e2b;border-color:#1e1e2b}.list-group-item-primary{color:#205c99;background-color:#d7ebff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#205c99;background-color:#c2d4e6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#205c99;border-color:#205c99}.list-group-item-secondary{color:#1e1e2b;background-color:#d6d6da}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#1e1e2b;background-color:#c1c1c4}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#1e1e2b;border-color:#1e1e2b}.list-group-item-success{color:#076e4f;background-color:#cef1e6}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#076e4f;background-color:#b9d9cf}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#076e4f;border-color:#076e4f}.list-group-item-info{color:#523097;background-color:#e7dcfe}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#523097;background-color:#d0c6e5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#523097;border-color:#523097}.list-group-item-warning{color:#664300;background-color:#fec}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664300;background-color:#e6d6b8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664300;border-color:#664300}.list-group-item-danger{color:#942f3a;background-color:#fddcdf}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#942f3a;background-color:#e4c6c9}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#942f3a;border-color:#942f3a}.list-group-item-dark{color:#666;background-color:#fff}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#666;background-color:#e6e6e6}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.475rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(54,153,255,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1.5rem .5rem rgba(0,0,0,.075);border-radius:.475rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:1.5rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6d6d80;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.475rem - 1px);border-top-right-radius:calc(.475rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .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{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#1e1e2d;background-clip:padding-box;border:0 solid rgba(0,0,0,.2);border-radius:.475rem;box-shadow:0 .25rem .5rem rgba(0,0,0,.1);outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.4}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1.75rem 1.75rem;border-bottom:1px solid #2b2b40;border-top-left-radius:.475rem;border-top-right-radius:.475rem}.modal-header .btn-close{padding:.875rem .875rem;margin:-.875rem -.875rem -.875rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1.75rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:1.5rem;border-top:1px solid #2b2b40;border-bottom-right-radius:.475rem;border-bottom-left-radius:.475rem}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-content{box-shadow:0 .5rem 1rem rgba(0,0,0,.1)}.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}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);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:.925rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:1}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#2b2b40}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#2b2b40}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#2b2b40}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#2b2b40}.tooltip-inner{max-width:200px;padding:.75rem 1rem;color:#cdcdde;text-align:center;background-color:#2b2b40;border-radius:.475rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);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:1rem;word-wrap:break-word;background-color:#2b2b40;background-clip:padding-box;border:1px solid #2b2b40;border-radius:.475rem;box-shadow:0 0 30px rgba(0,0,0,.3)}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#2b2b40}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#2b2b40}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#2b2b40}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#2b2b40}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:#2b2b40}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#2b2b40}.bs-popover-auto[data-popper-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 #2b2b40}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#2b2b40}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#2b2b40}.popover-header{padding:1rem 1.25rem;margin-bottom:0;font-size:1rem;color:#cdcdde;background-color:#2b2b40;border-bottom:1px solid #2b2b40;border-top-left-radius:calc(.475rem - 1px);border-top-right-radius:calc(.475rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1.25rem 1.25rem;color:#cdcdde}.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-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.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:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.185em solid currentColor;border-right-color:transparent;border-radius:50%;animation:.65s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.145em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;animation:.65s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{animation-duration:1.3s}}.clearfix::after{display:block;clear:both;content:""}.link-white{color:#fff}.link-white:focus,.link-white:hover{color:#fff}.link-light{color:#323248}.link-light:focus,.link-light:hover{color:#28283a}.link-primary{color:#3699ff}.link-primary:focus,.link-primary:hover{color:#5eadff}.link-secondary{color:#323248}.link-secondary:focus,.link-secondary:hover{color:#28283a}.link-success{color:#0bb783}.link-success:focus,.link-success:hover{color:#3cc59c}.link-info{color:#8950fc}.link-info:focus,.link-info:hover{color:#6e40ca}.link-warning{color:#ffa800}.link-warning:focus,.link-warning:hover{color:#ffb933}.link-danger{color:#f64e60}.link-danger:focus,.link-danger:hover{color:#f87180}.link-dark{color:#fff}.link-dark:focus,.link-dark:hover{color:#fff}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.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}.sticky-top{position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.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}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-5{opacity:.05!important}.opacity-10{opacity:.1!important}.opacity-15{opacity:.15!important}.opacity-20{opacity:.2!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!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}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1.5rem .5rem rgba(0,0,0,.075)!important}.shadow-sm{box-shadow:0 .1rem 1rem .25rem rgba(0,0,0,.05)!important}.shadow-lg{box-shadow:0 1rem 2rem 1rem rgba(0,0,0,.1)!important}.shadow-none{box-shadow: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:sticky!important}.top-0{top:0!important}.top-25{top:25%!important}.top-50{top:50%!important}.top-75{top:75%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-25{bottom:25%!important}.bottom-50{bottom:50%!important}.bottom-75{bottom:75%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-25{left:25%!important}.start-50{left:50%!important}.start-75{left:75%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-25{right:25%!important}.end-50{right:50%!important}.end-75{right:75%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #2b2b40!important}.border-0{border:0!important}.border-top{border-top:1px solid #2b2b40!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #2b2b40!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #2b2b40!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #2b2b40!important}.border-start-0{border-left:0!important}.border-white{border-color:#fff!important}.border-light{border-color:#323248!important}.border-primary{border-color:#3699ff!important}.border-secondary{border-color:#323248!important}.border-success{border-color:#0bb783!important}.border-info{border-color:#8950fc!important}.border-warning{border-color:#ffa800!important}.border-danger{border-color:#f64e60!important}.border-dark{border-color:#fff!important}.border-0{border-width:0!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-unset{width:unset!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}.w-1px{width:1px!important}.w-2px{width:2px!important}.w-3px{width:3px!important}.w-4px{width:4px!important}.w-5px{width:5px!important}.w-6px{width:6px!important}.w-7px{width:7px!important}.w-8px{width:8px!important}.w-9px{width:9px!important}.w-10px{width:10px!important}.w-15px{width:15px!important}.w-20px{width:20px!important}.w-25px{width:25px!important}.w-30px{width:30px!important}.w-35px{width:35px!important}.w-40px{width:40px!important}.w-45px{width:45px!important}.w-50px{width:50px!important}.w-55px{width:55px!important}.w-60px{width:60px!important}.w-65px{width:65px!important}.w-70px{width:70px!important}.w-75px{width:75px!important}.w-80px{width:80px!important}.w-85px{width:85px!important}.w-90px{width:90px!important}.w-95px{width:95px!important}.w-100px{width:100px!important}.w-125px{width:125px!important}.w-150px{width:150px!important}.w-175px{width:175px!important}.w-200px{width:200px!important}.w-225px{width:225px!important}.w-250px{width:250px!important}.w-275px{width:275px!important}.w-300px{width:300px!important}.w-325px{width:325px!important}.w-350px{width:350px!important}.w-375px{width:375px!important}.w-400px{width:400px!important}.w-425px{width:425px!important}.w-450px{width:450px!important}.w-475px{width:475px!important}.w-500px{width:500px!important}.w-550px{width:550px!important}.w-600px{width:600px!important}.w-650px{width:650px!important}.w-700px{width:700px!important}.w-750px{width:750px!important}.w-800px{width:800px!important}.w-850px{width:850px!important}.w-900px{width:900px!important}.w-950px{width:950px!important}.w-1000px{width:1000px!important}.mw-unset{max-width:unset!important}.mw-25{max-width:25%!important}.mw-50{max-width:50%!important}.mw-75{max-width:75%!important}.mw-100{max-width:100%!important}.mw-auto{max-width:auto!important}.mw-1px{max-width:1px!important}.mw-2px{max-width:2px!important}.mw-3px{max-width:3px!important}.mw-4px{max-width:4px!important}.mw-5px{max-width:5px!important}.mw-6px{max-width:6px!important}.mw-7px{max-width:7px!important}.mw-8px{max-width:8px!important}.mw-9px{max-width:9px!important}.mw-10px{max-width:10px!important}.mw-15px{max-width:15px!important}.mw-20px{max-width:20px!important}.mw-25px{max-width:25px!important}.mw-30px{max-width:30px!important}.mw-35px{max-width:35px!important}.mw-40px{max-width:40px!important}.mw-45px{max-width:45px!important}.mw-50px{max-width:50px!important}.mw-55px{max-width:55px!important}.mw-60px{max-width:60px!important}.mw-65px{max-width:65px!important}.mw-70px{max-width:70px!important}.mw-75px{max-width:75px!important}.mw-80px{max-width:80px!important}.mw-85px{max-width:85px!important}.mw-90px{max-width:90px!important}.mw-95px{max-width:95px!important}.mw-100px{max-width:100px!important}.mw-125px{max-width:125px!important}.mw-150px{max-width:150px!important}.mw-175px{max-width:175px!important}.mw-200px{max-width:200px!important}.mw-225px{max-width:225px!important}.mw-250px{max-width:250px!important}.mw-275px{max-width:275px!important}.mw-300px{max-width:300px!important}.mw-325px{max-width:325px!important}.mw-350px{max-width:350px!important}.mw-375px{max-width:375px!important}.mw-400px{max-width:400px!important}.mw-425px{max-width:425px!important}.mw-450px{max-width:450px!important}.mw-475px{max-width:475px!important}.mw-500px{max-width:500px!important}.mw-550px{max-width:550px!important}.mw-600px{max-width:600px!important}.mw-650px{max-width:650px!important}.mw-700px{max-width:700px!important}.mw-750px{max-width:750px!important}.mw-800px{max-width:800px!important}.mw-850px{max-width:850px!important}.mw-900px{max-width:900px!important}.mw-950px{max-width:950px!important}.mw-1000px{max-width:1000px!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-unset{height:unset!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}.h-1px{height:1px!important}.h-2px{height:2px!important}.h-3px{height:3px!important}.h-4px{height:4px!important}.h-5px{height:5px!important}.h-6px{height:6px!important}.h-7px{height:7px!important}.h-8px{height:8px!important}.h-9px{height:9px!important}.h-10px{height:10px!important}.h-15px{height:15px!important}.h-20px{height:20px!important}.h-25px{height:25px!important}.h-30px{height:30px!important}.h-35px{height:35px!important}.h-40px{height:40px!important}.h-45px{height:45px!important}.h-50px{height:50px!important}.h-55px{height:55px!important}.h-60px{height:60px!important}.h-65px{height:65px!important}.h-70px{height:70px!important}.h-75px{height:75px!important}.h-80px{height:80px!important}.h-85px{height:85px!important}.h-90px{height:90px!important}.h-95px{height:95px!important}.h-100px{height:100px!important}.h-125px{height:125px!important}.h-150px{height:150px!important}.h-175px{height:175px!important}.h-200px{height:200px!important}.h-225px{height:225px!important}.h-250px{height:250px!important}.h-275px{height:275px!important}.h-300px{height:300px!important}.h-325px{height:325px!important}.h-350px{height:350px!important}.h-375px{height:375px!important}.h-400px{height:400px!important}.h-425px{height:425px!important}.h-450px{height:450px!important}.h-475px{height:475px!important}.h-500px{height:500px!important}.h-550px{height:550px!important}.h-600px{height:600px!important}.h-650px{height:650px!important}.h-700px{height:700px!important}.h-750px{height:750px!important}.h-800px{height:800px!important}.h-850px{height:850px!important}.h-900px{height:900px!important}.h-950px{height:950px!important}.h-1000px{height:1000px!important}.mh-unset{max-height:unset!important}.mh-25{max-height:25%!important}.mh-50{max-height:50%!important}.mh-75{max-height:75%!important}.mh-100{max-height:100%!important}.mh-auto{max-height:auto!important}.mh-1px{max-height:1px!important}.mh-2px{max-height:2px!important}.mh-3px{max-height:3px!important}.mh-4px{max-height:4px!important}.mh-5px{max-height:5px!important}.mh-6px{max-height:6px!important}.mh-7px{max-height:7px!important}.mh-8px{max-height:8px!important}.mh-9px{max-height:9px!important}.mh-10px{max-height:10px!important}.mh-15px{max-height:15px!important}.mh-20px{max-height:20px!important}.mh-25px{max-height:25px!important}.mh-30px{max-height:30px!important}.mh-35px{max-height:35px!important}.mh-40px{max-height:40px!important}.mh-45px{max-height:45px!important}.mh-50px{max-height:50px!important}.mh-55px{max-height:55px!important}.mh-60px{max-height:60px!important}.mh-65px{max-height:65px!important}.mh-70px{max-height:70px!important}.mh-75px{max-height:75px!important}.mh-80px{max-height:80px!important}.mh-85px{max-height:85px!important}.mh-90px{max-height:90px!important}.mh-95px{max-height:95px!important}.mh-100px{max-height:100px!important}.mh-125px{max-height:125px!important}.mh-150px{max-height:150px!important}.mh-175px{max-height:175px!important}.mh-200px{max-height:200px!important}.mh-225px{max-height:225px!important}.mh-250px{max-height:250px!important}.mh-275px{max-height:275px!important}.mh-300px{max-height:300px!important}.mh-325px{max-height:325px!important}.mh-350px{max-height:350px!important}.mh-375px{max-height:375px!important}.mh-400px{max-height:400px!important}.mh-425px{max-height:425px!important}.mh-450px{max-height:450px!important}.mh-475px{max-height:475px!important}.mh-500px{max-height:500px!important}.mh-550px{max-height:550px!important}.mh-600px{max-height:600px!important}.mh-650px{max-height:650px!important}.mh-700px{max-height:700px!important}.mh-750px{max-height:750px!important}.mh-800px{max-height:800px!important}.mh-850px{max-height:850px!important}.mh-900px{max-height:900px!important}.mh-950px{max-height:950px!important}.mh-1000px{max-height:1000px!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.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-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}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:.75rem!important}.gap-4{gap:1rem!important}.gap-5{gap:1.25rem!important}.gap-6{gap:1.5rem!important}.gap-7{gap:1.75rem!important}.gap-8{gap:2rem!important}.gap-9{gap:2.25rem!important}.gap-10{gap:2.5rem!important}.gap-11{gap:2.75rem!important}.gap-12{gap:3rem!important}.gap-13{gap:3.25rem!important}.gap-14{gap:3.5rem!important}.gap-15{gap:3.75rem!important}.gap-16{gap:4rem!important}.gap-17{gap:4.25rem!important}.gap-18{gap:4.5rem!important}.gap-19{gap:4.75rem!important}.gap-20{gap:5rem!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}.justify-content-evenly{justify-content:space-evenly!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}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:.75rem!important}.m-4{margin:1rem!important}.m-5{margin:1.25rem!important}.m-6{margin:1.5rem!important}.m-7{margin:1.75rem!important}.m-8{margin:2rem!important}.m-9{margin:2.25rem!important}.m-10{margin:2.5rem!important}.m-11{margin:2.75rem!important}.m-12{margin:3rem!important}.m-13{margin:3.25rem!important}.m-14{margin:3.5rem!important}.m-15{margin:3.75rem!important}.m-16{margin:4rem!important}.m-17{margin:4.25rem!important}.m-18{margin:4.5rem!important}.m-19{margin:4.75rem!important}.m-20{margin:5rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:.75rem!important;margin-left:.75rem!important}.mx-4{margin-right:1rem!important;margin-left:1rem!important}.mx-5{margin-right:1.25rem!important;margin-left:1.25rem!important}.mx-6{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-7{margin-right:1.75rem!important;margin-left:1.75rem!important}.mx-8{margin-right:2rem!important;margin-left:2rem!important}.mx-9{margin-right:2.25rem!important;margin-left:2.25rem!important}.mx-10{margin-right:2.5rem!important;margin-left:2.5rem!important}.mx-11{margin-right:2.75rem!important;margin-left:2.75rem!important}.mx-12{margin-right:3rem!important;margin-left:3rem!important}.mx-13{margin-right:3.25rem!important;margin-left:3.25rem!important}.mx-14{margin-right:3.5rem!important;margin-left:3.5rem!important}.mx-15{margin-right:3.75rem!important;margin-left:3.75rem!important}.mx-16{margin-right:4rem!important;margin-left:4rem!important}.mx-17{margin-right:4.25rem!important;margin-left:4.25rem!important}.mx-18{margin-right:4.5rem!important;margin-left:4.5rem!important}.mx-19{margin-right:4.75rem!important;margin-left:4.75rem!important}.mx-20{margin-right:5rem!important;margin-left:5rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:.75rem!important}.mt-4{margin-top:1rem!important}.mt-5{margin-top:1.25rem!important}.mt-6{margin-top:1.5rem!important}.mt-7{margin-top:1.75rem!important}.mt-8{margin-top:2rem!important}.mt-9{margin-top:2.25rem!important}.mt-10{margin-top:2.5rem!important}.mt-11{margin-top:2.75rem!important}.mt-12{margin-top:3rem!important}.mt-13{margin-top:3.25rem!important}.mt-14{margin-top:3.5rem!important}.mt-15{margin-top:3.75rem!important}.mt-16{margin-top:4rem!important}.mt-17{margin-top:4.25rem!important}.mt-18{margin-top:4.5rem!important}.mt-19{margin-top:4.75rem!important}.mt-20{margin-top:5rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:.75rem!important}.me-4{margin-right:1rem!important}.me-5{margin-right:1.25rem!important}.me-6{margin-right:1.5rem!important}.me-7{margin-right:1.75rem!important}.me-8{margin-right:2rem!important}.me-9{margin-right:2.25rem!important}.me-10{margin-right:2.5rem!important}.me-11{margin-right:2.75rem!important}.me-12{margin-right:3rem!important}.me-13{margin-right:3.25rem!important}.me-14{margin-right:3.5rem!important}.me-15{margin-right:3.75rem!important}.me-16{margin-right:4rem!important}.me-17{margin-right:4.25rem!important}.me-18{margin-right:4.5rem!important}.me-19{margin-right:4.75rem!important}.me-20{margin-right:5rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:.75rem!important}.mb-4{margin-bottom:1rem!important}.mb-5{margin-bottom:1.25rem!important}.mb-6{margin-bottom:1.5rem!important}.mb-7{margin-bottom:1.75rem!important}.mb-8{margin-bottom:2rem!important}.mb-9{margin-bottom:2.25rem!important}.mb-10{margin-bottom:2.5rem!important}.mb-11{margin-bottom:2.75rem!important}.mb-12{margin-bottom:3rem!important}.mb-13{margin-bottom:3.25rem!important}.mb-14{margin-bottom:3.5rem!important}.mb-15{margin-bottom:3.75rem!important}.mb-16{margin-bottom:4rem!important}.mb-17{margin-bottom:4.25rem!important}.mb-18{margin-bottom:4.5rem!important}.mb-19{margin-bottom:4.75rem!important}.mb-20{margin-bottom:5rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:.75rem!important}.ms-4{margin-left:1rem!important}.ms-5{margin-left:1.25rem!important}.ms-6{margin-left:1.5rem!important}.ms-7{margin-left:1.75rem!important}.ms-8{margin-left:2rem!important}.ms-9{margin-left:2.25rem!important}.ms-10{margin-left:2.5rem!important}.ms-11{margin-left:2.75rem!important}.ms-12{margin-left:3rem!important}.ms-13{margin-left:3.25rem!important}.ms-14{margin-left:3.5rem!important}.ms-15{margin-left:3.75rem!important}.ms-16{margin-left:4rem!important}.ms-17{margin-left:4.25rem!important}.ms-18{margin-left:4.5rem!important}.ms-19{margin-left:4.75rem!important}.ms-20{margin-left:5rem!important}.ms-auto{margin-left:auto!important}.m-n1{margin:-.25rem!important}.m-n2{margin:-.5rem!important}.m-n3{margin:-.75rem!important}.m-n4{margin:-1rem!important}.m-n5{margin:-1.25rem!important}.m-n6{margin:-1.5rem!important}.m-n7{margin:-1.75rem!important}.m-n8{margin:-2rem!important}.m-n9{margin:-2.25rem!important}.m-n10{margin:-2.5rem!important}.m-n11{margin:-2.75rem!important}.m-n12{margin:-3rem!important}.m-n13{margin:-3.25rem!important}.m-n14{margin:-3.5rem!important}.m-n15{margin:-3.75rem!important}.m-n16{margin:-4rem!important}.m-n17{margin:-4.25rem!important}.m-n18{margin:-4.5rem!important}.m-n19{margin:-4.75rem!important}.m-n20{margin:-5rem!important}.mx-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-n3{margin-right:-.75rem!important;margin-left:-.75rem!important}.mx-n4{margin-right:-1rem!important;margin-left:-1rem!important}.mx-n5{margin-right:-1.25rem!important;margin-left:-1.25rem!important}.mx-n6{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-n7{margin-right:-1.75rem!important;margin-left:-1.75rem!important}.mx-n8{margin-right:-2rem!important;margin-left:-2rem!important}.mx-n9{margin-right:-2.25rem!important;margin-left:-2.25rem!important}.mx-n10{margin-right:-2.5rem!important;margin-left:-2.5rem!important}.mx-n11{margin-right:-2.75rem!important;margin-left:-2.75rem!important}.mx-n12{margin-right:-3rem!important;margin-left:-3rem!important}.mx-n13{margin-right:-3.25rem!important;margin-left:-3.25rem!important}.mx-n14{margin-right:-3.5rem!important;margin-left:-3.5rem!important}.mx-n15{margin-right:-3.75rem!important;margin-left:-3.75rem!important}.mx-n16{margin-right:-4rem!important;margin-left:-4rem!important}.mx-n17{margin-right:-4.25rem!important;margin-left:-4.25rem!important}.mx-n18{margin-right:-4.5rem!important;margin-left:-4.5rem!important}.mx-n19{margin-right:-4.75rem!important;margin-left:-4.75rem!important}.mx-n20{margin-right:-5rem!important;margin-left:-5rem!important}.my-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-n1{margin-top:-.25rem!important}.mt-n2{margin-top:-.5rem!important}.mt-n3{margin-top:-.75rem!important}.mt-n4{margin-top:-1rem!important}.mt-n5{margin-top:-1.25rem!important}.mt-n6{margin-top:-1.5rem!important}.mt-n7{margin-top:-1.75rem!important}.mt-n8{margin-top:-2rem!important}.mt-n9{margin-top:-2.25rem!important}.mt-n10{margin-top:-2.5rem!important}.mt-n11{margin-top:-2.75rem!important}.mt-n12{margin-top:-3rem!important}.mt-n13{margin-top:-3.25rem!important}.mt-n14{margin-top:-3.5rem!important}.mt-n15{margin-top:-3.75rem!important}.mt-n16{margin-top:-4rem!important}.mt-n17{margin-top:-4.25rem!important}.mt-n18{margin-top:-4.5rem!important}.mt-n19{margin-top:-4.75rem!important}.mt-n20{margin-top:-5rem!important}.me-n1{margin-right:-.25rem!important}.me-n2{margin-right:-.5rem!important}.me-n3{margin-right:-.75rem!important}.me-n4{margin-right:-1rem!important}.me-n5{margin-right:-1.25rem!important}.me-n6{margin-right:-1.5rem!important}.me-n7{margin-right:-1.75rem!important}.me-n8{margin-right:-2rem!important}.me-n9{margin-right:-2.25rem!important}.me-n10{margin-right:-2.5rem!important}.me-n11{margin-right:-2.75rem!important}.me-n12{margin-right:-3rem!important}.me-n13{margin-right:-3.25rem!important}.me-n14{margin-right:-3.5rem!important}.me-n15{margin-right:-3.75rem!important}.me-n16{margin-right:-4rem!important}.me-n17{margin-right:-4.25rem!important}.me-n18{margin-right:-4.5rem!important}.me-n19{margin-right:-4.75rem!important}.me-n20{margin-right:-5rem!important}.mb-n1{margin-bottom:-.25rem!important}.mb-n2{margin-bottom:-.5rem!important}.mb-n3{margin-bottom:-.75rem!important}.mb-n4{margin-bottom:-1rem!important}.mb-n5{margin-bottom:-1.25rem!important}.mb-n6{margin-bottom:-1.5rem!important}.mb-n7{margin-bottom:-1.75rem!important}.mb-n8{margin-bottom:-2rem!important}.mb-n9{margin-bottom:-2.25rem!important}.mb-n10{margin-bottom:-2.5rem!important}.mb-n11{margin-bottom:-2.75rem!important}.mb-n12{margin-bottom:-3rem!important}.mb-n13{margin-bottom:-3.25rem!important}.mb-n14{margin-bottom:-3.5rem!important}.mb-n15{margin-bottom:-3.75rem!important}.mb-n16{margin-bottom:-4rem!important}.mb-n17{margin-bottom:-4.25rem!important}.mb-n18{margin-bottom:-4.5rem!important}.mb-n19{margin-bottom:-4.75rem!important}.mb-n20{margin-bottom:-5rem!important}.ms-n1{margin-left:-.25rem!important}.ms-n2{margin-left:-.5rem!important}.ms-n3{margin-left:-.75rem!important}.ms-n4{margin-left:-1rem!important}.ms-n5{margin-left:-1.25rem!important}.ms-n6{margin-left:-1.5rem!important}.ms-n7{margin-left:-1.75rem!important}.ms-n8{margin-left:-2rem!important}.ms-n9{margin-left:-2.25rem!important}.ms-n10{margin-left:-2.5rem!important}.ms-n11{margin-left:-2.75rem!important}.ms-n12{margin-left:-3rem!important}.ms-n13{margin-left:-3.25rem!important}.ms-n14{margin-left:-3.5rem!important}.ms-n15{margin-left:-3.75rem!important}.ms-n16{margin-left:-4rem!important}.ms-n17{margin-left:-4.25rem!important}.ms-n18{margin-left:-4.5rem!important}.ms-n19{margin-left:-4.75rem!important}.ms-n20{margin-left:-5rem!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:.75rem!important}.p-4{padding:1rem!important}.p-5{padding:1.25rem!important}.p-6{padding:1.5rem!important}.p-7{padding:1.75rem!important}.p-8{padding:2rem!important}.p-9{padding:2.25rem!important}.p-10{padding:2.5rem!important}.p-11{padding:2.75rem!important}.p-12{padding:3rem!important}.p-13{padding:3.25rem!important}.p-14{padding:3.5rem!important}.p-15{padding:3.75rem!important}.p-16{padding:4rem!important}.p-17{padding:4.25rem!important}.p-18{padding:4.5rem!important}.p-19{padding:4.75rem!important}.p-20{padding:5rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:.75rem!important;padding-left:.75rem!important}.px-4{padding-right:1rem!important;padding-left:1rem!important}.px-5{padding-right:1.25rem!important;padding-left:1.25rem!important}.px-6{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-7{padding-right:1.75rem!important;padding-left:1.75rem!important}.px-8{padding-right:2rem!important;padding-left:2rem!important}.px-9{padding-right:2.25rem!important;padding-left:2.25rem!important}.px-10{padding-right:2.5rem!important;padding-left:2.5rem!important}.px-11{padding-right:2.75rem!important;padding-left:2.75rem!important}.px-12{padding-right:3rem!important;padding-left:3rem!important}.px-13{padding-right:3.25rem!important;padding-left:3.25rem!important}.px-14{padding-right:3.5rem!important;padding-left:3.5rem!important}.px-15{padding-right:3.75rem!important;padding-left:3.75rem!important}.px-16{padding-right:4rem!important;padding-left:4rem!important}.px-17{padding-right:4.25rem!important;padding-left:4.25rem!important}.px-18{padding-right:4.5rem!important;padding-left:4.5rem!important}.px-19{padding-right:4.75rem!important;padding-left:4.75rem!important}.px-20{padding-right:5rem!important;padding-left:5rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:.75rem!important}.pt-4{padding-top:1rem!important}.pt-5{padding-top:1.25rem!important}.pt-6{padding-top:1.5rem!important}.pt-7{padding-top:1.75rem!important}.pt-8{padding-top:2rem!important}.pt-9{padding-top:2.25rem!important}.pt-10{padding-top:2.5rem!important}.pt-11{padding-top:2.75rem!important}.pt-12{padding-top:3rem!important}.pt-13{padding-top:3.25rem!important}.pt-14{padding-top:3.5rem!important}.pt-15{padding-top:3.75rem!important}.pt-16{padding-top:4rem!important}.pt-17{padding-top:4.25rem!important}.pt-18{padding-top:4.5rem!important}.pt-19{padding-top:4.75rem!important}.pt-20{padding-top:5rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:.75rem!important}.pe-4{padding-right:1rem!important}.pe-5{padding-right:1.25rem!important}.pe-6{padding-right:1.5rem!important}.pe-7{padding-right:1.75rem!important}.pe-8{padding-right:2rem!important}.pe-9{padding-right:2.25rem!important}.pe-10{padding-right:2.5rem!important}.pe-11{padding-right:2.75rem!important}.pe-12{padding-right:3rem!important}.pe-13{padding-right:3.25rem!important}.pe-14{padding-right:3.5rem!important}.pe-15{padding-right:3.75rem!important}.pe-16{padding-right:4rem!important}.pe-17{padding-right:4.25rem!important}.pe-18{padding-right:4.5rem!important}.pe-19{padding-right:4.75rem!important}.pe-20{padding-right:5rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:.75rem!important}.pb-4{padding-bottom:1rem!important}.pb-5{padding-bottom:1.25rem!important}.pb-6{padding-bottom:1.5rem!important}.pb-7{padding-bottom:1.75rem!important}.pb-8{padding-bottom:2rem!important}.pb-9{padding-bottom:2.25rem!important}.pb-10{padding-bottom:2.5rem!important}.pb-11{padding-bottom:2.75rem!important}.pb-12{padding-bottom:3rem!important}.pb-13{padding-bottom:3.25rem!important}.pb-14{padding-bottom:3.5rem!important}.pb-15{padding-bottom:3.75rem!important}.pb-16{padding-bottom:4rem!important}.pb-17{padding-bottom:4.25rem!important}.pb-18{padding-bottom:4.5rem!important}.pb-19{padding-bottom:4.75rem!important}.pb-20{padding-bottom:5rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:.75rem!important}.ps-4{padding-left:1rem!important}.ps-5{padding-left:1.25rem!important}.ps-6{padding-left:1.5rem!important}.ps-7{padding-left:1.75rem!important}.ps-8{padding-left:2rem!important}.ps-9{padding-left:2.25rem!important}.ps-10{padding-left:2.5rem!important}.ps-11{padding-left:2.75rem!important}.ps-12{padding-left:3rem!important}.ps-13{padding-left:3.25rem!important}.ps-14{padding-left:3.5rem!important}.ps-15{padding-left:3.75rem!important}.ps-16{padding-left:4rem!important}.ps-17{padding-left:4.25rem!important}.ps-18{padding-left:4.5rem!important}.ps-19{padding-left:4.75rem!important}.ps-20{padding-left:5rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.3rem + .6vw)!important}.fs-2{font-size:calc(1.275rem + .3vw)!important}.fs-3{font-size:calc(1.26rem + .12vw)!important}.fs-4{font-size:1.25rem!important}.fs-5{font-size:1.15rem!important}.fs-6{font-size:1.075rem!important}.fs-7{font-size:.95rem!important}.fs-8{font-size:.85rem!important}.fs-9{font-size:.75rem!important}.fs-10{font-size:.5rem!important}.fs-base{font-size:1rem!important}.fs-fluid{font-size:100%!important}.fs-2x{font-size:calc(1.325rem + .9vw)!important}.fs-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-5tx{font-size:calc(1.7rem + 5.4vw)!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:500!important}.fw-bolder{font-weight:600!important}.lh-0{line-height:0!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:1.75!important}.lh-xl{line-height:2!important}.lh-xxl{line-height:2.25!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#565674!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{user-select:all!important}.user-select-auto{user-select:auto!important}.user-select-none{user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.475rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.325rem!important}.rounded-2{border-radius:.475rem!important}.rounded-3{border-radius:.625rem!important}.rounded-4{border-radius:1rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.475rem!important;border-top-right-radius:.475rem!important}.rounded-end{border-top-right-radius:.475rem!important;border-bottom-right-radius:.475rem!important}.rounded-bottom{border-bottom-right-radius:.475rem!important;border-bottom-left-radius:.475rem!important}.rounded-start{border-bottom-left-radius:.475rem!important;border-top-left-radius:.475rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.opacity-0{opacity:0!important}.opacity-0-hover:hover{opacity:0!important}.opacity-5{opacity:.05!important}.opacity-5-hover:hover{opacity:.05!important}.opacity-10{opacity:.1!important}.opacity-10-hover:hover{opacity:.1!important}.opacity-15{opacity:.15!important}.opacity-15-hover:hover{opacity:.15!important}.opacity-20{opacity:.2!important}.opacity-20-hover:hover{opacity:.2!important}.opacity-25{opacity:.25!important}.opacity-25-hover:hover{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-50-hover:hover{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-75-hover:hover{opacity:.75!important}.opacity-100{opacity:1!important}.opacity-100-hover:hover{opacity:1!important}.min-w-unset{min-width:unset!important}.min-w-25{min-width:25%!important}.min-w-50{min-width:50%!important}.min-w-75{min-width:75%!important}.min-w-100{min-width:100%!important}.min-w-auto{min-width:auto!important}.min-w-1px{min-width:1px!important}.min-w-2px{min-width:2px!important}.min-w-3px{min-width:3px!important}.min-w-4px{min-width:4px!important}.min-w-5px{min-width:5px!important}.min-w-6px{min-width:6px!important}.min-w-7px{min-width:7px!important}.min-w-8px{min-width:8px!important}.min-w-9px{min-width:9px!important}.min-w-10px{min-width:10px!important}.min-w-15px{min-width:15px!important}.min-w-20px{min-width:20px!important}.min-w-25px{min-width:25px!important}.min-w-30px{min-width:30px!important}.min-w-35px{min-width:35px!important}.min-w-40px{min-width:40px!important}.min-w-45px{min-width:45px!important}.min-w-50px{min-width:50px!important}.min-w-55px{min-width:55px!important}.min-w-60px{min-width:60px!important}.min-w-65px{min-width:65px!important}.min-w-70px{min-width:70px!important}.min-w-75px{min-width:75px!important}.min-w-80px{min-width:80px!important}.min-w-85px{min-width:85px!important}.min-w-90px{min-width:90px!important}.min-w-95px{min-width:95px!important}.min-w-100px{min-width:100px!important}.min-w-125px{min-width:125px!important}.min-w-150px{min-width:150px!important}.min-w-175px{min-width:175px!important}.min-w-200px{min-width:200px!important}.min-w-225px{min-width:225px!important}.min-w-250px{min-width:250px!important}.min-w-275px{min-width:275px!important}.min-w-300px{min-width:300px!important}.min-w-325px{min-width:325px!important}.min-w-350px{min-width:350px!important}.min-w-375px{min-width:375px!important}.min-w-400px{min-width:400px!important}.min-w-425px{min-width:425px!important}.min-w-450px{min-width:450px!important}.min-w-475px{min-width:475px!important}.min-w-500px{min-width:500px!important}.min-w-550px{min-width:550px!important}.min-w-600px{min-width:600px!important}.min-w-650px{min-width:650px!important}.min-w-700px{min-width:700px!important}.min-w-750px{min-width:750px!important}.min-w-800px{min-width:800px!important}.min-w-850px{min-width:850px!important}.min-w-900px{min-width:900px!important}.min-w-950px{min-width:950px!important}.min-w-1000px{min-width:1000px!important}.min-h-unset{min-height:unset!important}.min-h-25{min-height:25%!important}.min-h-50{min-height:50%!important}.min-h-75{min-height:75%!important}.min-h-100{min-height:100%!important}.min-h-auto{min-height:auto!important}.min-h-1px{min-height:1px!important}.min-h-2px{min-height:2px!important}.min-h-3px{min-height:3px!important}.min-h-4px{min-height:4px!important}.min-h-5px{min-height:5px!important}.min-h-6px{min-height:6px!important}.min-h-7px{min-height:7px!important}.min-h-8px{min-height:8px!important}.min-h-9px{min-height:9px!important}.min-h-10px{min-height:10px!important}.min-h-15px{min-height:15px!important}.min-h-20px{min-height:20px!important}.min-h-25px{min-height:25px!important}.min-h-30px{min-height:30px!important}.min-h-35px{min-height:35px!important}.min-h-40px{min-height:40px!important}.min-h-45px{min-height:45px!important}.min-h-50px{min-height:50px!important}.min-h-55px{min-height:55px!important}.min-h-60px{min-height:60px!important}.min-h-65px{min-height:65px!important}.min-h-70px{min-height:70px!important}.min-h-75px{min-height:75px!important}.min-h-80px{min-height:80px!important}.min-h-85px{min-height:85px!important}.min-h-90px{min-height:90px!important}.min-h-95px{min-height:95px!important}.min-h-100px{min-height:100px!important}.min-h-125px{min-height:125px!important}.min-h-150px{min-height:150px!important}.min-h-175px{min-height:175px!important}.min-h-200px{min-height:200px!important}.min-h-225px{min-height:225px!important}.min-h-250px{min-height:250px!important}.min-h-275px{min-height:275px!important}.min-h-300px{min-height:300px!important}.min-h-325px{min-height:325px!important}.min-h-350px{min-height:350px!important}.min-h-375px{min-height:375px!important}.min-h-400px{min-height:400px!important}.min-h-425px{min-height:425px!important}.min-h-450px{min-height:450px!important}.min-h-475px{min-height:475px!important}.min-h-500px{min-height:500px!important}.min-h-550px{min-height:550px!important}.min-h-600px{min-height:600px!important}.min-h-650px{min-height:650px!important}.min-h-700px{min-height:700px!important}.min-h-750px{min-height:750px!important}.min-h-800px{min-height:800px!important}.min-h-850px{min-height:850px!important}.min-h-900px{min-height:900px!important}.min-h-950px{min-height:950px!important}.min-h-1000px{min-height:1000px!important}.z-index-n1{z-index:-1!important}.z-index-n2{z-index:-2!important}.z-index-0{z-index:0!important}.z-index-1{z-index:1!important}.z-index-2{z-index:2!important}.z-index-3{z-index:3!important}.border-top-0{border-top-width:0!important}.border-top-1{border-top-width:1px!important}.border-top-2{border-top-width:2px!important}.border-top-3{border-top-width:3px!important}.border-top-4{border-top-width:4px!important}.border-top-5{border-top-width:5px!important}.border-bottom-0{border-bottom-width:0!important}.border-bottom-1{border-bottom-width:1px!important}.border-bottom-2{border-bottom-width:2px!important}.border-bottom-3{border-bottom-width:3px!important}.border-bottom-4{border-bottom-width:4px!important}.border-bottom-5{border-bottom-width:5px!important}.border-right-0{border-right-width:0!important}.border-right-1{border-right-width:1px!important}.border-right-2{border-right-width:2px!important}.border-right-3{border-right-width:3px!important}.border-right-4{border-right-width:4px!important}.border-right-5{border-right-width:5px!important}.border-left-0{border-left-width:0!important}.border-left-1{border-left-width:1px!important}.border-left-2{border-left-width:2px!important}.border-left-3{border-left-width:3px!important}.border-left-4{border-left-width:4px!important}.border-left-5{border-left-width:5px!important}.ls-1{letter-spacing:.1rem!important}.ls-2{letter-spacing:.115rem!important}.ls-3{letter-spacing:.125rem!important}.ls-4{letter-spacing:.25rem!important}.ls-5{letter-spacing:.5rem!important}.ls-n1{letter-spacing:-.1rem!important}.ls-n2{letter-spacing:-.115rem!important}.ls-n3{letter-spacing:-.125rem!important}.ls-n4{letter-spacing:-.25rem!important}.ls-n5{letter-spacing:-.5rem!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!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}.d-sm-none{display:none!important}.position-sm-static{position:static!important}.position-sm-relative{position:relative!important}.position-sm-absolute{position:absolute!important}.position-sm-fixed{position:fixed!important}.position-sm-sticky{position:sticky!important}.w-sm-unset{width:unset!important}.w-sm-25{width:25%!important}.w-sm-50{width:50%!important}.w-sm-75{width:75%!important}.w-sm-100{width:100%!important}.w-sm-auto{width:auto!important}.w-sm-1px{width:1px!important}.w-sm-2px{width:2px!important}.w-sm-3px{width:3px!important}.w-sm-4px{width:4px!important}.w-sm-5px{width:5px!important}.w-sm-6px{width:6px!important}.w-sm-7px{width:7px!important}.w-sm-8px{width:8px!important}.w-sm-9px{width:9px!important}.w-sm-10px{width:10px!important}.w-sm-15px{width:15px!important}.w-sm-20px{width:20px!important}.w-sm-25px{width:25px!important}.w-sm-30px{width:30px!important}.w-sm-35px{width:35px!important}.w-sm-40px{width:40px!important}.w-sm-45px{width:45px!important}.w-sm-50px{width:50px!important}.w-sm-55px{width:55px!important}.w-sm-60px{width:60px!important}.w-sm-65px{width:65px!important}.w-sm-70px{width:70px!important}.w-sm-75px{width:75px!important}.w-sm-80px{width:80px!important}.w-sm-85px{width:85px!important}.w-sm-90px{width:90px!important}.w-sm-95px{width:95px!important}.w-sm-100px{width:100px!important}.w-sm-125px{width:125px!important}.w-sm-150px{width:150px!important}.w-sm-175px{width:175px!important}.w-sm-200px{width:200px!important}.w-sm-225px{width:225px!important}.w-sm-250px{width:250px!important}.w-sm-275px{width:275px!important}.w-sm-300px{width:300px!important}.w-sm-325px{width:325px!important}.w-sm-350px{width:350px!important}.w-sm-375px{width:375px!important}.w-sm-400px{width:400px!important}.w-sm-425px{width:425px!important}.w-sm-450px{width:450px!important}.w-sm-475px{width:475px!important}.w-sm-500px{width:500px!important}.w-sm-550px{width:550px!important}.w-sm-600px{width:600px!important}.w-sm-650px{width:650px!important}.w-sm-700px{width:700px!important}.w-sm-750px{width:750px!important}.w-sm-800px{width:800px!important}.w-sm-850px{width:850px!important}.w-sm-900px{width:900px!important}.w-sm-950px{width:950px!important}.w-sm-1000px{width:1000px!important}.mw-sm-unset{max-width:unset!important}.mw-sm-25{max-width:25%!important}.mw-sm-50{max-width:50%!important}.mw-sm-75{max-width:75%!important}.mw-sm-100{max-width:100%!important}.mw-sm-auto{max-width:auto!important}.mw-sm-1px{max-width:1px!important}.mw-sm-2px{max-width:2px!important}.mw-sm-3px{max-width:3px!important}.mw-sm-4px{max-width:4px!important}.mw-sm-5px{max-width:5px!important}.mw-sm-6px{max-width:6px!important}.mw-sm-7px{max-width:7px!important}.mw-sm-8px{max-width:8px!important}.mw-sm-9px{max-width:9px!important}.mw-sm-10px{max-width:10px!important}.mw-sm-15px{max-width:15px!important}.mw-sm-20px{max-width:20px!important}.mw-sm-25px{max-width:25px!important}.mw-sm-30px{max-width:30px!important}.mw-sm-35px{max-width:35px!important}.mw-sm-40px{max-width:40px!important}.mw-sm-45px{max-width:45px!important}.mw-sm-50px{max-width:50px!important}.mw-sm-55px{max-width:55px!important}.mw-sm-60px{max-width:60px!important}.mw-sm-65px{max-width:65px!important}.mw-sm-70px{max-width:70px!important}.mw-sm-75px{max-width:75px!important}.mw-sm-80px{max-width:80px!important}.mw-sm-85px{max-width:85px!important}.mw-sm-90px{max-width:90px!important}.mw-sm-95px{max-width:95px!important}.mw-sm-100px{max-width:100px!important}.mw-sm-125px{max-width:125px!important}.mw-sm-150px{max-width:150px!important}.mw-sm-175px{max-width:175px!important}.mw-sm-200px{max-width:200px!important}.mw-sm-225px{max-width:225px!important}.mw-sm-250px{max-width:250px!important}.mw-sm-275px{max-width:275px!important}.mw-sm-300px{max-width:300px!important}.mw-sm-325px{max-width:325px!important}.mw-sm-350px{max-width:350px!important}.mw-sm-375px{max-width:375px!important}.mw-sm-400px{max-width:400px!important}.mw-sm-425px{max-width:425px!important}.mw-sm-450px{max-width:450px!important}.mw-sm-475px{max-width:475px!important}.mw-sm-500px{max-width:500px!important}.mw-sm-550px{max-width:550px!important}.mw-sm-600px{max-width:600px!important}.mw-sm-650px{max-width:650px!important}.mw-sm-700px{max-width:700px!important}.mw-sm-750px{max-width:750px!important}.mw-sm-800px{max-width:800px!important}.mw-sm-850px{max-width:850px!important}.mw-sm-900px{max-width:900px!important}.mw-sm-950px{max-width:950px!important}.mw-sm-1000px{max-width:1000px!important}.h-sm-unset{height:unset!important}.h-sm-25{height:25%!important}.h-sm-50{height:50%!important}.h-sm-75{height:75%!important}.h-sm-100{height:100%!important}.h-sm-auto{height:auto!important}.h-sm-1px{height:1px!important}.h-sm-2px{height:2px!important}.h-sm-3px{height:3px!important}.h-sm-4px{height:4px!important}.h-sm-5px{height:5px!important}.h-sm-6px{height:6px!important}.h-sm-7px{height:7px!important}.h-sm-8px{height:8px!important}.h-sm-9px{height:9px!important}.h-sm-10px{height:10px!important}.h-sm-15px{height:15px!important}.h-sm-20px{height:20px!important}.h-sm-25px{height:25px!important}.h-sm-30px{height:30px!important}.h-sm-35px{height:35px!important}.h-sm-40px{height:40px!important}.h-sm-45px{height:45px!important}.h-sm-50px{height:50px!important}.h-sm-55px{height:55px!important}.h-sm-60px{height:60px!important}.h-sm-65px{height:65px!important}.h-sm-70px{height:70px!important}.h-sm-75px{height:75px!important}.h-sm-80px{height:80px!important}.h-sm-85px{height:85px!important}.h-sm-90px{height:90px!important}.h-sm-95px{height:95px!important}.h-sm-100px{height:100px!important}.h-sm-125px{height:125px!important}.h-sm-150px{height:150px!important}.h-sm-175px{height:175px!important}.h-sm-200px{height:200px!important}.h-sm-225px{height:225px!important}.h-sm-250px{height:250px!important}.h-sm-275px{height:275px!important}.h-sm-300px{height:300px!important}.h-sm-325px{height:325px!important}.h-sm-350px{height:350px!important}.h-sm-375px{height:375px!important}.h-sm-400px{height:400px!important}.h-sm-425px{height:425px!important}.h-sm-450px{height:450px!important}.h-sm-475px{height:475px!important}.h-sm-500px{height:500px!important}.h-sm-550px{height:550px!important}.h-sm-600px{height:600px!important}.h-sm-650px{height:650px!important}.h-sm-700px{height:700px!important}.h-sm-750px{height:750px!important}.h-sm-800px{height:800px!important}.h-sm-850px{height:850px!important}.h-sm-900px{height:900px!important}.h-sm-950px{height:950px!important}.h-sm-1000px{height:1000px!important}.mh-sm-unset{max-height:unset!important}.mh-sm-25{max-height:25%!important}.mh-sm-50{max-height:50%!important}.mh-sm-75{max-height:75%!important}.mh-sm-100{max-height:100%!important}.mh-sm-auto{max-height:auto!important}.mh-sm-1px{max-height:1px!important}.mh-sm-2px{max-height:2px!important}.mh-sm-3px{max-height:3px!important}.mh-sm-4px{max-height:4px!important}.mh-sm-5px{max-height:5px!important}.mh-sm-6px{max-height:6px!important}.mh-sm-7px{max-height:7px!important}.mh-sm-8px{max-height:8px!important}.mh-sm-9px{max-height:9px!important}.mh-sm-10px{max-height:10px!important}.mh-sm-15px{max-height:15px!important}.mh-sm-20px{max-height:20px!important}.mh-sm-25px{max-height:25px!important}.mh-sm-30px{max-height:30px!important}.mh-sm-35px{max-height:35px!important}.mh-sm-40px{max-height:40px!important}.mh-sm-45px{max-height:45px!important}.mh-sm-50px{max-height:50px!important}.mh-sm-55px{max-height:55px!important}.mh-sm-60px{max-height:60px!important}.mh-sm-65px{max-height:65px!important}.mh-sm-70px{max-height:70px!important}.mh-sm-75px{max-height:75px!important}.mh-sm-80px{max-height:80px!important}.mh-sm-85px{max-height:85px!important}.mh-sm-90px{max-height:90px!important}.mh-sm-95px{max-height:95px!important}.mh-sm-100px{max-height:100px!important}.mh-sm-125px{max-height:125px!important}.mh-sm-150px{max-height:150px!important}.mh-sm-175px{max-height:175px!important}.mh-sm-200px{max-height:200px!important}.mh-sm-225px{max-height:225px!important}.mh-sm-250px{max-height:250px!important}.mh-sm-275px{max-height:275px!important}.mh-sm-300px{max-height:300px!important}.mh-sm-325px{max-height:325px!important}.mh-sm-350px{max-height:350px!important}.mh-sm-375px{max-height:375px!important}.mh-sm-400px{max-height:400px!important}.mh-sm-425px{max-height:425px!important}.mh-sm-450px{max-height:450px!important}.mh-sm-475px{max-height:475px!important}.mh-sm-500px{max-height:500px!important}.mh-sm-550px{max-height:550px!important}.mh-sm-600px{max-height:600px!important}.mh-sm-650px{max-height:650px!important}.mh-sm-700px{max-height:700px!important}.mh-sm-750px{max-height:750px!important}.mh-sm-800px{max-height:800px!important}.mh-sm-850px{max-height:850px!important}.mh-sm-900px{max-height:900px!important}.mh-sm-950px{max-height:950px!important}.mh-sm-1000px{max-height:1000px!important}.flex-sm-fill{flex:1 1 auto!important}.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-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}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:.75rem!important}.gap-sm-4{gap:1rem!important}.gap-sm-5{gap:1.25rem!important}.gap-sm-6{gap:1.5rem!important}.gap-sm-7{gap:1.75rem!important}.gap-sm-8{gap:2rem!important}.gap-sm-9{gap:2.25rem!important}.gap-sm-10{gap:2.5rem!important}.gap-sm-11{gap:2.75rem!important}.gap-sm-12{gap:3rem!important}.gap-sm-13{gap:3.25rem!important}.gap-sm-14{gap:3.5rem!important}.gap-sm-15{gap:3.75rem!important}.gap-sm-16{gap:4rem!important}.gap-sm-17{gap:4.25rem!important}.gap-sm-18{gap:4.5rem!important}.gap-sm-19{gap:4.75rem!important}.gap-sm-20{gap:5rem!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}.justify-content-sm-evenly{justify-content:space-evenly!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}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:.75rem!important}.m-sm-4{margin:1rem!important}.m-sm-5{margin:1.25rem!important}.m-sm-6{margin:1.5rem!important}.m-sm-7{margin:1.75rem!important}.m-sm-8{margin:2rem!important}.m-sm-9{margin:2.25rem!important}.m-sm-10{margin:2.5rem!important}.m-sm-11{margin:2.75rem!important}.m-sm-12{margin:3rem!important}.m-sm-13{margin:3.25rem!important}.m-sm-14{margin:3.5rem!important}.m-sm-15{margin:3.75rem!important}.m-sm-16{margin:4rem!important}.m-sm-17{margin:4.25rem!important}.m-sm-18{margin:4.5rem!important}.m-sm-19{margin:4.75rem!important}.m-sm-20{margin:5rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:.75rem!important;margin-left:.75rem!important}.mx-sm-4{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-5{margin-right:1.25rem!important;margin-left:1.25rem!important}.mx-sm-6{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-7{margin-right:1.75rem!important;margin-left:1.75rem!important}.mx-sm-8{margin-right:2rem!important;margin-left:2rem!important}.mx-sm-9{margin-right:2.25rem!important;margin-left:2.25rem!important}.mx-sm-10{margin-right:2.5rem!important;margin-left:2.5rem!important}.mx-sm-11{margin-right:2.75rem!important;margin-left:2.75rem!important}.mx-sm-12{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-13{margin-right:3.25rem!important;margin-left:3.25rem!important}.mx-sm-14{margin-right:3.5rem!important;margin-left:3.5rem!important}.mx-sm-15{margin-right:3.75rem!important;margin-left:3.75rem!important}.mx-sm-16{margin-right:4rem!important;margin-left:4rem!important}.mx-sm-17{margin-right:4.25rem!important;margin-left:4.25rem!important}.mx-sm-18{margin-right:4.5rem!important;margin-left:4.5rem!important}.mx-sm-19{margin-right:4.75rem!important;margin-left:4.75rem!important}.mx-sm-20{margin-right:5rem!important;margin-left:5rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-sm-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-sm-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-sm-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-sm-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-sm-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-sm-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-sm-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-sm-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-sm-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-sm-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-sm-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-sm-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-sm-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-sm-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:.75rem!important}.mt-sm-4{margin-top:1rem!important}.mt-sm-5{margin-top:1.25rem!important}.mt-sm-6{margin-top:1.5rem!important}.mt-sm-7{margin-top:1.75rem!important}.mt-sm-8{margin-top:2rem!important}.mt-sm-9{margin-top:2.25rem!important}.mt-sm-10{margin-top:2.5rem!important}.mt-sm-11{margin-top:2.75rem!important}.mt-sm-12{margin-top:3rem!important}.mt-sm-13{margin-top:3.25rem!important}.mt-sm-14{margin-top:3.5rem!important}.mt-sm-15{margin-top:3.75rem!important}.mt-sm-16{margin-top:4rem!important}.mt-sm-17{margin-top:4.25rem!important}.mt-sm-18{margin-top:4.5rem!important}.mt-sm-19{margin-top:4.75rem!important}.mt-sm-20{margin-top:5rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:.75rem!important}.me-sm-4{margin-right:1rem!important}.me-sm-5{margin-right:1.25rem!important}.me-sm-6{margin-right:1.5rem!important}.me-sm-7{margin-right:1.75rem!important}.me-sm-8{margin-right:2rem!important}.me-sm-9{margin-right:2.25rem!important}.me-sm-10{margin-right:2.5rem!important}.me-sm-11{margin-right:2.75rem!important}.me-sm-12{margin-right:3rem!important}.me-sm-13{margin-right:3.25rem!important}.me-sm-14{margin-right:3.5rem!important}.me-sm-15{margin-right:3.75rem!important}.me-sm-16{margin-right:4rem!important}.me-sm-17{margin-right:4.25rem!important}.me-sm-18{margin-right:4.5rem!important}.me-sm-19{margin-right:4.75rem!important}.me-sm-20{margin-right:5rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:.75rem!important}.mb-sm-4{margin-bottom:1rem!important}.mb-sm-5{margin-bottom:1.25rem!important}.mb-sm-6{margin-bottom:1.5rem!important}.mb-sm-7{margin-bottom:1.75rem!important}.mb-sm-8{margin-bottom:2rem!important}.mb-sm-9{margin-bottom:2.25rem!important}.mb-sm-10{margin-bottom:2.5rem!important}.mb-sm-11{margin-bottom:2.75rem!important}.mb-sm-12{margin-bottom:3rem!important}.mb-sm-13{margin-bottom:3.25rem!important}.mb-sm-14{margin-bottom:3.5rem!important}.mb-sm-15{margin-bottom:3.75rem!important}.mb-sm-16{margin-bottom:4rem!important}.mb-sm-17{margin-bottom:4.25rem!important}.mb-sm-18{margin-bottom:4.5rem!important}.mb-sm-19{margin-bottom:4.75rem!important}.mb-sm-20{margin-bottom:5rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:.75rem!important}.ms-sm-4{margin-left:1rem!important}.ms-sm-5{margin-left:1.25rem!important}.ms-sm-6{margin-left:1.5rem!important}.ms-sm-7{margin-left:1.75rem!important}.ms-sm-8{margin-left:2rem!important}.ms-sm-9{margin-left:2.25rem!important}.ms-sm-10{margin-left:2.5rem!important}.ms-sm-11{margin-left:2.75rem!important}.ms-sm-12{margin-left:3rem!important}.ms-sm-13{margin-left:3.25rem!important}.ms-sm-14{margin-left:3.5rem!important}.ms-sm-15{margin-left:3.75rem!important}.ms-sm-16{margin-left:4rem!important}.ms-sm-17{margin-left:4.25rem!important}.ms-sm-18{margin-left:4.5rem!important}.ms-sm-19{margin-left:4.75rem!important}.ms-sm-20{margin-left:5rem!important}.ms-sm-auto{margin-left:auto!important}.m-sm-n1{margin:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.m-sm-n3{margin:-.75rem!important}.m-sm-n4{margin:-1rem!important}.m-sm-n5{margin:-1.25rem!important}.m-sm-n6{margin:-1.5rem!important}.m-sm-n7{margin:-1.75rem!important}.m-sm-n8{margin:-2rem!important}.m-sm-n9{margin:-2.25rem!important}.m-sm-n10{margin:-2.5rem!important}.m-sm-n11{margin:-2.75rem!important}.m-sm-n12{margin:-3rem!important}.m-sm-n13{margin:-3.25rem!important}.m-sm-n14{margin:-3.5rem!important}.m-sm-n15{margin:-3.75rem!important}.m-sm-n16{margin:-4rem!important}.m-sm-n17{margin:-4.25rem!important}.m-sm-n18{margin:-4.5rem!important}.m-sm-n19{margin:-4.75rem!important}.m-sm-n20{margin:-5rem!important}.mx-sm-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-sm-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-sm-n3{margin-right:-.75rem!important;margin-left:-.75rem!important}.mx-sm-n4{margin-right:-1rem!important;margin-left:-1rem!important}.mx-sm-n5{margin-right:-1.25rem!important;margin-left:-1.25rem!important}.mx-sm-n6{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-sm-n7{margin-right:-1.75rem!important;margin-left:-1.75rem!important}.mx-sm-n8{margin-right:-2rem!important;margin-left:-2rem!important}.mx-sm-n9{margin-right:-2.25rem!important;margin-left:-2.25rem!important}.mx-sm-n10{margin-right:-2.5rem!important;margin-left:-2.5rem!important}.mx-sm-n11{margin-right:-2.75rem!important;margin-left:-2.75rem!important}.mx-sm-n12{margin-right:-3rem!important;margin-left:-3rem!important}.mx-sm-n13{margin-right:-3.25rem!important;margin-left:-3.25rem!important}.mx-sm-n14{margin-right:-3.5rem!important;margin-left:-3.5rem!important}.mx-sm-n15{margin-right:-3.75rem!important;margin-left:-3.75rem!important}.mx-sm-n16{margin-right:-4rem!important;margin-left:-4rem!important}.mx-sm-n17{margin-right:-4.25rem!important;margin-left:-4.25rem!important}.mx-sm-n18{margin-right:-4.5rem!important;margin-left:-4.5rem!important}.mx-sm-n19{margin-right:-4.75rem!important;margin-left:-4.75rem!important}.mx-sm-n20{margin-right:-5rem!important;margin-left:-5rem!important}.my-sm-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-sm-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-sm-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-sm-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-sm-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-sm-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-sm-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-sm-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-sm-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-sm-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-sm-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-sm-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-sm-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-sm-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-sm-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-sm-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-sm-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-sm-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-sm-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-sm-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-sm-n1{margin-top:-.25rem!important}.mt-sm-n2{margin-top:-.5rem!important}.mt-sm-n3{margin-top:-.75rem!important}.mt-sm-n4{margin-top:-1rem!important}.mt-sm-n5{margin-top:-1.25rem!important}.mt-sm-n6{margin-top:-1.5rem!important}.mt-sm-n7{margin-top:-1.75rem!important}.mt-sm-n8{margin-top:-2rem!important}.mt-sm-n9{margin-top:-2.25rem!important}.mt-sm-n10{margin-top:-2.5rem!important}.mt-sm-n11{margin-top:-2.75rem!important}.mt-sm-n12{margin-top:-3rem!important}.mt-sm-n13{margin-top:-3.25rem!important}.mt-sm-n14{margin-top:-3.5rem!important}.mt-sm-n15{margin-top:-3.75rem!important}.mt-sm-n16{margin-top:-4rem!important}.mt-sm-n17{margin-top:-4.25rem!important}.mt-sm-n18{margin-top:-4.5rem!important}.mt-sm-n19{margin-top:-4.75rem!important}.mt-sm-n20{margin-top:-5rem!important}.me-sm-n1{margin-right:-.25rem!important}.me-sm-n2{margin-right:-.5rem!important}.me-sm-n3{margin-right:-.75rem!important}.me-sm-n4{margin-right:-1rem!important}.me-sm-n5{margin-right:-1.25rem!important}.me-sm-n6{margin-right:-1.5rem!important}.me-sm-n7{margin-right:-1.75rem!important}.me-sm-n8{margin-right:-2rem!important}.me-sm-n9{margin-right:-2.25rem!important}.me-sm-n10{margin-right:-2.5rem!important}.me-sm-n11{margin-right:-2.75rem!important}.me-sm-n12{margin-right:-3rem!important}.me-sm-n13{margin-right:-3.25rem!important}.me-sm-n14{margin-right:-3.5rem!important}.me-sm-n15{margin-right:-3.75rem!important}.me-sm-n16{margin-right:-4rem!important}.me-sm-n17{margin-right:-4.25rem!important}.me-sm-n18{margin-right:-4.5rem!important}.me-sm-n19{margin-right:-4.75rem!important}.me-sm-n20{margin-right:-5rem!important}.mb-sm-n1{margin-bottom:-.25rem!important}.mb-sm-n2{margin-bottom:-.5rem!important}.mb-sm-n3{margin-bottom:-.75rem!important}.mb-sm-n4{margin-bottom:-1rem!important}.mb-sm-n5{margin-bottom:-1.25rem!important}.mb-sm-n6{margin-bottom:-1.5rem!important}.mb-sm-n7{margin-bottom:-1.75rem!important}.mb-sm-n8{margin-bottom:-2rem!important}.mb-sm-n9{margin-bottom:-2.25rem!important}.mb-sm-n10{margin-bottom:-2.5rem!important}.mb-sm-n11{margin-bottom:-2.75rem!important}.mb-sm-n12{margin-bottom:-3rem!important}.mb-sm-n13{margin-bottom:-3.25rem!important}.mb-sm-n14{margin-bottom:-3.5rem!important}.mb-sm-n15{margin-bottom:-3.75rem!important}.mb-sm-n16{margin-bottom:-4rem!important}.mb-sm-n17{margin-bottom:-4.25rem!important}.mb-sm-n18{margin-bottom:-4.5rem!important}.mb-sm-n19{margin-bottom:-4.75rem!important}.mb-sm-n20{margin-bottom:-5rem!important}.ms-sm-n1{margin-left:-.25rem!important}.ms-sm-n2{margin-left:-.5rem!important}.ms-sm-n3{margin-left:-.75rem!important}.ms-sm-n4{margin-left:-1rem!important}.ms-sm-n5{margin-left:-1.25rem!important}.ms-sm-n6{margin-left:-1.5rem!important}.ms-sm-n7{margin-left:-1.75rem!important}.ms-sm-n8{margin-left:-2rem!important}.ms-sm-n9{margin-left:-2.25rem!important}.ms-sm-n10{margin-left:-2.5rem!important}.ms-sm-n11{margin-left:-2.75rem!important}.ms-sm-n12{margin-left:-3rem!important}.ms-sm-n13{margin-left:-3.25rem!important}.ms-sm-n14{margin-left:-3.5rem!important}.ms-sm-n15{margin-left:-3.75rem!important}.ms-sm-n16{margin-left:-4rem!important}.ms-sm-n17{margin-left:-4.25rem!important}.ms-sm-n18{margin-left:-4.5rem!important}.ms-sm-n19{margin-left:-4.75rem!important}.ms-sm-n20{margin-left:-5rem!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:.75rem!important}.p-sm-4{padding:1rem!important}.p-sm-5{padding:1.25rem!important}.p-sm-6{padding:1.5rem!important}.p-sm-7{padding:1.75rem!important}.p-sm-8{padding:2rem!important}.p-sm-9{padding:2.25rem!important}.p-sm-10{padding:2.5rem!important}.p-sm-11{padding:2.75rem!important}.p-sm-12{padding:3rem!important}.p-sm-13{padding:3.25rem!important}.p-sm-14{padding:3.5rem!important}.p-sm-15{padding:3.75rem!important}.p-sm-16{padding:4rem!important}.p-sm-17{padding:4.25rem!important}.p-sm-18{padding:4.5rem!important}.p-sm-19{padding:4.75rem!important}.p-sm-20{padding:5rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:.75rem!important;padding-left:.75rem!important}.px-sm-4{padding-right:1rem!important;padding-left:1rem!important}.px-sm-5{padding-right:1.25rem!important;padding-left:1.25rem!important}.px-sm-6{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-7{padding-right:1.75rem!important;padding-left:1.75rem!important}.px-sm-8{padding-right:2rem!important;padding-left:2rem!important}.px-sm-9{padding-right:2.25rem!important;padding-left:2.25rem!important}.px-sm-10{padding-right:2.5rem!important;padding-left:2.5rem!important}.px-sm-11{padding-right:2.75rem!important;padding-left:2.75rem!important}.px-sm-12{padding-right:3rem!important;padding-left:3rem!important}.px-sm-13{padding-right:3.25rem!important;padding-left:3.25rem!important}.px-sm-14{padding-right:3.5rem!important;padding-left:3.5rem!important}.px-sm-15{padding-right:3.75rem!important;padding-left:3.75rem!important}.px-sm-16{padding-right:4rem!important;padding-left:4rem!important}.px-sm-17{padding-right:4.25rem!important;padding-left:4.25rem!important}.px-sm-18{padding-right:4.5rem!important;padding-left:4.5rem!important}.px-sm-19{padding-right:4.75rem!important;padding-left:4.75rem!important}.px-sm-20{padding-right:5rem!important;padding-left:5rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-sm-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-sm-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-sm-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-sm-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-sm-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-sm-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-sm-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-sm-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-sm-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-sm-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-sm-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-sm-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-sm-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-sm-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-sm-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:.75rem!important}.pt-sm-4{padding-top:1rem!important}.pt-sm-5{padding-top:1.25rem!important}.pt-sm-6{padding-top:1.5rem!important}.pt-sm-7{padding-top:1.75rem!important}.pt-sm-8{padding-top:2rem!important}.pt-sm-9{padding-top:2.25rem!important}.pt-sm-10{padding-top:2.5rem!important}.pt-sm-11{padding-top:2.75rem!important}.pt-sm-12{padding-top:3rem!important}.pt-sm-13{padding-top:3.25rem!important}.pt-sm-14{padding-top:3.5rem!important}.pt-sm-15{padding-top:3.75rem!important}.pt-sm-16{padding-top:4rem!important}.pt-sm-17{padding-top:4.25rem!important}.pt-sm-18{padding-top:4.5rem!important}.pt-sm-19{padding-top:4.75rem!important}.pt-sm-20{padding-top:5rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:.75rem!important}.pe-sm-4{padding-right:1rem!important}.pe-sm-5{padding-right:1.25rem!important}.pe-sm-6{padding-right:1.5rem!important}.pe-sm-7{padding-right:1.75rem!important}.pe-sm-8{padding-right:2rem!important}.pe-sm-9{padding-right:2.25rem!important}.pe-sm-10{padding-right:2.5rem!important}.pe-sm-11{padding-right:2.75rem!important}.pe-sm-12{padding-right:3rem!important}.pe-sm-13{padding-right:3.25rem!important}.pe-sm-14{padding-right:3.5rem!important}.pe-sm-15{padding-right:3.75rem!important}.pe-sm-16{padding-right:4rem!important}.pe-sm-17{padding-right:4.25rem!important}.pe-sm-18{padding-right:4.5rem!important}.pe-sm-19{padding-right:4.75rem!important}.pe-sm-20{padding-right:5rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:.75rem!important}.pb-sm-4{padding-bottom:1rem!important}.pb-sm-5{padding-bottom:1.25rem!important}.pb-sm-6{padding-bottom:1.5rem!important}.pb-sm-7{padding-bottom:1.75rem!important}.pb-sm-8{padding-bottom:2rem!important}.pb-sm-9{padding-bottom:2.25rem!important}.pb-sm-10{padding-bottom:2.5rem!important}.pb-sm-11{padding-bottom:2.75rem!important}.pb-sm-12{padding-bottom:3rem!important}.pb-sm-13{padding-bottom:3.25rem!important}.pb-sm-14{padding-bottom:3.5rem!important}.pb-sm-15{padding-bottom:3.75rem!important}.pb-sm-16{padding-bottom:4rem!important}.pb-sm-17{padding-bottom:4.25rem!important}.pb-sm-18{padding-bottom:4.5rem!important}.pb-sm-19{padding-bottom:4.75rem!important}.pb-sm-20{padding-bottom:5rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:.75rem!important}.ps-sm-4{padding-left:1rem!important}.ps-sm-5{padding-left:1.25rem!important}.ps-sm-6{padding-left:1.5rem!important}.ps-sm-7{padding-left:1.75rem!important}.ps-sm-8{padding-left:2rem!important}.ps-sm-9{padding-left:2.25rem!important}.ps-sm-10{padding-left:2.5rem!important}.ps-sm-11{padding-left:2.75rem!important}.ps-sm-12{padding-left:3rem!important}.ps-sm-13{padding-left:3.25rem!important}.ps-sm-14{padding-left:3.5rem!important}.ps-sm-15{padding-left:3.75rem!important}.ps-sm-16{padding-left:4rem!important}.ps-sm-17{padding-left:4.25rem!important}.ps-sm-18{padding-left:4.5rem!important}.ps-sm-19{padding-left:4.75rem!important}.ps-sm-20{padding-left:5rem!important}.fs-sm-1{font-size:calc(1.3rem + .6vw)!important}.fs-sm-2{font-size:calc(1.275rem + .3vw)!important}.fs-sm-3{font-size:calc(1.26rem + .12vw)!important}.fs-sm-4{font-size:1.25rem!important}.fs-sm-5{font-size:1.15rem!important}.fs-sm-6{font-size:1.075rem!important}.fs-sm-7{font-size:.95rem!important}.fs-sm-8{font-size:.85rem!important}.fs-sm-9{font-size:.75rem!important}.fs-sm-10{font-size:.5rem!important}.fs-sm-base{font-size:1rem!important}.fs-sm-fluid{font-size:100%!important}.fs-sm-2x{font-size:calc(1.325rem + .9vw)!important}.fs-sm-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-sm-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-sm-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-sm-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-sm-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-sm-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-sm-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-sm-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-sm-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-sm-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-sm-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-sm-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-sm-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-sm-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-sm-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}.min-w-sm-unset{min-width:unset!important}.min-w-sm-25{min-width:25%!important}.min-w-sm-50{min-width:50%!important}.min-w-sm-75{min-width:75%!important}.min-w-sm-100{min-width:100%!important}.min-w-sm-auto{min-width:auto!important}.min-w-sm-1px{min-width:1px!important}.min-w-sm-2px{min-width:2px!important}.min-w-sm-3px{min-width:3px!important}.min-w-sm-4px{min-width:4px!important}.min-w-sm-5px{min-width:5px!important}.min-w-sm-6px{min-width:6px!important}.min-w-sm-7px{min-width:7px!important}.min-w-sm-8px{min-width:8px!important}.min-w-sm-9px{min-width:9px!important}.min-w-sm-10px{min-width:10px!important}.min-w-sm-15px{min-width:15px!important}.min-w-sm-20px{min-width:20px!important}.min-w-sm-25px{min-width:25px!important}.min-w-sm-30px{min-width:30px!important}.min-w-sm-35px{min-width:35px!important}.min-w-sm-40px{min-width:40px!important}.min-w-sm-45px{min-width:45px!important}.min-w-sm-50px{min-width:50px!important}.min-w-sm-55px{min-width:55px!important}.min-w-sm-60px{min-width:60px!important}.min-w-sm-65px{min-width:65px!important}.min-w-sm-70px{min-width:70px!important}.min-w-sm-75px{min-width:75px!important}.min-w-sm-80px{min-width:80px!important}.min-w-sm-85px{min-width:85px!important}.min-w-sm-90px{min-width:90px!important}.min-w-sm-95px{min-width:95px!important}.min-w-sm-100px{min-width:100px!important}.min-w-sm-125px{min-width:125px!important}.min-w-sm-150px{min-width:150px!important}.min-w-sm-175px{min-width:175px!important}.min-w-sm-200px{min-width:200px!important}.min-w-sm-225px{min-width:225px!important}.min-w-sm-250px{min-width:250px!important}.min-w-sm-275px{min-width:275px!important}.min-w-sm-300px{min-width:300px!important}.min-w-sm-325px{min-width:325px!important}.min-w-sm-350px{min-width:350px!important}.min-w-sm-375px{min-width:375px!important}.min-w-sm-400px{min-width:400px!important}.min-w-sm-425px{min-width:425px!important}.min-w-sm-450px{min-width:450px!important}.min-w-sm-475px{min-width:475px!important}.min-w-sm-500px{min-width:500px!important}.min-w-sm-550px{min-width:550px!important}.min-w-sm-600px{min-width:600px!important}.min-w-sm-650px{min-width:650px!important}.min-w-sm-700px{min-width:700px!important}.min-w-sm-750px{min-width:750px!important}.min-w-sm-800px{min-width:800px!important}.min-w-sm-850px{min-width:850px!important}.min-w-sm-900px{min-width:900px!important}.min-w-sm-950px{min-width:950px!important}.min-w-sm-1000px{min-width:1000px!important}.min-h-sm-unset{min-height:unset!important}.min-h-sm-25{min-height:25%!important}.min-h-sm-50{min-height:50%!important}.min-h-sm-75{min-height:75%!important}.min-h-sm-100{min-height:100%!important}.min-h-sm-auto{min-height:auto!important}.min-h-sm-1px{min-height:1px!important}.min-h-sm-2px{min-height:2px!important}.min-h-sm-3px{min-height:3px!important}.min-h-sm-4px{min-height:4px!important}.min-h-sm-5px{min-height:5px!important}.min-h-sm-6px{min-height:6px!important}.min-h-sm-7px{min-height:7px!important}.min-h-sm-8px{min-height:8px!important}.min-h-sm-9px{min-height:9px!important}.min-h-sm-10px{min-height:10px!important}.min-h-sm-15px{min-height:15px!important}.min-h-sm-20px{min-height:20px!important}.min-h-sm-25px{min-height:25px!important}.min-h-sm-30px{min-height:30px!important}.min-h-sm-35px{min-height:35px!important}.min-h-sm-40px{min-height:40px!important}.min-h-sm-45px{min-height:45px!important}.min-h-sm-50px{min-height:50px!important}.min-h-sm-55px{min-height:55px!important}.min-h-sm-60px{min-height:60px!important}.min-h-sm-65px{min-height:65px!important}.min-h-sm-70px{min-height:70px!important}.min-h-sm-75px{min-height:75px!important}.min-h-sm-80px{min-height:80px!important}.min-h-sm-85px{min-height:85px!important}.min-h-sm-90px{min-height:90px!important}.min-h-sm-95px{min-height:95px!important}.min-h-sm-100px{min-height:100px!important}.min-h-sm-125px{min-height:125px!important}.min-h-sm-150px{min-height:150px!important}.min-h-sm-175px{min-height:175px!important}.min-h-sm-200px{min-height:200px!important}.min-h-sm-225px{min-height:225px!important}.min-h-sm-250px{min-height:250px!important}.min-h-sm-275px{min-height:275px!important}.min-h-sm-300px{min-height:300px!important}.min-h-sm-325px{min-height:325px!important}.min-h-sm-350px{min-height:350px!important}.min-h-sm-375px{min-height:375px!important}.min-h-sm-400px{min-height:400px!important}.min-h-sm-425px{min-height:425px!important}.min-h-sm-450px{min-height:450px!important}.min-h-sm-475px{min-height:475px!important}.min-h-sm-500px{min-height:500px!important}.min-h-sm-550px{min-height:550px!important}.min-h-sm-600px{min-height:600px!important}.min-h-sm-650px{min-height:650px!important}.min-h-sm-700px{min-height:700px!important}.min-h-sm-750px{min-height:750px!important}.min-h-sm-800px{min-height:800px!important}.min-h-sm-850px{min-height:850px!important}.min-h-sm-900px{min-height:900px!important}.min-h-sm-950px{min-height:950px!important}.min-h-sm-1000px{min-height:1000px!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!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}.d-md-none{display:none!important}.position-md-static{position:static!important}.position-md-relative{position:relative!important}.position-md-absolute{position:absolute!important}.position-md-fixed{position:fixed!important}.position-md-sticky{position:sticky!important}.w-md-unset{width:unset!important}.w-md-25{width:25%!important}.w-md-50{width:50%!important}.w-md-75{width:75%!important}.w-md-100{width:100%!important}.w-md-auto{width:auto!important}.w-md-1px{width:1px!important}.w-md-2px{width:2px!important}.w-md-3px{width:3px!important}.w-md-4px{width:4px!important}.w-md-5px{width:5px!important}.w-md-6px{width:6px!important}.w-md-7px{width:7px!important}.w-md-8px{width:8px!important}.w-md-9px{width:9px!important}.w-md-10px{width:10px!important}.w-md-15px{width:15px!important}.w-md-20px{width:20px!important}.w-md-25px{width:25px!important}.w-md-30px{width:30px!important}.w-md-35px{width:35px!important}.w-md-40px{width:40px!important}.w-md-45px{width:45px!important}.w-md-50px{width:50px!important}.w-md-55px{width:55px!important}.w-md-60px{width:60px!important}.w-md-65px{width:65px!important}.w-md-70px{width:70px!important}.w-md-75px{width:75px!important}.w-md-80px{width:80px!important}.w-md-85px{width:85px!important}.w-md-90px{width:90px!important}.w-md-95px{width:95px!important}.w-md-100px{width:100px!important}.w-md-125px{width:125px!important}.w-md-150px{width:150px!important}.w-md-175px{width:175px!important}.w-md-200px{width:200px!important}.w-md-225px{width:225px!important}.w-md-250px{width:250px!important}.w-md-275px{width:275px!important}.w-md-300px{width:300px!important}.w-md-325px{width:325px!important}.w-md-350px{width:350px!important}.w-md-375px{width:375px!important}.w-md-400px{width:400px!important}.w-md-425px{width:425px!important}.w-md-450px{width:450px!important}.w-md-475px{width:475px!important}.w-md-500px{width:500px!important}.w-md-550px{width:550px!important}.w-md-600px{width:600px!important}.w-md-650px{width:650px!important}.w-md-700px{width:700px!important}.w-md-750px{width:750px!important}.w-md-800px{width:800px!important}.w-md-850px{width:850px!important}.w-md-900px{width:900px!important}.w-md-950px{width:950px!important}.w-md-1000px{width:1000px!important}.mw-md-unset{max-width:unset!important}.mw-md-25{max-width:25%!important}.mw-md-50{max-width:50%!important}.mw-md-75{max-width:75%!important}.mw-md-100{max-width:100%!important}.mw-md-auto{max-width:auto!important}.mw-md-1px{max-width:1px!important}.mw-md-2px{max-width:2px!important}.mw-md-3px{max-width:3px!important}.mw-md-4px{max-width:4px!important}.mw-md-5px{max-width:5px!important}.mw-md-6px{max-width:6px!important}.mw-md-7px{max-width:7px!important}.mw-md-8px{max-width:8px!important}.mw-md-9px{max-width:9px!important}.mw-md-10px{max-width:10px!important}.mw-md-15px{max-width:15px!important}.mw-md-20px{max-width:20px!important}.mw-md-25px{max-width:25px!important}.mw-md-30px{max-width:30px!important}.mw-md-35px{max-width:35px!important}.mw-md-40px{max-width:40px!important}.mw-md-45px{max-width:45px!important}.mw-md-50px{max-width:50px!important}.mw-md-55px{max-width:55px!important}.mw-md-60px{max-width:60px!important}.mw-md-65px{max-width:65px!important}.mw-md-70px{max-width:70px!important}.mw-md-75px{max-width:75px!important}.mw-md-80px{max-width:80px!important}.mw-md-85px{max-width:85px!important}.mw-md-90px{max-width:90px!important}.mw-md-95px{max-width:95px!important}.mw-md-100px{max-width:100px!important}.mw-md-125px{max-width:125px!important}.mw-md-150px{max-width:150px!important}.mw-md-175px{max-width:175px!important}.mw-md-200px{max-width:200px!important}.mw-md-225px{max-width:225px!important}.mw-md-250px{max-width:250px!important}.mw-md-275px{max-width:275px!important}.mw-md-300px{max-width:300px!important}.mw-md-325px{max-width:325px!important}.mw-md-350px{max-width:350px!important}.mw-md-375px{max-width:375px!important}.mw-md-400px{max-width:400px!important}.mw-md-425px{max-width:425px!important}.mw-md-450px{max-width:450px!important}.mw-md-475px{max-width:475px!important}.mw-md-500px{max-width:500px!important}.mw-md-550px{max-width:550px!important}.mw-md-600px{max-width:600px!important}.mw-md-650px{max-width:650px!important}.mw-md-700px{max-width:700px!important}.mw-md-750px{max-width:750px!important}.mw-md-800px{max-width:800px!important}.mw-md-850px{max-width:850px!important}.mw-md-900px{max-width:900px!important}.mw-md-950px{max-width:950px!important}.mw-md-1000px{max-width:1000px!important}.h-md-unset{height:unset!important}.h-md-25{height:25%!important}.h-md-50{height:50%!important}.h-md-75{height:75%!important}.h-md-100{height:100%!important}.h-md-auto{height:auto!important}.h-md-1px{height:1px!important}.h-md-2px{height:2px!important}.h-md-3px{height:3px!important}.h-md-4px{height:4px!important}.h-md-5px{height:5px!important}.h-md-6px{height:6px!important}.h-md-7px{height:7px!important}.h-md-8px{height:8px!important}.h-md-9px{height:9px!important}.h-md-10px{height:10px!important}.h-md-15px{height:15px!important}.h-md-20px{height:20px!important}.h-md-25px{height:25px!important}.h-md-30px{height:30px!important}.h-md-35px{height:35px!important}.h-md-40px{height:40px!important}.h-md-45px{height:45px!important}.h-md-50px{height:50px!important}.h-md-55px{height:55px!important}.h-md-60px{height:60px!important}.h-md-65px{height:65px!important}.h-md-70px{height:70px!important}.h-md-75px{height:75px!important}.h-md-80px{height:80px!important}.h-md-85px{height:85px!important}.h-md-90px{height:90px!important}.h-md-95px{height:95px!important}.h-md-100px{height:100px!important}.h-md-125px{height:125px!important}.h-md-150px{height:150px!important}.h-md-175px{height:175px!important}.h-md-200px{height:200px!important}.h-md-225px{height:225px!important}.h-md-250px{height:250px!important}.h-md-275px{height:275px!important}.h-md-300px{height:300px!important}.h-md-325px{height:325px!important}.h-md-350px{height:350px!important}.h-md-375px{height:375px!important}.h-md-400px{height:400px!important}.h-md-425px{height:425px!important}.h-md-450px{height:450px!important}.h-md-475px{height:475px!important}.h-md-500px{height:500px!important}.h-md-550px{height:550px!important}.h-md-600px{height:600px!important}.h-md-650px{height:650px!important}.h-md-700px{height:700px!important}.h-md-750px{height:750px!important}.h-md-800px{height:800px!important}.h-md-850px{height:850px!important}.h-md-900px{height:900px!important}.h-md-950px{height:950px!important}.h-md-1000px{height:1000px!important}.mh-md-unset{max-height:unset!important}.mh-md-25{max-height:25%!important}.mh-md-50{max-height:50%!important}.mh-md-75{max-height:75%!important}.mh-md-100{max-height:100%!important}.mh-md-auto{max-height:auto!important}.mh-md-1px{max-height:1px!important}.mh-md-2px{max-height:2px!important}.mh-md-3px{max-height:3px!important}.mh-md-4px{max-height:4px!important}.mh-md-5px{max-height:5px!important}.mh-md-6px{max-height:6px!important}.mh-md-7px{max-height:7px!important}.mh-md-8px{max-height:8px!important}.mh-md-9px{max-height:9px!important}.mh-md-10px{max-height:10px!important}.mh-md-15px{max-height:15px!important}.mh-md-20px{max-height:20px!important}.mh-md-25px{max-height:25px!important}.mh-md-30px{max-height:30px!important}.mh-md-35px{max-height:35px!important}.mh-md-40px{max-height:40px!important}.mh-md-45px{max-height:45px!important}.mh-md-50px{max-height:50px!important}.mh-md-55px{max-height:55px!important}.mh-md-60px{max-height:60px!important}.mh-md-65px{max-height:65px!important}.mh-md-70px{max-height:70px!important}.mh-md-75px{max-height:75px!important}.mh-md-80px{max-height:80px!important}.mh-md-85px{max-height:85px!important}.mh-md-90px{max-height:90px!important}.mh-md-95px{max-height:95px!important}.mh-md-100px{max-height:100px!important}.mh-md-125px{max-height:125px!important}.mh-md-150px{max-height:150px!important}.mh-md-175px{max-height:175px!important}.mh-md-200px{max-height:200px!important}.mh-md-225px{max-height:225px!important}.mh-md-250px{max-height:250px!important}.mh-md-275px{max-height:275px!important}.mh-md-300px{max-height:300px!important}.mh-md-325px{max-height:325px!important}.mh-md-350px{max-height:350px!important}.mh-md-375px{max-height:375px!important}.mh-md-400px{max-height:400px!important}.mh-md-425px{max-height:425px!important}.mh-md-450px{max-height:450px!important}.mh-md-475px{max-height:475px!important}.mh-md-500px{max-height:500px!important}.mh-md-550px{max-height:550px!important}.mh-md-600px{max-height:600px!important}.mh-md-650px{max-height:650px!important}.mh-md-700px{max-height:700px!important}.mh-md-750px{max-height:750px!important}.mh-md-800px{max-height:800px!important}.mh-md-850px{max-height:850px!important}.mh-md-900px{max-height:900px!important}.mh-md-950px{max-height:950px!important}.mh-md-1000px{max-height:1000px!important}.flex-md-fill{flex:1 1 auto!important}.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-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}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:.75rem!important}.gap-md-4{gap:1rem!important}.gap-md-5{gap:1.25rem!important}.gap-md-6{gap:1.5rem!important}.gap-md-7{gap:1.75rem!important}.gap-md-8{gap:2rem!important}.gap-md-9{gap:2.25rem!important}.gap-md-10{gap:2.5rem!important}.gap-md-11{gap:2.75rem!important}.gap-md-12{gap:3rem!important}.gap-md-13{gap:3.25rem!important}.gap-md-14{gap:3.5rem!important}.gap-md-15{gap:3.75rem!important}.gap-md-16{gap:4rem!important}.gap-md-17{gap:4.25rem!important}.gap-md-18{gap:4.5rem!important}.gap-md-19{gap:4.75rem!important}.gap-md-20{gap:5rem!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}.justify-content-md-evenly{justify-content:space-evenly!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}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:.75rem!important}.m-md-4{margin:1rem!important}.m-md-5{margin:1.25rem!important}.m-md-6{margin:1.5rem!important}.m-md-7{margin:1.75rem!important}.m-md-8{margin:2rem!important}.m-md-9{margin:2.25rem!important}.m-md-10{margin:2.5rem!important}.m-md-11{margin:2.75rem!important}.m-md-12{margin:3rem!important}.m-md-13{margin:3.25rem!important}.m-md-14{margin:3.5rem!important}.m-md-15{margin:3.75rem!important}.m-md-16{margin:4rem!important}.m-md-17{margin:4.25rem!important}.m-md-18{margin:4.5rem!important}.m-md-19{margin:4.75rem!important}.m-md-20{margin:5rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:.75rem!important;margin-left:.75rem!important}.mx-md-4{margin-right:1rem!important;margin-left:1rem!important}.mx-md-5{margin-right:1.25rem!important;margin-left:1.25rem!important}.mx-md-6{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-7{margin-right:1.75rem!important;margin-left:1.75rem!important}.mx-md-8{margin-right:2rem!important;margin-left:2rem!important}.mx-md-9{margin-right:2.25rem!important;margin-left:2.25rem!important}.mx-md-10{margin-right:2.5rem!important;margin-left:2.5rem!important}.mx-md-11{margin-right:2.75rem!important;margin-left:2.75rem!important}.mx-md-12{margin-right:3rem!important;margin-left:3rem!important}.mx-md-13{margin-right:3.25rem!important;margin-left:3.25rem!important}.mx-md-14{margin-right:3.5rem!important;margin-left:3.5rem!important}.mx-md-15{margin-right:3.75rem!important;margin-left:3.75rem!important}.mx-md-16{margin-right:4rem!important;margin-left:4rem!important}.mx-md-17{margin-right:4.25rem!important;margin-left:4.25rem!important}.mx-md-18{margin-right:4.5rem!important;margin-left:4.5rem!important}.mx-md-19{margin-right:4.75rem!important;margin-left:4.75rem!important}.mx-md-20{margin-right:5rem!important;margin-left:5rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-md-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-md-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-md-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-md-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-md-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-md-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-md-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-md-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-md-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-md-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-md-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-md-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-md-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-md-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:.75rem!important}.mt-md-4{margin-top:1rem!important}.mt-md-5{margin-top:1.25rem!important}.mt-md-6{margin-top:1.5rem!important}.mt-md-7{margin-top:1.75rem!important}.mt-md-8{margin-top:2rem!important}.mt-md-9{margin-top:2.25rem!important}.mt-md-10{margin-top:2.5rem!important}.mt-md-11{margin-top:2.75rem!important}.mt-md-12{margin-top:3rem!important}.mt-md-13{margin-top:3.25rem!important}.mt-md-14{margin-top:3.5rem!important}.mt-md-15{margin-top:3.75rem!important}.mt-md-16{margin-top:4rem!important}.mt-md-17{margin-top:4.25rem!important}.mt-md-18{margin-top:4.5rem!important}.mt-md-19{margin-top:4.75rem!important}.mt-md-20{margin-top:5rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:.75rem!important}.me-md-4{margin-right:1rem!important}.me-md-5{margin-right:1.25rem!important}.me-md-6{margin-right:1.5rem!important}.me-md-7{margin-right:1.75rem!important}.me-md-8{margin-right:2rem!important}.me-md-9{margin-right:2.25rem!important}.me-md-10{margin-right:2.5rem!important}.me-md-11{margin-right:2.75rem!important}.me-md-12{margin-right:3rem!important}.me-md-13{margin-right:3.25rem!important}.me-md-14{margin-right:3.5rem!important}.me-md-15{margin-right:3.75rem!important}.me-md-16{margin-right:4rem!important}.me-md-17{margin-right:4.25rem!important}.me-md-18{margin-right:4.5rem!important}.me-md-19{margin-right:4.75rem!important}.me-md-20{margin-right:5rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:.75rem!important}.mb-md-4{margin-bottom:1rem!important}.mb-md-5{margin-bottom:1.25rem!important}.mb-md-6{margin-bottom:1.5rem!important}.mb-md-7{margin-bottom:1.75rem!important}.mb-md-8{margin-bottom:2rem!important}.mb-md-9{margin-bottom:2.25rem!important}.mb-md-10{margin-bottom:2.5rem!important}.mb-md-11{margin-bottom:2.75rem!important}.mb-md-12{margin-bottom:3rem!important}.mb-md-13{margin-bottom:3.25rem!important}.mb-md-14{margin-bottom:3.5rem!important}.mb-md-15{margin-bottom:3.75rem!important}.mb-md-16{margin-bottom:4rem!important}.mb-md-17{margin-bottom:4.25rem!important}.mb-md-18{margin-bottom:4.5rem!important}.mb-md-19{margin-bottom:4.75rem!important}.mb-md-20{margin-bottom:5rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:.75rem!important}.ms-md-4{margin-left:1rem!important}.ms-md-5{margin-left:1.25rem!important}.ms-md-6{margin-left:1.5rem!important}.ms-md-7{margin-left:1.75rem!important}.ms-md-8{margin-left:2rem!important}.ms-md-9{margin-left:2.25rem!important}.ms-md-10{margin-left:2.5rem!important}.ms-md-11{margin-left:2.75rem!important}.ms-md-12{margin-left:3rem!important}.ms-md-13{margin-left:3.25rem!important}.ms-md-14{margin-left:3.5rem!important}.ms-md-15{margin-left:3.75rem!important}.ms-md-16{margin-left:4rem!important}.ms-md-17{margin-left:4.25rem!important}.ms-md-18{margin-left:4.5rem!important}.ms-md-19{margin-left:4.75rem!important}.ms-md-20{margin-left:5rem!important}.ms-md-auto{margin-left:auto!important}.m-md-n1{margin:-.25rem!important}.m-md-n2{margin:-.5rem!important}.m-md-n3{margin:-.75rem!important}.m-md-n4{margin:-1rem!important}.m-md-n5{margin:-1.25rem!important}.m-md-n6{margin:-1.5rem!important}.m-md-n7{margin:-1.75rem!important}.m-md-n8{margin:-2rem!important}.m-md-n9{margin:-2.25rem!important}.m-md-n10{margin:-2.5rem!important}.m-md-n11{margin:-2.75rem!important}.m-md-n12{margin:-3rem!important}.m-md-n13{margin:-3.25rem!important}.m-md-n14{margin:-3.5rem!important}.m-md-n15{margin:-3.75rem!important}.m-md-n16{margin:-4rem!important}.m-md-n17{margin:-4.25rem!important}.m-md-n18{margin:-4.5rem!important}.m-md-n19{margin:-4.75rem!important}.m-md-n20{margin:-5rem!important}.mx-md-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-md-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-md-n3{margin-right:-.75rem!important;margin-left:-.75rem!important}.mx-md-n4{margin-right:-1rem!important;margin-left:-1rem!important}.mx-md-n5{margin-right:-1.25rem!important;margin-left:-1.25rem!important}.mx-md-n6{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-md-n7{margin-right:-1.75rem!important;margin-left:-1.75rem!important}.mx-md-n8{margin-right:-2rem!important;margin-left:-2rem!important}.mx-md-n9{margin-right:-2.25rem!important;margin-left:-2.25rem!important}.mx-md-n10{margin-right:-2.5rem!important;margin-left:-2.5rem!important}.mx-md-n11{margin-right:-2.75rem!important;margin-left:-2.75rem!important}.mx-md-n12{margin-right:-3rem!important;margin-left:-3rem!important}.mx-md-n13{margin-right:-3.25rem!important;margin-left:-3.25rem!important}.mx-md-n14{margin-right:-3.5rem!important;margin-left:-3.5rem!important}.mx-md-n15{margin-right:-3.75rem!important;margin-left:-3.75rem!important}.mx-md-n16{margin-right:-4rem!important;margin-left:-4rem!important}.mx-md-n17{margin-right:-4.25rem!important;margin-left:-4.25rem!important}.mx-md-n18{margin-right:-4.5rem!important;margin-left:-4.5rem!important}.mx-md-n19{margin-right:-4.75rem!important;margin-left:-4.75rem!important}.mx-md-n20{margin-right:-5rem!important;margin-left:-5rem!important}.my-md-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-md-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-md-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-md-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-md-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-md-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-md-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-md-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-md-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-md-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-md-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-md-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-md-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-md-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-md-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-md-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-md-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-md-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-md-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-md-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-md-n1{margin-top:-.25rem!important}.mt-md-n2{margin-top:-.5rem!important}.mt-md-n3{margin-top:-.75rem!important}.mt-md-n4{margin-top:-1rem!important}.mt-md-n5{margin-top:-1.25rem!important}.mt-md-n6{margin-top:-1.5rem!important}.mt-md-n7{margin-top:-1.75rem!important}.mt-md-n8{margin-top:-2rem!important}.mt-md-n9{margin-top:-2.25rem!important}.mt-md-n10{margin-top:-2.5rem!important}.mt-md-n11{margin-top:-2.75rem!important}.mt-md-n12{margin-top:-3rem!important}.mt-md-n13{margin-top:-3.25rem!important}.mt-md-n14{margin-top:-3.5rem!important}.mt-md-n15{margin-top:-3.75rem!important}.mt-md-n16{margin-top:-4rem!important}.mt-md-n17{margin-top:-4.25rem!important}.mt-md-n18{margin-top:-4.5rem!important}.mt-md-n19{margin-top:-4.75rem!important}.mt-md-n20{margin-top:-5rem!important}.me-md-n1{margin-right:-.25rem!important}.me-md-n2{margin-right:-.5rem!important}.me-md-n3{margin-right:-.75rem!important}.me-md-n4{margin-right:-1rem!important}.me-md-n5{margin-right:-1.25rem!important}.me-md-n6{margin-right:-1.5rem!important}.me-md-n7{margin-right:-1.75rem!important}.me-md-n8{margin-right:-2rem!important}.me-md-n9{margin-right:-2.25rem!important}.me-md-n10{margin-right:-2.5rem!important}.me-md-n11{margin-right:-2.75rem!important}.me-md-n12{margin-right:-3rem!important}.me-md-n13{margin-right:-3.25rem!important}.me-md-n14{margin-right:-3.5rem!important}.me-md-n15{margin-right:-3.75rem!important}.me-md-n16{margin-right:-4rem!important}.me-md-n17{margin-right:-4.25rem!important}.me-md-n18{margin-right:-4.5rem!important}.me-md-n19{margin-right:-4.75rem!important}.me-md-n20{margin-right:-5rem!important}.mb-md-n1{margin-bottom:-.25rem!important}.mb-md-n2{margin-bottom:-.5rem!important}.mb-md-n3{margin-bottom:-.75rem!important}.mb-md-n4{margin-bottom:-1rem!important}.mb-md-n5{margin-bottom:-1.25rem!important}.mb-md-n6{margin-bottom:-1.5rem!important}.mb-md-n7{margin-bottom:-1.75rem!important}.mb-md-n8{margin-bottom:-2rem!important}.mb-md-n9{margin-bottom:-2.25rem!important}.mb-md-n10{margin-bottom:-2.5rem!important}.mb-md-n11{margin-bottom:-2.75rem!important}.mb-md-n12{margin-bottom:-3rem!important}.mb-md-n13{margin-bottom:-3.25rem!important}.mb-md-n14{margin-bottom:-3.5rem!important}.mb-md-n15{margin-bottom:-3.75rem!important}.mb-md-n16{margin-bottom:-4rem!important}.mb-md-n17{margin-bottom:-4.25rem!important}.mb-md-n18{margin-bottom:-4.5rem!important}.mb-md-n19{margin-bottom:-4.75rem!important}.mb-md-n20{margin-bottom:-5rem!important}.ms-md-n1{margin-left:-.25rem!important}.ms-md-n2{margin-left:-.5rem!important}.ms-md-n3{margin-left:-.75rem!important}.ms-md-n4{margin-left:-1rem!important}.ms-md-n5{margin-left:-1.25rem!important}.ms-md-n6{margin-left:-1.5rem!important}.ms-md-n7{margin-left:-1.75rem!important}.ms-md-n8{margin-left:-2rem!important}.ms-md-n9{margin-left:-2.25rem!important}.ms-md-n10{margin-left:-2.5rem!important}.ms-md-n11{margin-left:-2.75rem!important}.ms-md-n12{margin-left:-3rem!important}.ms-md-n13{margin-left:-3.25rem!important}.ms-md-n14{margin-left:-3.5rem!important}.ms-md-n15{margin-left:-3.75rem!important}.ms-md-n16{margin-left:-4rem!important}.ms-md-n17{margin-left:-4.25rem!important}.ms-md-n18{margin-left:-4.5rem!important}.ms-md-n19{margin-left:-4.75rem!important}.ms-md-n20{margin-left:-5rem!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:.75rem!important}.p-md-4{padding:1rem!important}.p-md-5{padding:1.25rem!important}.p-md-6{padding:1.5rem!important}.p-md-7{padding:1.75rem!important}.p-md-8{padding:2rem!important}.p-md-9{padding:2.25rem!important}.p-md-10{padding:2.5rem!important}.p-md-11{padding:2.75rem!important}.p-md-12{padding:3rem!important}.p-md-13{padding:3.25rem!important}.p-md-14{padding:3.5rem!important}.p-md-15{padding:3.75rem!important}.p-md-16{padding:4rem!important}.p-md-17{padding:4.25rem!important}.p-md-18{padding:4.5rem!important}.p-md-19{padding:4.75rem!important}.p-md-20{padding:5rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:.75rem!important;padding-left:.75rem!important}.px-md-4{padding-right:1rem!important;padding-left:1rem!important}.px-md-5{padding-right:1.25rem!important;padding-left:1.25rem!important}.px-md-6{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-7{padding-right:1.75rem!important;padding-left:1.75rem!important}.px-md-8{padding-right:2rem!important;padding-left:2rem!important}.px-md-9{padding-right:2.25rem!important;padding-left:2.25rem!important}.px-md-10{padding-right:2.5rem!important;padding-left:2.5rem!important}.px-md-11{padding-right:2.75rem!important;padding-left:2.75rem!important}.px-md-12{padding-right:3rem!important;padding-left:3rem!important}.px-md-13{padding-right:3.25rem!important;padding-left:3.25rem!important}.px-md-14{padding-right:3.5rem!important;padding-left:3.5rem!important}.px-md-15{padding-right:3.75rem!important;padding-left:3.75rem!important}.px-md-16{padding-right:4rem!important;padding-left:4rem!important}.px-md-17{padding-right:4.25rem!important;padding-left:4.25rem!important}.px-md-18{padding-right:4.5rem!important;padding-left:4.5rem!important}.px-md-19{padding-right:4.75rem!important;padding-left:4.75rem!important}.px-md-20{padding-right:5rem!important;padding-left:5rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-md-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-md-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-md-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-md-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-md-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-md-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-md-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-md-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-md-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-md-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-md-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-md-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-md-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-md-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-md-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:.75rem!important}.pt-md-4{padding-top:1rem!important}.pt-md-5{padding-top:1.25rem!important}.pt-md-6{padding-top:1.5rem!important}.pt-md-7{padding-top:1.75rem!important}.pt-md-8{padding-top:2rem!important}.pt-md-9{padding-top:2.25rem!important}.pt-md-10{padding-top:2.5rem!important}.pt-md-11{padding-top:2.75rem!important}.pt-md-12{padding-top:3rem!important}.pt-md-13{padding-top:3.25rem!important}.pt-md-14{padding-top:3.5rem!important}.pt-md-15{padding-top:3.75rem!important}.pt-md-16{padding-top:4rem!important}.pt-md-17{padding-top:4.25rem!important}.pt-md-18{padding-top:4.5rem!important}.pt-md-19{padding-top:4.75rem!important}.pt-md-20{padding-top:5rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:.75rem!important}.pe-md-4{padding-right:1rem!important}.pe-md-5{padding-right:1.25rem!important}.pe-md-6{padding-right:1.5rem!important}.pe-md-7{padding-right:1.75rem!important}.pe-md-8{padding-right:2rem!important}.pe-md-9{padding-right:2.25rem!important}.pe-md-10{padding-right:2.5rem!important}.pe-md-11{padding-right:2.75rem!important}.pe-md-12{padding-right:3rem!important}.pe-md-13{padding-right:3.25rem!important}.pe-md-14{padding-right:3.5rem!important}.pe-md-15{padding-right:3.75rem!important}.pe-md-16{padding-right:4rem!important}.pe-md-17{padding-right:4.25rem!important}.pe-md-18{padding-right:4.5rem!important}.pe-md-19{padding-right:4.75rem!important}.pe-md-20{padding-right:5rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:.75rem!important}.pb-md-4{padding-bottom:1rem!important}.pb-md-5{padding-bottom:1.25rem!important}.pb-md-6{padding-bottom:1.5rem!important}.pb-md-7{padding-bottom:1.75rem!important}.pb-md-8{padding-bottom:2rem!important}.pb-md-9{padding-bottom:2.25rem!important}.pb-md-10{padding-bottom:2.5rem!important}.pb-md-11{padding-bottom:2.75rem!important}.pb-md-12{padding-bottom:3rem!important}.pb-md-13{padding-bottom:3.25rem!important}.pb-md-14{padding-bottom:3.5rem!important}.pb-md-15{padding-bottom:3.75rem!important}.pb-md-16{padding-bottom:4rem!important}.pb-md-17{padding-bottom:4.25rem!important}.pb-md-18{padding-bottom:4.5rem!important}.pb-md-19{padding-bottom:4.75rem!important}.pb-md-20{padding-bottom:5rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:.75rem!important}.ps-md-4{padding-left:1rem!important}.ps-md-5{padding-left:1.25rem!important}.ps-md-6{padding-left:1.5rem!important}.ps-md-7{padding-left:1.75rem!important}.ps-md-8{padding-left:2rem!important}.ps-md-9{padding-left:2.25rem!important}.ps-md-10{padding-left:2.5rem!important}.ps-md-11{padding-left:2.75rem!important}.ps-md-12{padding-left:3rem!important}.ps-md-13{padding-left:3.25rem!important}.ps-md-14{padding-left:3.5rem!important}.ps-md-15{padding-left:3.75rem!important}.ps-md-16{padding-left:4rem!important}.ps-md-17{padding-left:4.25rem!important}.ps-md-18{padding-left:4.5rem!important}.ps-md-19{padding-left:4.75rem!important}.ps-md-20{padding-left:5rem!important}.fs-md-1{font-size:calc(1.3rem + .6vw)!important}.fs-md-2{font-size:calc(1.275rem + .3vw)!important}.fs-md-3{font-size:calc(1.26rem + .12vw)!important}.fs-md-4{font-size:1.25rem!important}.fs-md-5{font-size:1.15rem!important}.fs-md-6{font-size:1.075rem!important}.fs-md-7{font-size:.95rem!important}.fs-md-8{font-size:.85rem!important}.fs-md-9{font-size:.75rem!important}.fs-md-10{font-size:.5rem!important}.fs-md-base{font-size:1rem!important}.fs-md-fluid{font-size:100%!important}.fs-md-2x{font-size:calc(1.325rem + .9vw)!important}.fs-md-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-md-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-md-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-md-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-md-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-md-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-md-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-md-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-md-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-md-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-md-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-md-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-md-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-md-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-md-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}.min-w-md-unset{min-width:unset!important}.min-w-md-25{min-width:25%!important}.min-w-md-50{min-width:50%!important}.min-w-md-75{min-width:75%!important}.min-w-md-100{min-width:100%!important}.min-w-md-auto{min-width:auto!important}.min-w-md-1px{min-width:1px!important}.min-w-md-2px{min-width:2px!important}.min-w-md-3px{min-width:3px!important}.min-w-md-4px{min-width:4px!important}.min-w-md-5px{min-width:5px!important}.min-w-md-6px{min-width:6px!important}.min-w-md-7px{min-width:7px!important}.min-w-md-8px{min-width:8px!important}.min-w-md-9px{min-width:9px!important}.min-w-md-10px{min-width:10px!important}.min-w-md-15px{min-width:15px!important}.min-w-md-20px{min-width:20px!important}.min-w-md-25px{min-width:25px!important}.min-w-md-30px{min-width:30px!important}.min-w-md-35px{min-width:35px!important}.min-w-md-40px{min-width:40px!important}.min-w-md-45px{min-width:45px!important}.min-w-md-50px{min-width:50px!important}.min-w-md-55px{min-width:55px!important}.min-w-md-60px{min-width:60px!important}.min-w-md-65px{min-width:65px!important}.min-w-md-70px{min-width:70px!important}.min-w-md-75px{min-width:75px!important}.min-w-md-80px{min-width:80px!important}.min-w-md-85px{min-width:85px!important}.min-w-md-90px{min-width:90px!important}.min-w-md-95px{min-width:95px!important}.min-w-md-100px{min-width:100px!important}.min-w-md-125px{min-width:125px!important}.min-w-md-150px{min-width:150px!important}.min-w-md-175px{min-width:175px!important}.min-w-md-200px{min-width:200px!important}.min-w-md-225px{min-width:225px!important}.min-w-md-250px{min-width:250px!important}.min-w-md-275px{min-width:275px!important}.min-w-md-300px{min-width:300px!important}.min-w-md-325px{min-width:325px!important}.min-w-md-350px{min-width:350px!important}.min-w-md-375px{min-width:375px!important}.min-w-md-400px{min-width:400px!important}.min-w-md-425px{min-width:425px!important}.min-w-md-450px{min-width:450px!important}.min-w-md-475px{min-width:475px!important}.min-w-md-500px{min-width:500px!important}.min-w-md-550px{min-width:550px!important}.min-w-md-600px{min-width:600px!important}.min-w-md-650px{min-width:650px!important}.min-w-md-700px{min-width:700px!important}.min-w-md-750px{min-width:750px!important}.min-w-md-800px{min-width:800px!important}.min-w-md-850px{min-width:850px!important}.min-w-md-900px{min-width:900px!important}.min-w-md-950px{min-width:950px!important}.min-w-md-1000px{min-width:1000px!important}.min-h-md-unset{min-height:unset!important}.min-h-md-25{min-height:25%!important}.min-h-md-50{min-height:50%!important}.min-h-md-75{min-height:75%!important}.min-h-md-100{min-height:100%!important}.min-h-md-auto{min-height:auto!important}.min-h-md-1px{min-height:1px!important}.min-h-md-2px{min-height:2px!important}.min-h-md-3px{min-height:3px!important}.min-h-md-4px{min-height:4px!important}.min-h-md-5px{min-height:5px!important}.min-h-md-6px{min-height:6px!important}.min-h-md-7px{min-height:7px!important}.min-h-md-8px{min-height:8px!important}.min-h-md-9px{min-height:9px!important}.min-h-md-10px{min-height:10px!important}.min-h-md-15px{min-height:15px!important}.min-h-md-20px{min-height:20px!important}.min-h-md-25px{min-height:25px!important}.min-h-md-30px{min-height:30px!important}.min-h-md-35px{min-height:35px!important}.min-h-md-40px{min-height:40px!important}.min-h-md-45px{min-height:45px!important}.min-h-md-50px{min-height:50px!important}.min-h-md-55px{min-height:55px!important}.min-h-md-60px{min-height:60px!important}.min-h-md-65px{min-height:65px!important}.min-h-md-70px{min-height:70px!important}.min-h-md-75px{min-height:75px!important}.min-h-md-80px{min-height:80px!important}.min-h-md-85px{min-height:85px!important}.min-h-md-90px{min-height:90px!important}.min-h-md-95px{min-height:95px!important}.min-h-md-100px{min-height:100px!important}.min-h-md-125px{min-height:125px!important}.min-h-md-150px{min-height:150px!important}.min-h-md-175px{min-height:175px!important}.min-h-md-200px{min-height:200px!important}.min-h-md-225px{min-height:225px!important}.min-h-md-250px{min-height:250px!important}.min-h-md-275px{min-height:275px!important}.min-h-md-300px{min-height:300px!important}.min-h-md-325px{min-height:325px!important}.min-h-md-350px{min-height:350px!important}.min-h-md-375px{min-height:375px!important}.min-h-md-400px{min-height:400px!important}.min-h-md-425px{min-height:425px!important}.min-h-md-450px{min-height:450px!important}.min-h-md-475px{min-height:475px!important}.min-h-md-500px{min-height:500px!important}.min-h-md-550px{min-height:550px!important}.min-h-md-600px{min-height:600px!important}.min-h-md-650px{min-height:650px!important}.min-h-md-700px{min-height:700px!important}.min-h-md-750px{min-height:750px!important}.min-h-md-800px{min-height:800px!important}.min-h-md-850px{min-height:850px!important}.min-h-md-900px{min-height:900px!important}.min-h-md-950px{min-height:950px!important}.min-h-md-1000px{min-height:1000px!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!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}.d-lg-none{display:none!important}.position-lg-static{position:static!important}.position-lg-relative{position:relative!important}.position-lg-absolute{position:absolute!important}.position-lg-fixed{position:fixed!important}.position-lg-sticky{position:sticky!important}.w-lg-unset{width:unset!important}.w-lg-25{width:25%!important}.w-lg-50{width:50%!important}.w-lg-75{width:75%!important}.w-lg-100{width:100%!important}.w-lg-auto{width:auto!important}.w-lg-1px{width:1px!important}.w-lg-2px{width:2px!important}.w-lg-3px{width:3px!important}.w-lg-4px{width:4px!important}.w-lg-5px{width:5px!important}.w-lg-6px{width:6px!important}.w-lg-7px{width:7px!important}.w-lg-8px{width:8px!important}.w-lg-9px{width:9px!important}.w-lg-10px{width:10px!important}.w-lg-15px{width:15px!important}.w-lg-20px{width:20px!important}.w-lg-25px{width:25px!important}.w-lg-30px{width:30px!important}.w-lg-35px{width:35px!important}.w-lg-40px{width:40px!important}.w-lg-45px{width:45px!important}.w-lg-50px{width:50px!important}.w-lg-55px{width:55px!important}.w-lg-60px{width:60px!important}.w-lg-65px{width:65px!important}.w-lg-70px{width:70px!important}.w-lg-75px{width:75px!important}.w-lg-80px{width:80px!important}.w-lg-85px{width:85px!important}.w-lg-90px{width:90px!important}.w-lg-95px{width:95px!important}.w-lg-100px{width:100px!important}.w-lg-125px{width:125px!important}.w-lg-150px{width:150px!important}.w-lg-175px{width:175px!important}.w-lg-200px{width:200px!important}.w-lg-225px{width:225px!important}.w-lg-250px{width:250px!important}.w-lg-275px{width:275px!important}.w-lg-300px{width:300px!important}.w-lg-325px{width:325px!important}.w-lg-350px{width:350px!important}.w-lg-375px{width:375px!important}.w-lg-400px{width:400px!important}.w-lg-425px{width:425px!important}.w-lg-450px{width:450px!important}.w-lg-475px{width:475px!important}.w-lg-500px{width:500px!important}.w-lg-550px{width:550px!important}.w-lg-600px{width:600px!important}.w-lg-650px{width:650px!important}.w-lg-700px{width:700px!important}.w-lg-750px{width:750px!important}.w-lg-800px{width:800px!important}.w-lg-850px{width:850px!important}.w-lg-900px{width:900px!important}.w-lg-950px{width:950px!important}.w-lg-1000px{width:1000px!important}.mw-lg-unset{max-width:unset!important}.mw-lg-25{max-width:25%!important}.mw-lg-50{max-width:50%!important}.mw-lg-75{max-width:75%!important}.mw-lg-100{max-width:100%!important}.mw-lg-auto{max-width:auto!important}.mw-lg-1px{max-width:1px!important}.mw-lg-2px{max-width:2px!important}.mw-lg-3px{max-width:3px!important}.mw-lg-4px{max-width:4px!important}.mw-lg-5px{max-width:5px!important}.mw-lg-6px{max-width:6px!important}.mw-lg-7px{max-width:7px!important}.mw-lg-8px{max-width:8px!important}.mw-lg-9px{max-width:9px!important}.mw-lg-10px{max-width:10px!important}.mw-lg-15px{max-width:15px!important}.mw-lg-20px{max-width:20px!important}.mw-lg-25px{max-width:25px!important}.mw-lg-30px{max-width:30px!important}.mw-lg-35px{max-width:35px!important}.mw-lg-40px{max-width:40px!important}.mw-lg-45px{max-width:45px!important}.mw-lg-50px{max-width:50px!important}.mw-lg-55px{max-width:55px!important}.mw-lg-60px{max-width:60px!important}.mw-lg-65px{max-width:65px!important}.mw-lg-70px{max-width:70px!important}.mw-lg-75px{max-width:75px!important}.mw-lg-80px{max-width:80px!important}.mw-lg-85px{max-width:85px!important}.mw-lg-90px{max-width:90px!important}.mw-lg-95px{max-width:95px!important}.mw-lg-100px{max-width:100px!important}.mw-lg-125px{max-width:125px!important}.mw-lg-150px{max-width:150px!important}.mw-lg-175px{max-width:175px!important}.mw-lg-200px{max-width:200px!important}.mw-lg-225px{max-width:225px!important}.mw-lg-250px{max-width:250px!important}.mw-lg-275px{max-width:275px!important}.mw-lg-300px{max-width:300px!important}.mw-lg-325px{max-width:325px!important}.mw-lg-350px{max-width:350px!important}.mw-lg-375px{max-width:375px!important}.mw-lg-400px{max-width:400px!important}.mw-lg-425px{max-width:425px!important}.mw-lg-450px{max-width:450px!important}.mw-lg-475px{max-width:475px!important}.mw-lg-500px{max-width:500px!important}.mw-lg-550px{max-width:550px!important}.mw-lg-600px{max-width:600px!important}.mw-lg-650px{max-width:650px!important}.mw-lg-700px{max-width:700px!important}.mw-lg-750px{max-width:750px!important}.mw-lg-800px{max-width:800px!important}.mw-lg-850px{max-width:850px!important}.mw-lg-900px{max-width:900px!important}.mw-lg-950px{max-width:950px!important}.mw-lg-1000px{max-width:1000px!important}.h-lg-unset{height:unset!important}.h-lg-25{height:25%!important}.h-lg-50{height:50%!important}.h-lg-75{height:75%!important}.h-lg-100{height:100%!important}.h-lg-auto{height:auto!important}.h-lg-1px{height:1px!important}.h-lg-2px{height:2px!important}.h-lg-3px{height:3px!important}.h-lg-4px{height:4px!important}.h-lg-5px{height:5px!important}.h-lg-6px{height:6px!important}.h-lg-7px{height:7px!important}.h-lg-8px{height:8px!important}.h-lg-9px{height:9px!important}.h-lg-10px{height:10px!important}.h-lg-15px{height:15px!important}.h-lg-20px{height:20px!important}.h-lg-25px{height:25px!important}.h-lg-30px{height:30px!important}.h-lg-35px{height:35px!important}.h-lg-40px{height:40px!important}.h-lg-45px{height:45px!important}.h-lg-50px{height:50px!important}.h-lg-55px{height:55px!important}.h-lg-60px{height:60px!important}.h-lg-65px{height:65px!important}.h-lg-70px{height:70px!important}.h-lg-75px{height:75px!important}.h-lg-80px{height:80px!important}.h-lg-85px{height:85px!important}.h-lg-90px{height:90px!important}.h-lg-95px{height:95px!important}.h-lg-100px{height:100px!important}.h-lg-125px{height:125px!important}.h-lg-150px{height:150px!important}.h-lg-175px{height:175px!important}.h-lg-200px{height:200px!important}.h-lg-225px{height:225px!important}.h-lg-250px{height:250px!important}.h-lg-275px{height:275px!important}.h-lg-300px{height:300px!important}.h-lg-325px{height:325px!important}.h-lg-350px{height:350px!important}.h-lg-375px{height:375px!important}.h-lg-400px{height:400px!important}.h-lg-425px{height:425px!important}.h-lg-450px{height:450px!important}.h-lg-475px{height:475px!important}.h-lg-500px{height:500px!important}.h-lg-550px{height:550px!important}.h-lg-600px{height:600px!important}.h-lg-650px{height:650px!important}.h-lg-700px{height:700px!important}.h-lg-750px{height:750px!important}.h-lg-800px{height:800px!important}.h-lg-850px{height:850px!important}.h-lg-900px{height:900px!important}.h-lg-950px{height:950px!important}.h-lg-1000px{height:1000px!important}.mh-lg-unset{max-height:unset!important}.mh-lg-25{max-height:25%!important}.mh-lg-50{max-height:50%!important}.mh-lg-75{max-height:75%!important}.mh-lg-100{max-height:100%!important}.mh-lg-auto{max-height:auto!important}.mh-lg-1px{max-height:1px!important}.mh-lg-2px{max-height:2px!important}.mh-lg-3px{max-height:3px!important}.mh-lg-4px{max-height:4px!important}.mh-lg-5px{max-height:5px!important}.mh-lg-6px{max-height:6px!important}.mh-lg-7px{max-height:7px!important}.mh-lg-8px{max-height:8px!important}.mh-lg-9px{max-height:9px!important}.mh-lg-10px{max-height:10px!important}.mh-lg-15px{max-height:15px!important}.mh-lg-20px{max-height:20px!important}.mh-lg-25px{max-height:25px!important}.mh-lg-30px{max-height:30px!important}.mh-lg-35px{max-height:35px!important}.mh-lg-40px{max-height:40px!important}.mh-lg-45px{max-height:45px!important}.mh-lg-50px{max-height:50px!important}.mh-lg-55px{max-height:55px!important}.mh-lg-60px{max-height:60px!important}.mh-lg-65px{max-height:65px!important}.mh-lg-70px{max-height:70px!important}.mh-lg-75px{max-height:75px!important}.mh-lg-80px{max-height:80px!important}.mh-lg-85px{max-height:85px!important}.mh-lg-90px{max-height:90px!important}.mh-lg-95px{max-height:95px!important}.mh-lg-100px{max-height:100px!important}.mh-lg-125px{max-height:125px!important}.mh-lg-150px{max-height:150px!important}.mh-lg-175px{max-height:175px!important}.mh-lg-200px{max-height:200px!important}.mh-lg-225px{max-height:225px!important}.mh-lg-250px{max-height:250px!important}.mh-lg-275px{max-height:275px!important}.mh-lg-300px{max-height:300px!important}.mh-lg-325px{max-height:325px!important}.mh-lg-350px{max-height:350px!important}.mh-lg-375px{max-height:375px!important}.mh-lg-400px{max-height:400px!important}.mh-lg-425px{max-height:425px!important}.mh-lg-450px{max-height:450px!important}.mh-lg-475px{max-height:475px!important}.mh-lg-500px{max-height:500px!important}.mh-lg-550px{max-height:550px!important}.mh-lg-600px{max-height:600px!important}.mh-lg-650px{max-height:650px!important}.mh-lg-700px{max-height:700px!important}.mh-lg-750px{max-height:750px!important}.mh-lg-800px{max-height:800px!important}.mh-lg-850px{max-height:850px!important}.mh-lg-900px{max-height:900px!important}.mh-lg-950px{max-height:950px!important}.mh-lg-1000px{max-height:1000px!important}.flex-lg-fill{flex:1 1 auto!important}.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-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}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:.75rem!important}.gap-lg-4{gap:1rem!important}.gap-lg-5{gap:1.25rem!important}.gap-lg-6{gap:1.5rem!important}.gap-lg-7{gap:1.75rem!important}.gap-lg-8{gap:2rem!important}.gap-lg-9{gap:2.25rem!important}.gap-lg-10{gap:2.5rem!important}.gap-lg-11{gap:2.75rem!important}.gap-lg-12{gap:3rem!important}.gap-lg-13{gap:3.25rem!important}.gap-lg-14{gap:3.5rem!important}.gap-lg-15{gap:3.75rem!important}.gap-lg-16{gap:4rem!important}.gap-lg-17{gap:4.25rem!important}.gap-lg-18{gap:4.5rem!important}.gap-lg-19{gap:4.75rem!important}.gap-lg-20{gap:5rem!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}.justify-content-lg-evenly{justify-content:space-evenly!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}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:.75rem!important}.m-lg-4{margin:1rem!important}.m-lg-5{margin:1.25rem!important}.m-lg-6{margin:1.5rem!important}.m-lg-7{margin:1.75rem!important}.m-lg-8{margin:2rem!important}.m-lg-9{margin:2.25rem!important}.m-lg-10{margin:2.5rem!important}.m-lg-11{margin:2.75rem!important}.m-lg-12{margin:3rem!important}.m-lg-13{margin:3.25rem!important}.m-lg-14{margin:3.5rem!important}.m-lg-15{margin:3.75rem!important}.m-lg-16{margin:4rem!important}.m-lg-17{margin:4.25rem!important}.m-lg-18{margin:4.5rem!important}.m-lg-19{margin:4.75rem!important}.m-lg-20{margin:5rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:.75rem!important;margin-left:.75rem!important}.mx-lg-4{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-5{margin-right:1.25rem!important;margin-left:1.25rem!important}.mx-lg-6{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-7{margin-right:1.75rem!important;margin-left:1.75rem!important}.mx-lg-8{margin-right:2rem!important;margin-left:2rem!important}.mx-lg-9{margin-right:2.25rem!important;margin-left:2.25rem!important}.mx-lg-10{margin-right:2.5rem!important;margin-left:2.5rem!important}.mx-lg-11{margin-right:2.75rem!important;margin-left:2.75rem!important}.mx-lg-12{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-13{margin-right:3.25rem!important;margin-left:3.25rem!important}.mx-lg-14{margin-right:3.5rem!important;margin-left:3.5rem!important}.mx-lg-15{margin-right:3.75rem!important;margin-left:3.75rem!important}.mx-lg-16{margin-right:4rem!important;margin-left:4rem!important}.mx-lg-17{margin-right:4.25rem!important;margin-left:4.25rem!important}.mx-lg-18{margin-right:4.5rem!important;margin-left:4.5rem!important}.mx-lg-19{margin-right:4.75rem!important;margin-left:4.75rem!important}.mx-lg-20{margin-right:5rem!important;margin-left:5rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-lg-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-lg-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-lg-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-lg-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-lg-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-lg-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-lg-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-lg-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-lg-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-lg-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-lg-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-lg-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-lg-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-lg-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:.75rem!important}.mt-lg-4{margin-top:1rem!important}.mt-lg-5{margin-top:1.25rem!important}.mt-lg-6{margin-top:1.5rem!important}.mt-lg-7{margin-top:1.75rem!important}.mt-lg-8{margin-top:2rem!important}.mt-lg-9{margin-top:2.25rem!important}.mt-lg-10{margin-top:2.5rem!important}.mt-lg-11{margin-top:2.75rem!important}.mt-lg-12{margin-top:3rem!important}.mt-lg-13{margin-top:3.25rem!important}.mt-lg-14{margin-top:3.5rem!important}.mt-lg-15{margin-top:3.75rem!important}.mt-lg-16{margin-top:4rem!important}.mt-lg-17{margin-top:4.25rem!important}.mt-lg-18{margin-top:4.5rem!important}.mt-lg-19{margin-top:4.75rem!important}.mt-lg-20{margin-top:5rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:.75rem!important}.me-lg-4{margin-right:1rem!important}.me-lg-5{margin-right:1.25rem!important}.me-lg-6{margin-right:1.5rem!important}.me-lg-7{margin-right:1.75rem!important}.me-lg-8{margin-right:2rem!important}.me-lg-9{margin-right:2.25rem!important}.me-lg-10{margin-right:2.5rem!important}.me-lg-11{margin-right:2.75rem!important}.me-lg-12{margin-right:3rem!important}.me-lg-13{margin-right:3.25rem!important}.me-lg-14{margin-right:3.5rem!important}.me-lg-15{margin-right:3.75rem!important}.me-lg-16{margin-right:4rem!important}.me-lg-17{margin-right:4.25rem!important}.me-lg-18{margin-right:4.5rem!important}.me-lg-19{margin-right:4.75rem!important}.me-lg-20{margin-right:5rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:.75rem!important}.mb-lg-4{margin-bottom:1rem!important}.mb-lg-5{margin-bottom:1.25rem!important}.mb-lg-6{margin-bottom:1.5rem!important}.mb-lg-7{margin-bottom:1.75rem!important}.mb-lg-8{margin-bottom:2rem!important}.mb-lg-9{margin-bottom:2.25rem!important}.mb-lg-10{margin-bottom:2.5rem!important}.mb-lg-11{margin-bottom:2.75rem!important}.mb-lg-12{margin-bottom:3rem!important}.mb-lg-13{margin-bottom:3.25rem!important}.mb-lg-14{margin-bottom:3.5rem!important}.mb-lg-15{margin-bottom:3.75rem!important}.mb-lg-16{margin-bottom:4rem!important}.mb-lg-17{margin-bottom:4.25rem!important}.mb-lg-18{margin-bottom:4.5rem!important}.mb-lg-19{margin-bottom:4.75rem!important}.mb-lg-20{margin-bottom:5rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:.75rem!important}.ms-lg-4{margin-left:1rem!important}.ms-lg-5{margin-left:1.25rem!important}.ms-lg-6{margin-left:1.5rem!important}.ms-lg-7{margin-left:1.75rem!important}.ms-lg-8{margin-left:2rem!important}.ms-lg-9{margin-left:2.25rem!important}.ms-lg-10{margin-left:2.5rem!important}.ms-lg-11{margin-left:2.75rem!important}.ms-lg-12{margin-left:3rem!important}.ms-lg-13{margin-left:3.25rem!important}.ms-lg-14{margin-left:3.5rem!important}.ms-lg-15{margin-left:3.75rem!important}.ms-lg-16{margin-left:4rem!important}.ms-lg-17{margin-left:4.25rem!important}.ms-lg-18{margin-left:4.5rem!important}.ms-lg-19{margin-left:4.75rem!important}.ms-lg-20{margin-left:5rem!important}.ms-lg-auto{margin-left:auto!important}.m-lg-n1{margin:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.m-lg-n3{margin:-.75rem!important}.m-lg-n4{margin:-1rem!important}.m-lg-n5{margin:-1.25rem!important}.m-lg-n6{margin:-1.5rem!important}.m-lg-n7{margin:-1.75rem!important}.m-lg-n8{margin:-2rem!important}.m-lg-n9{margin:-2.25rem!important}.m-lg-n10{margin:-2.5rem!important}.m-lg-n11{margin:-2.75rem!important}.m-lg-n12{margin:-3rem!important}.m-lg-n13{margin:-3.25rem!important}.m-lg-n14{margin:-3.5rem!important}.m-lg-n15{margin:-3.75rem!important}.m-lg-n16{margin:-4rem!important}.m-lg-n17{margin:-4.25rem!important}.m-lg-n18{margin:-4.5rem!important}.m-lg-n19{margin:-4.75rem!important}.m-lg-n20{margin:-5rem!important}.mx-lg-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-lg-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-lg-n3{margin-right:-.75rem!important;margin-left:-.75rem!important}.mx-lg-n4{margin-right:-1rem!important;margin-left:-1rem!important}.mx-lg-n5{margin-right:-1.25rem!important;margin-left:-1.25rem!important}.mx-lg-n6{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-lg-n7{margin-right:-1.75rem!important;margin-left:-1.75rem!important}.mx-lg-n8{margin-right:-2rem!important;margin-left:-2rem!important}.mx-lg-n9{margin-right:-2.25rem!important;margin-left:-2.25rem!important}.mx-lg-n10{margin-right:-2.5rem!important;margin-left:-2.5rem!important}.mx-lg-n11{margin-right:-2.75rem!important;margin-left:-2.75rem!important}.mx-lg-n12{margin-right:-3rem!important;margin-left:-3rem!important}.mx-lg-n13{margin-right:-3.25rem!important;margin-left:-3.25rem!important}.mx-lg-n14{margin-right:-3.5rem!important;margin-left:-3.5rem!important}.mx-lg-n15{margin-right:-3.75rem!important;margin-left:-3.75rem!important}.mx-lg-n16{margin-right:-4rem!important;margin-left:-4rem!important}.mx-lg-n17{margin-right:-4.25rem!important;margin-left:-4.25rem!important}.mx-lg-n18{margin-right:-4.5rem!important;margin-left:-4.5rem!important}.mx-lg-n19{margin-right:-4.75rem!important;margin-left:-4.75rem!important}.mx-lg-n20{margin-right:-5rem!important;margin-left:-5rem!important}.my-lg-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-lg-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-lg-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-lg-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-lg-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-lg-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-lg-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-lg-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-lg-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-lg-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-lg-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-lg-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-lg-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-lg-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-lg-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-lg-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-lg-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-lg-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-lg-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-lg-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-lg-n1{margin-top:-.25rem!important}.mt-lg-n2{margin-top:-.5rem!important}.mt-lg-n3{margin-top:-.75rem!important}.mt-lg-n4{margin-top:-1rem!important}.mt-lg-n5{margin-top:-1.25rem!important}.mt-lg-n6{margin-top:-1.5rem!important}.mt-lg-n7{margin-top:-1.75rem!important}.mt-lg-n8{margin-top:-2rem!important}.mt-lg-n9{margin-top:-2.25rem!important}.mt-lg-n10{margin-top:-2.5rem!important}.mt-lg-n11{margin-top:-2.75rem!important}.mt-lg-n12{margin-top:-3rem!important}.mt-lg-n13{margin-top:-3.25rem!important}.mt-lg-n14{margin-top:-3.5rem!important}.mt-lg-n15{margin-top:-3.75rem!important}.mt-lg-n16{margin-top:-4rem!important}.mt-lg-n17{margin-top:-4.25rem!important}.mt-lg-n18{margin-top:-4.5rem!important}.mt-lg-n19{margin-top:-4.75rem!important}.mt-lg-n20{margin-top:-5rem!important}.me-lg-n1{margin-right:-.25rem!important}.me-lg-n2{margin-right:-.5rem!important}.me-lg-n3{margin-right:-.75rem!important}.me-lg-n4{margin-right:-1rem!important}.me-lg-n5{margin-right:-1.25rem!important}.me-lg-n6{margin-right:-1.5rem!important}.me-lg-n7{margin-right:-1.75rem!important}.me-lg-n8{margin-right:-2rem!important}.me-lg-n9{margin-right:-2.25rem!important}.me-lg-n10{margin-right:-2.5rem!important}.me-lg-n11{margin-right:-2.75rem!important}.me-lg-n12{margin-right:-3rem!important}.me-lg-n13{margin-right:-3.25rem!important}.me-lg-n14{margin-right:-3.5rem!important}.me-lg-n15{margin-right:-3.75rem!important}.me-lg-n16{margin-right:-4rem!important}.me-lg-n17{margin-right:-4.25rem!important}.me-lg-n18{margin-right:-4.5rem!important}.me-lg-n19{margin-right:-4.75rem!important}.me-lg-n20{margin-right:-5rem!important}.mb-lg-n1{margin-bottom:-.25rem!important}.mb-lg-n2{margin-bottom:-.5rem!important}.mb-lg-n3{margin-bottom:-.75rem!important}.mb-lg-n4{margin-bottom:-1rem!important}.mb-lg-n5{margin-bottom:-1.25rem!important}.mb-lg-n6{margin-bottom:-1.5rem!important}.mb-lg-n7{margin-bottom:-1.75rem!important}.mb-lg-n8{margin-bottom:-2rem!important}.mb-lg-n9{margin-bottom:-2.25rem!important}.mb-lg-n10{margin-bottom:-2.5rem!important}.mb-lg-n11{margin-bottom:-2.75rem!important}.mb-lg-n12{margin-bottom:-3rem!important}.mb-lg-n13{margin-bottom:-3.25rem!important}.mb-lg-n14{margin-bottom:-3.5rem!important}.mb-lg-n15{margin-bottom:-3.75rem!important}.mb-lg-n16{margin-bottom:-4rem!important}.mb-lg-n17{margin-bottom:-4.25rem!important}.mb-lg-n18{margin-bottom:-4.5rem!important}.mb-lg-n19{margin-bottom:-4.75rem!important}.mb-lg-n20{margin-bottom:-5rem!important}.ms-lg-n1{margin-left:-.25rem!important}.ms-lg-n2{margin-left:-.5rem!important}.ms-lg-n3{margin-left:-.75rem!important}.ms-lg-n4{margin-left:-1rem!important}.ms-lg-n5{margin-left:-1.25rem!important}.ms-lg-n6{margin-left:-1.5rem!important}.ms-lg-n7{margin-left:-1.75rem!important}.ms-lg-n8{margin-left:-2rem!important}.ms-lg-n9{margin-left:-2.25rem!important}.ms-lg-n10{margin-left:-2.5rem!important}.ms-lg-n11{margin-left:-2.75rem!important}.ms-lg-n12{margin-left:-3rem!important}.ms-lg-n13{margin-left:-3.25rem!important}.ms-lg-n14{margin-left:-3.5rem!important}.ms-lg-n15{margin-left:-3.75rem!important}.ms-lg-n16{margin-left:-4rem!important}.ms-lg-n17{margin-left:-4.25rem!important}.ms-lg-n18{margin-left:-4.5rem!important}.ms-lg-n19{margin-left:-4.75rem!important}.ms-lg-n20{margin-left:-5rem!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:.75rem!important}.p-lg-4{padding:1rem!important}.p-lg-5{padding:1.25rem!important}.p-lg-6{padding:1.5rem!important}.p-lg-7{padding:1.75rem!important}.p-lg-8{padding:2rem!important}.p-lg-9{padding:2.25rem!important}.p-lg-10{padding:2.5rem!important}.p-lg-11{padding:2.75rem!important}.p-lg-12{padding:3rem!important}.p-lg-13{padding:3.25rem!important}.p-lg-14{padding:3.5rem!important}.p-lg-15{padding:3.75rem!important}.p-lg-16{padding:4rem!important}.p-lg-17{padding:4.25rem!important}.p-lg-18{padding:4.5rem!important}.p-lg-19{padding:4.75rem!important}.p-lg-20{padding:5rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:.75rem!important;padding-left:.75rem!important}.px-lg-4{padding-right:1rem!important;padding-left:1rem!important}.px-lg-5{padding-right:1.25rem!important;padding-left:1.25rem!important}.px-lg-6{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-7{padding-right:1.75rem!important;padding-left:1.75rem!important}.px-lg-8{padding-right:2rem!important;padding-left:2rem!important}.px-lg-9{padding-right:2.25rem!important;padding-left:2.25rem!important}.px-lg-10{padding-right:2.5rem!important;padding-left:2.5rem!important}.px-lg-11{padding-right:2.75rem!important;padding-left:2.75rem!important}.px-lg-12{padding-right:3rem!important;padding-left:3rem!important}.px-lg-13{padding-right:3.25rem!important;padding-left:3.25rem!important}.px-lg-14{padding-right:3.5rem!important;padding-left:3.5rem!important}.px-lg-15{padding-right:3.75rem!important;padding-left:3.75rem!important}.px-lg-16{padding-right:4rem!important;padding-left:4rem!important}.px-lg-17{padding-right:4.25rem!important;padding-left:4.25rem!important}.px-lg-18{padding-right:4.5rem!important;padding-left:4.5rem!important}.px-lg-19{padding-right:4.75rem!important;padding-left:4.75rem!important}.px-lg-20{padding-right:5rem!important;padding-left:5rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-lg-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-lg-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-lg-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-lg-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-lg-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-lg-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-lg-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-lg-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-lg-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-lg-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-lg-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-lg-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-lg-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-lg-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-lg-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:.75rem!important}.pt-lg-4{padding-top:1rem!important}.pt-lg-5{padding-top:1.25rem!important}.pt-lg-6{padding-top:1.5rem!important}.pt-lg-7{padding-top:1.75rem!important}.pt-lg-8{padding-top:2rem!important}.pt-lg-9{padding-top:2.25rem!important}.pt-lg-10{padding-top:2.5rem!important}.pt-lg-11{padding-top:2.75rem!important}.pt-lg-12{padding-top:3rem!important}.pt-lg-13{padding-top:3.25rem!important}.pt-lg-14{padding-top:3.5rem!important}.pt-lg-15{padding-top:3.75rem!important}.pt-lg-16{padding-top:4rem!important}.pt-lg-17{padding-top:4.25rem!important}.pt-lg-18{padding-top:4.5rem!important}.pt-lg-19{padding-top:4.75rem!important}.pt-lg-20{padding-top:5rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:.75rem!important}.pe-lg-4{padding-right:1rem!important}.pe-lg-5{padding-right:1.25rem!important}.pe-lg-6{padding-right:1.5rem!important}.pe-lg-7{padding-right:1.75rem!important}.pe-lg-8{padding-right:2rem!important}.pe-lg-9{padding-right:2.25rem!important}.pe-lg-10{padding-right:2.5rem!important}.pe-lg-11{padding-right:2.75rem!important}.pe-lg-12{padding-right:3rem!important}.pe-lg-13{padding-right:3.25rem!important}.pe-lg-14{padding-right:3.5rem!important}.pe-lg-15{padding-right:3.75rem!important}.pe-lg-16{padding-right:4rem!important}.pe-lg-17{padding-right:4.25rem!important}.pe-lg-18{padding-right:4.5rem!important}.pe-lg-19{padding-right:4.75rem!important}.pe-lg-20{padding-right:5rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:.75rem!important}.pb-lg-4{padding-bottom:1rem!important}.pb-lg-5{padding-bottom:1.25rem!important}.pb-lg-6{padding-bottom:1.5rem!important}.pb-lg-7{padding-bottom:1.75rem!important}.pb-lg-8{padding-bottom:2rem!important}.pb-lg-9{padding-bottom:2.25rem!important}.pb-lg-10{padding-bottom:2.5rem!important}.pb-lg-11{padding-bottom:2.75rem!important}.pb-lg-12{padding-bottom:3rem!important}.pb-lg-13{padding-bottom:3.25rem!important}.pb-lg-14{padding-bottom:3.5rem!important}.pb-lg-15{padding-bottom:3.75rem!important}.pb-lg-16{padding-bottom:4rem!important}.pb-lg-17{padding-bottom:4.25rem!important}.pb-lg-18{padding-bottom:4.5rem!important}.pb-lg-19{padding-bottom:4.75rem!important}.pb-lg-20{padding-bottom:5rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:.75rem!important}.ps-lg-4{padding-left:1rem!important}.ps-lg-5{padding-left:1.25rem!important}.ps-lg-6{padding-left:1.5rem!important}.ps-lg-7{padding-left:1.75rem!important}.ps-lg-8{padding-left:2rem!important}.ps-lg-9{padding-left:2.25rem!important}.ps-lg-10{padding-left:2.5rem!important}.ps-lg-11{padding-left:2.75rem!important}.ps-lg-12{padding-left:3rem!important}.ps-lg-13{padding-left:3.25rem!important}.ps-lg-14{padding-left:3.5rem!important}.ps-lg-15{padding-left:3.75rem!important}.ps-lg-16{padding-left:4rem!important}.ps-lg-17{padding-left:4.25rem!important}.ps-lg-18{padding-left:4.5rem!important}.ps-lg-19{padding-left:4.75rem!important}.ps-lg-20{padding-left:5rem!important}.fs-lg-1{font-size:calc(1.3rem + .6vw)!important}.fs-lg-2{font-size:calc(1.275rem + .3vw)!important}.fs-lg-3{font-size:calc(1.26rem + .12vw)!important}.fs-lg-4{font-size:1.25rem!important}.fs-lg-5{font-size:1.15rem!important}.fs-lg-6{font-size:1.075rem!important}.fs-lg-7{font-size:.95rem!important}.fs-lg-8{font-size:.85rem!important}.fs-lg-9{font-size:.75rem!important}.fs-lg-10{font-size:.5rem!important}.fs-lg-base{font-size:1rem!important}.fs-lg-fluid{font-size:100%!important}.fs-lg-2x{font-size:calc(1.325rem + .9vw)!important}.fs-lg-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-lg-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-lg-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-lg-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-lg-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-lg-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-lg-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-lg-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-lg-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-lg-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-lg-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-lg-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-lg-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-lg-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-lg-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}.min-w-lg-unset{min-width:unset!important}.min-w-lg-25{min-width:25%!important}.min-w-lg-50{min-width:50%!important}.min-w-lg-75{min-width:75%!important}.min-w-lg-100{min-width:100%!important}.min-w-lg-auto{min-width:auto!important}.min-w-lg-1px{min-width:1px!important}.min-w-lg-2px{min-width:2px!important}.min-w-lg-3px{min-width:3px!important}.min-w-lg-4px{min-width:4px!important}.min-w-lg-5px{min-width:5px!important}.min-w-lg-6px{min-width:6px!important}.min-w-lg-7px{min-width:7px!important}.min-w-lg-8px{min-width:8px!important}.min-w-lg-9px{min-width:9px!important}.min-w-lg-10px{min-width:10px!important}.min-w-lg-15px{min-width:15px!important}.min-w-lg-20px{min-width:20px!important}.min-w-lg-25px{min-width:25px!important}.min-w-lg-30px{min-width:30px!important}.min-w-lg-35px{min-width:35px!important}.min-w-lg-40px{min-width:40px!important}.min-w-lg-45px{min-width:45px!important}.min-w-lg-50px{min-width:50px!important}.min-w-lg-55px{min-width:55px!important}.min-w-lg-60px{min-width:60px!important}.min-w-lg-65px{min-width:65px!important}.min-w-lg-70px{min-width:70px!important}.min-w-lg-75px{min-width:75px!important}.min-w-lg-80px{min-width:80px!important}.min-w-lg-85px{min-width:85px!important}.min-w-lg-90px{min-width:90px!important}.min-w-lg-95px{min-width:95px!important}.min-w-lg-100px{min-width:100px!important}.min-w-lg-125px{min-width:125px!important}.min-w-lg-150px{min-width:150px!important}.min-w-lg-175px{min-width:175px!important}.min-w-lg-200px{min-width:200px!important}.min-w-lg-225px{min-width:225px!important}.min-w-lg-250px{min-width:250px!important}.min-w-lg-275px{min-width:275px!important}.min-w-lg-300px{min-width:300px!important}.min-w-lg-325px{min-width:325px!important}.min-w-lg-350px{min-width:350px!important}.min-w-lg-375px{min-width:375px!important}.min-w-lg-400px{min-width:400px!important}.min-w-lg-425px{min-width:425px!important}.min-w-lg-450px{min-width:450px!important}.min-w-lg-475px{min-width:475px!important}.min-w-lg-500px{min-width:500px!important}.min-w-lg-550px{min-width:550px!important}.min-w-lg-600px{min-width:600px!important}.min-w-lg-650px{min-width:650px!important}.min-w-lg-700px{min-width:700px!important}.min-w-lg-750px{min-width:750px!important}.min-w-lg-800px{min-width:800px!important}.min-w-lg-850px{min-width:850px!important}.min-w-lg-900px{min-width:900px!important}.min-w-lg-950px{min-width:950px!important}.min-w-lg-1000px{min-width:1000px!important}.min-h-lg-unset{min-height:unset!important}.min-h-lg-25{min-height:25%!important}.min-h-lg-50{min-height:50%!important}.min-h-lg-75{min-height:75%!important}.min-h-lg-100{min-height:100%!important}.min-h-lg-auto{min-height:auto!important}.min-h-lg-1px{min-height:1px!important}.min-h-lg-2px{min-height:2px!important}.min-h-lg-3px{min-height:3px!important}.min-h-lg-4px{min-height:4px!important}.min-h-lg-5px{min-height:5px!important}.min-h-lg-6px{min-height:6px!important}.min-h-lg-7px{min-height:7px!important}.min-h-lg-8px{min-height:8px!important}.min-h-lg-9px{min-height:9px!important}.min-h-lg-10px{min-height:10px!important}.min-h-lg-15px{min-height:15px!important}.min-h-lg-20px{min-height:20px!important}.min-h-lg-25px{min-height:25px!important}.min-h-lg-30px{min-height:30px!important}.min-h-lg-35px{min-height:35px!important}.min-h-lg-40px{min-height:40px!important}.min-h-lg-45px{min-height:45px!important}.min-h-lg-50px{min-height:50px!important}.min-h-lg-55px{min-height:55px!important}.min-h-lg-60px{min-height:60px!important}.min-h-lg-65px{min-height:65px!important}.min-h-lg-70px{min-height:70px!important}.min-h-lg-75px{min-height:75px!important}.min-h-lg-80px{min-height:80px!important}.min-h-lg-85px{min-height:85px!important}.min-h-lg-90px{min-height:90px!important}.min-h-lg-95px{min-height:95px!important}.min-h-lg-100px{min-height:100px!important}.min-h-lg-125px{min-height:125px!important}.min-h-lg-150px{min-height:150px!important}.min-h-lg-175px{min-height:175px!important}.min-h-lg-200px{min-height:200px!important}.min-h-lg-225px{min-height:225px!important}.min-h-lg-250px{min-height:250px!important}.min-h-lg-275px{min-height:275px!important}.min-h-lg-300px{min-height:300px!important}.min-h-lg-325px{min-height:325px!important}.min-h-lg-350px{min-height:350px!important}.min-h-lg-375px{min-height:375px!important}.min-h-lg-400px{min-height:400px!important}.min-h-lg-425px{min-height:425px!important}.min-h-lg-450px{min-height:450px!important}.min-h-lg-475px{min-height:475px!important}.min-h-lg-500px{min-height:500px!important}.min-h-lg-550px{min-height:550px!important}.min-h-lg-600px{min-height:600px!important}.min-h-lg-650px{min-height:650px!important}.min-h-lg-700px{min-height:700px!important}.min-h-lg-750px{min-height:750px!important}.min-h-lg-800px{min-height:800px!important}.min-h-lg-850px{min-height:850px!important}.min-h-lg-900px{min-height:900px!important}.min-h-lg-950px{min-height:950px!important}.min-h-lg-1000px{min-height:1000px!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!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}.d-xl-none{display:none!important}.position-xl-static{position:static!important}.position-xl-relative{position:relative!important}.position-xl-absolute{position:absolute!important}.position-xl-fixed{position:fixed!important}.position-xl-sticky{position:sticky!important}.w-xl-unset{width:unset!important}.w-xl-25{width:25%!important}.w-xl-50{width:50%!important}.w-xl-75{width:75%!important}.w-xl-100{width:100%!important}.w-xl-auto{width:auto!important}.w-xl-1px{width:1px!important}.w-xl-2px{width:2px!important}.w-xl-3px{width:3px!important}.w-xl-4px{width:4px!important}.w-xl-5px{width:5px!important}.w-xl-6px{width:6px!important}.w-xl-7px{width:7px!important}.w-xl-8px{width:8px!important}.w-xl-9px{width:9px!important}.w-xl-10px{width:10px!important}.w-xl-15px{width:15px!important}.w-xl-20px{width:20px!important}.w-xl-25px{width:25px!important}.w-xl-30px{width:30px!important}.w-xl-35px{width:35px!important}.w-xl-40px{width:40px!important}.w-xl-45px{width:45px!important}.w-xl-50px{width:50px!important}.w-xl-55px{width:55px!important}.w-xl-60px{width:60px!important}.w-xl-65px{width:65px!important}.w-xl-70px{width:70px!important}.w-xl-75px{width:75px!important}.w-xl-80px{width:80px!important}.w-xl-85px{width:85px!important}.w-xl-90px{width:90px!important}.w-xl-95px{width:95px!important}.w-xl-100px{width:100px!important}.w-xl-125px{width:125px!important}.w-xl-150px{width:150px!important}.w-xl-175px{width:175px!important}.w-xl-200px{width:200px!important}.w-xl-225px{width:225px!important}.w-xl-250px{width:250px!important}.w-xl-275px{width:275px!important}.w-xl-300px{width:300px!important}.w-xl-325px{width:325px!important}.w-xl-350px{width:350px!important}.w-xl-375px{width:375px!important}.w-xl-400px{width:400px!important}.w-xl-425px{width:425px!important}.w-xl-450px{width:450px!important}.w-xl-475px{width:475px!important}.w-xl-500px{width:500px!important}.w-xl-550px{width:550px!important}.w-xl-600px{width:600px!important}.w-xl-650px{width:650px!important}.w-xl-700px{width:700px!important}.w-xl-750px{width:750px!important}.w-xl-800px{width:800px!important}.w-xl-850px{width:850px!important}.w-xl-900px{width:900px!important}.w-xl-950px{width:950px!important}.w-xl-1000px{width:1000px!important}.mw-xl-unset{max-width:unset!important}.mw-xl-25{max-width:25%!important}.mw-xl-50{max-width:50%!important}.mw-xl-75{max-width:75%!important}.mw-xl-100{max-width:100%!important}.mw-xl-auto{max-width:auto!important}.mw-xl-1px{max-width:1px!important}.mw-xl-2px{max-width:2px!important}.mw-xl-3px{max-width:3px!important}.mw-xl-4px{max-width:4px!important}.mw-xl-5px{max-width:5px!important}.mw-xl-6px{max-width:6px!important}.mw-xl-7px{max-width:7px!important}.mw-xl-8px{max-width:8px!important}.mw-xl-9px{max-width:9px!important}.mw-xl-10px{max-width:10px!important}.mw-xl-15px{max-width:15px!important}.mw-xl-20px{max-width:20px!important}.mw-xl-25px{max-width:25px!important}.mw-xl-30px{max-width:30px!important}.mw-xl-35px{max-width:35px!important}.mw-xl-40px{max-width:40px!important}.mw-xl-45px{max-width:45px!important}.mw-xl-50px{max-width:50px!important}.mw-xl-55px{max-width:55px!important}.mw-xl-60px{max-width:60px!important}.mw-xl-65px{max-width:65px!important}.mw-xl-70px{max-width:70px!important}.mw-xl-75px{max-width:75px!important}.mw-xl-80px{max-width:80px!important}.mw-xl-85px{max-width:85px!important}.mw-xl-90px{max-width:90px!important}.mw-xl-95px{max-width:95px!important}.mw-xl-100px{max-width:100px!important}.mw-xl-125px{max-width:125px!important}.mw-xl-150px{max-width:150px!important}.mw-xl-175px{max-width:175px!important}.mw-xl-200px{max-width:200px!important}.mw-xl-225px{max-width:225px!important}.mw-xl-250px{max-width:250px!important}.mw-xl-275px{max-width:275px!important}.mw-xl-300px{max-width:300px!important}.mw-xl-325px{max-width:325px!important}.mw-xl-350px{max-width:350px!important}.mw-xl-375px{max-width:375px!important}.mw-xl-400px{max-width:400px!important}.mw-xl-425px{max-width:425px!important}.mw-xl-450px{max-width:450px!important}.mw-xl-475px{max-width:475px!important}.mw-xl-500px{max-width:500px!important}.mw-xl-550px{max-width:550px!important}.mw-xl-600px{max-width:600px!important}.mw-xl-650px{max-width:650px!important}.mw-xl-700px{max-width:700px!important}.mw-xl-750px{max-width:750px!important}.mw-xl-800px{max-width:800px!important}.mw-xl-850px{max-width:850px!important}.mw-xl-900px{max-width:900px!important}.mw-xl-950px{max-width:950px!important}.mw-xl-1000px{max-width:1000px!important}.h-xl-unset{height:unset!important}.h-xl-25{height:25%!important}.h-xl-50{height:50%!important}.h-xl-75{height:75%!important}.h-xl-100{height:100%!important}.h-xl-auto{height:auto!important}.h-xl-1px{height:1px!important}.h-xl-2px{height:2px!important}.h-xl-3px{height:3px!important}.h-xl-4px{height:4px!important}.h-xl-5px{height:5px!important}.h-xl-6px{height:6px!important}.h-xl-7px{height:7px!important}.h-xl-8px{height:8px!important}.h-xl-9px{height:9px!important}.h-xl-10px{height:10px!important}.h-xl-15px{height:15px!important}.h-xl-20px{height:20px!important}.h-xl-25px{height:25px!important}.h-xl-30px{height:30px!important}.h-xl-35px{height:35px!important}.h-xl-40px{height:40px!important}.h-xl-45px{height:45px!important}.h-xl-50px{height:50px!important}.h-xl-55px{height:55px!important}.h-xl-60px{height:60px!important}.h-xl-65px{height:65px!important}.h-xl-70px{height:70px!important}.h-xl-75px{height:75px!important}.h-xl-80px{height:80px!important}.h-xl-85px{height:85px!important}.h-xl-90px{height:90px!important}.h-xl-95px{height:95px!important}.h-xl-100px{height:100px!important}.h-xl-125px{height:125px!important}.h-xl-150px{height:150px!important}.h-xl-175px{height:175px!important}.h-xl-200px{height:200px!important}.h-xl-225px{height:225px!important}.h-xl-250px{height:250px!important}.h-xl-275px{height:275px!important}.h-xl-300px{height:300px!important}.h-xl-325px{height:325px!important}.h-xl-350px{height:350px!important}.h-xl-375px{height:375px!important}.h-xl-400px{height:400px!important}.h-xl-425px{height:425px!important}.h-xl-450px{height:450px!important}.h-xl-475px{height:475px!important}.h-xl-500px{height:500px!important}.h-xl-550px{height:550px!important}.h-xl-600px{height:600px!important}.h-xl-650px{height:650px!important}.h-xl-700px{height:700px!important}.h-xl-750px{height:750px!important}.h-xl-800px{height:800px!important}.h-xl-850px{height:850px!important}.h-xl-900px{height:900px!important}.h-xl-950px{height:950px!important}.h-xl-1000px{height:1000px!important}.mh-xl-unset{max-height:unset!important}.mh-xl-25{max-height:25%!important}.mh-xl-50{max-height:50%!important}.mh-xl-75{max-height:75%!important}.mh-xl-100{max-height:100%!important}.mh-xl-auto{max-height:auto!important}.mh-xl-1px{max-height:1px!important}.mh-xl-2px{max-height:2px!important}.mh-xl-3px{max-height:3px!important}.mh-xl-4px{max-height:4px!important}.mh-xl-5px{max-height:5px!important}.mh-xl-6px{max-height:6px!important}.mh-xl-7px{max-height:7px!important}.mh-xl-8px{max-height:8px!important}.mh-xl-9px{max-height:9px!important}.mh-xl-10px{max-height:10px!important}.mh-xl-15px{max-height:15px!important}.mh-xl-20px{max-height:20px!important}.mh-xl-25px{max-height:25px!important}.mh-xl-30px{max-height:30px!important}.mh-xl-35px{max-height:35px!important}.mh-xl-40px{max-height:40px!important}.mh-xl-45px{max-height:45px!important}.mh-xl-50px{max-height:50px!important}.mh-xl-55px{max-height:55px!important}.mh-xl-60px{max-height:60px!important}.mh-xl-65px{max-height:65px!important}.mh-xl-70px{max-height:70px!important}.mh-xl-75px{max-height:75px!important}.mh-xl-80px{max-height:80px!important}.mh-xl-85px{max-height:85px!important}.mh-xl-90px{max-height:90px!important}.mh-xl-95px{max-height:95px!important}.mh-xl-100px{max-height:100px!important}.mh-xl-125px{max-height:125px!important}.mh-xl-150px{max-height:150px!important}.mh-xl-175px{max-height:175px!important}.mh-xl-200px{max-height:200px!important}.mh-xl-225px{max-height:225px!important}.mh-xl-250px{max-height:250px!important}.mh-xl-275px{max-height:275px!important}.mh-xl-300px{max-height:300px!important}.mh-xl-325px{max-height:325px!important}.mh-xl-350px{max-height:350px!important}.mh-xl-375px{max-height:375px!important}.mh-xl-400px{max-height:400px!important}.mh-xl-425px{max-height:425px!important}.mh-xl-450px{max-height:450px!important}.mh-xl-475px{max-height:475px!important}.mh-xl-500px{max-height:500px!important}.mh-xl-550px{max-height:550px!important}.mh-xl-600px{max-height:600px!important}.mh-xl-650px{max-height:650px!important}.mh-xl-700px{max-height:700px!important}.mh-xl-750px{max-height:750px!important}.mh-xl-800px{max-height:800px!important}.mh-xl-850px{max-height:850px!important}.mh-xl-900px{max-height:900px!important}.mh-xl-950px{max-height:950px!important}.mh-xl-1000px{max-height:1000px!important}.flex-xl-fill{flex:1 1 auto!important}.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-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}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:.75rem!important}.gap-xl-4{gap:1rem!important}.gap-xl-5{gap:1.25rem!important}.gap-xl-6{gap:1.5rem!important}.gap-xl-7{gap:1.75rem!important}.gap-xl-8{gap:2rem!important}.gap-xl-9{gap:2.25rem!important}.gap-xl-10{gap:2.5rem!important}.gap-xl-11{gap:2.75rem!important}.gap-xl-12{gap:3rem!important}.gap-xl-13{gap:3.25rem!important}.gap-xl-14{gap:3.5rem!important}.gap-xl-15{gap:3.75rem!important}.gap-xl-16{gap:4rem!important}.gap-xl-17{gap:4.25rem!important}.gap-xl-18{gap:4.5rem!important}.gap-xl-19{gap:4.75rem!important}.gap-xl-20{gap:5rem!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}.justify-content-xl-evenly{justify-content:space-evenly!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}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:.75rem!important}.m-xl-4{margin:1rem!important}.m-xl-5{margin:1.25rem!important}.m-xl-6{margin:1.5rem!important}.m-xl-7{margin:1.75rem!important}.m-xl-8{margin:2rem!important}.m-xl-9{margin:2.25rem!important}.m-xl-10{margin:2.5rem!important}.m-xl-11{margin:2.75rem!important}.m-xl-12{margin:3rem!important}.m-xl-13{margin:3.25rem!important}.m-xl-14{margin:3.5rem!important}.m-xl-15{margin:3.75rem!important}.m-xl-16{margin:4rem!important}.m-xl-17{margin:4.25rem!important}.m-xl-18{margin:4.5rem!important}.m-xl-19{margin:4.75rem!important}.m-xl-20{margin:5rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:.75rem!important;margin-left:.75rem!important}.mx-xl-4{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-5{margin-right:1.25rem!important;margin-left:1.25rem!important}.mx-xl-6{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-7{margin-right:1.75rem!important;margin-left:1.75rem!important}.mx-xl-8{margin-right:2rem!important;margin-left:2rem!important}.mx-xl-9{margin-right:2.25rem!important;margin-left:2.25rem!important}.mx-xl-10{margin-right:2.5rem!important;margin-left:2.5rem!important}.mx-xl-11{margin-right:2.75rem!important;margin-left:2.75rem!important}.mx-xl-12{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-13{margin-right:3.25rem!important;margin-left:3.25rem!important}.mx-xl-14{margin-right:3.5rem!important;margin-left:3.5rem!important}.mx-xl-15{margin-right:3.75rem!important;margin-left:3.75rem!important}.mx-xl-16{margin-right:4rem!important;margin-left:4rem!important}.mx-xl-17{margin-right:4.25rem!important;margin-left:4.25rem!important}.mx-xl-18{margin-right:4.5rem!important;margin-left:4.5rem!important}.mx-xl-19{margin-right:4.75rem!important;margin-left:4.75rem!important}.mx-xl-20{margin-right:5rem!important;margin-left:5rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-xl-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-xl-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-xl-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-xl-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-xl-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-xl-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-xl-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-xl-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-xl-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-xl-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-xl-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-xl-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-xl-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-xl-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:.75rem!important}.mt-xl-4{margin-top:1rem!important}.mt-xl-5{margin-top:1.25rem!important}.mt-xl-6{margin-top:1.5rem!important}.mt-xl-7{margin-top:1.75rem!important}.mt-xl-8{margin-top:2rem!important}.mt-xl-9{margin-top:2.25rem!important}.mt-xl-10{margin-top:2.5rem!important}.mt-xl-11{margin-top:2.75rem!important}.mt-xl-12{margin-top:3rem!important}.mt-xl-13{margin-top:3.25rem!important}.mt-xl-14{margin-top:3.5rem!important}.mt-xl-15{margin-top:3.75rem!important}.mt-xl-16{margin-top:4rem!important}.mt-xl-17{margin-top:4.25rem!important}.mt-xl-18{margin-top:4.5rem!important}.mt-xl-19{margin-top:4.75rem!important}.mt-xl-20{margin-top:5rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:.75rem!important}.me-xl-4{margin-right:1rem!important}.me-xl-5{margin-right:1.25rem!important}.me-xl-6{margin-right:1.5rem!important}.me-xl-7{margin-right:1.75rem!important}.me-xl-8{margin-right:2rem!important}.me-xl-9{margin-right:2.25rem!important}.me-xl-10{margin-right:2.5rem!important}.me-xl-11{margin-right:2.75rem!important}.me-xl-12{margin-right:3rem!important}.me-xl-13{margin-right:3.25rem!important}.me-xl-14{margin-right:3.5rem!important}.me-xl-15{margin-right:3.75rem!important}.me-xl-16{margin-right:4rem!important}.me-xl-17{margin-right:4.25rem!important}.me-xl-18{margin-right:4.5rem!important}.me-xl-19{margin-right:4.75rem!important}.me-xl-20{margin-right:5rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:.75rem!important}.mb-xl-4{margin-bottom:1rem!important}.mb-xl-5{margin-bottom:1.25rem!important}.mb-xl-6{margin-bottom:1.5rem!important}.mb-xl-7{margin-bottom:1.75rem!important}.mb-xl-8{margin-bottom:2rem!important}.mb-xl-9{margin-bottom:2.25rem!important}.mb-xl-10{margin-bottom:2.5rem!important}.mb-xl-11{margin-bottom:2.75rem!important}.mb-xl-12{margin-bottom:3rem!important}.mb-xl-13{margin-bottom:3.25rem!important}.mb-xl-14{margin-bottom:3.5rem!important}.mb-xl-15{margin-bottom:3.75rem!important}.mb-xl-16{margin-bottom:4rem!important}.mb-xl-17{margin-bottom:4.25rem!important}.mb-xl-18{margin-bottom:4.5rem!important}.mb-xl-19{margin-bottom:4.75rem!important}.mb-xl-20{margin-bottom:5rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:.75rem!important}.ms-xl-4{margin-left:1rem!important}.ms-xl-5{margin-left:1.25rem!important}.ms-xl-6{margin-left:1.5rem!important}.ms-xl-7{margin-left:1.75rem!important}.ms-xl-8{margin-left:2rem!important}.ms-xl-9{margin-left:2.25rem!important}.ms-xl-10{margin-left:2.5rem!important}.ms-xl-11{margin-left:2.75rem!important}.ms-xl-12{margin-left:3rem!important}.ms-xl-13{margin-left:3.25rem!important}.ms-xl-14{margin-left:3.5rem!important}.ms-xl-15{margin-left:3.75rem!important}.ms-xl-16{margin-left:4rem!important}.ms-xl-17{margin-left:4.25rem!important}.ms-xl-18{margin-left:4.5rem!important}.ms-xl-19{margin-left:4.75rem!important}.ms-xl-20{margin-left:5rem!important}.ms-xl-auto{margin-left:auto!important}.m-xl-n1{margin:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.m-xl-n3{margin:-.75rem!important}.m-xl-n4{margin:-1rem!important}.m-xl-n5{margin:-1.25rem!important}.m-xl-n6{margin:-1.5rem!important}.m-xl-n7{margin:-1.75rem!important}.m-xl-n8{margin:-2rem!important}.m-xl-n9{margin:-2.25rem!important}.m-xl-n10{margin:-2.5rem!important}.m-xl-n11{margin:-2.75rem!important}.m-xl-n12{margin:-3rem!important}.m-xl-n13{margin:-3.25rem!important}.m-xl-n14{margin:-3.5rem!important}.m-xl-n15{margin:-3.75rem!important}.m-xl-n16{margin:-4rem!important}.m-xl-n17{margin:-4.25rem!important}.m-xl-n18{margin:-4.5rem!important}.m-xl-n19{margin:-4.75rem!important}.m-xl-n20{margin:-5rem!important}.mx-xl-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-xl-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-xl-n3{margin-right:-.75rem!important;margin-left:-.75rem!important}.mx-xl-n4{margin-right:-1rem!important;margin-left:-1rem!important}.mx-xl-n5{margin-right:-1.25rem!important;margin-left:-1.25rem!important}.mx-xl-n6{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-xl-n7{margin-right:-1.75rem!important;margin-left:-1.75rem!important}.mx-xl-n8{margin-right:-2rem!important;margin-left:-2rem!important}.mx-xl-n9{margin-right:-2.25rem!important;margin-left:-2.25rem!important}.mx-xl-n10{margin-right:-2.5rem!important;margin-left:-2.5rem!important}.mx-xl-n11{margin-right:-2.75rem!important;margin-left:-2.75rem!important}.mx-xl-n12{margin-right:-3rem!important;margin-left:-3rem!important}.mx-xl-n13{margin-right:-3.25rem!important;margin-left:-3.25rem!important}.mx-xl-n14{margin-right:-3.5rem!important;margin-left:-3.5rem!important}.mx-xl-n15{margin-right:-3.75rem!important;margin-left:-3.75rem!important}.mx-xl-n16{margin-right:-4rem!important;margin-left:-4rem!important}.mx-xl-n17{margin-right:-4.25rem!important;margin-left:-4.25rem!important}.mx-xl-n18{margin-right:-4.5rem!important;margin-left:-4.5rem!important}.mx-xl-n19{margin-right:-4.75rem!important;margin-left:-4.75rem!important}.mx-xl-n20{margin-right:-5rem!important;margin-left:-5rem!important}.my-xl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xl-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-xl-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xl-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-xl-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xl-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-xl-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-xl-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-xl-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-xl-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-xl-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-xl-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-xl-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-xl-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-xl-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-xl-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-xl-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-xl-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-xl-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-xl-n1{margin-top:-.25rem!important}.mt-xl-n2{margin-top:-.5rem!important}.mt-xl-n3{margin-top:-.75rem!important}.mt-xl-n4{margin-top:-1rem!important}.mt-xl-n5{margin-top:-1.25rem!important}.mt-xl-n6{margin-top:-1.5rem!important}.mt-xl-n7{margin-top:-1.75rem!important}.mt-xl-n8{margin-top:-2rem!important}.mt-xl-n9{margin-top:-2.25rem!important}.mt-xl-n10{margin-top:-2.5rem!important}.mt-xl-n11{margin-top:-2.75rem!important}.mt-xl-n12{margin-top:-3rem!important}.mt-xl-n13{margin-top:-3.25rem!important}.mt-xl-n14{margin-top:-3.5rem!important}.mt-xl-n15{margin-top:-3.75rem!important}.mt-xl-n16{margin-top:-4rem!important}.mt-xl-n17{margin-top:-4.25rem!important}.mt-xl-n18{margin-top:-4.5rem!important}.mt-xl-n19{margin-top:-4.75rem!important}.mt-xl-n20{margin-top:-5rem!important}.me-xl-n1{margin-right:-.25rem!important}.me-xl-n2{margin-right:-.5rem!important}.me-xl-n3{margin-right:-.75rem!important}.me-xl-n4{margin-right:-1rem!important}.me-xl-n5{margin-right:-1.25rem!important}.me-xl-n6{margin-right:-1.5rem!important}.me-xl-n7{margin-right:-1.75rem!important}.me-xl-n8{margin-right:-2rem!important}.me-xl-n9{margin-right:-2.25rem!important}.me-xl-n10{margin-right:-2.5rem!important}.me-xl-n11{margin-right:-2.75rem!important}.me-xl-n12{margin-right:-3rem!important}.me-xl-n13{margin-right:-3.25rem!important}.me-xl-n14{margin-right:-3.5rem!important}.me-xl-n15{margin-right:-3.75rem!important}.me-xl-n16{margin-right:-4rem!important}.me-xl-n17{margin-right:-4.25rem!important}.me-xl-n18{margin-right:-4.5rem!important}.me-xl-n19{margin-right:-4.75rem!important}.me-xl-n20{margin-right:-5rem!important}.mb-xl-n1{margin-bottom:-.25rem!important}.mb-xl-n2{margin-bottom:-.5rem!important}.mb-xl-n3{margin-bottom:-.75rem!important}.mb-xl-n4{margin-bottom:-1rem!important}.mb-xl-n5{margin-bottom:-1.25rem!important}.mb-xl-n6{margin-bottom:-1.5rem!important}.mb-xl-n7{margin-bottom:-1.75rem!important}.mb-xl-n8{margin-bottom:-2rem!important}.mb-xl-n9{margin-bottom:-2.25rem!important}.mb-xl-n10{margin-bottom:-2.5rem!important}.mb-xl-n11{margin-bottom:-2.75rem!important}.mb-xl-n12{margin-bottom:-3rem!important}.mb-xl-n13{margin-bottom:-3.25rem!important}.mb-xl-n14{margin-bottom:-3.5rem!important}.mb-xl-n15{margin-bottom:-3.75rem!important}.mb-xl-n16{margin-bottom:-4rem!important}.mb-xl-n17{margin-bottom:-4.25rem!important}.mb-xl-n18{margin-bottom:-4.5rem!important}.mb-xl-n19{margin-bottom:-4.75rem!important}.mb-xl-n20{margin-bottom:-5rem!important}.ms-xl-n1{margin-left:-.25rem!important}.ms-xl-n2{margin-left:-.5rem!important}.ms-xl-n3{margin-left:-.75rem!important}.ms-xl-n4{margin-left:-1rem!important}.ms-xl-n5{margin-left:-1.25rem!important}.ms-xl-n6{margin-left:-1.5rem!important}.ms-xl-n7{margin-left:-1.75rem!important}.ms-xl-n8{margin-left:-2rem!important}.ms-xl-n9{margin-left:-2.25rem!important}.ms-xl-n10{margin-left:-2.5rem!important}.ms-xl-n11{margin-left:-2.75rem!important}.ms-xl-n12{margin-left:-3rem!important}.ms-xl-n13{margin-left:-3.25rem!important}.ms-xl-n14{margin-left:-3.5rem!important}.ms-xl-n15{margin-left:-3.75rem!important}.ms-xl-n16{margin-left:-4rem!important}.ms-xl-n17{margin-left:-4.25rem!important}.ms-xl-n18{margin-left:-4.5rem!important}.ms-xl-n19{margin-left:-4.75rem!important}.ms-xl-n20{margin-left:-5rem!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:.75rem!important}.p-xl-4{padding:1rem!important}.p-xl-5{padding:1.25rem!important}.p-xl-6{padding:1.5rem!important}.p-xl-7{padding:1.75rem!important}.p-xl-8{padding:2rem!important}.p-xl-9{padding:2.25rem!important}.p-xl-10{padding:2.5rem!important}.p-xl-11{padding:2.75rem!important}.p-xl-12{padding:3rem!important}.p-xl-13{padding:3.25rem!important}.p-xl-14{padding:3.5rem!important}.p-xl-15{padding:3.75rem!important}.p-xl-16{padding:4rem!important}.p-xl-17{padding:4.25rem!important}.p-xl-18{padding:4.5rem!important}.p-xl-19{padding:4.75rem!important}.p-xl-20{padding:5rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:.75rem!important;padding-left:.75rem!important}.px-xl-4{padding-right:1rem!important;padding-left:1rem!important}.px-xl-5{padding-right:1.25rem!important;padding-left:1.25rem!important}.px-xl-6{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-7{padding-right:1.75rem!important;padding-left:1.75rem!important}.px-xl-8{padding-right:2rem!important;padding-left:2rem!important}.px-xl-9{padding-right:2.25rem!important;padding-left:2.25rem!important}.px-xl-10{padding-right:2.5rem!important;padding-left:2.5rem!important}.px-xl-11{padding-right:2.75rem!important;padding-left:2.75rem!important}.px-xl-12{padding-right:3rem!important;padding-left:3rem!important}.px-xl-13{padding-right:3.25rem!important;padding-left:3.25rem!important}.px-xl-14{padding-right:3.5rem!important;padding-left:3.5rem!important}.px-xl-15{padding-right:3.75rem!important;padding-left:3.75rem!important}.px-xl-16{padding-right:4rem!important;padding-left:4rem!important}.px-xl-17{padding-right:4.25rem!important;padding-left:4.25rem!important}.px-xl-18{padding-right:4.5rem!important;padding-left:4.5rem!important}.px-xl-19{padding-right:4.75rem!important;padding-left:4.75rem!important}.px-xl-20{padding-right:5rem!important;padding-left:5rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-xl-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-xl-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-xl-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-xl-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-xl-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-xl-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-xl-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-xl-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-xl-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-xl-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-xl-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-xl-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-xl-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-xl-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-xl-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:.75rem!important}.pt-xl-4{padding-top:1rem!important}.pt-xl-5{padding-top:1.25rem!important}.pt-xl-6{padding-top:1.5rem!important}.pt-xl-7{padding-top:1.75rem!important}.pt-xl-8{padding-top:2rem!important}.pt-xl-9{padding-top:2.25rem!important}.pt-xl-10{padding-top:2.5rem!important}.pt-xl-11{padding-top:2.75rem!important}.pt-xl-12{padding-top:3rem!important}.pt-xl-13{padding-top:3.25rem!important}.pt-xl-14{padding-top:3.5rem!important}.pt-xl-15{padding-top:3.75rem!important}.pt-xl-16{padding-top:4rem!important}.pt-xl-17{padding-top:4.25rem!important}.pt-xl-18{padding-top:4.5rem!important}.pt-xl-19{padding-top:4.75rem!important}.pt-xl-20{padding-top:5rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:.75rem!important}.pe-xl-4{padding-right:1rem!important}.pe-xl-5{padding-right:1.25rem!important}.pe-xl-6{padding-right:1.5rem!important}.pe-xl-7{padding-right:1.75rem!important}.pe-xl-8{padding-right:2rem!important}.pe-xl-9{padding-right:2.25rem!important}.pe-xl-10{padding-right:2.5rem!important}.pe-xl-11{padding-right:2.75rem!important}.pe-xl-12{padding-right:3rem!important}.pe-xl-13{padding-right:3.25rem!important}.pe-xl-14{padding-right:3.5rem!important}.pe-xl-15{padding-right:3.75rem!important}.pe-xl-16{padding-right:4rem!important}.pe-xl-17{padding-right:4.25rem!important}.pe-xl-18{padding-right:4.5rem!important}.pe-xl-19{padding-right:4.75rem!important}.pe-xl-20{padding-right:5rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:.75rem!important}.pb-xl-4{padding-bottom:1rem!important}.pb-xl-5{padding-bottom:1.25rem!important}.pb-xl-6{padding-bottom:1.5rem!important}.pb-xl-7{padding-bottom:1.75rem!important}.pb-xl-8{padding-bottom:2rem!important}.pb-xl-9{padding-bottom:2.25rem!important}.pb-xl-10{padding-bottom:2.5rem!important}.pb-xl-11{padding-bottom:2.75rem!important}.pb-xl-12{padding-bottom:3rem!important}.pb-xl-13{padding-bottom:3.25rem!important}.pb-xl-14{padding-bottom:3.5rem!important}.pb-xl-15{padding-bottom:3.75rem!important}.pb-xl-16{padding-bottom:4rem!important}.pb-xl-17{padding-bottom:4.25rem!important}.pb-xl-18{padding-bottom:4.5rem!important}.pb-xl-19{padding-bottom:4.75rem!important}.pb-xl-20{padding-bottom:5rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:.75rem!important}.ps-xl-4{padding-left:1rem!important}.ps-xl-5{padding-left:1.25rem!important}.ps-xl-6{padding-left:1.5rem!important}.ps-xl-7{padding-left:1.75rem!important}.ps-xl-8{padding-left:2rem!important}.ps-xl-9{padding-left:2.25rem!important}.ps-xl-10{padding-left:2.5rem!important}.ps-xl-11{padding-left:2.75rem!important}.ps-xl-12{padding-left:3rem!important}.ps-xl-13{padding-left:3.25rem!important}.ps-xl-14{padding-left:3.5rem!important}.ps-xl-15{padding-left:3.75rem!important}.ps-xl-16{padding-left:4rem!important}.ps-xl-17{padding-left:4.25rem!important}.ps-xl-18{padding-left:4.5rem!important}.ps-xl-19{padding-left:4.75rem!important}.ps-xl-20{padding-left:5rem!important}.fs-xl-1{font-size:calc(1.3rem + .6vw)!important}.fs-xl-2{font-size:calc(1.275rem + .3vw)!important}.fs-xl-3{font-size:calc(1.26rem + .12vw)!important}.fs-xl-4{font-size:1.25rem!important}.fs-xl-5{font-size:1.15rem!important}.fs-xl-6{font-size:1.075rem!important}.fs-xl-7{font-size:.95rem!important}.fs-xl-8{font-size:.85rem!important}.fs-xl-9{font-size:.75rem!important}.fs-xl-10{font-size:.5rem!important}.fs-xl-base{font-size:1rem!important}.fs-xl-fluid{font-size:100%!important}.fs-xl-2x{font-size:calc(1.325rem + .9vw)!important}.fs-xl-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-xl-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-xl-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-xl-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-xl-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-xl-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-xl-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-xl-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-xl-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-xl-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-xl-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-xl-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-xl-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-xl-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-xl-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}.min-w-xl-unset{min-width:unset!important}.min-w-xl-25{min-width:25%!important}.min-w-xl-50{min-width:50%!important}.min-w-xl-75{min-width:75%!important}.min-w-xl-100{min-width:100%!important}.min-w-xl-auto{min-width:auto!important}.min-w-xl-1px{min-width:1px!important}.min-w-xl-2px{min-width:2px!important}.min-w-xl-3px{min-width:3px!important}.min-w-xl-4px{min-width:4px!important}.min-w-xl-5px{min-width:5px!important}.min-w-xl-6px{min-width:6px!important}.min-w-xl-7px{min-width:7px!important}.min-w-xl-8px{min-width:8px!important}.min-w-xl-9px{min-width:9px!important}.min-w-xl-10px{min-width:10px!important}.min-w-xl-15px{min-width:15px!important}.min-w-xl-20px{min-width:20px!important}.min-w-xl-25px{min-width:25px!important}.min-w-xl-30px{min-width:30px!important}.min-w-xl-35px{min-width:35px!important}.min-w-xl-40px{min-width:40px!important}.min-w-xl-45px{min-width:45px!important}.min-w-xl-50px{min-width:50px!important}.min-w-xl-55px{min-width:55px!important}.min-w-xl-60px{min-width:60px!important}.min-w-xl-65px{min-width:65px!important}.min-w-xl-70px{min-width:70px!important}.min-w-xl-75px{min-width:75px!important}.min-w-xl-80px{min-width:80px!important}.min-w-xl-85px{min-width:85px!important}.min-w-xl-90px{min-width:90px!important}.min-w-xl-95px{min-width:95px!important}.min-w-xl-100px{min-width:100px!important}.min-w-xl-125px{min-width:125px!important}.min-w-xl-150px{min-width:150px!important}.min-w-xl-175px{min-width:175px!important}.min-w-xl-200px{min-width:200px!important}.min-w-xl-225px{min-width:225px!important}.min-w-xl-250px{min-width:250px!important}.min-w-xl-275px{min-width:275px!important}.min-w-xl-300px{min-width:300px!important}.min-w-xl-325px{min-width:325px!important}.min-w-xl-350px{min-width:350px!important}.min-w-xl-375px{min-width:375px!important}.min-w-xl-400px{min-width:400px!important}.min-w-xl-425px{min-width:425px!important}.min-w-xl-450px{min-width:450px!important}.min-w-xl-475px{min-width:475px!important}.min-w-xl-500px{min-width:500px!important}.min-w-xl-550px{min-width:550px!important}.min-w-xl-600px{min-width:600px!important}.min-w-xl-650px{min-width:650px!important}.min-w-xl-700px{min-width:700px!important}.min-w-xl-750px{min-width:750px!important}.min-w-xl-800px{min-width:800px!important}.min-w-xl-850px{min-width:850px!important}.min-w-xl-900px{min-width:900px!important}.min-w-xl-950px{min-width:950px!important}.min-w-xl-1000px{min-width:1000px!important}.min-h-xl-unset{min-height:unset!important}.min-h-xl-25{min-height:25%!important}.min-h-xl-50{min-height:50%!important}.min-h-xl-75{min-height:75%!important}.min-h-xl-100{min-height:100%!important}.min-h-xl-auto{min-height:auto!important}.min-h-xl-1px{min-height:1px!important}.min-h-xl-2px{min-height:2px!important}.min-h-xl-3px{min-height:3px!important}.min-h-xl-4px{min-height:4px!important}.min-h-xl-5px{min-height:5px!important}.min-h-xl-6px{min-height:6px!important}.min-h-xl-7px{min-height:7px!important}.min-h-xl-8px{min-height:8px!important}.min-h-xl-9px{min-height:9px!important}.min-h-xl-10px{min-height:10px!important}.min-h-xl-15px{min-height:15px!important}.min-h-xl-20px{min-height:20px!important}.min-h-xl-25px{min-height:25px!important}.min-h-xl-30px{min-height:30px!important}.min-h-xl-35px{min-height:35px!important}.min-h-xl-40px{min-height:40px!important}.min-h-xl-45px{min-height:45px!important}.min-h-xl-50px{min-height:50px!important}.min-h-xl-55px{min-height:55px!important}.min-h-xl-60px{min-height:60px!important}.min-h-xl-65px{min-height:65px!important}.min-h-xl-70px{min-height:70px!important}.min-h-xl-75px{min-height:75px!important}.min-h-xl-80px{min-height:80px!important}.min-h-xl-85px{min-height:85px!important}.min-h-xl-90px{min-height:90px!important}.min-h-xl-95px{min-height:95px!important}.min-h-xl-100px{min-height:100px!important}.min-h-xl-125px{min-height:125px!important}.min-h-xl-150px{min-height:150px!important}.min-h-xl-175px{min-height:175px!important}.min-h-xl-200px{min-height:200px!important}.min-h-xl-225px{min-height:225px!important}.min-h-xl-250px{min-height:250px!important}.min-h-xl-275px{min-height:275px!important}.min-h-xl-300px{min-height:300px!important}.min-h-xl-325px{min-height:325px!important}.min-h-xl-350px{min-height:350px!important}.min-h-xl-375px{min-height:375px!important}.min-h-xl-400px{min-height:400px!important}.min-h-xl-425px{min-height:425px!important}.min-h-xl-450px{min-height:450px!important}.min-h-xl-475px{min-height:475px!important}.min-h-xl-500px{min-height:500px!important}.min-h-xl-550px{min-height:550px!important}.min-h-xl-600px{min-height:600px!important}.min-h-xl-650px{min-height:650px!important}.min-h-xl-700px{min-height:700px!important}.min-h-xl-750px{min-height:750px!important}.min-h-xl-800px{min-height:800px!important}.min-h-xl-850px{min-height:850px!important}.min-h-xl-900px{min-height:900px!important}.min-h-xl-950px{min-height:950px!important}.min-h-xl-1000px{min-height:1000px!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.position-xxl-static{position:static!important}.position-xxl-relative{position:relative!important}.position-xxl-absolute{position:absolute!important}.position-xxl-fixed{position:fixed!important}.position-xxl-sticky{position:sticky!important}.w-xxl-unset{width:unset!important}.w-xxl-25{width:25%!important}.w-xxl-50{width:50%!important}.w-xxl-75{width:75%!important}.w-xxl-100{width:100%!important}.w-xxl-auto{width:auto!important}.w-xxl-1px{width:1px!important}.w-xxl-2px{width:2px!important}.w-xxl-3px{width:3px!important}.w-xxl-4px{width:4px!important}.w-xxl-5px{width:5px!important}.w-xxl-6px{width:6px!important}.w-xxl-7px{width:7px!important}.w-xxl-8px{width:8px!important}.w-xxl-9px{width:9px!important}.w-xxl-10px{width:10px!important}.w-xxl-15px{width:15px!important}.w-xxl-20px{width:20px!important}.w-xxl-25px{width:25px!important}.w-xxl-30px{width:30px!important}.w-xxl-35px{width:35px!important}.w-xxl-40px{width:40px!important}.w-xxl-45px{width:45px!important}.w-xxl-50px{width:50px!important}.w-xxl-55px{width:55px!important}.w-xxl-60px{width:60px!important}.w-xxl-65px{width:65px!important}.w-xxl-70px{width:70px!important}.w-xxl-75px{width:75px!important}.w-xxl-80px{width:80px!important}.w-xxl-85px{width:85px!important}.w-xxl-90px{width:90px!important}.w-xxl-95px{width:95px!important}.w-xxl-100px{width:100px!important}.w-xxl-125px{width:125px!important}.w-xxl-150px{width:150px!important}.w-xxl-175px{width:175px!important}.w-xxl-200px{width:200px!important}.w-xxl-225px{width:225px!important}.w-xxl-250px{width:250px!important}.w-xxl-275px{width:275px!important}.w-xxl-300px{width:300px!important}.w-xxl-325px{width:325px!important}.w-xxl-350px{width:350px!important}.w-xxl-375px{width:375px!important}.w-xxl-400px{width:400px!important}.w-xxl-425px{width:425px!important}.w-xxl-450px{width:450px!important}.w-xxl-475px{width:475px!important}.w-xxl-500px{width:500px!important}.w-xxl-550px{width:550px!important}.w-xxl-600px{width:600px!important}.w-xxl-650px{width:650px!important}.w-xxl-700px{width:700px!important}.w-xxl-750px{width:750px!important}.w-xxl-800px{width:800px!important}.w-xxl-850px{width:850px!important}.w-xxl-900px{width:900px!important}.w-xxl-950px{width:950px!important}.w-xxl-1000px{width:1000px!important}.mw-xxl-unset{max-width:unset!important}.mw-xxl-25{max-width:25%!important}.mw-xxl-50{max-width:50%!important}.mw-xxl-75{max-width:75%!important}.mw-xxl-100{max-width:100%!important}.mw-xxl-auto{max-width:auto!important}.mw-xxl-1px{max-width:1px!important}.mw-xxl-2px{max-width:2px!important}.mw-xxl-3px{max-width:3px!important}.mw-xxl-4px{max-width:4px!important}.mw-xxl-5px{max-width:5px!important}.mw-xxl-6px{max-width:6px!important}.mw-xxl-7px{max-width:7px!important}.mw-xxl-8px{max-width:8px!important}.mw-xxl-9px{max-width:9px!important}.mw-xxl-10px{max-width:10px!important}.mw-xxl-15px{max-width:15px!important}.mw-xxl-20px{max-width:20px!important}.mw-xxl-25px{max-width:25px!important}.mw-xxl-30px{max-width:30px!important}.mw-xxl-35px{max-width:35px!important}.mw-xxl-40px{max-width:40px!important}.mw-xxl-45px{max-width:45px!important}.mw-xxl-50px{max-width:50px!important}.mw-xxl-55px{max-width:55px!important}.mw-xxl-60px{max-width:60px!important}.mw-xxl-65px{max-width:65px!important}.mw-xxl-70px{max-width:70px!important}.mw-xxl-75px{max-width:75px!important}.mw-xxl-80px{max-width:80px!important}.mw-xxl-85px{max-width:85px!important}.mw-xxl-90px{max-width:90px!important}.mw-xxl-95px{max-width:95px!important}.mw-xxl-100px{max-width:100px!important}.mw-xxl-125px{max-width:125px!important}.mw-xxl-150px{max-width:150px!important}.mw-xxl-175px{max-width:175px!important}.mw-xxl-200px{max-width:200px!important}.mw-xxl-225px{max-width:225px!important}.mw-xxl-250px{max-width:250px!important}.mw-xxl-275px{max-width:275px!important}.mw-xxl-300px{max-width:300px!important}.mw-xxl-325px{max-width:325px!important}.mw-xxl-350px{max-width:350px!important}.mw-xxl-375px{max-width:375px!important}.mw-xxl-400px{max-width:400px!important}.mw-xxl-425px{max-width:425px!important}.mw-xxl-450px{max-width:450px!important}.mw-xxl-475px{max-width:475px!important}.mw-xxl-500px{max-width:500px!important}.mw-xxl-550px{max-width:550px!important}.mw-xxl-600px{max-width:600px!important}.mw-xxl-650px{max-width:650px!important}.mw-xxl-700px{max-width:700px!important}.mw-xxl-750px{max-width:750px!important}.mw-xxl-800px{max-width:800px!important}.mw-xxl-850px{max-width:850px!important}.mw-xxl-900px{max-width:900px!important}.mw-xxl-950px{max-width:950px!important}.mw-xxl-1000px{max-width:1000px!important}.h-xxl-unset{height:unset!important}.h-xxl-25{height:25%!important}.h-xxl-50{height:50%!important}.h-xxl-75{height:75%!important}.h-xxl-100{height:100%!important}.h-xxl-auto{height:auto!important}.h-xxl-1px{height:1px!important}.h-xxl-2px{height:2px!important}.h-xxl-3px{height:3px!important}.h-xxl-4px{height:4px!important}.h-xxl-5px{height:5px!important}.h-xxl-6px{height:6px!important}.h-xxl-7px{height:7px!important}.h-xxl-8px{height:8px!important}.h-xxl-9px{height:9px!important}.h-xxl-10px{height:10px!important}.h-xxl-15px{height:15px!important}.h-xxl-20px{height:20px!important}.h-xxl-25px{height:25px!important}.h-xxl-30px{height:30px!important}.h-xxl-35px{height:35px!important}.h-xxl-40px{height:40px!important}.h-xxl-45px{height:45px!important}.h-xxl-50px{height:50px!important}.h-xxl-55px{height:55px!important}.h-xxl-60px{height:60px!important}.h-xxl-65px{height:65px!important}.h-xxl-70px{height:70px!important}.h-xxl-75px{height:75px!important}.h-xxl-80px{height:80px!important}.h-xxl-85px{height:85px!important}.h-xxl-90px{height:90px!important}.h-xxl-95px{height:95px!important}.h-xxl-100px{height:100px!important}.h-xxl-125px{height:125px!important}.h-xxl-150px{height:150px!important}.h-xxl-175px{height:175px!important}.h-xxl-200px{height:200px!important}.h-xxl-225px{height:225px!important}.h-xxl-250px{height:250px!important}.h-xxl-275px{height:275px!important}.h-xxl-300px{height:300px!important}.h-xxl-325px{height:325px!important}.h-xxl-350px{height:350px!important}.h-xxl-375px{height:375px!important}.h-xxl-400px{height:400px!important}.h-xxl-425px{height:425px!important}.h-xxl-450px{height:450px!important}.h-xxl-475px{height:475px!important}.h-xxl-500px{height:500px!important}.h-xxl-550px{height:550px!important}.h-xxl-600px{height:600px!important}.h-xxl-650px{height:650px!important}.h-xxl-700px{height:700px!important}.h-xxl-750px{height:750px!important}.h-xxl-800px{height:800px!important}.h-xxl-850px{height:850px!important}.h-xxl-900px{height:900px!important}.h-xxl-950px{height:950px!important}.h-xxl-1000px{height:1000px!important}.mh-xxl-unset{max-height:unset!important}.mh-xxl-25{max-height:25%!important}.mh-xxl-50{max-height:50%!important}.mh-xxl-75{max-height:75%!important}.mh-xxl-100{max-height:100%!important}.mh-xxl-auto{max-height:auto!important}.mh-xxl-1px{max-height:1px!important}.mh-xxl-2px{max-height:2px!important}.mh-xxl-3px{max-height:3px!important}.mh-xxl-4px{max-height:4px!important}.mh-xxl-5px{max-height:5px!important}.mh-xxl-6px{max-height:6px!important}.mh-xxl-7px{max-height:7px!important}.mh-xxl-8px{max-height:8px!important}.mh-xxl-9px{max-height:9px!important}.mh-xxl-10px{max-height:10px!important}.mh-xxl-15px{max-height:15px!important}.mh-xxl-20px{max-height:20px!important}.mh-xxl-25px{max-height:25px!important}.mh-xxl-30px{max-height:30px!important}.mh-xxl-35px{max-height:35px!important}.mh-xxl-40px{max-height:40px!important}.mh-xxl-45px{max-height:45px!important}.mh-xxl-50px{max-height:50px!important}.mh-xxl-55px{max-height:55px!important}.mh-xxl-60px{max-height:60px!important}.mh-xxl-65px{max-height:65px!important}.mh-xxl-70px{max-height:70px!important}.mh-xxl-75px{max-height:75px!important}.mh-xxl-80px{max-height:80px!important}.mh-xxl-85px{max-height:85px!important}.mh-xxl-90px{max-height:90px!important}.mh-xxl-95px{max-height:95px!important}.mh-xxl-100px{max-height:100px!important}.mh-xxl-125px{max-height:125px!important}.mh-xxl-150px{max-height:150px!important}.mh-xxl-175px{max-height:175px!important}.mh-xxl-200px{max-height:200px!important}.mh-xxl-225px{max-height:225px!important}.mh-xxl-250px{max-height:250px!important}.mh-xxl-275px{max-height:275px!important}.mh-xxl-300px{max-height:300px!important}.mh-xxl-325px{max-height:325px!important}.mh-xxl-350px{max-height:350px!important}.mh-xxl-375px{max-height:375px!important}.mh-xxl-400px{max-height:400px!important}.mh-xxl-425px{max-height:425px!important}.mh-xxl-450px{max-height:450px!important}.mh-xxl-475px{max-height:475px!important}.mh-xxl-500px{max-height:500px!important}.mh-xxl-550px{max-height:550px!important}.mh-xxl-600px{max-height:600px!important}.mh-xxl-650px{max-height:650px!important}.mh-xxl-700px{max-height:700px!important}.mh-xxl-750px{max-height:750px!important}.mh-xxl-800px{max-height:800px!important}.mh-xxl-850px{max-height:850px!important}.mh-xxl-900px{max-height:900px!important}.mh-xxl-950px{max-height:950px!important}.mh-xxl-1000px{max-height:1000px!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:.75rem!important}.gap-xxl-4{gap:1rem!important}.gap-xxl-5{gap:1.25rem!important}.gap-xxl-6{gap:1.5rem!important}.gap-xxl-7{gap:1.75rem!important}.gap-xxl-8{gap:2rem!important}.gap-xxl-9{gap:2.25rem!important}.gap-xxl-10{gap:2.5rem!important}.gap-xxl-11{gap:2.75rem!important}.gap-xxl-12{gap:3rem!important}.gap-xxl-13{gap:3.25rem!important}.gap-xxl-14{gap:3.5rem!important}.gap-xxl-15{gap:3.75rem!important}.gap-xxl-16{gap:4rem!important}.gap-xxl-17{gap:4.25rem!important}.gap-xxl-18{gap:4.5rem!important}.gap-xxl-19{gap:4.75rem!important}.gap-xxl-20{gap:5rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:.75rem!important}.m-xxl-4{margin:1rem!important}.m-xxl-5{margin:1.25rem!important}.m-xxl-6{margin:1.5rem!important}.m-xxl-7{margin:1.75rem!important}.m-xxl-8{margin:2rem!important}.m-xxl-9{margin:2.25rem!important}.m-xxl-10{margin:2.5rem!important}.m-xxl-11{margin:2.75rem!important}.m-xxl-12{margin:3rem!important}.m-xxl-13{margin:3.25rem!important}.m-xxl-14{margin:3.5rem!important}.m-xxl-15{margin:3.75rem!important}.m-xxl-16{margin:4rem!important}.m-xxl-17{margin:4.25rem!important}.m-xxl-18{margin:4.5rem!important}.m-xxl-19{margin:4.75rem!important}.m-xxl-20{margin:5rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:.75rem!important;margin-left:.75rem!important}.mx-xxl-4{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-5{margin-right:1.25rem!important;margin-left:1.25rem!important}.mx-xxl-6{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-7{margin-right:1.75rem!important;margin-left:1.75rem!important}.mx-xxl-8{margin-right:2rem!important;margin-left:2rem!important}.mx-xxl-9{margin-right:2.25rem!important;margin-left:2.25rem!important}.mx-xxl-10{margin-right:2.5rem!important;margin-left:2.5rem!important}.mx-xxl-11{margin-right:2.75rem!important;margin-left:2.75rem!important}.mx-xxl-12{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-13{margin-right:3.25rem!important;margin-left:3.25rem!important}.mx-xxl-14{margin-right:3.5rem!important;margin-left:3.5rem!important}.mx-xxl-15{margin-right:3.75rem!important;margin-left:3.75rem!important}.mx-xxl-16{margin-right:4rem!important;margin-left:4rem!important}.mx-xxl-17{margin-right:4.25rem!important;margin-left:4.25rem!important}.mx-xxl-18{margin-right:4.5rem!important;margin-left:4.5rem!important}.mx-xxl-19{margin-right:4.75rem!important;margin-left:4.75rem!important}.mx-xxl-20{margin-right:5rem!important;margin-left:5rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-xxl-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-xxl-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-xxl-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-xxl-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-xxl-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-xxl-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-xxl-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-xxl-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-xxl-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-xxl-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-xxl-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-xxl-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-xxl-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-xxl-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:.75rem!important}.mt-xxl-4{margin-top:1rem!important}.mt-xxl-5{margin-top:1.25rem!important}.mt-xxl-6{margin-top:1.5rem!important}.mt-xxl-7{margin-top:1.75rem!important}.mt-xxl-8{margin-top:2rem!important}.mt-xxl-9{margin-top:2.25rem!important}.mt-xxl-10{margin-top:2.5rem!important}.mt-xxl-11{margin-top:2.75rem!important}.mt-xxl-12{margin-top:3rem!important}.mt-xxl-13{margin-top:3.25rem!important}.mt-xxl-14{margin-top:3.5rem!important}.mt-xxl-15{margin-top:3.75rem!important}.mt-xxl-16{margin-top:4rem!important}.mt-xxl-17{margin-top:4.25rem!important}.mt-xxl-18{margin-top:4.5rem!important}.mt-xxl-19{margin-top:4.75rem!important}.mt-xxl-20{margin-top:5rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:.75rem!important}.me-xxl-4{margin-right:1rem!important}.me-xxl-5{margin-right:1.25rem!important}.me-xxl-6{margin-right:1.5rem!important}.me-xxl-7{margin-right:1.75rem!important}.me-xxl-8{margin-right:2rem!important}.me-xxl-9{margin-right:2.25rem!important}.me-xxl-10{margin-right:2.5rem!important}.me-xxl-11{margin-right:2.75rem!important}.me-xxl-12{margin-right:3rem!important}.me-xxl-13{margin-right:3.25rem!important}.me-xxl-14{margin-right:3.5rem!important}.me-xxl-15{margin-right:3.75rem!important}.me-xxl-16{margin-right:4rem!important}.me-xxl-17{margin-right:4.25rem!important}.me-xxl-18{margin-right:4.5rem!important}.me-xxl-19{margin-right:4.75rem!important}.me-xxl-20{margin-right:5rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:.75rem!important}.mb-xxl-4{margin-bottom:1rem!important}.mb-xxl-5{margin-bottom:1.25rem!important}.mb-xxl-6{margin-bottom:1.5rem!important}.mb-xxl-7{margin-bottom:1.75rem!important}.mb-xxl-8{margin-bottom:2rem!important}.mb-xxl-9{margin-bottom:2.25rem!important}.mb-xxl-10{margin-bottom:2.5rem!important}.mb-xxl-11{margin-bottom:2.75rem!important}.mb-xxl-12{margin-bottom:3rem!important}.mb-xxl-13{margin-bottom:3.25rem!important}.mb-xxl-14{margin-bottom:3.5rem!important}.mb-xxl-15{margin-bottom:3.75rem!important}.mb-xxl-16{margin-bottom:4rem!important}.mb-xxl-17{margin-bottom:4.25rem!important}.mb-xxl-18{margin-bottom:4.5rem!important}.mb-xxl-19{margin-bottom:4.75rem!important}.mb-xxl-20{margin-bottom:5rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:.75rem!important}.ms-xxl-4{margin-left:1rem!important}.ms-xxl-5{margin-left:1.25rem!important}.ms-xxl-6{margin-left:1.5rem!important}.ms-xxl-7{margin-left:1.75rem!important}.ms-xxl-8{margin-left:2rem!important}.ms-xxl-9{margin-left:2.25rem!important}.ms-xxl-10{margin-left:2.5rem!important}.ms-xxl-11{margin-left:2.75rem!important}.ms-xxl-12{margin-left:3rem!important}.ms-xxl-13{margin-left:3.25rem!important}.ms-xxl-14{margin-left:3.5rem!important}.ms-xxl-15{margin-left:3.75rem!important}.ms-xxl-16{margin-left:4rem!important}.ms-xxl-17{margin-left:4.25rem!important}.ms-xxl-18{margin-left:4.5rem!important}.ms-xxl-19{margin-left:4.75rem!important}.ms-xxl-20{margin-left:5rem!important}.ms-xxl-auto{margin-left:auto!important}.m-xxl-n1{margin:-.25rem!important}.m-xxl-n2{margin:-.5rem!important}.m-xxl-n3{margin:-.75rem!important}.m-xxl-n4{margin:-1rem!important}.m-xxl-n5{margin:-1.25rem!important}.m-xxl-n6{margin:-1.5rem!important}.m-xxl-n7{margin:-1.75rem!important}.m-xxl-n8{margin:-2rem!important}.m-xxl-n9{margin:-2.25rem!important}.m-xxl-n10{margin:-2.5rem!important}.m-xxl-n11{margin:-2.75rem!important}.m-xxl-n12{margin:-3rem!important}.m-xxl-n13{margin:-3.25rem!important}.m-xxl-n14{margin:-3.5rem!important}.m-xxl-n15{margin:-3.75rem!important}.m-xxl-n16{margin:-4rem!important}.m-xxl-n17{margin:-4.25rem!important}.m-xxl-n18{margin:-4.5rem!important}.m-xxl-n19{margin:-4.75rem!important}.m-xxl-n20{margin:-5rem!important}.mx-xxl-n1{margin-right:-.25rem!important;margin-left:-.25rem!important}.mx-xxl-n2{margin-right:-.5rem!important;margin-left:-.5rem!important}.mx-xxl-n3{margin-right:-.75rem!important;margin-left:-.75rem!important}.mx-xxl-n4{margin-right:-1rem!important;margin-left:-1rem!important}.mx-xxl-n5{margin-right:-1.25rem!important;margin-left:-1.25rem!important}.mx-xxl-n6{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-xxl-n7{margin-right:-1.75rem!important;margin-left:-1.75rem!important}.mx-xxl-n8{margin-right:-2rem!important;margin-left:-2rem!important}.mx-xxl-n9{margin-right:-2.25rem!important;margin-left:-2.25rem!important}.mx-xxl-n10{margin-right:-2.5rem!important;margin-left:-2.5rem!important}.mx-xxl-n11{margin-right:-2.75rem!important;margin-left:-2.75rem!important}.mx-xxl-n12{margin-right:-3rem!important;margin-left:-3rem!important}.mx-xxl-n13{margin-right:-3.25rem!important;margin-left:-3.25rem!important}.mx-xxl-n14{margin-right:-3.5rem!important;margin-left:-3.5rem!important}.mx-xxl-n15{margin-right:-3.75rem!important;margin-left:-3.75rem!important}.mx-xxl-n16{margin-right:-4rem!important;margin-left:-4rem!important}.mx-xxl-n17{margin-right:-4.25rem!important;margin-left:-4.25rem!important}.mx-xxl-n18{margin-right:-4.5rem!important;margin-left:-4.5rem!important}.mx-xxl-n19{margin-right:-4.75rem!important;margin-left:-4.75rem!important}.mx-xxl-n20{margin-right:-5rem!important;margin-left:-5rem!important}.my-xxl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xxl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xxl-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-xxl-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xxl-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-xxl-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xxl-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-xxl-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-xxl-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-xxl-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-xxl-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-xxl-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-xxl-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-xxl-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-xxl-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-xxl-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-xxl-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-xxl-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-xxl-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-xxl-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-xxl-n1{margin-top:-.25rem!important}.mt-xxl-n2{margin-top:-.5rem!important}.mt-xxl-n3{margin-top:-.75rem!important}.mt-xxl-n4{margin-top:-1rem!important}.mt-xxl-n5{margin-top:-1.25rem!important}.mt-xxl-n6{margin-top:-1.5rem!important}.mt-xxl-n7{margin-top:-1.75rem!important}.mt-xxl-n8{margin-top:-2rem!important}.mt-xxl-n9{margin-top:-2.25rem!important}.mt-xxl-n10{margin-top:-2.5rem!important}.mt-xxl-n11{margin-top:-2.75rem!important}.mt-xxl-n12{margin-top:-3rem!important}.mt-xxl-n13{margin-top:-3.25rem!important}.mt-xxl-n14{margin-top:-3.5rem!important}.mt-xxl-n15{margin-top:-3.75rem!important}.mt-xxl-n16{margin-top:-4rem!important}.mt-xxl-n17{margin-top:-4.25rem!important}.mt-xxl-n18{margin-top:-4.5rem!important}.mt-xxl-n19{margin-top:-4.75rem!important}.mt-xxl-n20{margin-top:-5rem!important}.me-xxl-n1{margin-right:-.25rem!important}.me-xxl-n2{margin-right:-.5rem!important}.me-xxl-n3{margin-right:-.75rem!important}.me-xxl-n4{margin-right:-1rem!important}.me-xxl-n5{margin-right:-1.25rem!important}.me-xxl-n6{margin-right:-1.5rem!important}.me-xxl-n7{margin-right:-1.75rem!important}.me-xxl-n8{margin-right:-2rem!important}.me-xxl-n9{margin-right:-2.25rem!important}.me-xxl-n10{margin-right:-2.5rem!important}.me-xxl-n11{margin-right:-2.75rem!important}.me-xxl-n12{margin-right:-3rem!important}.me-xxl-n13{margin-right:-3.25rem!important}.me-xxl-n14{margin-right:-3.5rem!important}.me-xxl-n15{margin-right:-3.75rem!important}.me-xxl-n16{margin-right:-4rem!important}.me-xxl-n17{margin-right:-4.25rem!important}.me-xxl-n18{margin-right:-4.5rem!important}.me-xxl-n19{margin-right:-4.75rem!important}.me-xxl-n20{margin-right:-5rem!important}.mb-xxl-n1{margin-bottom:-.25rem!important}.mb-xxl-n2{margin-bottom:-.5rem!important}.mb-xxl-n3{margin-bottom:-.75rem!important}.mb-xxl-n4{margin-bottom:-1rem!important}.mb-xxl-n5{margin-bottom:-1.25rem!important}.mb-xxl-n6{margin-bottom:-1.5rem!important}.mb-xxl-n7{margin-bottom:-1.75rem!important}.mb-xxl-n8{margin-bottom:-2rem!important}.mb-xxl-n9{margin-bottom:-2.25rem!important}.mb-xxl-n10{margin-bottom:-2.5rem!important}.mb-xxl-n11{margin-bottom:-2.75rem!important}.mb-xxl-n12{margin-bottom:-3rem!important}.mb-xxl-n13{margin-bottom:-3.25rem!important}.mb-xxl-n14{margin-bottom:-3.5rem!important}.mb-xxl-n15{margin-bottom:-3.75rem!important}.mb-xxl-n16{margin-bottom:-4rem!important}.mb-xxl-n17{margin-bottom:-4.25rem!important}.mb-xxl-n18{margin-bottom:-4.5rem!important}.mb-xxl-n19{margin-bottom:-4.75rem!important}.mb-xxl-n20{margin-bottom:-5rem!important}.ms-xxl-n1{margin-left:-.25rem!important}.ms-xxl-n2{margin-left:-.5rem!important}.ms-xxl-n3{margin-left:-.75rem!important}.ms-xxl-n4{margin-left:-1rem!important}.ms-xxl-n5{margin-left:-1.25rem!important}.ms-xxl-n6{margin-left:-1.5rem!important}.ms-xxl-n7{margin-left:-1.75rem!important}.ms-xxl-n8{margin-left:-2rem!important}.ms-xxl-n9{margin-left:-2.25rem!important}.ms-xxl-n10{margin-left:-2.5rem!important}.ms-xxl-n11{margin-left:-2.75rem!important}.ms-xxl-n12{margin-left:-3rem!important}.ms-xxl-n13{margin-left:-3.25rem!important}.ms-xxl-n14{margin-left:-3.5rem!important}.ms-xxl-n15{margin-left:-3.75rem!important}.ms-xxl-n16{margin-left:-4rem!important}.ms-xxl-n17{margin-left:-4.25rem!important}.ms-xxl-n18{margin-left:-4.5rem!important}.ms-xxl-n19{margin-left:-4.75rem!important}.ms-xxl-n20{margin-left:-5rem!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:.75rem!important}.p-xxl-4{padding:1rem!important}.p-xxl-5{padding:1.25rem!important}.p-xxl-6{padding:1.5rem!important}.p-xxl-7{padding:1.75rem!important}.p-xxl-8{padding:2rem!important}.p-xxl-9{padding:2.25rem!important}.p-xxl-10{padding:2.5rem!important}.p-xxl-11{padding:2.75rem!important}.p-xxl-12{padding:3rem!important}.p-xxl-13{padding:3.25rem!important}.p-xxl-14{padding:3.5rem!important}.p-xxl-15{padding:3.75rem!important}.p-xxl-16{padding:4rem!important}.p-xxl-17{padding:4.25rem!important}.p-xxl-18{padding:4.5rem!important}.p-xxl-19{padding:4.75rem!important}.p-xxl-20{padding:5rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:.75rem!important;padding-left:.75rem!important}.px-xxl-4{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-5{padding-right:1.25rem!important;padding-left:1.25rem!important}.px-xxl-6{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-7{padding-right:1.75rem!important;padding-left:1.75rem!important}.px-xxl-8{padding-right:2rem!important;padding-left:2rem!important}.px-xxl-9{padding-right:2.25rem!important;padding-left:2.25rem!important}.px-xxl-10{padding-right:2.5rem!important;padding-left:2.5rem!important}.px-xxl-11{padding-right:2.75rem!important;padding-left:2.75rem!important}.px-xxl-12{padding-right:3rem!important;padding-left:3rem!important}.px-xxl-13{padding-right:3.25rem!important;padding-left:3.25rem!important}.px-xxl-14{padding-right:3.5rem!important;padding-left:3.5rem!important}.px-xxl-15{padding-right:3.75rem!important;padding-left:3.75rem!important}.px-xxl-16{padding-right:4rem!important;padding-left:4rem!important}.px-xxl-17{padding-right:4.25rem!important;padding-left:4.25rem!important}.px-xxl-18{padding-right:4.5rem!important;padding-left:4.5rem!important}.px-xxl-19{padding-right:4.75rem!important;padding-left:4.75rem!important}.px-xxl-20{padding-right:5rem!important;padding-left:5rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-xxl-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-xxl-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-xxl-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-xxl-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-xxl-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-xxl-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-xxl-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-xxl-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-xxl-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-xxl-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-xxl-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-xxl-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-xxl-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-xxl-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-xxl-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:.75rem!important}.pt-xxl-4{padding-top:1rem!important}.pt-xxl-5{padding-top:1.25rem!important}.pt-xxl-6{padding-top:1.5rem!important}.pt-xxl-7{padding-top:1.75rem!important}.pt-xxl-8{padding-top:2rem!important}.pt-xxl-9{padding-top:2.25rem!important}.pt-xxl-10{padding-top:2.5rem!important}.pt-xxl-11{padding-top:2.75rem!important}.pt-xxl-12{padding-top:3rem!important}.pt-xxl-13{padding-top:3.25rem!important}.pt-xxl-14{padding-top:3.5rem!important}.pt-xxl-15{padding-top:3.75rem!important}.pt-xxl-16{padding-top:4rem!important}.pt-xxl-17{padding-top:4.25rem!important}.pt-xxl-18{padding-top:4.5rem!important}.pt-xxl-19{padding-top:4.75rem!important}.pt-xxl-20{padding-top:5rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:.75rem!important}.pe-xxl-4{padding-right:1rem!important}.pe-xxl-5{padding-right:1.25rem!important}.pe-xxl-6{padding-right:1.5rem!important}.pe-xxl-7{padding-right:1.75rem!important}.pe-xxl-8{padding-right:2rem!important}.pe-xxl-9{padding-right:2.25rem!important}.pe-xxl-10{padding-right:2.5rem!important}.pe-xxl-11{padding-right:2.75rem!important}.pe-xxl-12{padding-right:3rem!important}.pe-xxl-13{padding-right:3.25rem!important}.pe-xxl-14{padding-right:3.5rem!important}.pe-xxl-15{padding-right:3.75rem!important}.pe-xxl-16{padding-right:4rem!important}.pe-xxl-17{padding-right:4.25rem!important}.pe-xxl-18{padding-right:4.5rem!important}.pe-xxl-19{padding-right:4.75rem!important}.pe-xxl-20{padding-right:5rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:.75rem!important}.pb-xxl-4{padding-bottom:1rem!important}.pb-xxl-5{padding-bottom:1.25rem!important}.pb-xxl-6{padding-bottom:1.5rem!important}.pb-xxl-7{padding-bottom:1.75rem!important}.pb-xxl-8{padding-bottom:2rem!important}.pb-xxl-9{padding-bottom:2.25rem!important}.pb-xxl-10{padding-bottom:2.5rem!important}.pb-xxl-11{padding-bottom:2.75rem!important}.pb-xxl-12{padding-bottom:3rem!important}.pb-xxl-13{padding-bottom:3.25rem!important}.pb-xxl-14{padding-bottom:3.5rem!important}.pb-xxl-15{padding-bottom:3.75rem!important}.pb-xxl-16{padding-bottom:4rem!important}.pb-xxl-17{padding-bottom:4.25rem!important}.pb-xxl-18{padding-bottom:4.5rem!important}.pb-xxl-19{padding-bottom:4.75rem!important}.pb-xxl-20{padding-bottom:5rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:.75rem!important}.ps-xxl-4{padding-left:1rem!important}.ps-xxl-5{padding-left:1.25rem!important}.ps-xxl-6{padding-left:1.5rem!important}.ps-xxl-7{padding-left:1.75rem!important}.ps-xxl-8{padding-left:2rem!important}.ps-xxl-9{padding-left:2.25rem!important}.ps-xxl-10{padding-left:2.5rem!important}.ps-xxl-11{padding-left:2.75rem!important}.ps-xxl-12{padding-left:3rem!important}.ps-xxl-13{padding-left:3.25rem!important}.ps-xxl-14{padding-left:3.5rem!important}.ps-xxl-15{padding-left:3.75rem!important}.ps-xxl-16{padding-left:4rem!important}.ps-xxl-17{padding-left:4.25rem!important}.ps-xxl-18{padding-left:4.5rem!important}.ps-xxl-19{padding-left:4.75rem!important}.ps-xxl-20{padding-left:5rem!important}.fs-xxl-1{font-size:calc(1.3rem + .6vw)!important}.fs-xxl-2{font-size:calc(1.275rem + .3vw)!important}.fs-xxl-3{font-size:calc(1.26rem + .12vw)!important}.fs-xxl-4{font-size:1.25rem!important}.fs-xxl-5{font-size:1.15rem!important}.fs-xxl-6{font-size:1.075rem!important}.fs-xxl-7{font-size:.95rem!important}.fs-xxl-8{font-size:.85rem!important}.fs-xxl-9{font-size:.75rem!important}.fs-xxl-10{font-size:.5rem!important}.fs-xxl-base{font-size:1rem!important}.fs-xxl-fluid{font-size:100%!important}.fs-xxl-2x{font-size:calc(1.325rem + .9vw)!important}.fs-xxl-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-xxl-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-xxl-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-xxl-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-xxl-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-xxl-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-xxl-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-xxl-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-xxl-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-xxl-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-xxl-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-xxl-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-xxl-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-xxl-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-xxl-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}.min-w-xxl-unset{min-width:unset!important}.min-w-xxl-25{min-width:25%!important}.min-w-xxl-50{min-width:50%!important}.min-w-xxl-75{min-width:75%!important}.min-w-xxl-100{min-width:100%!important}.min-w-xxl-auto{min-width:auto!important}.min-w-xxl-1px{min-width:1px!important}.min-w-xxl-2px{min-width:2px!important}.min-w-xxl-3px{min-width:3px!important}.min-w-xxl-4px{min-width:4px!important}.min-w-xxl-5px{min-width:5px!important}.min-w-xxl-6px{min-width:6px!important}.min-w-xxl-7px{min-width:7px!important}.min-w-xxl-8px{min-width:8px!important}.min-w-xxl-9px{min-width:9px!important}.min-w-xxl-10px{min-width:10px!important}.min-w-xxl-15px{min-width:15px!important}.min-w-xxl-20px{min-width:20px!important}.min-w-xxl-25px{min-width:25px!important}.min-w-xxl-30px{min-width:30px!important}.min-w-xxl-35px{min-width:35px!important}.min-w-xxl-40px{min-width:40px!important}.min-w-xxl-45px{min-width:45px!important}.min-w-xxl-50px{min-width:50px!important}.min-w-xxl-55px{min-width:55px!important}.min-w-xxl-60px{min-width:60px!important}.min-w-xxl-65px{min-width:65px!important}.min-w-xxl-70px{min-width:70px!important}.min-w-xxl-75px{min-width:75px!important}.min-w-xxl-80px{min-width:80px!important}.min-w-xxl-85px{min-width:85px!important}.min-w-xxl-90px{min-width:90px!important}.min-w-xxl-95px{min-width:95px!important}.min-w-xxl-100px{min-width:100px!important}.min-w-xxl-125px{min-width:125px!important}.min-w-xxl-150px{min-width:150px!important}.min-w-xxl-175px{min-width:175px!important}.min-w-xxl-200px{min-width:200px!important}.min-w-xxl-225px{min-width:225px!important}.min-w-xxl-250px{min-width:250px!important}.min-w-xxl-275px{min-width:275px!important}.min-w-xxl-300px{min-width:300px!important}.min-w-xxl-325px{min-width:325px!important}.min-w-xxl-350px{min-width:350px!important}.min-w-xxl-375px{min-width:375px!important}.min-w-xxl-400px{min-width:400px!important}.min-w-xxl-425px{min-width:425px!important}.min-w-xxl-450px{min-width:450px!important}.min-w-xxl-475px{min-width:475px!important}.min-w-xxl-500px{min-width:500px!important}.min-w-xxl-550px{min-width:550px!important}.min-w-xxl-600px{min-width:600px!important}.min-w-xxl-650px{min-width:650px!important}.min-w-xxl-700px{min-width:700px!important}.min-w-xxl-750px{min-width:750px!important}.min-w-xxl-800px{min-width:800px!important}.min-w-xxl-850px{min-width:850px!important}.min-w-xxl-900px{min-width:900px!important}.min-w-xxl-950px{min-width:950px!important}.min-w-xxl-1000px{min-width:1000px!important}.min-h-xxl-unset{min-height:unset!important}.min-h-xxl-25{min-height:25%!important}.min-h-xxl-50{min-height:50%!important}.min-h-xxl-75{min-height:75%!important}.min-h-xxl-100{min-height:100%!important}.min-h-xxl-auto{min-height:auto!important}.min-h-xxl-1px{min-height:1px!important}.min-h-xxl-2px{min-height:2px!important}.min-h-xxl-3px{min-height:3px!important}.min-h-xxl-4px{min-height:4px!important}.min-h-xxl-5px{min-height:5px!important}.min-h-xxl-6px{min-height:6px!important}.min-h-xxl-7px{min-height:7px!important}.min-h-xxl-8px{min-height:8px!important}.min-h-xxl-9px{min-height:9px!important}.min-h-xxl-10px{min-height:10px!important}.min-h-xxl-15px{min-height:15px!important}.min-h-xxl-20px{min-height:20px!important}.min-h-xxl-25px{min-height:25px!important}.min-h-xxl-30px{min-height:30px!important}.min-h-xxl-35px{min-height:35px!important}.min-h-xxl-40px{min-height:40px!important}.min-h-xxl-45px{min-height:45px!important}.min-h-xxl-50px{min-height:50px!important}.min-h-xxl-55px{min-height:55px!important}.min-h-xxl-60px{min-height:60px!important}.min-h-xxl-65px{min-height:65px!important}.min-h-xxl-70px{min-height:70px!important}.min-h-xxl-75px{min-height:75px!important}.min-h-xxl-80px{min-height:80px!important}.min-h-xxl-85px{min-height:85px!important}.min-h-xxl-90px{min-height:90px!important}.min-h-xxl-95px{min-height:95px!important}.min-h-xxl-100px{min-height:100px!important}.min-h-xxl-125px{min-height:125px!important}.min-h-xxl-150px{min-height:150px!important}.min-h-xxl-175px{min-height:175px!important}.min-h-xxl-200px{min-height:200px!important}.min-h-xxl-225px{min-height:225px!important}.min-h-xxl-250px{min-height:250px!important}.min-h-xxl-275px{min-height:275px!important}.min-h-xxl-300px{min-height:300px!important}.min-h-xxl-325px{min-height:325px!important}.min-h-xxl-350px{min-height:350px!important}.min-h-xxl-375px{min-height:375px!important}.min-h-xxl-400px{min-height:400px!important}.min-h-xxl-425px{min-height:425px!important}.min-h-xxl-450px{min-height:450px!important}.min-h-xxl-475px{min-height:475px!important}.min-h-xxl-500px{min-height:500px!important}.min-h-xxl-550px{min-height:550px!important}.min-h-xxl-600px{min-height:600px!important}.min-h-xxl-650px{min-height:650px!important}.min-h-xxl-700px{min-height:700px!important}.min-h-xxl-750px{min-height:750px!important}.min-h-xxl-800px{min-height:800px!important}.min-h-xxl-850px{min-height:850px!important}.min-h-xxl-900px{min-height:900px!important}.min-h-xxl-950px{min-height:950px!important}.min-h-xxl-1000px{min-height:1000px!important}}@media (min-width:1200px){.fs-1{font-size:1.75rem!important}.fs-2{font-size:1.5rem!important}.fs-3{font-size:1.35rem!important}.fs-2x{font-size:2rem!important}.fs-2qx{font-size:2.25rem!important}.fs-2hx{font-size:2.5rem!important}.fs-2tx{font-size:2.75rem!important}.fs-3x{font-size:3rem!important}.fs-3qx{font-size:3.25rem!important}.fs-3hx{font-size:3.5rem!important}.fs-3tx{font-size:3.75rem!important}.fs-4x{font-size:4rem!important}.fs-4qx{font-size:4.25rem!important}.fs-4hx{font-size:4.5rem!important}.fs-4tx{font-size:4.75rem!important}.fs-5x{font-size:5rem!important}.fs-5qx{font-size:5.25rem!important}.fs-5hx{font-size:5.5rem!important}.fs-5tx{font-size:5.75rem!important}.fs-sm-1{font-size:1.75rem!important}.fs-sm-2{font-size:1.5rem!important}.fs-sm-3{font-size:1.35rem!important}.fs-sm-2x{font-size:2rem!important}.fs-sm-2qx{font-size:2.25rem!important}.fs-sm-2hx{font-size:2.5rem!important}.fs-sm-2tx{font-size:2.75rem!important}.fs-sm-3x{font-size:3rem!important}.fs-sm-3qx{font-size:3.25rem!important}.fs-sm-3hx{font-size:3.5rem!important}.fs-sm-3tx{font-size:3.75rem!important}.fs-sm-4x{font-size:4rem!important}.fs-sm-4qx{font-size:4.25rem!important}.fs-sm-4hx{font-size:4.5rem!important}.fs-sm-4tx{font-size:4.75rem!important}.fs-sm-5x{font-size:5rem!important}.fs-sm-5qx{font-size:5.25rem!important}.fs-sm-5hx{font-size:5.5rem!important}.fs-sm-5tx{font-size:5.75rem!important}.fs-md-1{font-size:1.75rem!important}.fs-md-2{font-size:1.5rem!important}.fs-md-3{font-size:1.35rem!important}.fs-md-2x{font-size:2rem!important}.fs-md-2qx{font-size:2.25rem!important}.fs-md-2hx{font-size:2.5rem!important}.fs-md-2tx{font-size:2.75rem!important}.fs-md-3x{font-size:3rem!important}.fs-md-3qx{font-size:3.25rem!important}.fs-md-3hx{font-size:3.5rem!important}.fs-md-3tx{font-size:3.75rem!important}.fs-md-4x{font-size:4rem!important}.fs-md-4qx{font-size:4.25rem!important}.fs-md-4hx{font-size:4.5rem!important}.fs-md-4tx{font-size:4.75rem!important}.fs-md-5x{font-size:5rem!important}.fs-md-5qx{font-size:5.25rem!important}.fs-md-5hx{font-size:5.5rem!important}.fs-md-5tx{font-size:5.75rem!important}.fs-lg-1{font-size:1.75rem!important}.fs-lg-2{font-size:1.5rem!important}.fs-lg-3{font-size:1.35rem!important}.fs-lg-2x{font-size:2rem!important}.fs-lg-2qx{font-size:2.25rem!important}.fs-lg-2hx{font-size:2.5rem!important}.fs-lg-2tx{font-size:2.75rem!important}.fs-lg-3x{font-size:3rem!important}.fs-lg-3qx{font-size:3.25rem!important}.fs-lg-3hx{font-size:3.5rem!important}.fs-lg-3tx{font-size:3.75rem!important}.fs-lg-4x{font-size:4rem!important}.fs-lg-4qx{font-size:4.25rem!important}.fs-lg-4hx{font-size:4.5rem!important}.fs-lg-4tx{font-size:4.75rem!important}.fs-lg-5x{font-size:5rem!important}.fs-lg-5qx{font-size:5.25rem!important}.fs-lg-5hx{font-size:5.5rem!important}.fs-lg-5tx{font-size:5.75rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!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}.d-print-none{display:none!important}}:root{--bs-light-primary:#212E48;--bs-active-primary:#187DE4;--bs-light-success:#1C3238;--bs-active-success:#04AA77;--bs-light-info:#2F264F;--bs-active-info:#7337EE;--bs-light-warning:#392F28;--bs-active-warning:#EE9D01;--bs-light-danger:#3A2434;--bs-active-danger:#EE2D41;--bs-light-dark:#2B2B40;--bs-active-dark:#e8e8e8;--bs-gray-100:#1b1b29;--bs-gray-200:#2B2B40;--bs-gray-300:#323248;--bs-gray-400:#474761;--bs-gray-500:#565674;--bs-gray-600:#6D6D80;--bs-gray-700:#92929F;--bs-gray-800:#CDCDDE;--bs-gray-900:#FFFFFF;--bs-xs:0;--bs-sm:576px;--bs-md:768px;--bs-lg:992px;--bs-xl:1200px;--bs-xxl:1400px;--bs-border-color:#2B2B40;--bs-border-dashed-color:#323248}.bg-white{background-color:#fff!important;--bg-color:255,255,255!important}.bg-white.hoverable:hover{background-color:#1b1b29!important}.bg-hover-white{cursor:pointer}.bg-hover-white:hover{--bg-color:255,255,255;background-color:#fff!important}.bg-active-white.active{--bg-color:255,255,255;background-color:#fff!important}.bg-state-white{cursor:pointer}.bg-state-white.active,.bg-state-white:hover{--bg-color:255,255,255;background-color:#fff!important}.bg-light{background-color:#323248!important;--bg-color:50,50,72!important}.bg-light.hoverable:hover{background-color:#474761!important}.bg-hover-light{cursor:pointer}.bg-hover-light:hover{--bg-color:50,50,72;background-color:#323248!important}.bg-active-light.active{--bg-color:50,50,72;background-color:#323248!important}.bg-state-light{cursor:pointer}.bg-state-light.active,.bg-state-light:hover{--bg-color:50,50,72;background-color:#323248!important}.bg-light-primary{background-color:#212e48!important}.bg-light-primary.hoverable:hover{background-color:#172133!important}.bg-primary{background-color:#3699ff!important;--bg-color:54,153,255!important}.bg-primary.hoverable:hover{background-color:#187de4!important}.bg-hover-light-primary{cursor:pointer}.bg-hover-light-primary:hover{background-color:#212e48!important}.bg-state-light-primary{cursor:pointer}.bg-state-light-primary.active,.bg-state-light-primary:hover{background-color:#212e48!important}.bg-hover-primary{cursor:pointer}.bg-hover-primary:hover{--bg-color:54,153,255;background-color:#3699ff!important}.bg-active-primary.active{--bg-color:54,153,255;background-color:#3699ff!important}.bg-state-primary{cursor:pointer}.bg-state-primary.active,.bg-state-primary:hover{--bg-color:54,153,255;background-color:#3699ff!important}.bg-secondary{background-color:#323248!important;--bg-color:50,50,72!important}.bg-secondary.hoverable:hover{background-color:#474761!important}.bg-hover-secondary{cursor:pointer}.bg-hover-secondary:hover{--bg-color:50,50,72;background-color:#323248!important}.bg-active-secondary.active{--bg-color:50,50,72;background-color:#323248!important}.bg-state-secondary{cursor:pointer}.bg-state-secondary.active,.bg-state-secondary:hover{--bg-color:50,50,72;background-color:#323248!important}.bg-light-success{background-color:#1c3238!important}.bg-light-success.hoverable:hover{background-color:#122024!important}.bg-success{background-color:#0bb783!important;--bg-color:11,183,131!important}.bg-success.hoverable:hover{background-color:#04aa77!important}.bg-hover-light-success{cursor:pointer}.bg-hover-light-success:hover{background-color:#1c3238!important}.bg-state-light-success{cursor:pointer}.bg-state-light-success.active,.bg-state-light-success:hover{background-color:#1c3238!important}.bg-hover-success{cursor:pointer}.bg-hover-success:hover{--bg-color:11,183,131;background-color:#0bb783!important}.bg-active-success.active{--bg-color:11,183,131;background-color:#0bb783!important}.bg-state-success{cursor:pointer}.bg-state-success.active,.bg-state-success:hover{--bg-color:11,183,131;background-color:#0bb783!important}.bg-light-info{background-color:#2f264f!important}.bg-light-info.hoverable:hover{background-color:#231c3a!important}.bg-info{background-color:#8950fc!important;--bg-color:137,80,252!important}.bg-info.hoverable:hover{background-color:#7337ee!important}.bg-hover-light-info{cursor:pointer}.bg-hover-light-info:hover{background-color:#2f264f!important}.bg-state-light-info{cursor:pointer}.bg-state-light-info.active,.bg-state-light-info:hover{background-color:#2f264f!important}.bg-hover-info{cursor:pointer}.bg-hover-info:hover{--bg-color:137,80,252;background-color:#8950fc!important}.bg-active-info.active{--bg-color:137,80,252;background-color:#8950fc!important}.bg-state-info{cursor:pointer}.bg-state-info.active,.bg-state-info:hover{--bg-color:137,80,252;background-color:#8950fc!important}.bg-light-warning{background-color:#392f28!important}.bg-light-warning.hoverable:hover{background-color:#27201b!important}.bg-warning{background-color:#ffa800!important;--bg-color:255,168,0!important}.bg-warning.hoverable:hover{background-color:#ee9d01!important}.bg-hover-light-warning{cursor:pointer}.bg-hover-light-warning:hover{background-color:#392f28!important}.bg-state-light-warning{cursor:pointer}.bg-state-light-warning.active,.bg-state-light-warning:hover{background-color:#392f28!important}.bg-hover-warning{cursor:pointer}.bg-hover-warning:hover{--bg-color:255,168,0;background-color:#ffa800!important}.bg-active-warning.active{--bg-color:255,168,0;background-color:#ffa800!important}.bg-state-warning{cursor:pointer}.bg-state-warning.active,.bg-state-warning:hover{--bg-color:255,168,0;background-color:#ffa800!important}.bg-light-danger{background-color:#3a2434!important}.bg-light-danger.hoverable:hover{background-color:#271823!important}.bg-danger{background-color:#f64e60!important;--bg-color:246,78,96!important}.bg-danger.hoverable:hover{background-color:#ee2d41!important}.bg-hover-light-danger{cursor:pointer}.bg-hover-light-danger:hover{background-color:#3a2434!important}.bg-state-light-danger{cursor:pointer}.bg-state-light-danger.active,.bg-state-light-danger:hover{background-color:#3a2434!important}.bg-hover-danger{cursor:pointer}.bg-hover-danger:hover{--bg-color:246,78,96;background-color:#f64e60!important}.bg-active-danger.active{--bg-color:246,78,96;background-color:#f64e60!important}.bg-state-danger{cursor:pointer}.bg-state-danger.active,.bg-state-danger:hover{--bg-color:246,78,96;background-color:#f64e60!important}.bg-light-dark{background-color:#2b2b40!important}.bg-light-dark.hoverable:hover{background-color:#1f1f2e!important}.bg-dark{background-color:#fff!important;--bg-color:255,255,255!important}.bg-dark.hoverable:hover{background-color:#e8e8e8!important}.bg-hover-light-dark{cursor:pointer}.bg-hover-light-dark:hover{background-color:#2b2b40!important}.bg-state-light-dark{cursor:pointer}.bg-state-light-dark.active,.bg-state-light-dark:hover{background-color:#2b2b40!important}.bg-hover-dark{cursor:pointer}.bg-hover-dark:hover{--bg-color:255,255,255;background-color:#fff!important}.bg-active-dark.active{--bg-color:255,255,255;background-color:#fff!important}.bg-state-dark{cursor:pointer}.bg-state-dark.active,.bg-state-dark:hover{--bg-color:255,255,255;background-color:#fff!important}.bg-gray-100{background-color:#1b1b29}.bg-gray-200{background-color:#2b2b40}.bg-gray-300{background-color:#323248}.bg-gray-400{background-color:#474761}.bg-gray-500{background-color:#565674}.bg-gray-600{background-color:#6d6d80}.bg-gray-700{background-color:#92929f}.bg-gray-800{background-color:#cdcdde}.bg-gray-900{background-color:#fff}.bg-opacity-0{background-color:rgba(var(--bg-color),0)!important}.bg-hover-opacity-0:hover{background-color:rgba(var(--bg-color),0)!important}.bg-active-opacity-0.active{background-color:rgba(var(--bg-color),0)!important}.bg-state-opacity-0 .active,.bg-state-opacity-0:hover{background-color:rgba(var(--bg-color),0)!important}.bg-opacity-5{background-color:rgba(var(--bg-color),.05)!important}.bg-hover-opacity-5:hover{background-color:rgba(var(--bg-color),.05)!important}.bg-active-opacity-5.active{background-color:rgba(var(--bg-color),.05)!important}.bg-state-opacity-5 .active,.bg-state-opacity-5:hover{background-color:rgba(var(--bg-color),.05)!important}.bg-opacity-10{background-color:rgba(var(--bg-color),.1)!important}.bg-hover-opacity-10:hover{background-color:rgba(var(--bg-color),.1)!important}.bg-active-opacity-10.active{background-color:rgba(var(--bg-color),.1)!important}.bg-state-opacity-10 .active,.bg-state-opacity-10:hover{background-color:rgba(var(--bg-color),.1)!important}.bg-opacity-15{background-color:rgba(var(--bg-color),.15)!important}.bg-hover-opacity-15:hover{background-color:rgba(var(--bg-color),.15)!important}.bg-active-opacity-15.active{background-color:rgba(var(--bg-color),.15)!important}.bg-state-opacity-15 .active,.bg-state-opacity-15:hover{background-color:rgba(var(--bg-color),.15)!important}.bg-opacity-20{background-color:rgba(var(--bg-color),.2)!important}.bg-hover-opacity-20:hover{background-color:rgba(var(--bg-color),.2)!important}.bg-active-opacity-20.active{background-color:rgba(var(--bg-color),.2)!important}.bg-state-opacity-20 .active,.bg-state-opacity-20:hover{background-color:rgba(var(--bg-color),.2)!important}.bg-opacity-25{background-color:rgba(var(--bg-color),.25)!important}.bg-hover-opacity-25:hover{background-color:rgba(var(--bg-color),.25)!important}.bg-active-opacity-25.active{background-color:rgba(var(--bg-color),.25)!important}.bg-state-opacity-25 .active,.bg-state-opacity-25:hover{background-color:rgba(var(--bg-color),.25)!important}.bg-opacity-50{background-color:rgba(var(--bg-color),.5)!important}.bg-hover-opacity-50:hover{background-color:rgba(var(--bg-color),.5)!important}.bg-active-opacity-50.active{background-color:rgba(var(--bg-color),.5)!important}.bg-state-opacity-50 .active,.bg-state-opacity-50:hover{background-color:rgba(var(--bg-color),.5)!important}.bg-opacity-75{background-color:rgba(var(--bg-color),.75)!important}.bg-hover-opacity-75:hover{background-color:rgba(var(--bg-color),.75)!important}.bg-active-opacity-75.active{background-color:rgba(var(--bg-color),.75)!important}.bg-state-opacity-75 .active,.bg-state-opacity-75:hover{background-color:rgba(var(--bg-color),.75)!important}.bg-opacity-100{background-color:rgba(var(--bg-color),1)!important}.bg-hover-opacity-100:hover{background-color:rgba(var(--bg-color),1)!important}.bg-active-opacity-100.active{background-color:rgba(var(--bg-color),1)!important}.bg-state-opacity-100 .active,.bg-state-opacity-100:hover{background-color:rgba(var(--bg-color),1)!important}.bg-black{background-color:#000}.bg-body{--bg-color:30,30,45;background-color:#1e1e2d}.bg-lighten{background-color:rgba(50,50,72,.5)}.bg-hover-lighten{cursor:pointer}.bg-hover-lighten:hover{background-color:rgba(50,50,72,.5)}.bg-active-lighten.active{background-color:rgba(50,50,72,.5)}.bg-state-lighten{cursor:pointer}.bg-state-lighten.active,.bg-state-lighten:hover{background-color:rgba(50,50,72,.5)}.hoverable{cursor:pointer;transition:all .2s ease}.hoverable:hover{transition:all .2s ease}.bgi-no-repeat{background-repeat:no-repeat}.bgi-position-y-top{background-position-y:top}.bgi-position-y-bottom{background-position-y:bottom}.bgi-position-y-center{background-position-y:center}.bgi-position-x-start{background-position-x:left}.bgi-position-x-end{background-position-x:right}.bgi-position-x-center{background-position-x:center}.bgi-position-top{background-position:0 top}.bgi-position-bottom{background-position:0 bottom}.bgi-position-center{background-position:center}.bgi-size-auto{background-size:auto}.bgi-size-cover{background-size:cover}.bgi-size-contain{background-size:contain}.bgi-attachment-fixed{background-attachment:fixed}.bgi-attachment-scroll{background-attachment:scroll}@media (min-width:576px){.bgi-size-sm-auto{background-size:auto}.bgi-size-sm-cover{background-size:cover}.bgi-size-sm-contain{background-size:contain}.bgi-attachment-sm-fixed{background-attachment:fixed}.bgi-attachment-sm-scroll{background-attachment:scroll}}@media (min-width:768px){.bgi-size-md-auto{background-size:auto}.bgi-size-md-cover{background-size:cover}.bgi-size-md-contain{background-size:contain}.bgi-attachment-md-fixed{background-attachment:fixed}.bgi-attachment-md-scroll{background-attachment:scroll}}@media (min-width:992px){.bgi-size-lg-auto{background-size:auto}.bgi-size-lg-cover{background-size:cover}.bgi-size-lg-contain{background-size:contain}.bgi-attachment-lg-fixed{background-attachment:fixed}.bgi-attachment-lg-scroll{background-attachment:scroll}}@media (min-width:1200px){.bgi-size-xl-auto{background-size:auto}.bgi-size-xl-cover{background-size:cover}.bgi-size-xl-contain{background-size:contain}.bgi-attachment-xl-fixed{background-attachment:fixed}.bgi-attachment-xl-scroll{background-attachment:scroll}}@media (min-width:1400px){.bgi-size-xxl-auto{background-size:auto}.bgi-size-xxl-cover{background-size:cover}.bgi-size-xxl-contain{background-size:contain}.bgi-attachment-xxl-fixed{background-attachment:fixed}.bgi-attachment-xxl-scroll{background-attachment:scroll}}.border-active:not(.active):not(:active):not(:hover):not(:focus){border-color:transparent!important}.border-hover:not(:hover):not(:focus):not(.active):not(:active){cursor:pointer;border-color:transparent!important}.border-gray-100{border-color:#1b1b29!important}.border-gray-200{border-color:#2b2b40!important}.border-gray-300{border-color:#323248!important}.border-gray-400{border-color:#474761!important}.border-gray-500{border-color:#565674!important}.border-gray-600{border-color:#6d6d80!important}.border-gray-700{border-color:#92929f!important}.border-gray-800{border-color:#cdcdde!important}.border-gray-900{border-color:#fff!important}.border-hover-white:hover{border-color:#fff!important}.border-active-white.active{border-color:#fff!important}.border-hover-light:hover{border-color:#323248!important}.border-active-light.active{border-color:#323248!important}.border-hover-primary:hover{border-color:#3699ff!important}.border-active-primary.active{border-color:#3699ff!important}.border-hover-secondary:hover{border-color:#323248!important}.border-active-secondary.active{border-color:#323248!important}.border-hover-success:hover{border-color:#0bb783!important}.border-active-success.active{border-color:#0bb783!important}.border-hover-info:hover{border-color:#8950fc!important}.border-active-info.active{border-color:#8950fc!important}.border-hover-warning:hover{border-color:#ffa800!important}.border-active-warning.active{border-color:#ffa800!important}.border-hover-danger:hover{border-color:#f64e60!important}.border-active-danger.active{border-color:#f64e60!important}.border-hover-dark:hover{border-color:#fff!important}.border-active-dark.active{border-color:#fff!important}.border-hover-transparent:hover{border-color:transparent!important}.border-dashed{border-style:dashed!important;border-color:#323248}.border-top-dashed{border-top-style:dashed!important}.border-bottom-dashed{border-bottom-style:dashed!important}.border-start-dashed{border-left-style:dashed!important}.border-end-dashed{border-right-style:dashed!important}.border-dotted{border-style:dotted!important}.border-top-dotted{border-top-style:dotted!important}.border-bottom-dotted{border-bottom-style:dotted!important}.border-start-dotted{border-left-style:dotted!important}.border-end-dotted{border-right-style:dotted!important}.border-transparent{border-color:transparent!important}.border-body{border-color:#1e1e2d!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-bottom-0{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.rounded-start-0{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-circle{border-radius:50%!important}.flex-root{flex:1}.flex-column-auto{flex:none}.flex-column-fluid{flex:1 0 auto}.flex-row-auto{flex:0 0 auto}.flex-row-fluid{flex:1 auto;min-width:0}.flex-center{justify-content:center;align-items:center}.flex-stack{justify-content:space-between;align-items:center}@media (min-width:576px){.flex-sm-root{flex:1}.flex-sm-column-auto{flex:none}.flex-sm-column-fluid{flex:1 0 auto}.flex-sm-row-auto{flex:0 0 auto}.flex-sm-row-fluid{flex:1 auto;min-width:0}.flex-sm-center{justify-content:center;align-items:center}.flex-sm-stack{justify-content:space-between;align-items:center}}@media (min-width:768px){.flex-md-root{flex:1}.flex-md-column-auto{flex:none}.flex-md-column-fluid{flex:1 0 auto}.flex-md-row-auto{flex:0 0 auto}.flex-md-row-fluid{flex:1 auto;min-width:0}.flex-md-center{justify-content:center;align-items:center}.flex-md-stack{justify-content:space-between;align-items:center}}@media (min-width:992px){.flex-lg-root{flex:1}.flex-lg-column-auto{flex:none}.flex-lg-column-fluid{flex:1 0 auto}.flex-lg-row-auto{flex:0 0 auto}.flex-lg-row-fluid{flex:1 auto;min-width:0}.flex-lg-center{justify-content:center;align-items:center}.flex-lg-stack{justify-content:space-between;align-items:center}}@media (min-width:1200px){.flex-xl-root{flex:1}.flex-xl-column-auto{flex:none}.flex-xl-column-fluid{flex:1 0 auto}.flex-xl-row-auto{flex:0 0 auto}.flex-xl-row-fluid{flex:1 auto;min-width:0}.flex-xl-center{justify-content:center;align-items:center}.flex-xl-stack{justify-content:space-between;align-items:center}}@media (min-width:1400px){.flex-xxl-root{flex:1}.flex-xxl-column-auto{flex:none}.flex-xxl-column-fluid{flex:1 0 auto}.flex-xxl-row-auto{flex:0 0 auto}.flex-xxl-row-fluid{flex:1 auto;min-width:0}.flex-xxl-center{justify-content:center;align-items:center}.flex-xxl-stack{justify-content:space-between;align-items:center}}.flex-equal{flex-grow:1;flex-basis:0;flex-shrink:0}.shadow-xs{box-shadow:0 .1rem .75rem .25rem rgba(0,0,0,.05)}.text-white{color:#fff!important}.text-inverse-white{color:#6d6d80!important}.text-hover-white{transition:color .2s ease,background-color .2s ease}.text-hover-white i{transition:color .2s ease,background-color .2s ease}.text-hover-white:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-white:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-white:hover .svg-icon{color:#fff!important}.text-hover-inverse-white{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-white i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-white:hover{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-hover-inverse-white:hover i{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-hover-inverse-white:hover .svg-icon{color:#6d6d80!important}.text-active-white{transition:color .2s ease,background-color .2s ease}.text-active-white i{transition:color .2s ease,background-color .2s ease}.text-active-white.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-white.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-white.active .svg-icon{color:#fff!important}.text-active-inverse-white{transition:color .2s ease,background-color .2s ease}.text-active-inverse-white i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-white.active{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-active-inverse-white.active i{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-active-inverse-white.active .svg-icon{color:#6d6d80!important}.text-primary{color:#3699ff!important}.text-inverse-primary{color:#fff!important}.text-light-primary{color:#212e48!important}.text-hover-primary{transition:color .2s ease,background-color .2s ease}.text-hover-primary i{transition:color .2s ease,background-color .2s ease}.text-hover-primary:hover{transition:color .2s ease,background-color .2s ease;color:#3699ff!important}.text-hover-primary:hover i{transition:color .2s ease,background-color .2s ease;color:#3699ff!important}.text-hover-primary:hover .svg-icon{color:#3699ff!important}.text-hover-inverse-primary{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-primary i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-primary:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-primary:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-primary:hover .svg-icon{color:#fff!important}.text-active-primary{transition:color .2s ease,background-color .2s ease}.text-active-primary i{transition:color .2s ease,background-color .2s ease}.text-active-primary.active{transition:color .2s ease,background-color .2s ease;color:#3699ff!important}.text-active-primary.active i{transition:color .2s ease,background-color .2s ease;color:#3699ff!important}.text-active-primary.active .svg-icon{color:#3699ff!important}.text-active-inverse-primary{transition:color .2s ease,background-color .2s ease}.text-active-inverse-primary i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-primary.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-primary.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-primary.active .svg-icon{color:#fff!important}.text-secondary{color:#323248!important}.text-inverse-secondary{color:#cdcdde!important}.text-hover-secondary{transition:color .2s ease,background-color .2s ease}.text-hover-secondary i{transition:color .2s ease,background-color .2s ease}.text-hover-secondary:hover{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-hover-secondary:hover i{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-hover-secondary:hover .svg-icon{color:#323248!important}.text-hover-inverse-secondary{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-secondary i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-secondary:hover{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-hover-inverse-secondary:hover i{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-hover-inverse-secondary:hover .svg-icon{color:#cdcdde!important}.text-active-secondary{transition:color .2s ease,background-color .2s ease}.text-active-secondary i{transition:color .2s ease,background-color .2s ease}.text-active-secondary.active{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-active-secondary.active i{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-active-secondary.active .svg-icon{color:#323248!important}.text-active-inverse-secondary{transition:color .2s ease,background-color .2s ease}.text-active-inverse-secondary i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-secondary.active{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-active-inverse-secondary.active i{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-active-inverse-secondary.active .svg-icon{color:#cdcdde!important}.text-light{color:#323248!important}.text-inverse-light{color:#cdcdde!important}.text-hover-light{transition:color .2s ease,background-color .2s ease}.text-hover-light i{transition:color .2s ease,background-color .2s ease}.text-hover-light:hover{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-hover-light:hover i{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-hover-light:hover .svg-icon{color:#323248!important}.text-hover-inverse-light{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-light i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-light:hover{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-hover-inverse-light:hover i{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-hover-inverse-light:hover .svg-icon{color:#cdcdde!important}.text-active-light{transition:color .2s ease,background-color .2s ease}.text-active-light i{transition:color .2s ease,background-color .2s ease}.text-active-light.active{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-active-light.active i{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-active-light.active .svg-icon{color:#323248!important}.text-active-inverse-light{transition:color .2s ease,background-color .2s ease}.text-active-inverse-light i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-light.active{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-active-inverse-light.active i{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-active-inverse-light.active .svg-icon{color:#cdcdde!important}.text-success{color:#0bb783!important}.text-inverse-success{color:#fff!important}.text-light-success{color:#1c3238!important}.text-hover-success{transition:color .2s ease,background-color .2s ease}.text-hover-success i{transition:color .2s ease,background-color .2s ease}.text-hover-success:hover{transition:color .2s ease,background-color .2s ease;color:#0bb783!important}.text-hover-success:hover i{transition:color .2s ease,background-color .2s ease;color:#0bb783!important}.text-hover-success:hover .svg-icon{color:#0bb783!important}.text-hover-inverse-success{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-success i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-success:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-success:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-success:hover .svg-icon{color:#fff!important}.text-active-success{transition:color .2s ease,background-color .2s ease}.text-active-success i{transition:color .2s ease,background-color .2s ease}.text-active-success.active{transition:color .2s ease,background-color .2s ease;color:#0bb783!important}.text-active-success.active i{transition:color .2s ease,background-color .2s ease;color:#0bb783!important}.text-active-success.active .svg-icon{color:#0bb783!important}.text-active-inverse-success{transition:color .2s ease,background-color .2s ease}.text-active-inverse-success i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-success.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-success.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-success.active .svg-icon{color:#fff!important}.text-info{color:#8950fc!important}.text-inverse-info{color:#fff!important}.text-light-info{color:#2f264f!important}.text-hover-info{transition:color .2s ease,background-color .2s ease}.text-hover-info i{transition:color .2s ease,background-color .2s ease}.text-hover-info:hover{transition:color .2s ease,background-color .2s ease;color:#8950fc!important}.text-hover-info:hover i{transition:color .2s ease,background-color .2s ease;color:#8950fc!important}.text-hover-info:hover .svg-icon{color:#8950fc!important}.text-hover-inverse-info{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-info i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-info:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-info:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-info:hover .svg-icon{color:#fff!important}.text-active-info{transition:color .2s ease,background-color .2s ease}.text-active-info i{transition:color .2s ease,background-color .2s ease}.text-active-info.active{transition:color .2s ease,background-color .2s ease;color:#8950fc!important}.text-active-info.active i{transition:color .2s ease,background-color .2s ease;color:#8950fc!important}.text-active-info.active .svg-icon{color:#8950fc!important}.text-active-inverse-info{transition:color .2s ease,background-color .2s ease}.text-active-inverse-info i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-info.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-info.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-info.active .svg-icon{color:#fff!important}.text-warning{color:#ffa800!important}.text-inverse-warning{color:#fff!important}.text-light-warning{color:#392f28!important}.text-hover-warning{transition:color .2s ease,background-color .2s ease}.text-hover-warning i{transition:color .2s ease,background-color .2s ease}.text-hover-warning:hover{transition:color .2s ease,background-color .2s ease;color:#ffa800!important}.text-hover-warning:hover i{transition:color .2s ease,background-color .2s ease;color:#ffa800!important}.text-hover-warning:hover .svg-icon{color:#ffa800!important}.text-hover-inverse-warning{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-warning i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-warning:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-warning:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-warning:hover .svg-icon{color:#fff!important}.text-active-warning{transition:color .2s ease,background-color .2s ease}.text-active-warning i{transition:color .2s ease,background-color .2s ease}.text-active-warning.active{transition:color .2s ease,background-color .2s ease;color:#ffa800!important}.text-active-warning.active i{transition:color .2s ease,background-color .2s ease;color:#ffa800!important}.text-active-warning.active .svg-icon{color:#ffa800!important}.text-active-inverse-warning{transition:color .2s ease,background-color .2s ease}.text-active-inverse-warning i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-warning.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-warning.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-warning.active .svg-icon{color:#fff!important}.text-danger{color:#f64e60!important}.text-inverse-danger{color:#fff!important}.text-light-danger{color:#3a2434!important}.text-hover-danger{transition:color .2s ease,background-color .2s ease}.text-hover-danger i{transition:color .2s ease,background-color .2s ease}.text-hover-danger:hover{transition:color .2s ease,background-color .2s ease;color:#f64e60!important}.text-hover-danger:hover i{transition:color .2s ease,background-color .2s ease;color:#f64e60!important}.text-hover-danger:hover .svg-icon{color:#f64e60!important}.text-hover-inverse-danger{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-danger i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-danger:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-danger:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-danger:hover .svg-icon{color:#fff!important}.text-active-danger{transition:color .2s ease,background-color .2s ease}.text-active-danger i{transition:color .2s ease,background-color .2s ease}.text-active-danger.active{transition:color .2s ease,background-color .2s ease;color:#f64e60!important}.text-active-danger.active i{transition:color .2s ease,background-color .2s ease;color:#f64e60!important}.text-active-danger.active .svg-icon{color:#f64e60!important}.text-active-inverse-danger{transition:color .2s ease,background-color .2s ease}.text-active-inverse-danger i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-danger.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-danger.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-danger.active .svg-icon{color:#fff!important}.text-dark{color:#fff!important}.text-inverse-dark{color:#1b1b29!important}.text-light-dark{color:#2b2b40!important}.text-hover-dark{transition:color .2s ease,background-color .2s ease}.text-hover-dark i{transition:color .2s ease,background-color .2s ease}.text-hover-dark:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-dark:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-dark:hover .svg-icon{color:#fff!important}.text-hover-inverse-dark{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-dark i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-dark:hover{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-hover-inverse-dark:hover i{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-hover-inverse-dark:hover .svg-icon{color:#1b1b29!important}.text-active-dark{transition:color .2s ease,background-color .2s ease}.text-active-dark i{transition:color .2s ease,background-color .2s ease}.text-active-dark.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-dark.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-dark.active .svg-icon{color:#fff!important}.text-active-inverse-dark{transition:color .2s ease,background-color .2s ease}.text-active-inverse-dark i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-dark.active{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-active-inverse-dark.active i{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-active-inverse-dark.active .svg-icon{color:#1b1b29!important}.text-muted{color:#565674!important}.text-hover-muted{transition:color .2s ease,background-color .2s ease}.text-hover-muted i{transition:color .2s ease,background-color .2s ease}.text-hover-muted:hover{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-hover-muted:hover i{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-hover-muted:hover .svg-icon{color:#565674!important}.text-active-muted{transition:color .2s ease,background-color .2s ease}.text-active-muted i{transition:color .2s ease,background-color .2s ease}.text-active-muted.active{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-active-muted.active i{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-active-muted.active .svg-icon{color:#565674!important}.text-gray-100{color:#1b1b29!important}.text-hover-gray-100{transition:color .2s ease,background-color .2s ease}.text-hover-gray-100 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-100:hover{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-hover-gray-100:hover i{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-hover-gray-100:hover .svg-icon{color:#1b1b29!important}.text-active-gray-100{transition:color .2s ease,background-color .2s ease}.text-active-gray-100 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-100.active{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-active-gray-100.active i{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-active-gray-100.active .svg-icon{color:#1b1b29!important}.text-gray-200{color:#2b2b40!important}.text-hover-gray-200{transition:color .2s ease,background-color .2s ease}.text-hover-gray-200 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-200:hover{transition:color .2s ease,background-color .2s ease;color:#2b2b40!important}.text-hover-gray-200:hover i{transition:color .2s ease,background-color .2s ease;color:#2b2b40!important}.text-hover-gray-200:hover .svg-icon{color:#2b2b40!important}.text-active-gray-200{transition:color .2s ease,background-color .2s ease}.text-active-gray-200 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-200.active{transition:color .2s ease,background-color .2s ease;color:#2b2b40!important}.text-active-gray-200.active i{transition:color .2s ease,background-color .2s ease;color:#2b2b40!important}.text-active-gray-200.active .svg-icon{color:#2b2b40!important}.text-gray-300{color:#323248!important}.text-hover-gray-300{transition:color .2s ease,background-color .2s ease}.text-hover-gray-300 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-300:hover{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-hover-gray-300:hover i{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-hover-gray-300:hover .svg-icon{color:#323248!important}.text-active-gray-300{transition:color .2s ease,background-color .2s ease}.text-active-gray-300 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-300.active{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-active-gray-300.active i{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-active-gray-300.active .svg-icon{color:#323248!important}.text-gray-400{color:#474761!important}.text-hover-gray-400{transition:color .2s ease,background-color .2s ease}.text-hover-gray-400 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-400:hover{transition:color .2s ease,background-color .2s ease;color:#474761!important}.text-hover-gray-400:hover i{transition:color .2s ease,background-color .2s ease;color:#474761!important}.text-hover-gray-400:hover .svg-icon{color:#474761!important}.text-active-gray-400{transition:color .2s ease,background-color .2s ease}.text-active-gray-400 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-400.active{transition:color .2s ease,background-color .2s ease;color:#474761!important}.text-active-gray-400.active i{transition:color .2s ease,background-color .2s ease;color:#474761!important}.text-active-gray-400.active .svg-icon{color:#474761!important}.text-gray-500{color:#565674!important}.text-hover-gray-500{transition:color .2s ease,background-color .2s ease}.text-hover-gray-500 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-500:hover{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-hover-gray-500:hover i{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-hover-gray-500:hover .svg-icon{color:#565674!important}.text-active-gray-500{transition:color .2s ease,background-color .2s ease}.text-active-gray-500 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-500.active{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-active-gray-500.active i{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-active-gray-500.active .svg-icon{color:#565674!important}.text-gray-600{color:#6d6d80!important}.text-hover-gray-600{transition:color .2s ease,background-color .2s ease}.text-hover-gray-600 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-600:hover{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-hover-gray-600:hover i{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-hover-gray-600:hover .svg-icon{color:#6d6d80!important}.text-active-gray-600{transition:color .2s ease,background-color .2s ease}.text-active-gray-600 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-600.active{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-active-gray-600.active i{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-active-gray-600.active .svg-icon{color:#6d6d80!important}.text-gray-700{color:#92929f!important}.text-hover-gray-700{transition:color .2s ease,background-color .2s ease}.text-hover-gray-700 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-700:hover{transition:color .2s ease,background-color .2s ease;color:#92929f!important}.text-hover-gray-700:hover i{transition:color .2s ease,background-color .2s ease;color:#92929f!important}.text-hover-gray-700:hover .svg-icon{color:#92929f!important}.text-active-gray-700{transition:color .2s ease,background-color .2s ease}.text-active-gray-700 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-700.active{transition:color .2s ease,background-color .2s ease;color:#92929f!important}.text-active-gray-700.active i{transition:color .2s ease,background-color .2s ease;color:#92929f!important}.text-active-gray-700.active .svg-icon{color:#92929f!important}.text-gray-800{color:#cdcdde!important}.text-hover-gray-800{transition:color .2s ease,background-color .2s ease}.text-hover-gray-800 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-800:hover{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-hover-gray-800:hover i{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-hover-gray-800:hover .svg-icon{color:#cdcdde!important}.text-active-gray-800{transition:color .2s ease,background-color .2s ease}.text-active-gray-800 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-800.active{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-active-gray-800.active i{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-active-gray-800.active .svg-icon{color:#cdcdde!important}.text-gray-900{color:#fff!important}.text-hover-gray-900{transition:color .2s ease,background-color .2s ease}.text-hover-gray-900 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-900:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-gray-900:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-gray-900:hover .svg-icon{color:#fff!important}.text-active-gray-900{transition:color .2s ease,background-color .2s ease}.text-active-gray-900 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-900.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-gray-900.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-gray-900.active .svg-icon{color:#fff!important}.fw-boldest{font-weight:700!important}.text-transparent{color:transparent}.cursor-pointer{cursor:pointer}.cursor-default{cursor:default}.cursor-move{cursor:move}i{line-height:1;font-size:1rem;color:#565674}a{transition:color .2s ease,background-color .2s ease}a:hover{transition:color .2s ease,background-color .2s ease}.opacity-active-0.active{opacity:0!important}.opacity-state-0.active,.opacity-state-0:hover{opacity:0!important}.opacity-active-5.active{opacity:.05!important}.opacity-state-5.active,.opacity-state-5:hover{opacity:.05!important}.opacity-active-10.active{opacity:.1!important}.opacity-state-10.active,.opacity-state-10:hover{opacity:.1!important}.opacity-active-15.active{opacity:.15!important}.opacity-state-15.active,.opacity-state-15:hover{opacity:.15!important}.opacity-active-20.active{opacity:.2!important}.opacity-state-20.active,.opacity-state-20:hover{opacity:.2!important}.opacity-active-25.active{opacity:.25!important}.opacity-state-25.active,.opacity-state-25:hover{opacity:.25!important}.opacity-active-50.active{opacity:.5!important}.opacity-state-50.active,.opacity-state-50:hover{opacity:.5!important}.opacity-active-75.active{opacity:.75!important}.opacity-state-75.active,.opacity-state-75:hover{opacity:.75!important}.opacity-active-100.active{opacity:1!important}.opacity-state-100.active,.opacity-state-100:hover{opacity:1!important}.transform-90{transform:rotate(90deg);transform-origin:right top}.animation{animation-duration:1s;animation-fill-mode:both}@keyframes animationSlideInDown{from{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translate3d(0,0,0)}}.animation-slide-in-down{animation-name:animationSlideInDown}@keyframes animationSlideInUp{from{transform:translate3d(0,100%,0);visibility:visible}to{transform:translate3d(0,0,0)}}.animation-slide-in-up{animation-name:animationSlideInUp}@keyframes animationFadeIn{from{opacity:0}to{opacity:1}}.animation-fade-in{animation-name:animationFadeIn}@keyframes animationFadeOut{from{opacity:1}to{opacity:0}}.animation-fade-out{animation-name:animationFadeOut}.animation-blink{animation:animationBlink 1s steps(5,start) infinite}@keyframes animationBlink{to{visibility:hidden}}.nav-line-tabs{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#2b2b40}.nav-line-tabs .nav-item{margin-bottom:-1px}.nav-line-tabs .nav-item .nav-link{color:#565674;border:0;border-bottom:1px solid transparent;transition:color .2s ease,background-color .2s ease;padding:.5rem 0;margin:0 1rem}.nav-line-tabs .nav-item:first-child .nav-link{margin-left:0}.nav-line-tabs .nav-item:last-child .nav-link{margin-right:0}.nav-line-tabs .nav-item .nav-link.active,.nav-line-tabs .nav-item .nav-link:hover:not(.disabled),.nav-line-tabs .nav-item.show .nav-link{background-color:transparent;border:0;border-bottom:1px solid #3699ff;transition:color .2s ease,background-color .2s ease}.nav-line-tabs.nav-line-tabs-2x{border-bottom-width:2px}.nav-line-tabs.nav-line-tabs-2x .nav-item{margin-bottom:-2px}.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link{border-bottom-width:2px}.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link.active,.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link:hover:not(.disabled),.nav-line-tabs.nav-line-tabs-2x .nav-item.show .nav-link{border-bottom-width:2px}.nav-pills .nav-item{margin-right:.5rem}.nav-pills .nav-item:last-child{margin-right:0}.nav-stretch{align-items:stretch;padding-top:0!important;padding-bottom:0!important}.nav-stretch .nav-item{display:flex;align-items:stretch;padding-top:0!important;padding-bottom:0!important}.nav-stretch .nav-link{display:flex;align-items:center}.nav-group{padding:.35rem;border-radius:.475rem;background-color:#1b1b29}.nav-group.nav-group-outline{background-color:transparent;border:1px solid #2b2b40}.nav-group.nav-group-fluid{display:flex}.nav-group.nav-group-fluid>.btn,.nav-group.nav-group-fluid>label{position:relative;flex-shrink:0;flex-grow:1;flex-basis:0}.nav-group.nav-group-fluid>label{margin-right:.1rem}.nav-group.nav-group-fluid>label>.btn{width:100%}.nav-group.nav-group-fluid>label:last-child{margin-right:0}.nav.nav-pills.nav-pills-custom .nav-link,.nav.nav-pills.nav-pills-custom .show>.nav-link{border:1px dashed #323248;border-radius:12px}.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img,.nav.nav-pills.nav-pills-custom .show>.nav-link .nav-icon img{width:30px;transition:color .2s ease,background-color .2s ease}.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img.default,.nav.nav-pills.nav-pills-custom .show>.nav-link .nav-icon img.default{display:inline-block}.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img.active,.nav.nav-pills.nav-pills-custom .show>.nav-link .nav-icon img.active{display:none}.nav.nav-pills.nav-pills-custom .nav-link.active,.nav.nav-pills.nav-pills-custom .show>.nav-link.active{background-color:transparent;border:1px solid #323248;transition-duration:1ms;position:relative}.nav.nav-pills.nav-pills-custom .nav-link.active .nav-text,.nav.nav-pills.nav-pills-custom .show>.nav-link.active .nav-text{color:#cdcdde!important;transition:color .2s ease,background-color .2s ease}.nav.nav-pills.nav-pills-custom .nav-link.active .bullet-custom,.nav.nav-pills.nav-pills-custom .show>.nav-link.active .bullet-custom{display:block}.nav.nav-pills.nav-pills-custom .nav-link .bullet-custom,.nav.nav-pills.nav-pills-custom .show>.nav-link .bullet-custom{display:none}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:not(:active) span:nth-child(1){color:#b5b5c3}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:not(:active) span:nth-child(2){color:#3f4254}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:hover span:nth-child(1){color:#fff!important}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:hover span:nth-child(2){color:#fff!important}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link.active span:nth-child(1){color:#fff!important}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link.active span:nth-child(2){color:#fff!important}.pagination{display:flex;flex-wrap:wrap;justify-content:center;margin:0}.pagination.pagination-circle .page-link{border-radius:50%}.pagination.pagination-outline .page-link{border:1px solid #2b2b40}.pagination.pagination-outline .page-item.active .page-link,.pagination.pagination-outline .page-item:hover .page-link{border-color:#212e48}.page-item{margin-right:.5rem}.page-item:last-child{margin-right:0}.page-item .page-link{display:flex;justify-content:center;align-items:center;border-radius:.475rem;height:2.5rem;min-width:2.5rem;font-weight:500;font-size:1.075rem}.page-item .page-link i{font-size:.85rem}.page-item .page-link .next,.page-item .page-link .previous{display:block;height:.875rem;width:.875rem}.page-item .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2392929F'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2392929F'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.page-item.next .page-link,.page-item.previous .page-link{background-color:#1e1e2d;color:#92929f}.page-item.next .page-link i,.page-item.previous .page-link i{color:#92929f}.page-item:focus .page-link{color:#3699ff}.page-item:focus .page-link i{color:#3699ff}.page-item:focus .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item:focus .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.page-item:hover:not(.offset) .page-link{color:#3699ff}.page-item:hover:not(.offset) .page-link i{color:#3699ff}.page-item:hover:not(.offset) .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item:hover:not(.offset) .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.page-item.active .page-link{color:#fff}.page-item.active .page-link i{color:#fff}.page-item.active .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item.active .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.page-item.disabled .page-link{color:#474761}.page-item.disabled .page-link i{color:#474761}.page-item.disabled .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23474761'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item.disabled .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23474761'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}@media (max-width:991.98px){.page-item{margin-right:.25rem}.page-item:last-child{margin-right:0}}.separator{display:block;height:0;border-bottom:1px solid #2b2b40}.separator.separator-dotted{border-bottom-style:dotted;border-bottom-color:#323248}.separator.separator-dashed{border-bottom-style:dashed;border-bottom-color:#323248}.separator.separator-content{display:flex;align-items:center;border-bottom:0;text-align:center}.separator.separator-content::after,.separator.separator-content::before{content:" ";width:50%;border-bottom:1px solid #2b2b40}.separator.separator-content::before{margin-right:1.25rem}.separator.separator-content::after{margin-left:1.25rem}.separator.separator-content.separator-dotted::after,.separator.separator-content.separator-dotted::before{border-bottom-style:dotted;border-bottom-color:#323248}.separator.separator-content.separator-dashed::after,.separator.separator-content.separator-dashed::before{border-bottom-style:dashed;border-bottom-color:#323248}.separator.separator-content.border-white::after,.separator.separator-content.border-white::before{border-color:#fff!important}.separator.separator-content.border-light::after,.separator.separator-content.border-light::before{border-color:#323248!important}.separator.separator-content.border-primary::after,.separator.separator-content.border-primary::before{border-color:#3699ff!important}.separator.separator-content.border-secondary::after,.separator.separator-content.border-secondary::before{border-color:#323248!important}.separator.separator-content.border-success::after,.separator.separator-content.border-success::before{border-color:#0bb783!important}.separator.separator-content.border-info::after,.separator.separator-content.border-info::before{border-color:#8950fc!important}.separator.separator-content.border-warning::after,.separator.separator-content.border-warning::before{border-color:#ffa800!important}.separator.separator-content.border-danger::after,.separator.separator-content.border-danger::before{border-color:#f64e60!important}.separator.separator-content.border-dark::after,.separator.separator-content.border-dark::before{border-color:#fff!important}.carousel.carousel-custom .carousel-indicators{align-items:center;position:static;z-index:auto;margin:0;padding:0;list-style:none}.carousel.carousel-custom .carousel-indicators li{transform:none;opacity:1}.carousel.carousel-custom .carousel-indicators li.active{transform:none;opacity:1}.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li{border-radius:0;background-color:transparent;height:13px;width:13px;display:flex;align-items:center;justify-content:center;text-align:center}.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li:after{display:inline-block;content:" ";border-radius:50%;transition:all .3s ease;background-color:#2b2b40;height:9px;width:9px}.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li.active{background-color:transparent}.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li.active:after{transition:all .3s ease;height:13px;width:13px;background-color:#474761}.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li{transition:all .3s ease;background-color:transparent;border-radius:6px;height:6px;width:6px;display:flex;align-items:center;justify-content:center;text-align:center}.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li:after{display:inline-block;content:" ";transition:all .3s ease;background-color:#474761;border-radius:6px;height:6px;width:6px}.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li.active{transition:all .3s ease;background-color:transparent;height:6px;width:16px}.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li.active:after{transition:all .3s ease;height:6px;width:16px;background-color:#6d6d80}.carousel.carousel-custom .carousel-indicators-active-white li.active:after{background-color:#fff!important}.carousel.carousel-custom .carousel-indicators-active-light li.active:after{background-color:#323248!important}.carousel.carousel-custom .carousel-indicators-active-primary li.active:after{background-color:#3699ff!important}.carousel.carousel-custom .carousel-indicators-active-secondary li.active:after{background-color:#323248!important}.carousel.carousel-custom .carousel-indicators-active-success li.active:after{background-color:#0bb783!important}.carousel.carousel-custom .carousel-indicators-active-info li.active:after{background-color:#8950fc!important}.carousel.carousel-custom .carousel-indicators-active-warning li.active:after{background-color:#ffa800!important}.carousel.carousel-custom .carousel-indicators-active-danger li.active:after{background-color:#f64e60!important}.carousel.carousel-custom .carousel-indicators-active-dark li.active:after{background-color:#fff!important}.carousel.carousel-custom.carousel-stretch{height:100%;display:flex;flex-direction:column}.carousel.carousel-custom.carousel-stretch .carousel-inner{flex-grow:1}.carousel.carousel-custom.carousel-stretch .carousel-item{height:100%}.carousel.carousel-custom.carousel-stretch .carousel-wrapper{display:flex;flex-direction:column;height:100%}.menu-group{display:flex}.menu,.menu-wrapper{display:flex;padding:0;margin:0;list-style:none}.menu-inner{padding:0;margin:0;list-style:none}.menu-sub{display:none;padding:0;margin:0;list-style:none;flex-direction:column}.menu-item{display:block;padding:0}.menu-item .menu-link{cursor:pointer;display:flex;align-items:center;padding:0;flex:0 0 100%;padding:.65rem 1rem;transition:none;outline:0!important}.menu-item .menu-link .menu-icon{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:2rem;margin-right:.5rem}.menu-item .menu-link .menu-icon .svg-icon{line-height:1}.menu-item .menu-link .menu-bullet{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:1.25rem;margin-right:.5rem}.menu-item .menu-link .menu-title{display:flex;align-items:center;flex-grow:1}.menu-item .menu-link .menu-badge{display:flex;align-items:center;flex-shrink:0;margin-left:.5rem}.menu-item .menu-link .menu-arrow{display:flex;align-items:stretch;position:relative;overflow:hidden;flex-shrink:0;margin-left:.5rem;width:.8rem;height:.8rem}.menu-item .menu-link .menu-arrow:after{display:block;width:100%;content:" ";background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-item .menu-content{padding:.65rem 1rem}.menu-item.show .menu-link .menu-arrow:after{backface-visibility:hidden;transition:transform .3s ease}.menu-center{justify-content:center}.menu-item.menu-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-dropdown.menu.show,.menu-sub-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-dropdown.menu.show[data-popper-placement=top],.menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-accordion{display:none}.menu-sub-accordion.show,.show:not(.menu-dropdown)>.menu-sub-accordion{display:flex}.menu-inline{display:flex}.menu-fit>.menu-item>.menu-content,.menu-fit>.menu-item>.menu-link{padding-left:0!important;padding-right:0!important}.menu-column{flex-direction:column;width:100%}.menu-row{flex-direction:row}.menu-row>.menu-item{display:flex;align-items:center}.menu-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-rounded .menu-link{border-radius:.475rem}.menu-pill .menu-link{border-radius:50px}.menu-rounded-0 .menu-link{border-radius:0!important}@media (min-width:576px){.menu-item.menu-sm-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-sm-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-sm-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-sm-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-sm-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-sm-dropdown.menu.show,.menu-sub-sm-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-sm-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-sm-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-sm-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-sm-dropdown.menu.show[data-popper-placement=top],.menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-sm-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-sm-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-sm-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-sm-accordion{display:none}.menu-sub-sm-accordion.show,.show:not(.menu-dropdown)>.menu-sub-sm-accordion{display:flex}.menu-sm-inline{display:flex}.menu-sm-fit>.menu-item>.menu-content,.menu-sm-fit>.menu-item>.menu-link{padding-left:0!important;padding-right:0!important}.menu-sm-column{flex-direction:column;width:100%}.menu-sm-row{flex-direction:row}.menu-sm-row>.menu-item{display:flex;align-items:center}.menu-sm-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-sm-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sm-rounded .menu-link{border-radius:.475rem}.menu-sm-pill .menu-link{border-radius:50px}.menu-sm-rounded-0 .menu-link{border-radius:0!important}}@media (min-width:768px){.menu-item.menu-md-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-md-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-md-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-md-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-md-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-md-dropdown.menu.show,.menu-sub-md-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-md-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-md-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-md-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-md-dropdown.menu.show[data-popper-placement=top],.menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-md-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-md-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-md-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-md-accordion{display:none}.menu-sub-md-accordion.show,.show:not(.menu-dropdown)>.menu-sub-md-accordion{display:flex}.menu-md-inline{display:flex}.menu-md-fit>.menu-item>.menu-content,.menu-md-fit>.menu-item>.menu-link{padding-left:0!important;padding-right:0!important}.menu-md-column{flex-direction:column;width:100%}.menu-md-row{flex-direction:row}.menu-md-row>.menu-item{display:flex;align-items:center}.menu-md-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-md-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-md-rounded .menu-link{border-radius:.475rem}.menu-md-pill .menu-link{border-radius:50px}.menu-md-rounded-0 .menu-link{border-radius:0!important}}@media (min-width:992px){.menu-item.menu-lg-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-lg-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-lg-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-lg-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-lg-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-lg-dropdown.menu.show,.menu-sub-lg-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-lg-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-lg-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-lg-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-lg-dropdown.menu.show[data-popper-placement=top],.menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-lg-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-lg-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-lg-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-lg-accordion{display:none}.menu-sub-lg-accordion.show,.show:not(.menu-dropdown)>.menu-sub-lg-accordion{display:flex}.menu-lg-inline{display:flex}.menu-lg-fit>.menu-item>.menu-content,.menu-lg-fit>.menu-item>.menu-link{padding-left:0!important;padding-right:0!important}.menu-lg-column{flex-direction:column;width:100%}.menu-lg-row{flex-direction:row}.menu-lg-row>.menu-item{display:flex;align-items:center}.menu-lg-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-lg-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-lg-rounded .menu-link{border-radius:.475rem}.menu-lg-pill .menu-link{border-radius:50px}.menu-lg-rounded-0 .menu-link{border-radius:0!important}}@media (min-width:1200px){.menu-item.menu-xl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-xl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-xl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-xl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-xl-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-xl-dropdown.menu.show,.menu-sub-xl-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-xl-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-xl-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-xl-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-xl-dropdown.menu.show[data-popper-placement=top],.menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-xl-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-xl-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-xl-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-xl-accordion{display:none}.menu-sub-xl-accordion.show,.show:not(.menu-dropdown)>.menu-sub-xl-accordion{display:flex}.menu-xl-inline{display:flex}.menu-xl-fit>.menu-item>.menu-content,.menu-xl-fit>.menu-item>.menu-link{padding-left:0!important;padding-right:0!important}.menu-xl-column{flex-direction:column;width:100%}.menu-xl-row{flex-direction:row}.menu-xl-row>.menu-item{display:flex;align-items:center}.menu-xl-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-xl-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-xl-rounded .menu-link{border-radius:.475rem}.menu-xl-pill .menu-link{border-radius:50px}.menu-xl-rounded-0 .menu-link{border-radius:0!important}}@media (min-width:1400px){.menu-item.menu-xxl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-xxl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-xxl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-xxl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-xxl-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-xxl-dropdown.menu.show,.menu-sub-xxl-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-xxl-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-xxl-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-xxl-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-xxl-dropdown.menu.show[data-popper-placement=top],.menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-xxl-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-xxl-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-xxl-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-xxl-accordion{display:none}.menu-sub-xxl-accordion.show,.show:not(.menu-dropdown)>.menu-sub-xxl-accordion{display:flex}.menu-xxl-inline{display:flex}.menu-xxl-fit>.menu-item>.menu-content,.menu-xxl-fit>.menu-item>.menu-link{padding-left:0!important;padding-right:0!important}.menu-xxl-column{flex-direction:column;width:100%}.menu-xxl-row{flex-direction:row}.menu-xxl-row>.menu-item{display:flex;align-items:center}.menu-xxl-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-xxl-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-xxl-rounded .menu-link{border-radius:.475rem}.menu-xxl-pill .menu-link{border-radius:50px}.menu-xxl-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:575.98px){.menu-item.menu-sm-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-sm-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-sm-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-sm-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-sm-down-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-sm-down-dropdown.menu.show,.menu-sub-sm-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-sm-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-sm-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-sm-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-sm-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-sm-down-accordion{display:none}.menu-sub-sm-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-sm-down-accordion{display:flex}.menu-sm-down-inline{display:flex}.menu-sm-down-fit>.menu-item>.menu-content,.menu-sm-down-fit>.menu-item>.menu-link{padding-left:0!important;padding-right:0!important}.menu-sm-down-column{flex-direction:column;width:100%}.menu-sm-down-row{flex-direction:row}.menu-sm-down-row>.menu-item{display:flex;align-items:center}.menu-sm-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-sm-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sm-down-rounded .menu-link{border-radius:.475rem}.menu-sm-down-pill .menu-link{border-radius:50px}.menu-sm-down-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:767.98px){.menu-item.menu-md-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-md-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-md-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-md-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-md-down-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-md-down-dropdown.menu.show,.menu-sub-md-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-md-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-md-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-md-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-md-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-md-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-md-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-md-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-md-down-accordion{display:none}.menu-sub-md-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-md-down-accordion{display:flex}.menu-md-down-inline{display:flex}.menu-md-down-fit>.menu-item>.menu-content,.menu-md-down-fit>.menu-item>.menu-link{padding-left:0!important;padding-right:0!important}.menu-md-down-column{flex-direction:column;width:100%}.menu-md-down-row{flex-direction:row}.menu-md-down-row>.menu-item{display:flex;align-items:center}.menu-md-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-md-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-md-down-rounded .menu-link{border-radius:.475rem}.menu-md-down-pill .menu-link{border-radius:50px}.menu-md-down-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:991.98px){.menu-item.menu-lg-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-lg-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-lg-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-lg-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-lg-down-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-lg-down-dropdown.menu.show,.menu-sub-lg-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-lg-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-lg-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-lg-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-lg-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-lg-down-accordion{display:none}.menu-sub-lg-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-lg-down-accordion{display:flex}.menu-lg-down-inline{display:flex}.menu-lg-down-fit>.menu-item>.menu-content,.menu-lg-down-fit>.menu-item>.menu-link{padding-left:0!important;padding-right:0!important}.menu-lg-down-column{flex-direction:column;width:100%}.menu-lg-down-row{flex-direction:row}.menu-lg-down-row>.menu-item{display:flex;align-items:center}.menu-lg-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-lg-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-lg-down-rounded .menu-link{border-radius:.475rem}.menu-lg-down-pill .menu-link{border-radius:50px}.menu-lg-down-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:1199.98px){.menu-item.menu-xl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-xl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-xl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-xl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-xl-down-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-xl-down-dropdown.menu.show,.menu-sub-xl-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-xl-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-xl-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-xl-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-xl-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-xl-down-accordion{display:none}.menu-sub-xl-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-xl-down-accordion{display:flex}.menu-xl-down-inline{display:flex}.menu-xl-down-fit>.menu-item>.menu-content,.menu-xl-down-fit>.menu-item>.menu-link{padding-left:0!important;padding-right:0!important}.menu-xl-down-column{flex-direction:column;width:100%}.menu-xl-down-row{flex-direction:row}.menu-xl-down-row>.menu-item{display:flex;align-items:center}.menu-xl-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-xl-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-xl-down-rounded .menu-link{border-radius:.475rem}.menu-xl-down-pill .menu-link{border-radius:50px}.menu-xl-down-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:1399.98px){.menu-item.menu-xxl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-xxl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-xxl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-xxl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-xxl-down-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-xxl-down-dropdown.menu.show,.menu-sub-xxl-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-xxl-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-xxl-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-xxl-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-xxl-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-xxl-down-accordion{display:none}.menu-sub-xxl-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-xxl-down-accordion{display:flex}.menu-xxl-down-inline{display:flex}.menu-xxl-down-fit>.menu-item>.menu-content,.menu-xxl-down-fit>.menu-item>.menu-link{padding-left:0!important;padding-right:0!important}.menu-xxl-down-column{flex-direction:column;width:100%}.menu-xxl-down-row{flex-direction:row}.menu-xxl-down-row>.menu-item{display:flex;align-items:center}.menu-xxl-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-xxl-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-xxl-down-rounded .menu-link{border-radius:.475rem}.menu-xxl-down-pill .menu-link{border-radius:50px}.menu-xxl-down-rounded-0 .menu-link{border-radius:0!important}}.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(1rem + 1rem)}.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(2rem + 1rem)}.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(3rem + 1rem)}.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(4rem + 1rem)}.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:1rem;padding-right:0}.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(2rem);padding-right:0}.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(3rem);padding-right:0}.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(4rem);padding-right:0}@keyframes menu-sub-dropdown-animation-fade-in{from{opacity:0}to{opacity:1}}@keyframes menu-sub-dropdown-animation-move-up{from{margin-top:.75rem}to{margin-top:0}}@keyframes menu-sub-dropdown-animation-move-down{from{margin-bottom:.75rem}to{margin-bottom:0}}.menu-white .menu-item .menu-link{color:#fff}.menu-white .menu-item .menu-link .menu-title{color:#fff}.menu-white .menu-item .menu-link .menu-icon,.menu-white .menu-item .menu-link .menu-icon .svg-icon,.menu-white .menu-item .menu-link .menu-icon i{color:#fff}.menu-white .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-white .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-white .menu-item .menu-link{color:#fff}.menu-title-white .menu-item .menu-link .menu-title{color:#fff}.menu-icon-white .menu-item .menu-link .menu-icon,.menu-icon-white .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-white .menu-item .menu-link .menu-icon i{color:#fff}.menu-bullet-white .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-arrow-white .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-primary .menu-item .menu-link{color:#3699ff}.menu-primary .menu-item .menu-link .menu-title{color:#3699ff}.menu-primary .menu-item .menu-link .menu-icon,.menu-primary .menu-item .menu-link .menu-icon .svg-icon,.menu-primary .menu-item .menu-link .menu-icon i{color:#3699ff}.menu-primary .menu-item .menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-primary .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-primary .menu-item .menu-link{color:#3699ff}.menu-title-primary .menu-item .menu-link .menu-title{color:#3699ff}.menu-icon-primary .menu-item .menu-link .menu-icon,.menu-icon-primary .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-primary .menu-item .menu-link .menu-icon i{color:#3699ff}.menu-bullet-primary .menu-item .menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-arrow-primary .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-secondary .menu-item .menu-link{color:#323248}.menu-secondary .menu-item .menu-link .menu-title{color:#323248}.menu-secondary .menu-item .menu-link .menu-icon,.menu-secondary .menu-item .menu-link .menu-icon .svg-icon,.menu-secondary .menu-item .menu-link .menu-icon i{color:#323248}.menu-secondary .menu-item .menu-link .menu-bullet .bullet{background-color:#323248}.menu-secondary .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-secondary .menu-item .menu-link{color:#323248}.menu-title-secondary .menu-item .menu-link .menu-title{color:#323248}.menu-icon-secondary .menu-item .menu-link .menu-icon,.menu-icon-secondary .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-secondary .menu-item .menu-link .menu-icon i{color:#323248}.menu-bullet-secondary .menu-item .menu-link .menu-bullet .bullet{background-color:#323248}.menu-arrow-secondary .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-light .menu-item .menu-link{color:#323248}.menu-light .menu-item .menu-link .menu-title{color:#323248}.menu-light .menu-item .menu-link .menu-icon,.menu-light .menu-item .menu-link .menu-icon .svg-icon,.menu-light .menu-item .menu-link .menu-icon i{color:#323248}.menu-light .menu-item .menu-link .menu-bullet .bullet{background-color:#323248}.menu-light .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-light .menu-item .menu-link{color:#323248}.menu-title-light .menu-item .menu-link .menu-title{color:#323248}.menu-icon-light .menu-item .menu-link .menu-icon,.menu-icon-light .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-light .menu-item .menu-link .menu-icon i{color:#323248}.menu-bullet-light .menu-item .menu-link .menu-bullet .bullet{background-color:#323248}.menu-arrow-light .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-success .menu-item .menu-link{color:#0bb783}.menu-success .menu-item .menu-link .menu-title{color:#0bb783}.menu-success .menu-item .menu-link .menu-icon,.menu-success .menu-item .menu-link .menu-icon .svg-icon,.menu-success .menu-item .menu-link .menu-icon i{color:#0bb783}.menu-success .menu-item .menu-link .menu-bullet .bullet{background-color:#0bb783}.menu-success .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%230BB783'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%230BB783'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-success .menu-item .menu-link{color:#0bb783}.menu-title-success .menu-item .menu-link .menu-title{color:#0bb783}.menu-icon-success .menu-item .menu-link .menu-icon,.menu-icon-success .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-success .menu-item .menu-link .menu-icon i{color:#0bb783}.menu-bullet-success .menu-item .menu-link .menu-bullet .bullet{background-color:#0bb783}.menu-arrow-success .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%230BB783'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%230BB783'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-info .menu-item .menu-link{color:#8950fc}.menu-info .menu-item .menu-link .menu-title{color:#8950fc}.menu-info .menu-item .menu-link .menu-icon,.menu-info .menu-item .menu-link .menu-icon .svg-icon,.menu-info .menu-item .menu-link .menu-icon i{color:#8950fc}.menu-info .menu-item .menu-link .menu-bullet .bullet{background-color:#8950fc}.menu-info .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%238950FC'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%238950FC'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-info .menu-item .menu-link{color:#8950fc}.menu-title-info .menu-item .menu-link .menu-title{color:#8950fc}.menu-icon-info .menu-item .menu-link .menu-icon,.menu-icon-info .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-info .menu-item .menu-link .menu-icon i{color:#8950fc}.menu-bullet-info .menu-item .menu-link .menu-bullet .bullet{background-color:#8950fc}.menu-arrow-info .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%238950FC'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%238950FC'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-warning .menu-item .menu-link{color:#ffa800}.menu-warning .menu-item .menu-link .menu-title{color:#ffa800}.menu-warning .menu-item .menu-link .menu-icon,.menu-warning .menu-item .menu-link .menu-icon .svg-icon,.menu-warning .menu-item .menu-link .menu-icon i{color:#ffa800}.menu-warning .menu-item .menu-link .menu-bullet .bullet{background-color:#ffa800}.menu-warning .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFA800'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFA800'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-warning .menu-item .menu-link{color:#ffa800}.menu-title-warning .menu-item .menu-link .menu-title{color:#ffa800}.menu-icon-warning .menu-item .menu-link .menu-icon,.menu-icon-warning .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-warning .menu-item .menu-link .menu-icon i{color:#ffa800}.menu-bullet-warning .menu-item .menu-link .menu-bullet .bullet{background-color:#ffa800}.menu-arrow-warning .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFA800'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFA800'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-danger .menu-item .menu-link{color:#f64e60}.menu-danger .menu-item .menu-link .menu-title{color:#f64e60}.menu-danger .menu-item .menu-link .menu-icon,.menu-danger .menu-item .menu-link .menu-icon .svg-icon,.menu-danger .menu-item .menu-link .menu-icon i{color:#f64e60}.menu-danger .menu-item .menu-link .menu-bullet .bullet{background-color:#f64e60}.menu-danger .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F64E60'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F64E60'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-danger .menu-item .menu-link{color:#f64e60}.menu-title-danger .menu-item .menu-link .menu-title{color:#f64e60}.menu-icon-danger .menu-item .menu-link .menu-icon,.menu-icon-danger .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-danger .menu-item .menu-link .menu-icon i{color:#f64e60}.menu-bullet-danger .menu-item .menu-link .menu-bullet .bullet{background-color:#f64e60}.menu-arrow-danger .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F64E60'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F64E60'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-dark .menu-item .menu-link{color:#fff}.menu-dark .menu-item .menu-link .menu-title{color:#fff}.menu-dark .menu-item .menu-link .menu-icon,.menu-dark .menu-item .menu-link .menu-icon .svg-icon,.menu-dark .menu-item .menu-link .menu-icon i{color:#fff}.menu-dark .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-dark .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-dark .menu-item .menu-link{color:#fff}.menu-title-dark .menu-item .menu-link .menu-title{color:#fff}.menu-icon-dark .menu-item .menu-link .menu-icon,.menu-icon-dark .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-dark .menu-item .menu-link .menu-icon i{color:#fff}.menu-bullet-dark .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-arrow-dark .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-muted .menu-item .menu-link{color:#565674}.menu-muted .menu-item .menu-link .menu-title{color:#565674}.menu-muted .menu-item .menu-link .menu-icon,.menu-muted .menu-item .menu-link .menu-icon .svg-icon,.menu-muted .menu-item .menu-link .menu-icon i{color:#565674}.menu-muted .menu-item .menu-link .menu-bullet .bullet{background-color:#565674}.menu-muted .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-muted .menu-item .menu-link{color:#565674}.menu-title-muted .menu-item .menu-link .menu-title{color:#565674}.menu-icon-muted .menu-item .menu-link .menu-icon,.menu-icon-muted .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-muted .menu-item .menu-link .menu-icon i{color:#565674}.menu-bullet-muted .menu-item .menu-link .menu-bullet .bullet{background-color:#565674}.menu-arrow-muted .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-gray-100 .menu-item .menu-link{color:#1b1b29}.menu-gray-100 .menu-item .menu-link .menu-title{color:#1b1b29}.menu-gray-100 .menu-item .menu-link .menu-icon,.menu-gray-100 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-100 .menu-item .menu-link .menu-icon i{color:#1b1b29}.menu-gray-100 .menu-item .menu-link .menu-bullet .bullet{background-color:#1b1b29}.menu-gray-100 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%231b1b29'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%231b1b29'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-gray-100 .menu-item .menu-link{color:#1b1b29}.menu-title-gray-100 .menu-item .menu-link .menu-title{color:#1b1b29}.menu-icon-gray-100 .menu-item .menu-link .menu-icon,.menu-icon-gray-100 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-100 .menu-item .menu-link .menu-icon i{color:#1b1b29}.menu-bullet-gray-100 .menu-item .menu-link .menu-bullet .bullet{background-color:#1b1b29}.menu-arrow-gray-100 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%231b1b29'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%231b1b29'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-gray-200 .menu-item .menu-link{color:#2b2b40}.menu-gray-200 .menu-item .menu-link .menu-title{color:#2b2b40}.menu-gray-200 .menu-item .menu-link .menu-icon,.menu-gray-200 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-200 .menu-item .menu-link .menu-icon i{color:#2b2b40}.menu-gray-200 .menu-item .menu-link .menu-bullet .bullet{background-color:#2b2b40}.menu-gray-200 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%232B2B40'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%232B2B40'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-gray-200 .menu-item .menu-link{color:#2b2b40}.menu-title-gray-200 .menu-item .menu-link .menu-title{color:#2b2b40}.menu-icon-gray-200 .menu-item .menu-link .menu-icon,.menu-icon-gray-200 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-200 .menu-item .menu-link .menu-icon i{color:#2b2b40}.menu-bullet-gray-200 .menu-item .menu-link .menu-bullet .bullet{background-color:#2b2b40}.menu-arrow-gray-200 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%232B2B40'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%232B2B40'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-gray-300 .menu-item .menu-link{color:#323248}.menu-gray-300 .menu-item .menu-link .menu-title{color:#323248}.menu-gray-300 .menu-item .menu-link .menu-icon,.menu-gray-300 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-300 .menu-item .menu-link .menu-icon i{color:#323248}.menu-gray-300 .menu-item .menu-link .menu-bullet .bullet{background-color:#323248}.menu-gray-300 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-gray-300 .menu-item .menu-link{color:#323248}.menu-title-gray-300 .menu-item .menu-link .menu-title{color:#323248}.menu-icon-gray-300 .menu-item .menu-link .menu-icon,.menu-icon-gray-300 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-300 .menu-item .menu-link .menu-icon i{color:#323248}.menu-bullet-gray-300 .menu-item .menu-link .menu-bullet .bullet{background-color:#323248}.menu-arrow-gray-300 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-gray-400 .menu-item .menu-link{color:#474761}.menu-gray-400 .menu-item .menu-link .menu-title{color:#474761}.menu-gray-400 .menu-item .menu-link .menu-icon,.menu-gray-400 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-400 .menu-item .menu-link .menu-icon i{color:#474761}.menu-gray-400 .menu-item .menu-link .menu-bullet .bullet{background-color:#474761}.menu-gray-400 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23474761'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23474761'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-gray-400 .menu-item .menu-link{color:#474761}.menu-title-gray-400 .menu-item .menu-link .menu-title{color:#474761}.menu-icon-gray-400 .menu-item .menu-link .menu-icon,.menu-icon-gray-400 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-400 .menu-item .menu-link .menu-icon i{color:#474761}.menu-bullet-gray-400 .menu-item .menu-link .menu-bullet .bullet{background-color:#474761}.menu-arrow-gray-400 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23474761'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23474761'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-gray-500 .menu-item .menu-link{color:#565674}.menu-gray-500 .menu-item .menu-link .menu-title{color:#565674}.menu-gray-500 .menu-item .menu-link .menu-icon,.menu-gray-500 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-500 .menu-item .menu-link .menu-icon i{color:#565674}.menu-gray-500 .menu-item .menu-link .menu-bullet .bullet{background-color:#565674}.menu-gray-500 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-gray-500 .menu-item .menu-link{color:#565674}.menu-title-gray-500 .menu-item .menu-link .menu-title{color:#565674}.menu-icon-gray-500 .menu-item .menu-link .menu-icon,.menu-icon-gray-500 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-500 .menu-item .menu-link .menu-icon i{color:#565674}.menu-bullet-gray-500 .menu-item .menu-link .menu-bullet .bullet{background-color:#565674}.menu-arrow-gray-500 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-gray-600 .menu-item .menu-link{color:#6d6d80}.menu-gray-600 .menu-item .menu-link .menu-title{color:#6d6d80}.menu-gray-600 .menu-item .menu-link .menu-icon,.menu-gray-600 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-600 .menu-item .menu-link .menu-icon i{color:#6d6d80}.menu-gray-600 .menu-item .menu-link .menu-bullet .bullet{background-color:#6d6d80}.menu-gray-600 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%236D6D80'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%236D6D80'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-gray-600 .menu-item .menu-link{color:#6d6d80}.menu-title-gray-600 .menu-item .menu-link .menu-title{color:#6d6d80}.menu-icon-gray-600 .menu-item .menu-link .menu-icon,.menu-icon-gray-600 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-600 .menu-item .menu-link .menu-icon i{color:#6d6d80}.menu-bullet-gray-600 .menu-item .menu-link .menu-bullet .bullet{background-color:#6d6d80}.menu-arrow-gray-600 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%236D6D80'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%236D6D80'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-gray-700 .menu-item .menu-link{color:#92929f}.menu-gray-700 .menu-item .menu-link .menu-title{color:#92929f}.menu-gray-700 .menu-item .menu-link .menu-icon,.menu-gray-700 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-700 .menu-item .menu-link .menu-icon i{color:#92929f}.menu-gray-700 .menu-item .menu-link .menu-bullet .bullet{background-color:#92929f}.menu-gray-700 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2392929F'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2392929F'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-gray-700 .menu-item .menu-link{color:#92929f}.menu-title-gray-700 .menu-item .menu-link .menu-title{color:#92929f}.menu-icon-gray-700 .menu-item .menu-link .menu-icon,.menu-icon-gray-700 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-700 .menu-item .menu-link .menu-icon i{color:#92929f}.menu-bullet-gray-700 .menu-item .menu-link .menu-bullet .bullet{background-color:#92929f}.menu-arrow-gray-700 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2392929F'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2392929F'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-gray-800 .menu-item .menu-link{color:#cdcdde}.menu-gray-800 .menu-item .menu-link .menu-title{color:#cdcdde}.menu-gray-800 .menu-item .menu-link .menu-icon,.menu-gray-800 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-800 .menu-item .menu-link .menu-icon i{color:#cdcdde}.menu-gray-800 .menu-item .menu-link .menu-bullet .bullet{background-color:#cdcdde}.menu-gray-800 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23CDCDDE'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23CDCDDE'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-gray-800 .menu-item .menu-link{color:#cdcdde}.menu-title-gray-800 .menu-item .menu-link .menu-title{color:#cdcdde}.menu-icon-gray-800 .menu-item .menu-link .menu-icon,.menu-icon-gray-800 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-800 .menu-item .menu-link .menu-icon i{color:#cdcdde}.menu-bullet-gray-800 .menu-item .menu-link .menu-bullet .bullet{background-color:#cdcdde}.menu-arrow-gray-800 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23CDCDDE'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23CDCDDE'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-gray-900 .menu-item .menu-link{color:#fff}.menu-gray-900 .menu-item .menu-link .menu-title{color:#fff}.menu-gray-900 .menu-item .menu-link .menu-icon,.menu-gray-900 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-900 .menu-item .menu-link .menu-icon i{color:#fff}.menu-gray-900 .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-gray-900 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-title-gray-900 .menu-item .menu-link{color:#fff}.menu-title-gray-900 .menu-item .menu-link .menu-title{color:#fff}.menu-icon-gray-900 .menu-item .menu-link .menu-icon,.menu-icon-gray-900 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-900 .menu-item .menu-link .menu-icon i{color:#fff}.menu-bullet-gray-900 .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-arrow-gray-900 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-hover-bg .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-bg .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-here-bg .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-show-bg .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-active-bg .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-state-bg .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-bg .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-state-bg .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-state-bg .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-state-bg .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#fff}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#fff}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#fff}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-show-bg-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-show-bg-primary .menu-item.show>.menu-link .menu-title{color:#fff}.menu-show-bg-primary .menu-item.show>.menu-link .menu-icon,.menu-show-bg-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-show-bg-primary .menu-item.show>.menu-link .menu-icon i{color:#fff}.menu-show-bg-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#fff}.menu-show-bg-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-here-bg-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-here-bg-primary .menu-item.here>.menu-link .menu-title{color:#fff}.menu-here-bg-primary .menu-item.here>.menu-link .menu-icon,.menu-here-bg-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-here-bg-primary .menu-item.here>.menu-link .menu-icon i{color:#fff}.menu-here-bg-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#fff}.menu-here-bg-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-active-bg-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-active-bg-primary .menu-item .menu-link.active .menu-title{color:#fff}.menu-active-bg-primary .menu-item .menu-link.active .menu-icon,.menu-active-bg-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-active-bg-primary .menu-item .menu-link.active .menu-icon i{color:#fff}.menu-active-bg-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#fff}.menu-active-bg-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#fff}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#fff}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#fff}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-bg-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-state-bg-primary .menu-item.show>.menu-link .menu-title{color:#fff}.menu-state-bg-primary .menu-item.show>.menu-link .menu-icon,.menu-state-bg-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-state-bg-primary .menu-item.show>.menu-link .menu-icon i{color:#fff}.menu-state-bg-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#fff}.menu-state-bg-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-bg-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-state-bg-primary .menu-item.here>.menu-link .menu-title{color:#fff}.menu-state-bg-primary .menu-item.here>.menu-link .menu-icon,.menu-state-bg-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-state-bg-primary .menu-item.here>.menu-link .menu-icon i{color:#fff}.menu-state-bg-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#fff}.menu-state-bg-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-bg-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-state-bg-primary .menu-item .menu-link.active .menu-title{color:#fff}.menu-state-bg-primary .menu-item .menu-link.active .menu-icon,.menu-state-bg-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-state-bg-primary .menu-item .menu-link.active .menu-icon i{color:#fff}.menu-state-bg-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#fff}.menu-state-bg-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-show-bg-light-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-title{color:#3699ff}.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-icon,.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-here-bg-light-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-title{color:#3699ff}.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-icon,.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-icon i{color:#3699ff}.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#3699ff}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-active-bg-light-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-active-bg-light-primary .menu-item .menu-link.active .menu-title{color:#3699ff}.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon,.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon i{color:#3699ff}.menu-active-bg-light-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.menu-active-bg-light-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-bg-light-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-title{color:#3699ff}.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-icon,.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-bg-light-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-title{color:#3699ff}.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-icon,.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-icon i{color:#3699ff}.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#3699ff}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-bg-light-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-state-bg-light-primary .menu-item .menu-link.active .menu-title{color:#3699ff}.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon,.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon i{color:#3699ff}.menu-state-bg-light-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.menu-state-bg-light-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#3699ff}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-show-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-show-primary .menu-item.show>.menu-link .menu-title{color:#3699ff}.menu-show-primary .menu-item.show>.menu-link .menu-icon,.menu-show-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-show-primary .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.menu-show-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-show-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-here-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-here-primary .menu-item.here>.menu-link .menu-title{color:#3699ff}.menu-here-primary .menu-item.here>.menu-link .menu-icon,.menu-here-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-here-primary .menu-item.here>.menu-link .menu-icon i{color:#3699ff}.menu-here-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-here-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-active-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-active-primary .menu-item .menu-link.active .menu-title{color:#3699ff}.menu-active-primary .menu-item .menu-link.active .menu-icon,.menu-active-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-active-primary .menu-item .menu-link.active .menu-icon i{color:#3699ff}.menu-active-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.menu-active-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#3699ff}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-primary .menu-item.show>.menu-link .menu-title{color:#3699ff}.menu-state-primary .menu-item.show>.menu-link .menu-icon,.menu-state-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-state-primary .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.menu-state-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-state-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-primary .menu-item.here>.menu-link .menu-title{color:#3699ff}.menu-state-primary .menu-item.here>.menu-link .menu-icon,.menu-state-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-state-primary .menu-item.here>.menu-link .menu-icon i{color:#3699ff}.menu-state-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-state-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-primary .menu-item .menu-link.active .menu-title{color:#3699ff}.menu-state-primary .menu-item .menu-link.active .menu-icon,.menu-state-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-state-primary .menu-item .menu-link.active .menu-icon i{color:#3699ff}.menu-state-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.menu-state-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-hover-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-hover-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-hover-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#3699ff}.menu-here-title-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-here-title-primary .menu-item.here>.menu-link .menu-title{color:#3699ff}.menu-show-title-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-show-title-primary .menu-item.show>.menu-link .menu-title{color:#3699ff}.menu-active-title-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-active-title-primary .menu-item .menu-link.active .menu-title{color:#3699ff}.menu-state-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-state-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#3699ff}.menu-state-title-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-title-primary .menu-item.show>.menu-link .menu-title{color:#3699ff}.menu-state-title-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-title-primary .menu-item .menu-link.active .menu-title{color:#3699ff}.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.menu-here-icon-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-here-icon-primary .menu-item.here>.menu-link .menu-icon,.menu-here-icon-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-here-icon-primary .menu-item.here>.menu-link .menu-icon i{color:#3699ff}.menu-show-icon-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-show-icon-primary .menu-item.show>.menu-link .menu-icon,.menu-show-icon-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-show-icon-primary .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.menu-active-icon-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-active-icon-primary .menu-item .menu-link.active .menu-icon,.menu-active-icon-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-active-icon-primary .menu-item .menu-link.active .menu-icon i{color:#3699ff}.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.menu-state-icon-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-state-icon-primary .menu-item.show>.menu-link .menu-icon,.menu-state-icon-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-state-icon-primary .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.menu-state-icon-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-state-icon-primary .menu-item .menu-link.active .menu-icon,.menu-state-icon-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-state-icon-primary .menu-item .menu-link.active .menu-icon i{color:#3699ff}.menu-hover-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-hover-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-hover-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.menu-show-bullet-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-show-bullet-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-here-bullet-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-here-bullet-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-active-bullet-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-active-bullet-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.menu-state-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-state-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-state-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.menu-state-bullet-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-state-bullet-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-state-bullet-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-state-bullet-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.menu-hover-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-hover-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-hover-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-here-arrow-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-here-arrow-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-show-arrow-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-show-arrow-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-active-arrow-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-active-arrow-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-state-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-state-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-arrow-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-state-arrow-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.menu-state-arrow-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-state-arrow-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.anchor{display:flex;align-items:center}.anchor a{position:relative;display:none;align-items:center;justify-content:flex-start;height:1em;width:1.25em;margin-left:-1.25em;font-weight:500;font-size:.8em;color:#565674;transition:all .2s ease}.anchor a:before{content:"#"}.anchor:hover a{display:flex}.anchor:hover a:hover{color:#3699ff;transition:all .2s ease}.card{border:0;box-shadow:none}.card .card-header{display:flex;justify-content:space-between;align-items:stretch;flex-wrap:wrap;min-height:70px;padding:0 2.25rem;background-color:transparent;border-bottom:1px solid #2b2b40}.card .card-header .card-title{display:flex;align-items:center;margin:.5rem;margin-left:0}.card .card-header .card-title.flex-column{align-items:flex-start;justify-content:center}.card .card-header .card-title .card-icon{margin-right:.75rem;line-height:0}.card .card-header .card-title .card-icon i{font-size:1.25rem;color:#6d6d80;line-height:0}.card .card-header .card-title .card-icon i:after,.card .card-header .card-title .card-icon i:before{line-height:0}.card .card-header .card-title .card-icon .svg-icon{color:#6d6d80}.card .card-header .card-title .card-icon .svg-icon svg{height:24px;width:24px}.card .card-header .card-title,.card .card-header .card-title .card-label{font-weight:500;font-size:1.275rem;color:#fff}.card .card-header .card-title .card-label{margin:0 .75rem 0 0;flex-wrap:wrap}.card .card-header .card-title .small,.card .card-header .card-title small{color:#565674;font-size:1rem}.card .card-header .card-title .h1,.card .card-header .card-title .h2,.card .card-header .card-title .h3,.card .card-header .card-title .h4,.card .card-header .card-title .h5,.card .card-header .card-title .h6,.card .card-header .card-title h1,.card .card-header .card-title h2,.card .card-header .card-title h3,.card .card-header .card-title h4,.card .card-header .card-title h5,.card .card-header .card-title h6{margin-bottom:0}.card .card-header .card-toolbar{display:flex;align-items:center;margin:.5rem 0;flex-wrap:wrap}.card .card-body{padding:2rem 2.25rem}.card .card-footer{padding:2rem 2.25rem;background-color:transparent;border-top:1px solid #2b2b40}.card .card-scroll{position:relative;overflow:auto}.card.card-px-0 .card-body,.card.card-px-0 .card-footer,.card.card-px-0 .card-header{padding-left:0;padding-right:0}.card.card-py-0 .card-body,.card.card-py-0 .card-footer,.card.card-py-0 .card-header{padding-top:0;padding-bottom:0}.card.card-p-0 .card-body,.card.card-p-0 .card-footer,.card.card-p-0 .card-header{padding:0}.card.card-dashed{box-shadow:none;border:1px dashed #323248}.card.card-dashed>.card-header{border-bottom:1px dashed #323248}.card.card-dashed>.card-footer{border-top:1px dashed #323248}.card.card-bordered{box-shadow:none;border:1px solid #2b2b40}.card.card-flush>.card-header{border-bottom:0}.card.card-flush>.card-footer{border-top:0}.card.card-shadow{box-shadow:none;border:0}.card.card-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-stretch .card-toolbar{margin:0;align-items:stretch}@media (min-width:576px){.card.card-sm-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-sm-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-sm-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-sm-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-sm-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-sm-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-sm-stretch .card-toolbar{margin:0;align-items:stretch}}@media (min-width:768px){.card.card-md-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-md-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-md-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-md-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-md-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-md-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-md-stretch .card-toolbar{margin:0;align-items:stretch}}@media (min-width:992px){.card.card-lg-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-lg-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-lg-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-lg-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-lg-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-lg-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-lg-stretch .card-toolbar{margin:0;align-items:stretch}}@media (min-width:1200px){.card.card-xl-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-xl-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-xl-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-xl-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-xl-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-xl-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-xl-stretch .card-toolbar{margin:0;align-items:stretch}}@media (min-width:1400px){.card.card-xxl-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-xxl-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-xxl-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-xxl-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-xxl-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-xxl-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-xxl-stretch .card-toolbar{margin:0;align-items:stretch}}.card-p{padding:2rem 2.25rem!important}.card-px{padding-left:2.25rem!important;padding-right:2.25rem!important}.card-shadow{box-shadow:none}.card-py{padding-top:2rem!important;padding-bottom:2rem!important}.card-rounded{border-radius:.625rem}.card-rounded-start{border-top-left-radius:.625rem;border-bottom-left-radius:.625rem}.card-rounded-end{border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.card-rounded-top{border-top-left-radius:.625rem;border-top-right-radius:.625rem}.card-rounded-bottom{border-bottom-left-radius:.625rem;border-bottom-right-radius:.625rem}@media (max-width:767.98px){.card>.card-header:not(.flex-nowrap){padding-top:.5rem;padding-bottom:.5rem}}.breadcrumb{display:flex;align-items:center;background-color:transparent;padding:0;margin:0}.breadcrumb .breadcrumb-item{display:flex;align-items:center;padding-left:0;padding-right:.5rem}.breadcrumb .breadcrumb-item:last-child{padding-right:0}.breadcrumb .breadcrumb-item:after{content:"/";padding-left:.5rem}.breadcrumb .breadcrumb-item:before{display:none}.breadcrumb .breadcrumb-item:last-child:after{display:none}.breadcrumb-line .breadcrumb-item:after{content:"-"}.breadcrumb-dot .breadcrumb-item:after{content:"•"}.breadcrumb-separatorless .breadcrumb-item:after{display:none}.btn{outline:0!important}.btn:not(.btn-shadow):not(.shadow):not(.shadow-sm):not(.shadow-lg){box-shadow:none!important}.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon){border:0;padding:calc(.75rem + 1px) calc(1.5rem + 1px)}.btn-group-lg>.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon),.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon).btn-lg{padding:calc(.825rem + 1px) calc(1.75rem + 1px)}.btn-group-sm>.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon),.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon).btn-sm{padding:calc(.55rem + 1px) calc(1.25rem + 1px)}.btn.btn-link{border:0;border-radius:0;padding-left:0!important;padding-right:0!important;text-decoration:none;font-weight:500}.btn.btn-outline-dashed{border:1px dashed #323248}.btn.btn-outline-default{border:1px solid #323248}.btn.btn-flush{appearance:none;box-shadow:none;border-radius:0;border:none;cursor:pointer;background-color:transparent;outline:0!important;margin:0;padding:0}.btn.btn-flex{display:inline-flex;align-items:center}.btn.btn-trim-start{justify-content:flex-start!important;padding-left:0!important}.btn.btn-trim-end{justify-content:flex-end!important;padding-right:0!important}.btn i{display:inline-flex;font-size:1rem;padding-right:.35rem;vertical-align:middle;line-height:0}.btn .svg-icon{flex-shrink:0;line-height:0;margin-right:.5rem}.btn.btn-icon{display:inline-flex;align-items:center;justify-content:center;padding:0;height:calc(1.5em + 1.5rem + 2px);width:calc(1.5em + 1.5rem + 2px)}.btn.btn-icon:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush){border:0}.btn-group-sm>.btn.btn-icon,.btn.btn-icon.btn-sm{height:calc(1.5em + 1.1rem + 2px);width:calc(1.5em + 1.1rem + 2px)}.btn-group-lg>.btn.btn-icon,.btn.btn-icon.btn-lg{height:calc(1.5em + 1.65rem + 2px);width:calc(1.5em + 1.65rem + 2px)}.btn.btn-icon.btn-circle{border-radius:50%}.btn.btn-icon .svg-icon,.btn.btn-icon i{padding:0;margin:0;line-height:1}.btn.btn-hover-rise{transition:transform .3s ease}.btn.btn-hover-rise:hover{transform:translateY(-10%);transition:transform .3s ease}.btn.btn-hover-scale{transition:transform .3s ease}.btn.btn-hover-scale:hover{transform:scale(1.1);transition:transform .3s ease}.btn.btn-hover-rotate-end{transition:transform .3s ease}.btn.btn-hover-rotate-end:hover{transform:rotate(4deg);transition:transform .3s ease}.btn.btn-hover-rotate-start{transition:transform .3s ease}.btn.btn-hover-rotate-start:hover{transform:rotate(-4deg);transition:transform .3s ease}.btn.btn-white{color:#6d6d80;border-color:#fff;background-color:#fff}.btn.btn-white .svg-icon,.btn.btn-white i{color:#6d6d80}.btn.btn-white.dropdown-toggle:after{color:#6d6d80}.btn-check:active+.btn.btn-white,.btn-check:checked+.btn.btn-white,.btn.btn-white.active,.btn.btn-white.show,.btn.btn-white:active:not(.btn-active),.btn.btn-white:focus:not(.btn-active),.btn.btn-white:hover:not(.btn-active),.show>.btn.btn-white{color:#6d6d80;border-color:#1b1b29;background-color:#1b1b29!important}.btn-check:active+.btn.btn-white .svg-icon,.btn-check:active+.btn.btn-white i,.btn-check:checked+.btn.btn-white .svg-icon,.btn-check:checked+.btn.btn-white i,.btn.btn-white.active .svg-icon,.btn.btn-white.active i,.btn.btn-white.show .svg-icon,.btn.btn-white.show i,.btn.btn-white:active:not(.btn-active) .svg-icon,.btn.btn-white:active:not(.btn-active) i,.btn.btn-white:focus:not(.btn-active) .svg-icon,.btn.btn-white:focus:not(.btn-active) i,.btn.btn-white:hover:not(.btn-active) .svg-icon,.btn.btn-white:hover:not(.btn-active) i,.show>.btn.btn-white .svg-icon,.show>.btn.btn-white i{color:#6d6d80}.btn-check:active+.btn.btn-white.dropdown-toggle:after,.btn-check:checked+.btn.btn-white.dropdown-toggle:after,.btn.btn-white.active.dropdown-toggle:after,.btn.btn-white.show.dropdown-toggle:after,.btn.btn-white:active:not(.btn-active).dropdown-toggle:after,.btn.btn-white:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-white:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-white.dropdown-toggle:after{color:#6d6d80}.btn.btn-bg-white{border-color:#fff;background-color:#fff}.btn-check:active+.btn.btn-active-white,.btn-check:checked+.btn.btn-active-white,.btn.btn-active-white.active,.btn.btn-active-white.show,.btn.btn-active-white:active:not(.btn-active),.btn.btn-active-white:focus:not(.btn-active),.btn.btn-active-white:hover:not(.btn-active),.show>.btn.btn-active-white{color:#6d6d80;border-color:#fff;background-color:#fff!important}.btn-check:active+.btn.btn-active-white .svg-icon,.btn-check:active+.btn.btn-active-white i,.btn-check:checked+.btn.btn-active-white .svg-icon,.btn-check:checked+.btn.btn-active-white i,.btn.btn-active-white.active .svg-icon,.btn.btn-active-white.active i,.btn.btn-active-white.show .svg-icon,.btn.btn-active-white.show i,.btn.btn-active-white:active:not(.btn-active) .svg-icon,.btn.btn-active-white:active:not(.btn-active) i,.btn.btn-active-white:focus:not(.btn-active) .svg-icon,.btn.btn-active-white:focus:not(.btn-active) i,.btn.btn-active-white:hover:not(.btn-active) .svg-icon,.btn.btn-active-white:hover:not(.btn-active) i,.show>.btn.btn-active-white .svg-icon,.show>.btn.btn-active-white i{color:#6d6d80}.btn-check:active+.btn.btn-active-white.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-white.dropdown-toggle:after,.btn.btn-active-white.active.dropdown-toggle:after,.btn.btn-active-white.show.dropdown-toggle:after,.btn.btn-active-white:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-white:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-white:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-white.dropdown-toggle:after{color:#6d6d80}.btn.btn-light{color:#cdcdde;border-color:#323248;background-color:#323248}.btn.btn-light .svg-icon,.btn.btn-light i{color:#cdcdde}.btn.btn-light.dropdown-toggle:after{color:#cdcdde}.btn-check:active+.btn.btn-light,.btn-check:checked+.btn.btn-light,.btn.btn-light.active,.btn.btn-light.show,.btn.btn-light:active:not(.btn-active),.btn.btn-light:focus:not(.btn-active),.btn.btn-light:hover:not(.btn-active),.show>.btn.btn-light{color:#cdcdde;border-color:#474761;background-color:#474761!important}.btn-check:active+.btn.btn-light .svg-icon,.btn-check:active+.btn.btn-light i,.btn-check:checked+.btn.btn-light .svg-icon,.btn-check:checked+.btn.btn-light i,.btn.btn-light.active .svg-icon,.btn.btn-light.active i,.btn.btn-light.show .svg-icon,.btn.btn-light.show i,.btn.btn-light:active:not(.btn-active) .svg-icon,.btn.btn-light:active:not(.btn-active) i,.btn.btn-light:focus:not(.btn-active) .svg-icon,.btn.btn-light:focus:not(.btn-active) i,.btn.btn-light:hover:not(.btn-active) .svg-icon,.btn.btn-light:hover:not(.btn-active) i,.show>.btn.btn-light .svg-icon,.show>.btn.btn-light i{color:#cdcdde}.btn-check:active+.btn.btn-light.dropdown-toggle:after,.btn-check:checked+.btn.btn-light.dropdown-toggle:after,.btn.btn-light.active.dropdown-toggle:after,.btn.btn-light.show.dropdown-toggle:after,.btn.btn-light:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light.dropdown-toggle:after{color:#cdcdde}.btn.btn-bg-light{border-color:#323248;background-color:#323248}.btn-check:active+.btn.btn-active-light,.btn-check:checked+.btn.btn-active-light,.btn.btn-active-light.active,.btn.btn-active-light.show,.btn.btn-active-light:active:not(.btn-active),.btn.btn-active-light:focus:not(.btn-active),.btn.btn-active-light:hover:not(.btn-active),.show>.btn.btn-active-light{color:#cdcdde;border-color:#323248;background-color:#323248!important}.btn-check:active+.btn.btn-active-light .svg-icon,.btn-check:active+.btn.btn-active-light i,.btn-check:checked+.btn.btn-active-light .svg-icon,.btn-check:checked+.btn.btn-active-light i,.btn.btn-active-light.active .svg-icon,.btn.btn-active-light.active i,.btn.btn-active-light.show .svg-icon,.btn.btn-active-light.show i,.btn.btn-active-light:active:not(.btn-active) .svg-icon,.btn.btn-active-light:active:not(.btn-active) i,.btn.btn-active-light:focus:not(.btn-active) .svg-icon,.btn.btn-active-light:focus:not(.btn-active) i,.btn.btn-active-light:hover:not(.btn-active) .svg-icon,.btn.btn-active-light:hover:not(.btn-active) i,.show>.btn.btn-active-light .svg-icon,.show>.btn.btn-active-light i{color:#cdcdde}.btn-check:active+.btn.btn-active-light.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light.dropdown-toggle:after,.btn.btn-active-light.active.dropdown-toggle:after,.btn.btn-active-light.show.dropdown-toggle:after,.btn.btn-active-light:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light.dropdown-toggle:after{color:#cdcdde}.btn.btn-primary{color:#fff;border-color:#3699ff;background-color:#3699ff}.btn.btn-primary .svg-icon,.btn.btn-primary i{color:#fff}.btn.btn-primary.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-primary,.btn-check:checked+.btn.btn-primary,.btn.btn-primary.active,.btn.btn-primary.show,.btn.btn-primary:active:not(.btn-active),.btn.btn-primary:focus:not(.btn-active),.btn.btn-primary:hover:not(.btn-active),.show>.btn.btn-primary{color:#fff;border-color:#187de4;background-color:#187de4!important}.btn-check:active+.btn.btn-primary .svg-icon,.btn-check:active+.btn.btn-primary i,.btn-check:checked+.btn.btn-primary .svg-icon,.btn-check:checked+.btn.btn-primary i,.btn.btn-primary.active .svg-icon,.btn.btn-primary.active i,.btn.btn-primary.show .svg-icon,.btn.btn-primary.show i,.btn.btn-primary:active:not(.btn-active) .svg-icon,.btn.btn-primary:active:not(.btn-active) i,.btn.btn-primary:focus:not(.btn-active) .svg-icon,.btn.btn-primary:focus:not(.btn-active) i,.btn.btn-primary:hover:not(.btn-active) .svg-icon,.btn.btn-primary:hover:not(.btn-active) i,.show>.btn.btn-primary .svg-icon,.show>.btn.btn-primary i{color:#fff}.btn-check:active+.btn.btn-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-primary.dropdown-toggle:after,.btn.btn-primary.active.dropdown-toggle:after,.btn.btn-primary.show.dropdown-toggle:after,.btn.btn-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-primary.dropdown-toggle:after{color:#fff}.btn.btn-light-primary{color:#3699ff;border-color:#212e48;background-color:#212e48}.btn.btn-light-primary .svg-icon,.btn.btn-light-primary i{color:#3699ff}.btn.btn-light-primary.dropdown-toggle:after{color:#3699ff}.btn-check:active+.btn.btn-light-primary,.btn-check:checked+.btn.btn-light-primary,.btn.btn-light-primary.active,.btn.btn-light-primary.show,.btn.btn-light-primary:active:not(.btn-active),.btn.btn-light-primary:focus:not(.btn-active),.btn.btn-light-primary:hover:not(.btn-active),.show>.btn.btn-light-primary{color:#fff;border-color:#3699ff;background-color:#3699ff!important}.btn-check:active+.btn.btn-light-primary .svg-icon,.btn-check:active+.btn.btn-light-primary i,.btn-check:checked+.btn.btn-light-primary .svg-icon,.btn-check:checked+.btn.btn-light-primary i,.btn.btn-light-primary.active .svg-icon,.btn.btn-light-primary.active i,.btn.btn-light-primary.show .svg-icon,.btn.btn-light-primary.show i,.btn.btn-light-primary:active:not(.btn-active) .svg-icon,.btn.btn-light-primary:active:not(.btn-active) i,.btn.btn-light-primary:focus:not(.btn-active) .svg-icon,.btn.btn-light-primary:focus:not(.btn-active) i,.btn.btn-light-primary:hover:not(.btn-active) .svg-icon,.btn.btn-light-primary:hover:not(.btn-active) i,.show>.btn.btn-light-primary .svg-icon,.show>.btn.btn-light-primary i{color:#fff}.btn-check:active+.btn.btn-light-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-primary.dropdown-toggle:after,.btn.btn-light-primary.active.dropdown-toggle:after,.btn.btn-light-primary.show.dropdown-toggle:after,.btn.btn-light-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-primary.dropdown-toggle:after{color:#fff}.btn.btn-bg-primary{border-color:#3699ff;background-color:#3699ff}.btn-check:active+.btn.btn-active-primary,.btn-check:checked+.btn.btn-active-primary,.btn.btn-active-primary.active,.btn.btn-active-primary.show,.btn.btn-active-primary:active:not(.btn-active),.btn.btn-active-primary:focus:not(.btn-active),.btn.btn-active-primary:hover:not(.btn-active),.show>.btn.btn-active-primary{color:#fff;border-color:#3699ff;background-color:#3699ff!important}.btn-check:active+.btn.btn-active-primary .svg-icon,.btn-check:active+.btn.btn-active-primary i,.btn-check:checked+.btn.btn-active-primary .svg-icon,.btn-check:checked+.btn.btn-active-primary i,.btn.btn-active-primary.active .svg-icon,.btn.btn-active-primary.active i,.btn.btn-active-primary.show .svg-icon,.btn.btn-active-primary.show i,.btn.btn-active-primary:active:not(.btn-active) .svg-icon,.btn.btn-active-primary:active:not(.btn-active) i,.btn.btn-active-primary:focus:not(.btn-active) .svg-icon,.btn.btn-active-primary:focus:not(.btn-active) i,.btn.btn-active-primary:hover:not(.btn-active) .svg-icon,.btn.btn-active-primary:hover:not(.btn-active) i,.show>.btn.btn-active-primary .svg-icon,.show>.btn.btn-active-primary i{color:#fff}.btn-check:active+.btn.btn-active-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-primary.dropdown-toggle:after,.btn.btn-active-primary.active.dropdown-toggle:after,.btn.btn-active-primary.show.dropdown-toggle:after,.btn.btn-active-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-primary.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-primary,.btn-check:checked+.btn.btn-active-light-primary,.btn.btn-active-light-primary.active,.btn.btn-active-light-primary.show,.btn.btn-active-light-primary:active:not(.btn-active),.btn.btn-active-light-primary:focus:not(.btn-active),.btn.btn-active-light-primary:hover:not(.btn-active),.show>.btn.btn-active-light-primary{color:#3699ff;border-color:#212e48;background-color:#212e48!important}.btn-check:active+.btn.btn-active-light-primary .svg-icon,.btn-check:active+.btn.btn-active-light-primary i,.btn-check:checked+.btn.btn-active-light-primary .svg-icon,.btn-check:checked+.btn.btn-active-light-primary i,.btn.btn-active-light-primary.active .svg-icon,.btn.btn-active-light-primary.active i,.btn.btn-active-light-primary.show .svg-icon,.btn.btn-active-light-primary.show i,.btn.btn-active-light-primary:active:not(.btn-active) .svg-icon,.btn.btn-active-light-primary:active:not(.btn-active) i,.btn.btn-active-light-primary:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-primary:focus:not(.btn-active) i,.btn.btn-active-light-primary:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-primary:hover:not(.btn-active) i,.show>.btn.btn-active-light-primary .svg-icon,.show>.btn.btn-active-light-primary i{color:#3699ff}.btn-check:active+.btn.btn-active-light-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-primary.dropdown-toggle:after,.btn.btn-active-light-primary.active.dropdown-toggle:after,.btn.btn-active-light-primary.show.dropdown-toggle:after,.btn.btn-active-light-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-primary.dropdown-toggle:after{color:#3699ff}.btn.btn-active-light-primary.btn-outline:not(.btn-outline-default){border-color:#3699ff!important}.btn.btn-secondary{color:#cdcdde;border-color:#323248;background-color:#323248}.btn.btn-secondary .svg-icon,.btn.btn-secondary i{color:#cdcdde}.btn.btn-secondary.dropdown-toggle:after{color:#cdcdde}.btn-check:active+.btn.btn-secondary,.btn-check:checked+.btn.btn-secondary,.btn.btn-secondary.active,.btn.btn-secondary.show,.btn.btn-secondary:active:not(.btn-active),.btn.btn-secondary:focus:not(.btn-active),.btn.btn-secondary:hover:not(.btn-active),.show>.btn.btn-secondary{color:#cdcdde;border-color:#474761;background-color:#474761!important}.btn-check:active+.btn.btn-secondary .svg-icon,.btn-check:active+.btn.btn-secondary i,.btn-check:checked+.btn.btn-secondary .svg-icon,.btn-check:checked+.btn.btn-secondary i,.btn.btn-secondary.active .svg-icon,.btn.btn-secondary.active i,.btn.btn-secondary.show .svg-icon,.btn.btn-secondary.show i,.btn.btn-secondary:active:not(.btn-active) .svg-icon,.btn.btn-secondary:active:not(.btn-active) i,.btn.btn-secondary:focus:not(.btn-active) .svg-icon,.btn.btn-secondary:focus:not(.btn-active) i,.btn.btn-secondary:hover:not(.btn-active) .svg-icon,.btn.btn-secondary:hover:not(.btn-active) i,.show>.btn.btn-secondary .svg-icon,.show>.btn.btn-secondary i{color:#cdcdde}.btn-check:active+.btn.btn-secondary.dropdown-toggle:after,.btn-check:checked+.btn.btn-secondary.dropdown-toggle:after,.btn.btn-secondary.active.dropdown-toggle:after,.btn.btn-secondary.show.dropdown-toggle:after,.btn.btn-secondary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-secondary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-secondary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-secondary.dropdown-toggle:after{color:#cdcdde}.btn.btn-bg-secondary{border-color:#323248;background-color:#323248}.btn-check:active+.btn.btn-active-secondary,.btn-check:checked+.btn.btn-active-secondary,.btn.btn-active-secondary.active,.btn.btn-active-secondary.show,.btn.btn-active-secondary:active:not(.btn-active),.btn.btn-active-secondary:focus:not(.btn-active),.btn.btn-active-secondary:hover:not(.btn-active),.show>.btn.btn-active-secondary{color:#cdcdde;border-color:#323248;background-color:#323248!important}.btn-check:active+.btn.btn-active-secondary .svg-icon,.btn-check:active+.btn.btn-active-secondary i,.btn-check:checked+.btn.btn-active-secondary .svg-icon,.btn-check:checked+.btn.btn-active-secondary i,.btn.btn-active-secondary.active .svg-icon,.btn.btn-active-secondary.active i,.btn.btn-active-secondary.show .svg-icon,.btn.btn-active-secondary.show i,.btn.btn-active-secondary:active:not(.btn-active) .svg-icon,.btn.btn-active-secondary:active:not(.btn-active) i,.btn.btn-active-secondary:focus:not(.btn-active) .svg-icon,.btn.btn-active-secondary:focus:not(.btn-active) i,.btn.btn-active-secondary:hover:not(.btn-active) .svg-icon,.btn.btn-active-secondary:hover:not(.btn-active) i,.show>.btn.btn-active-secondary .svg-icon,.show>.btn.btn-active-secondary i{color:#cdcdde}.btn-check:active+.btn.btn-active-secondary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-secondary.dropdown-toggle:after,.btn.btn-active-secondary.active.dropdown-toggle:after,.btn.btn-active-secondary.show.dropdown-toggle:after,.btn.btn-active-secondary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-secondary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-secondary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-secondary.dropdown-toggle:after{color:#cdcdde}.btn.btn-success{color:#fff;border-color:#0bb783;background-color:#0bb783}.btn.btn-success .svg-icon,.btn.btn-success i{color:#fff}.btn.btn-success.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-success,.btn-check:checked+.btn.btn-success,.btn.btn-success.active,.btn.btn-success.show,.btn.btn-success:active:not(.btn-active),.btn.btn-success:focus:not(.btn-active),.btn.btn-success:hover:not(.btn-active),.show>.btn.btn-success{color:#fff;border-color:#04aa77;background-color:#04aa77!important}.btn-check:active+.btn.btn-success .svg-icon,.btn-check:active+.btn.btn-success i,.btn-check:checked+.btn.btn-success .svg-icon,.btn-check:checked+.btn.btn-success i,.btn.btn-success.active .svg-icon,.btn.btn-success.active i,.btn.btn-success.show .svg-icon,.btn.btn-success.show i,.btn.btn-success:active:not(.btn-active) .svg-icon,.btn.btn-success:active:not(.btn-active) i,.btn.btn-success:focus:not(.btn-active) .svg-icon,.btn.btn-success:focus:not(.btn-active) i,.btn.btn-success:hover:not(.btn-active) .svg-icon,.btn.btn-success:hover:not(.btn-active) i,.show>.btn.btn-success .svg-icon,.show>.btn.btn-success i{color:#fff}.btn-check:active+.btn.btn-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-success.dropdown-toggle:after,.btn.btn-success.active.dropdown-toggle:after,.btn.btn-success.show.dropdown-toggle:after,.btn.btn-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-success.dropdown-toggle:after{color:#fff}.btn.btn-light-success{color:#0bb783;border-color:#1c3238;background-color:#1c3238}.btn.btn-light-success .svg-icon,.btn.btn-light-success i{color:#0bb783}.btn.btn-light-success.dropdown-toggle:after{color:#0bb783}.btn-check:active+.btn.btn-light-success,.btn-check:checked+.btn.btn-light-success,.btn.btn-light-success.active,.btn.btn-light-success.show,.btn.btn-light-success:active:not(.btn-active),.btn.btn-light-success:focus:not(.btn-active),.btn.btn-light-success:hover:not(.btn-active),.show>.btn.btn-light-success{color:#fff;border-color:#0bb783;background-color:#0bb783!important}.btn-check:active+.btn.btn-light-success .svg-icon,.btn-check:active+.btn.btn-light-success i,.btn-check:checked+.btn.btn-light-success .svg-icon,.btn-check:checked+.btn.btn-light-success i,.btn.btn-light-success.active .svg-icon,.btn.btn-light-success.active i,.btn.btn-light-success.show .svg-icon,.btn.btn-light-success.show i,.btn.btn-light-success:active:not(.btn-active) .svg-icon,.btn.btn-light-success:active:not(.btn-active) i,.btn.btn-light-success:focus:not(.btn-active) .svg-icon,.btn.btn-light-success:focus:not(.btn-active) i,.btn.btn-light-success:hover:not(.btn-active) .svg-icon,.btn.btn-light-success:hover:not(.btn-active) i,.show>.btn.btn-light-success .svg-icon,.show>.btn.btn-light-success i{color:#fff}.btn-check:active+.btn.btn-light-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-success.dropdown-toggle:after,.btn.btn-light-success.active.dropdown-toggle:after,.btn.btn-light-success.show.dropdown-toggle:after,.btn.btn-light-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-success.dropdown-toggle:after{color:#fff}.btn.btn-bg-success{border-color:#0bb783;background-color:#0bb783}.btn-check:active+.btn.btn-active-success,.btn-check:checked+.btn.btn-active-success,.btn.btn-active-success.active,.btn.btn-active-success.show,.btn.btn-active-success:active:not(.btn-active),.btn.btn-active-success:focus:not(.btn-active),.btn.btn-active-success:hover:not(.btn-active),.show>.btn.btn-active-success{color:#fff;border-color:#0bb783;background-color:#0bb783!important}.btn-check:active+.btn.btn-active-success .svg-icon,.btn-check:active+.btn.btn-active-success i,.btn-check:checked+.btn.btn-active-success .svg-icon,.btn-check:checked+.btn.btn-active-success i,.btn.btn-active-success.active .svg-icon,.btn.btn-active-success.active i,.btn.btn-active-success.show .svg-icon,.btn.btn-active-success.show i,.btn.btn-active-success:active:not(.btn-active) .svg-icon,.btn.btn-active-success:active:not(.btn-active) i,.btn.btn-active-success:focus:not(.btn-active) .svg-icon,.btn.btn-active-success:focus:not(.btn-active) i,.btn.btn-active-success:hover:not(.btn-active) .svg-icon,.btn.btn-active-success:hover:not(.btn-active) i,.show>.btn.btn-active-success .svg-icon,.show>.btn.btn-active-success i{color:#fff}.btn-check:active+.btn.btn-active-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-success.dropdown-toggle:after,.btn.btn-active-success.active.dropdown-toggle:after,.btn.btn-active-success.show.dropdown-toggle:after,.btn.btn-active-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-success.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-success,.btn-check:checked+.btn.btn-active-light-success,.btn.btn-active-light-success.active,.btn.btn-active-light-success.show,.btn.btn-active-light-success:active:not(.btn-active),.btn.btn-active-light-success:focus:not(.btn-active),.btn.btn-active-light-success:hover:not(.btn-active),.show>.btn.btn-active-light-success{color:#0bb783;border-color:#1c3238;background-color:#1c3238!important}.btn-check:active+.btn.btn-active-light-success .svg-icon,.btn-check:active+.btn.btn-active-light-success i,.btn-check:checked+.btn.btn-active-light-success .svg-icon,.btn-check:checked+.btn.btn-active-light-success i,.btn.btn-active-light-success.active .svg-icon,.btn.btn-active-light-success.active i,.btn.btn-active-light-success.show .svg-icon,.btn.btn-active-light-success.show i,.btn.btn-active-light-success:active:not(.btn-active) .svg-icon,.btn.btn-active-light-success:active:not(.btn-active) i,.btn.btn-active-light-success:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-success:focus:not(.btn-active) i,.btn.btn-active-light-success:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-success:hover:not(.btn-active) i,.show>.btn.btn-active-light-success .svg-icon,.show>.btn.btn-active-light-success i{color:#0bb783}.btn-check:active+.btn.btn-active-light-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-success.dropdown-toggle:after,.btn.btn-active-light-success.active.dropdown-toggle:after,.btn.btn-active-light-success.show.dropdown-toggle:after,.btn.btn-active-light-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-success.dropdown-toggle:after{color:#0bb783}.btn.btn-active-light-success.btn-outline:not(.btn-outline-default){border-color:#0bb783!important}.btn.btn-info{color:#fff;border-color:#8950fc;background-color:#8950fc}.btn.btn-info .svg-icon,.btn.btn-info i{color:#fff}.btn.btn-info.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-info,.btn-check:checked+.btn.btn-info,.btn.btn-info.active,.btn.btn-info.show,.btn.btn-info:active:not(.btn-active),.btn.btn-info:focus:not(.btn-active),.btn.btn-info:hover:not(.btn-active),.show>.btn.btn-info{color:#fff;border-color:#7337ee;background-color:#7337ee!important}.btn-check:active+.btn.btn-info .svg-icon,.btn-check:active+.btn.btn-info i,.btn-check:checked+.btn.btn-info .svg-icon,.btn-check:checked+.btn.btn-info i,.btn.btn-info.active .svg-icon,.btn.btn-info.active i,.btn.btn-info.show .svg-icon,.btn.btn-info.show i,.btn.btn-info:active:not(.btn-active) .svg-icon,.btn.btn-info:active:not(.btn-active) i,.btn.btn-info:focus:not(.btn-active) .svg-icon,.btn.btn-info:focus:not(.btn-active) i,.btn.btn-info:hover:not(.btn-active) .svg-icon,.btn.btn-info:hover:not(.btn-active) i,.show>.btn.btn-info .svg-icon,.show>.btn.btn-info i{color:#fff}.btn-check:active+.btn.btn-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-info.dropdown-toggle:after,.btn.btn-info.active.dropdown-toggle:after,.btn.btn-info.show.dropdown-toggle:after,.btn.btn-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-info.dropdown-toggle:after{color:#fff}.btn.btn-light-info{color:#8950fc;border-color:#2f264f;background-color:#2f264f}.btn.btn-light-info .svg-icon,.btn.btn-light-info i{color:#8950fc}.btn.btn-light-info.dropdown-toggle:after{color:#8950fc}.btn-check:active+.btn.btn-light-info,.btn-check:checked+.btn.btn-light-info,.btn.btn-light-info.active,.btn.btn-light-info.show,.btn.btn-light-info:active:not(.btn-active),.btn.btn-light-info:focus:not(.btn-active),.btn.btn-light-info:hover:not(.btn-active),.show>.btn.btn-light-info{color:#fff;border-color:#8950fc;background-color:#8950fc!important}.btn-check:active+.btn.btn-light-info .svg-icon,.btn-check:active+.btn.btn-light-info i,.btn-check:checked+.btn.btn-light-info .svg-icon,.btn-check:checked+.btn.btn-light-info i,.btn.btn-light-info.active .svg-icon,.btn.btn-light-info.active i,.btn.btn-light-info.show .svg-icon,.btn.btn-light-info.show i,.btn.btn-light-info:active:not(.btn-active) .svg-icon,.btn.btn-light-info:active:not(.btn-active) i,.btn.btn-light-info:focus:not(.btn-active) .svg-icon,.btn.btn-light-info:focus:not(.btn-active) i,.btn.btn-light-info:hover:not(.btn-active) .svg-icon,.btn.btn-light-info:hover:not(.btn-active) i,.show>.btn.btn-light-info .svg-icon,.show>.btn.btn-light-info i{color:#fff}.btn-check:active+.btn.btn-light-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-info.dropdown-toggle:after,.btn.btn-light-info.active.dropdown-toggle:after,.btn.btn-light-info.show.dropdown-toggle:after,.btn.btn-light-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-info.dropdown-toggle:after{color:#fff}.btn.btn-bg-info{border-color:#8950fc;background-color:#8950fc}.btn-check:active+.btn.btn-active-info,.btn-check:checked+.btn.btn-active-info,.btn.btn-active-info.active,.btn.btn-active-info.show,.btn.btn-active-info:active:not(.btn-active),.btn.btn-active-info:focus:not(.btn-active),.btn.btn-active-info:hover:not(.btn-active),.show>.btn.btn-active-info{color:#fff;border-color:#8950fc;background-color:#8950fc!important}.btn-check:active+.btn.btn-active-info .svg-icon,.btn-check:active+.btn.btn-active-info i,.btn-check:checked+.btn.btn-active-info .svg-icon,.btn-check:checked+.btn.btn-active-info i,.btn.btn-active-info.active .svg-icon,.btn.btn-active-info.active i,.btn.btn-active-info.show .svg-icon,.btn.btn-active-info.show i,.btn.btn-active-info:active:not(.btn-active) .svg-icon,.btn.btn-active-info:active:not(.btn-active) i,.btn.btn-active-info:focus:not(.btn-active) .svg-icon,.btn.btn-active-info:focus:not(.btn-active) i,.btn.btn-active-info:hover:not(.btn-active) .svg-icon,.btn.btn-active-info:hover:not(.btn-active) i,.show>.btn.btn-active-info .svg-icon,.show>.btn.btn-active-info i{color:#fff}.btn-check:active+.btn.btn-active-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-info.dropdown-toggle:after,.btn.btn-active-info.active.dropdown-toggle:after,.btn.btn-active-info.show.dropdown-toggle:after,.btn.btn-active-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-info.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-info,.btn-check:checked+.btn.btn-active-light-info,.btn.btn-active-light-info.active,.btn.btn-active-light-info.show,.btn.btn-active-light-info:active:not(.btn-active),.btn.btn-active-light-info:focus:not(.btn-active),.btn.btn-active-light-info:hover:not(.btn-active),.show>.btn.btn-active-light-info{color:#8950fc;border-color:#2f264f;background-color:#2f264f!important}.btn-check:active+.btn.btn-active-light-info .svg-icon,.btn-check:active+.btn.btn-active-light-info i,.btn-check:checked+.btn.btn-active-light-info .svg-icon,.btn-check:checked+.btn.btn-active-light-info i,.btn.btn-active-light-info.active .svg-icon,.btn.btn-active-light-info.active i,.btn.btn-active-light-info.show .svg-icon,.btn.btn-active-light-info.show i,.btn.btn-active-light-info:active:not(.btn-active) .svg-icon,.btn.btn-active-light-info:active:not(.btn-active) i,.btn.btn-active-light-info:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-info:focus:not(.btn-active) i,.btn.btn-active-light-info:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-info:hover:not(.btn-active) i,.show>.btn.btn-active-light-info .svg-icon,.show>.btn.btn-active-light-info i{color:#8950fc}.btn-check:active+.btn.btn-active-light-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-info.dropdown-toggle:after,.btn.btn-active-light-info.active.dropdown-toggle:after,.btn.btn-active-light-info.show.dropdown-toggle:after,.btn.btn-active-light-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-info.dropdown-toggle:after{color:#8950fc}.btn.btn-active-light-info.btn-outline:not(.btn-outline-default){border-color:#8950fc!important}.btn.btn-warning{color:#fff;border-color:#ffa800;background-color:#ffa800}.btn.btn-warning .svg-icon,.btn.btn-warning i{color:#fff}.btn.btn-warning.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-warning,.btn-check:checked+.btn.btn-warning,.btn.btn-warning.active,.btn.btn-warning.show,.btn.btn-warning:active:not(.btn-active),.btn.btn-warning:focus:not(.btn-active),.btn.btn-warning:hover:not(.btn-active),.show>.btn.btn-warning{color:#fff;border-color:#ee9d01;background-color:#ee9d01!important}.btn-check:active+.btn.btn-warning .svg-icon,.btn-check:active+.btn.btn-warning i,.btn-check:checked+.btn.btn-warning .svg-icon,.btn-check:checked+.btn.btn-warning i,.btn.btn-warning.active .svg-icon,.btn.btn-warning.active i,.btn.btn-warning.show .svg-icon,.btn.btn-warning.show i,.btn.btn-warning:active:not(.btn-active) .svg-icon,.btn.btn-warning:active:not(.btn-active) i,.btn.btn-warning:focus:not(.btn-active) .svg-icon,.btn.btn-warning:focus:not(.btn-active) i,.btn.btn-warning:hover:not(.btn-active) .svg-icon,.btn.btn-warning:hover:not(.btn-active) i,.show>.btn.btn-warning .svg-icon,.show>.btn.btn-warning i{color:#fff}.btn-check:active+.btn.btn-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-warning.dropdown-toggle:after,.btn.btn-warning.active.dropdown-toggle:after,.btn.btn-warning.show.dropdown-toggle:after,.btn.btn-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-warning.dropdown-toggle:after{color:#fff}.btn.btn-light-warning{color:#ffa800;border-color:#392f28;background-color:#392f28}.btn.btn-light-warning .svg-icon,.btn.btn-light-warning i{color:#ffa800}.btn.btn-light-warning.dropdown-toggle:after{color:#ffa800}.btn-check:active+.btn.btn-light-warning,.btn-check:checked+.btn.btn-light-warning,.btn.btn-light-warning.active,.btn.btn-light-warning.show,.btn.btn-light-warning:active:not(.btn-active),.btn.btn-light-warning:focus:not(.btn-active),.btn.btn-light-warning:hover:not(.btn-active),.show>.btn.btn-light-warning{color:#fff;border-color:#ffa800;background-color:#ffa800!important}.btn-check:active+.btn.btn-light-warning .svg-icon,.btn-check:active+.btn.btn-light-warning i,.btn-check:checked+.btn.btn-light-warning .svg-icon,.btn-check:checked+.btn.btn-light-warning i,.btn.btn-light-warning.active .svg-icon,.btn.btn-light-warning.active i,.btn.btn-light-warning.show .svg-icon,.btn.btn-light-warning.show i,.btn.btn-light-warning:active:not(.btn-active) .svg-icon,.btn.btn-light-warning:active:not(.btn-active) i,.btn.btn-light-warning:focus:not(.btn-active) .svg-icon,.btn.btn-light-warning:focus:not(.btn-active) i,.btn.btn-light-warning:hover:not(.btn-active) .svg-icon,.btn.btn-light-warning:hover:not(.btn-active) i,.show>.btn.btn-light-warning .svg-icon,.show>.btn.btn-light-warning i{color:#fff}.btn-check:active+.btn.btn-light-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-warning.dropdown-toggle:after,.btn.btn-light-warning.active.dropdown-toggle:after,.btn.btn-light-warning.show.dropdown-toggle:after,.btn.btn-light-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-warning.dropdown-toggle:after{color:#fff}.btn.btn-bg-warning{border-color:#ffa800;background-color:#ffa800}.btn-check:active+.btn.btn-active-warning,.btn-check:checked+.btn.btn-active-warning,.btn.btn-active-warning.active,.btn.btn-active-warning.show,.btn.btn-active-warning:active:not(.btn-active),.btn.btn-active-warning:focus:not(.btn-active),.btn.btn-active-warning:hover:not(.btn-active),.show>.btn.btn-active-warning{color:#fff;border-color:#ffa800;background-color:#ffa800!important}.btn-check:active+.btn.btn-active-warning .svg-icon,.btn-check:active+.btn.btn-active-warning i,.btn-check:checked+.btn.btn-active-warning .svg-icon,.btn-check:checked+.btn.btn-active-warning i,.btn.btn-active-warning.active .svg-icon,.btn.btn-active-warning.active i,.btn.btn-active-warning.show .svg-icon,.btn.btn-active-warning.show i,.btn.btn-active-warning:active:not(.btn-active) .svg-icon,.btn.btn-active-warning:active:not(.btn-active) i,.btn.btn-active-warning:focus:not(.btn-active) .svg-icon,.btn.btn-active-warning:focus:not(.btn-active) i,.btn.btn-active-warning:hover:not(.btn-active) .svg-icon,.btn.btn-active-warning:hover:not(.btn-active) i,.show>.btn.btn-active-warning .svg-icon,.show>.btn.btn-active-warning i{color:#fff}.btn-check:active+.btn.btn-active-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-warning.dropdown-toggle:after,.btn.btn-active-warning.active.dropdown-toggle:after,.btn.btn-active-warning.show.dropdown-toggle:after,.btn.btn-active-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-warning.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-warning,.btn-check:checked+.btn.btn-active-light-warning,.btn.btn-active-light-warning.active,.btn.btn-active-light-warning.show,.btn.btn-active-light-warning:active:not(.btn-active),.btn.btn-active-light-warning:focus:not(.btn-active),.btn.btn-active-light-warning:hover:not(.btn-active),.show>.btn.btn-active-light-warning{color:#ffa800;border-color:#392f28;background-color:#392f28!important}.btn-check:active+.btn.btn-active-light-warning .svg-icon,.btn-check:active+.btn.btn-active-light-warning i,.btn-check:checked+.btn.btn-active-light-warning .svg-icon,.btn-check:checked+.btn.btn-active-light-warning i,.btn.btn-active-light-warning.active .svg-icon,.btn.btn-active-light-warning.active i,.btn.btn-active-light-warning.show .svg-icon,.btn.btn-active-light-warning.show i,.btn.btn-active-light-warning:active:not(.btn-active) .svg-icon,.btn.btn-active-light-warning:active:not(.btn-active) i,.btn.btn-active-light-warning:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-warning:focus:not(.btn-active) i,.btn.btn-active-light-warning:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-warning:hover:not(.btn-active) i,.show>.btn.btn-active-light-warning .svg-icon,.show>.btn.btn-active-light-warning i{color:#ffa800}.btn-check:active+.btn.btn-active-light-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-warning.dropdown-toggle:after,.btn.btn-active-light-warning.active.dropdown-toggle:after,.btn.btn-active-light-warning.show.dropdown-toggle:after,.btn.btn-active-light-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-warning.dropdown-toggle:after{color:#ffa800}.btn.btn-active-light-warning.btn-outline:not(.btn-outline-default){border-color:#ffa800!important}.btn.btn-danger{color:#fff;border-color:#f64e60;background-color:#f64e60}.btn.btn-danger .svg-icon,.btn.btn-danger i{color:#fff}.btn.btn-danger.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-danger,.btn-check:checked+.btn.btn-danger,.btn.btn-danger.active,.btn.btn-danger.show,.btn.btn-danger:active:not(.btn-active),.btn.btn-danger:focus:not(.btn-active),.btn.btn-danger:hover:not(.btn-active),.show>.btn.btn-danger{color:#fff;border-color:#ee2d41;background-color:#ee2d41!important}.btn-check:active+.btn.btn-danger .svg-icon,.btn-check:active+.btn.btn-danger i,.btn-check:checked+.btn.btn-danger .svg-icon,.btn-check:checked+.btn.btn-danger i,.btn.btn-danger.active .svg-icon,.btn.btn-danger.active i,.btn.btn-danger.show .svg-icon,.btn.btn-danger.show i,.btn.btn-danger:active:not(.btn-active) .svg-icon,.btn.btn-danger:active:not(.btn-active) i,.btn.btn-danger:focus:not(.btn-active) .svg-icon,.btn.btn-danger:focus:not(.btn-active) i,.btn.btn-danger:hover:not(.btn-active) .svg-icon,.btn.btn-danger:hover:not(.btn-active) i,.show>.btn.btn-danger .svg-icon,.show>.btn.btn-danger i{color:#fff}.btn-check:active+.btn.btn-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-danger.dropdown-toggle:after,.btn.btn-danger.active.dropdown-toggle:after,.btn.btn-danger.show.dropdown-toggle:after,.btn.btn-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-danger.dropdown-toggle:after{color:#fff}.btn.btn-light-danger{color:#f64e60;border-color:#3a2434;background-color:#3a2434}.btn.btn-light-danger .svg-icon,.btn.btn-light-danger i{color:#f64e60}.btn.btn-light-danger.dropdown-toggle:after{color:#f64e60}.btn-check:active+.btn.btn-light-danger,.btn-check:checked+.btn.btn-light-danger,.btn.btn-light-danger.active,.btn.btn-light-danger.show,.btn.btn-light-danger:active:not(.btn-active),.btn.btn-light-danger:focus:not(.btn-active),.btn.btn-light-danger:hover:not(.btn-active),.show>.btn.btn-light-danger{color:#fff;border-color:#f64e60;background-color:#f64e60!important}.btn-check:active+.btn.btn-light-danger .svg-icon,.btn-check:active+.btn.btn-light-danger i,.btn-check:checked+.btn.btn-light-danger .svg-icon,.btn-check:checked+.btn.btn-light-danger i,.btn.btn-light-danger.active .svg-icon,.btn.btn-light-danger.active i,.btn.btn-light-danger.show .svg-icon,.btn.btn-light-danger.show i,.btn.btn-light-danger:active:not(.btn-active) .svg-icon,.btn.btn-light-danger:active:not(.btn-active) i,.btn.btn-light-danger:focus:not(.btn-active) .svg-icon,.btn.btn-light-danger:focus:not(.btn-active) i,.btn.btn-light-danger:hover:not(.btn-active) .svg-icon,.btn.btn-light-danger:hover:not(.btn-active) i,.show>.btn.btn-light-danger .svg-icon,.show>.btn.btn-light-danger i{color:#fff}.btn-check:active+.btn.btn-light-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-danger.dropdown-toggle:after,.btn.btn-light-danger.active.dropdown-toggle:after,.btn.btn-light-danger.show.dropdown-toggle:after,.btn.btn-light-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-danger.dropdown-toggle:after{color:#fff}.btn.btn-bg-danger{border-color:#f64e60;background-color:#f64e60}.btn-check:active+.btn.btn-active-danger,.btn-check:checked+.btn.btn-active-danger,.btn.btn-active-danger.active,.btn.btn-active-danger.show,.btn.btn-active-danger:active:not(.btn-active),.btn.btn-active-danger:focus:not(.btn-active),.btn.btn-active-danger:hover:not(.btn-active),.show>.btn.btn-active-danger{color:#fff;border-color:#f64e60;background-color:#f64e60!important}.btn-check:active+.btn.btn-active-danger .svg-icon,.btn-check:active+.btn.btn-active-danger i,.btn-check:checked+.btn.btn-active-danger .svg-icon,.btn-check:checked+.btn.btn-active-danger i,.btn.btn-active-danger.active .svg-icon,.btn.btn-active-danger.active i,.btn.btn-active-danger.show .svg-icon,.btn.btn-active-danger.show i,.btn.btn-active-danger:active:not(.btn-active) .svg-icon,.btn.btn-active-danger:active:not(.btn-active) i,.btn.btn-active-danger:focus:not(.btn-active) .svg-icon,.btn.btn-active-danger:focus:not(.btn-active) i,.btn.btn-active-danger:hover:not(.btn-active) .svg-icon,.btn.btn-active-danger:hover:not(.btn-active) i,.show>.btn.btn-active-danger .svg-icon,.show>.btn.btn-active-danger i{color:#fff}.btn-check:active+.btn.btn-active-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-danger.dropdown-toggle:after,.btn.btn-active-danger.active.dropdown-toggle:after,.btn.btn-active-danger.show.dropdown-toggle:after,.btn.btn-active-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-danger.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-danger,.btn-check:checked+.btn.btn-active-light-danger,.btn.btn-active-light-danger.active,.btn.btn-active-light-danger.show,.btn.btn-active-light-danger:active:not(.btn-active),.btn.btn-active-light-danger:focus:not(.btn-active),.btn.btn-active-light-danger:hover:not(.btn-active),.show>.btn.btn-active-light-danger{color:#f64e60;border-color:#3a2434;background-color:#3a2434!important}.btn-check:active+.btn.btn-active-light-danger .svg-icon,.btn-check:active+.btn.btn-active-light-danger i,.btn-check:checked+.btn.btn-active-light-danger .svg-icon,.btn-check:checked+.btn.btn-active-light-danger i,.btn.btn-active-light-danger.active .svg-icon,.btn.btn-active-light-danger.active i,.btn.btn-active-light-danger.show .svg-icon,.btn.btn-active-light-danger.show i,.btn.btn-active-light-danger:active:not(.btn-active) .svg-icon,.btn.btn-active-light-danger:active:not(.btn-active) i,.btn.btn-active-light-danger:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-danger:focus:not(.btn-active) i,.btn.btn-active-light-danger:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-danger:hover:not(.btn-active) i,.show>.btn.btn-active-light-danger .svg-icon,.show>.btn.btn-active-light-danger i{color:#f64e60}.btn-check:active+.btn.btn-active-light-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-danger.dropdown-toggle:after,.btn.btn-active-light-danger.active.dropdown-toggle:after,.btn.btn-active-light-danger.show.dropdown-toggle:after,.btn.btn-active-light-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-danger.dropdown-toggle:after{color:#f64e60}.btn.btn-active-light-danger.btn-outline:not(.btn-outline-default){border-color:#f64e60!important}.btn.btn-dark{color:#1b1b29;border-color:#fff;background-color:#fff}.btn.btn-dark .svg-icon,.btn.btn-dark i{color:#1b1b29}.btn.btn-dark.dropdown-toggle:after{color:#1b1b29}.btn-check:active+.btn.btn-dark,.btn-check:checked+.btn.btn-dark,.btn.btn-dark.active,.btn.btn-dark.show,.btn.btn-dark:active:not(.btn-active),.btn.btn-dark:focus:not(.btn-active),.btn.btn-dark:hover:not(.btn-active),.show>.btn.btn-dark{color:#1b1b29;border-color:#e8e8e8;background-color:#e8e8e8!important}.btn-check:active+.btn.btn-dark .svg-icon,.btn-check:active+.btn.btn-dark i,.btn-check:checked+.btn.btn-dark .svg-icon,.btn-check:checked+.btn.btn-dark i,.btn.btn-dark.active .svg-icon,.btn.btn-dark.active i,.btn.btn-dark.show .svg-icon,.btn.btn-dark.show i,.btn.btn-dark:active:not(.btn-active) .svg-icon,.btn.btn-dark:active:not(.btn-active) i,.btn.btn-dark:focus:not(.btn-active) .svg-icon,.btn.btn-dark:focus:not(.btn-active) i,.btn.btn-dark:hover:not(.btn-active) .svg-icon,.btn.btn-dark:hover:not(.btn-active) i,.show>.btn.btn-dark .svg-icon,.show>.btn.btn-dark i{color:#1b1b29}.btn-check:active+.btn.btn-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-dark.dropdown-toggle:after,.btn.btn-dark.active.dropdown-toggle:after,.btn.btn-dark.show.dropdown-toggle:after,.btn.btn-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-dark.dropdown-toggle:after{color:#1b1b29}.btn.btn-light-dark{color:#fff;border-color:#2b2b40;background-color:#2b2b40}.btn.btn-light-dark .svg-icon,.btn.btn-light-dark i{color:#fff}.btn.btn-light-dark.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-light-dark,.btn-check:checked+.btn.btn-light-dark,.btn.btn-light-dark.active,.btn.btn-light-dark.show,.btn.btn-light-dark:active:not(.btn-active),.btn.btn-light-dark:focus:not(.btn-active),.btn.btn-light-dark:hover:not(.btn-active),.show>.btn.btn-light-dark{color:#1b1b29;border-color:#fff;background-color:#fff!important}.btn-check:active+.btn.btn-light-dark .svg-icon,.btn-check:active+.btn.btn-light-dark i,.btn-check:checked+.btn.btn-light-dark .svg-icon,.btn-check:checked+.btn.btn-light-dark i,.btn.btn-light-dark.active .svg-icon,.btn.btn-light-dark.active i,.btn.btn-light-dark.show .svg-icon,.btn.btn-light-dark.show i,.btn.btn-light-dark:active:not(.btn-active) .svg-icon,.btn.btn-light-dark:active:not(.btn-active) i,.btn.btn-light-dark:focus:not(.btn-active) .svg-icon,.btn.btn-light-dark:focus:not(.btn-active) i,.btn.btn-light-dark:hover:not(.btn-active) .svg-icon,.btn.btn-light-dark:hover:not(.btn-active) i,.show>.btn.btn-light-dark .svg-icon,.show>.btn.btn-light-dark i{color:#1b1b29}.btn-check:active+.btn.btn-light-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-dark.dropdown-toggle:after,.btn.btn-light-dark.active.dropdown-toggle:after,.btn.btn-light-dark.show.dropdown-toggle:after,.btn.btn-light-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-dark.dropdown-toggle:after{color:#1b1b29}.btn.btn-bg-dark{border-color:#fff;background-color:#fff}.btn-check:active+.btn.btn-active-dark,.btn-check:checked+.btn.btn-active-dark,.btn.btn-active-dark.active,.btn.btn-active-dark.show,.btn.btn-active-dark:active:not(.btn-active),.btn.btn-active-dark:focus:not(.btn-active),.btn.btn-active-dark:hover:not(.btn-active),.show>.btn.btn-active-dark{color:#1b1b29;border-color:#fff;background-color:#fff!important}.btn-check:active+.btn.btn-active-dark .svg-icon,.btn-check:active+.btn.btn-active-dark i,.btn-check:checked+.btn.btn-active-dark .svg-icon,.btn-check:checked+.btn.btn-active-dark i,.btn.btn-active-dark.active .svg-icon,.btn.btn-active-dark.active i,.btn.btn-active-dark.show .svg-icon,.btn.btn-active-dark.show i,.btn.btn-active-dark:active:not(.btn-active) .svg-icon,.btn.btn-active-dark:active:not(.btn-active) i,.btn.btn-active-dark:focus:not(.btn-active) .svg-icon,.btn.btn-active-dark:focus:not(.btn-active) i,.btn.btn-active-dark:hover:not(.btn-active) .svg-icon,.btn.btn-active-dark:hover:not(.btn-active) i,.show>.btn.btn-active-dark .svg-icon,.show>.btn.btn-active-dark i{color:#1b1b29}.btn-check:active+.btn.btn-active-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-dark.dropdown-toggle:after,.btn.btn-active-dark.active.dropdown-toggle:after,.btn.btn-active-dark.show.dropdown-toggle:after,.btn.btn-active-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-dark.dropdown-toggle:after{color:#1b1b29}.btn-check:active+.btn.btn-active-light-dark,.btn-check:checked+.btn.btn-active-light-dark,.btn.btn-active-light-dark.active,.btn.btn-active-light-dark.show,.btn.btn-active-light-dark:active:not(.btn-active),.btn.btn-active-light-dark:focus:not(.btn-active),.btn.btn-active-light-dark:hover:not(.btn-active),.show>.btn.btn-active-light-dark{color:#fff;border-color:#2b2b40;background-color:#2b2b40!important}.btn-check:active+.btn.btn-active-light-dark .svg-icon,.btn-check:active+.btn.btn-active-light-dark i,.btn-check:checked+.btn.btn-active-light-dark .svg-icon,.btn-check:checked+.btn.btn-active-light-dark i,.btn.btn-active-light-dark.active .svg-icon,.btn.btn-active-light-dark.active i,.btn.btn-active-light-dark.show .svg-icon,.btn.btn-active-light-dark.show i,.btn.btn-active-light-dark:active:not(.btn-active) .svg-icon,.btn.btn-active-light-dark:active:not(.btn-active) i,.btn.btn-active-light-dark:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-dark:focus:not(.btn-active) i,.btn.btn-active-light-dark:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-dark:hover:not(.btn-active) i,.show>.btn.btn-active-light-dark .svg-icon,.show>.btn.btn-active-light-dark i{color:#fff}.btn-check:active+.btn.btn-active-light-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-dark.dropdown-toggle:after,.btn.btn-active-light-dark.active.dropdown-toggle:after,.btn.btn-active-light-dark.show.dropdown-toggle:after,.btn.btn-active-light-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-dark.dropdown-toggle:after{color:#fff}.btn.btn-active-light-dark.btn-outline:not(.btn-outline-default){border-color:#fff!important}.btn.btn-color-white{color:#fff}.btn.btn-color-white .svg-icon,.btn.btn-color-white i{color:#fff}.btn.btn-color-white.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-color-white,.btn-check:checked+.btn.btn-active-color-white,.btn.btn-active-color-white.active,.btn.btn-active-color-white.show,.btn.btn-active-color-white:active:not(.btn-active),.btn.btn-active-color-white:focus:not(.btn-active),.btn.btn-active-color-white:hover:not(.btn-active),.show>.btn.btn-active-color-white{color:#fff}.btn-check:active+.btn.btn-active-color-white .svg-icon,.btn-check:active+.btn.btn-active-color-white i,.btn-check:checked+.btn.btn-active-color-white .svg-icon,.btn-check:checked+.btn.btn-active-color-white i,.btn.btn-active-color-white.active .svg-icon,.btn.btn-active-color-white.active i,.btn.btn-active-color-white.show .svg-icon,.btn.btn-active-color-white.show i,.btn.btn-active-color-white:active:not(.btn-active) .svg-icon,.btn.btn-active-color-white:active:not(.btn-active) i,.btn.btn-active-color-white:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-white:focus:not(.btn-active) i,.btn.btn-active-color-white:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-white:hover:not(.btn-active) i,.show>.btn.btn-active-color-white .svg-icon,.show>.btn.btn-active-color-white i{color:#fff}.btn-check:active+.btn.btn-active-color-white.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-white.dropdown-toggle:after,.btn.btn-active-color-white.active.dropdown-toggle:after,.btn.btn-active-color-white.show.dropdown-toggle:after,.btn.btn-active-color-white:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-white:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-white:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-white.dropdown-toggle:after{color:#fff}.btn.btn-icon-white .svg-icon,.btn.btn-icon-white i{color:#fff}.btn.btn-icon-white.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-icon-white .svg-icon,.btn-check:active+.btn.btn-active-icon-white i,.btn-check:checked+.btn.btn-active-icon-white .svg-icon,.btn-check:checked+.btn.btn-active-icon-white i,.btn.btn-active-icon-white.active .svg-icon,.btn.btn-active-icon-white.active i,.btn.btn-active-icon-white.show .svg-icon,.btn.btn-active-icon-white.show i,.btn.btn-active-icon-white:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-white:active:not(.btn-active) i,.btn.btn-active-icon-white:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-white:focus:not(.btn-active) i,.btn.btn-active-icon-white:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-white:hover:not(.btn-active) i,.show>.btn.btn-active-icon-white .svg-icon,.show>.btn.btn-active-icon-white i{color:#fff}.btn-check:active+.btn.btn-active-icon-white.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-white.dropdown-toggle:after,.btn.btn-active-icon-white.active.dropdown-toggle:after,.btn.btn-active-icon-white.show.dropdown-toggle:after,.btn.btn-active-icon-white:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-white:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-white:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-white.dropdown-toggle:after{color:#fff}.btn.btn-text-white{color:#fff}.btn-check:active+.btn.btn-active-text-white,.btn-check:checked+.btn.btn-active-text-white,.btn.btn-active-text-white.active,.btn.btn-active-text-white.show,.btn.btn-active-text-white:active:not(.btn-active),.btn.btn-active-text-white:focus:not(.btn-active),.btn.btn-active-text-white:hover:not(.btn-active),.show>.btn.btn-active-text-white{color:#fff}.btn.btn-color-primary{color:#3699ff}.btn.btn-color-primary .svg-icon,.btn.btn-color-primary i{color:#3699ff}.btn.btn-color-primary.dropdown-toggle:after{color:#3699ff}.btn-check:active+.btn.btn-active-color-primary,.btn-check:checked+.btn.btn-active-color-primary,.btn.btn-active-color-primary.active,.btn.btn-active-color-primary.show,.btn.btn-active-color-primary:active:not(.btn-active),.btn.btn-active-color-primary:focus:not(.btn-active),.btn.btn-active-color-primary:hover:not(.btn-active),.show>.btn.btn-active-color-primary{color:#3699ff}.btn-check:active+.btn.btn-active-color-primary .svg-icon,.btn-check:active+.btn.btn-active-color-primary i,.btn-check:checked+.btn.btn-active-color-primary .svg-icon,.btn-check:checked+.btn.btn-active-color-primary i,.btn.btn-active-color-primary.active .svg-icon,.btn.btn-active-color-primary.active i,.btn.btn-active-color-primary.show .svg-icon,.btn.btn-active-color-primary.show i,.btn.btn-active-color-primary:active:not(.btn-active) .svg-icon,.btn.btn-active-color-primary:active:not(.btn-active) i,.btn.btn-active-color-primary:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-primary:focus:not(.btn-active) i,.btn.btn-active-color-primary:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-primary:hover:not(.btn-active) i,.show>.btn.btn-active-color-primary .svg-icon,.show>.btn.btn-active-color-primary i{color:#3699ff}.btn-check:active+.btn.btn-active-color-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-primary.dropdown-toggle:after,.btn.btn-active-color-primary.active.dropdown-toggle:after,.btn.btn-active-color-primary.show.dropdown-toggle:after,.btn.btn-active-color-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-primary.dropdown-toggle:after{color:#3699ff}.btn.btn-icon-primary .svg-icon,.btn.btn-icon-primary i{color:#3699ff}.btn.btn-icon-primary.dropdown-toggle:after{color:#3699ff}.btn-check:active+.btn.btn-active-icon-primary .svg-icon,.btn-check:active+.btn.btn-active-icon-primary i,.btn-check:checked+.btn.btn-active-icon-primary .svg-icon,.btn-check:checked+.btn.btn-active-icon-primary i,.btn.btn-active-icon-primary.active .svg-icon,.btn.btn-active-icon-primary.active i,.btn.btn-active-icon-primary.show .svg-icon,.btn.btn-active-icon-primary.show i,.btn.btn-active-icon-primary:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-primary:active:not(.btn-active) i,.btn.btn-active-icon-primary:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-primary:focus:not(.btn-active) i,.btn.btn-active-icon-primary:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-primary:hover:not(.btn-active) i,.show>.btn.btn-active-icon-primary .svg-icon,.show>.btn.btn-active-icon-primary i{color:#3699ff}.btn-check:active+.btn.btn-active-icon-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-primary.dropdown-toggle:after,.btn.btn-active-icon-primary.active.dropdown-toggle:after,.btn.btn-active-icon-primary.show.dropdown-toggle:after,.btn.btn-active-icon-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-primary.dropdown-toggle:after{color:#3699ff}.btn.btn-text-primary{color:#3699ff}.btn-check:active+.btn.btn-active-text-primary,.btn-check:checked+.btn.btn-active-text-primary,.btn.btn-active-text-primary.active,.btn.btn-active-text-primary.show,.btn.btn-active-text-primary:active:not(.btn-active),.btn.btn-active-text-primary:focus:not(.btn-active),.btn.btn-active-text-primary:hover:not(.btn-active),.show>.btn.btn-active-text-primary{color:#3699ff}.btn.btn-color-secondary{color:#323248}.btn.btn-color-secondary .svg-icon,.btn.btn-color-secondary i{color:#323248}.btn.btn-color-secondary.dropdown-toggle:after{color:#323248}.btn-check:active+.btn.btn-active-color-secondary,.btn-check:checked+.btn.btn-active-color-secondary,.btn.btn-active-color-secondary.active,.btn.btn-active-color-secondary.show,.btn.btn-active-color-secondary:active:not(.btn-active),.btn.btn-active-color-secondary:focus:not(.btn-active),.btn.btn-active-color-secondary:hover:not(.btn-active),.show>.btn.btn-active-color-secondary{color:#323248}.btn-check:active+.btn.btn-active-color-secondary .svg-icon,.btn-check:active+.btn.btn-active-color-secondary i,.btn-check:checked+.btn.btn-active-color-secondary .svg-icon,.btn-check:checked+.btn.btn-active-color-secondary i,.btn.btn-active-color-secondary.active .svg-icon,.btn.btn-active-color-secondary.active i,.btn.btn-active-color-secondary.show .svg-icon,.btn.btn-active-color-secondary.show i,.btn.btn-active-color-secondary:active:not(.btn-active) .svg-icon,.btn.btn-active-color-secondary:active:not(.btn-active) i,.btn.btn-active-color-secondary:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-secondary:focus:not(.btn-active) i,.btn.btn-active-color-secondary:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-secondary:hover:not(.btn-active) i,.show>.btn.btn-active-color-secondary .svg-icon,.show>.btn.btn-active-color-secondary i{color:#323248}.btn-check:active+.btn.btn-active-color-secondary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-secondary.dropdown-toggle:after,.btn.btn-active-color-secondary.active.dropdown-toggle:after,.btn.btn-active-color-secondary.show.dropdown-toggle:after,.btn.btn-active-color-secondary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-secondary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-secondary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-secondary.dropdown-toggle:after{color:#323248}.btn.btn-icon-secondary .svg-icon,.btn.btn-icon-secondary i{color:#323248}.btn.btn-icon-secondary.dropdown-toggle:after{color:#323248}.btn-check:active+.btn.btn-active-icon-secondary .svg-icon,.btn-check:active+.btn.btn-active-icon-secondary i,.btn-check:checked+.btn.btn-active-icon-secondary .svg-icon,.btn-check:checked+.btn.btn-active-icon-secondary i,.btn.btn-active-icon-secondary.active .svg-icon,.btn.btn-active-icon-secondary.active i,.btn.btn-active-icon-secondary.show .svg-icon,.btn.btn-active-icon-secondary.show i,.btn.btn-active-icon-secondary:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-secondary:active:not(.btn-active) i,.btn.btn-active-icon-secondary:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-secondary:focus:not(.btn-active) i,.btn.btn-active-icon-secondary:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-secondary:hover:not(.btn-active) i,.show>.btn.btn-active-icon-secondary .svg-icon,.show>.btn.btn-active-icon-secondary i{color:#323248}.btn-check:active+.btn.btn-active-icon-secondary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-secondary.dropdown-toggle:after,.btn.btn-active-icon-secondary.active.dropdown-toggle:after,.btn.btn-active-icon-secondary.show.dropdown-toggle:after,.btn.btn-active-icon-secondary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-secondary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-secondary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-secondary.dropdown-toggle:after{color:#323248}.btn.btn-text-secondary{color:#323248}.btn-check:active+.btn.btn-active-text-secondary,.btn-check:checked+.btn.btn-active-text-secondary,.btn.btn-active-text-secondary.active,.btn.btn-active-text-secondary.show,.btn.btn-active-text-secondary:active:not(.btn-active),.btn.btn-active-text-secondary:focus:not(.btn-active),.btn.btn-active-text-secondary:hover:not(.btn-active),.show>.btn.btn-active-text-secondary{color:#323248}.btn.btn-color-light{color:#323248}.btn.btn-color-light .svg-icon,.btn.btn-color-light i{color:#323248}.btn.btn-color-light.dropdown-toggle:after{color:#323248}.btn-check:active+.btn.btn-active-color-light,.btn-check:checked+.btn.btn-active-color-light,.btn.btn-active-color-light.active,.btn.btn-active-color-light.show,.btn.btn-active-color-light:active:not(.btn-active),.btn.btn-active-color-light:focus:not(.btn-active),.btn.btn-active-color-light:hover:not(.btn-active),.show>.btn.btn-active-color-light{color:#323248}.btn-check:active+.btn.btn-active-color-light .svg-icon,.btn-check:active+.btn.btn-active-color-light i,.btn-check:checked+.btn.btn-active-color-light .svg-icon,.btn-check:checked+.btn.btn-active-color-light i,.btn.btn-active-color-light.active .svg-icon,.btn.btn-active-color-light.active i,.btn.btn-active-color-light.show .svg-icon,.btn.btn-active-color-light.show i,.btn.btn-active-color-light:active:not(.btn-active) .svg-icon,.btn.btn-active-color-light:active:not(.btn-active) i,.btn.btn-active-color-light:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-light:focus:not(.btn-active) i,.btn.btn-active-color-light:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-light:hover:not(.btn-active) i,.show>.btn.btn-active-color-light .svg-icon,.show>.btn.btn-active-color-light i{color:#323248}.btn-check:active+.btn.btn-active-color-light.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-light.dropdown-toggle:after,.btn.btn-active-color-light.active.dropdown-toggle:after,.btn.btn-active-color-light.show.dropdown-toggle:after,.btn.btn-active-color-light:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-light:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-light:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-light.dropdown-toggle:after{color:#323248}.btn.btn-icon-light .svg-icon,.btn.btn-icon-light i{color:#323248}.btn.btn-icon-light.dropdown-toggle:after{color:#323248}.btn-check:active+.btn.btn-active-icon-light .svg-icon,.btn-check:active+.btn.btn-active-icon-light i,.btn-check:checked+.btn.btn-active-icon-light .svg-icon,.btn-check:checked+.btn.btn-active-icon-light i,.btn.btn-active-icon-light.active .svg-icon,.btn.btn-active-icon-light.active i,.btn.btn-active-icon-light.show .svg-icon,.btn.btn-active-icon-light.show i,.btn.btn-active-icon-light:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-light:active:not(.btn-active) i,.btn.btn-active-icon-light:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-light:focus:not(.btn-active) i,.btn.btn-active-icon-light:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-light:hover:not(.btn-active) i,.show>.btn.btn-active-icon-light .svg-icon,.show>.btn.btn-active-icon-light i{color:#323248}.btn-check:active+.btn.btn-active-icon-light.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-light.dropdown-toggle:after,.btn.btn-active-icon-light.active.dropdown-toggle:after,.btn.btn-active-icon-light.show.dropdown-toggle:after,.btn.btn-active-icon-light:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-light:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-light:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-light.dropdown-toggle:after{color:#323248}.btn.btn-text-light{color:#323248}.btn-check:active+.btn.btn-active-text-light,.btn-check:checked+.btn.btn-active-text-light,.btn.btn-active-text-light.active,.btn.btn-active-text-light.show,.btn.btn-active-text-light:active:not(.btn-active),.btn.btn-active-text-light:focus:not(.btn-active),.btn.btn-active-text-light:hover:not(.btn-active),.show>.btn.btn-active-text-light{color:#323248}.btn.btn-color-success{color:#0bb783}.btn.btn-color-success .svg-icon,.btn.btn-color-success i{color:#0bb783}.btn.btn-color-success.dropdown-toggle:after{color:#0bb783}.btn-check:active+.btn.btn-active-color-success,.btn-check:checked+.btn.btn-active-color-success,.btn.btn-active-color-success.active,.btn.btn-active-color-success.show,.btn.btn-active-color-success:active:not(.btn-active),.btn.btn-active-color-success:focus:not(.btn-active),.btn.btn-active-color-success:hover:not(.btn-active),.show>.btn.btn-active-color-success{color:#0bb783}.btn-check:active+.btn.btn-active-color-success .svg-icon,.btn-check:active+.btn.btn-active-color-success i,.btn-check:checked+.btn.btn-active-color-success .svg-icon,.btn-check:checked+.btn.btn-active-color-success i,.btn.btn-active-color-success.active .svg-icon,.btn.btn-active-color-success.active i,.btn.btn-active-color-success.show .svg-icon,.btn.btn-active-color-success.show i,.btn.btn-active-color-success:active:not(.btn-active) .svg-icon,.btn.btn-active-color-success:active:not(.btn-active) i,.btn.btn-active-color-success:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-success:focus:not(.btn-active) i,.btn.btn-active-color-success:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-success:hover:not(.btn-active) i,.show>.btn.btn-active-color-success .svg-icon,.show>.btn.btn-active-color-success i{color:#0bb783}.btn-check:active+.btn.btn-active-color-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-success.dropdown-toggle:after,.btn.btn-active-color-success.active.dropdown-toggle:after,.btn.btn-active-color-success.show.dropdown-toggle:after,.btn.btn-active-color-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-success.dropdown-toggle:after{color:#0bb783}.btn.btn-icon-success .svg-icon,.btn.btn-icon-success i{color:#0bb783}.btn.btn-icon-success.dropdown-toggle:after{color:#0bb783}.btn-check:active+.btn.btn-active-icon-success .svg-icon,.btn-check:active+.btn.btn-active-icon-success i,.btn-check:checked+.btn.btn-active-icon-success .svg-icon,.btn-check:checked+.btn.btn-active-icon-success i,.btn.btn-active-icon-success.active .svg-icon,.btn.btn-active-icon-success.active i,.btn.btn-active-icon-success.show .svg-icon,.btn.btn-active-icon-success.show i,.btn.btn-active-icon-success:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-success:active:not(.btn-active) i,.btn.btn-active-icon-success:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-success:focus:not(.btn-active) i,.btn.btn-active-icon-success:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-success:hover:not(.btn-active) i,.show>.btn.btn-active-icon-success .svg-icon,.show>.btn.btn-active-icon-success i{color:#0bb783}.btn-check:active+.btn.btn-active-icon-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-success.dropdown-toggle:after,.btn.btn-active-icon-success.active.dropdown-toggle:after,.btn.btn-active-icon-success.show.dropdown-toggle:after,.btn.btn-active-icon-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-success.dropdown-toggle:after{color:#0bb783}.btn.btn-text-success{color:#0bb783}.btn-check:active+.btn.btn-active-text-success,.btn-check:checked+.btn.btn-active-text-success,.btn.btn-active-text-success.active,.btn.btn-active-text-success.show,.btn.btn-active-text-success:active:not(.btn-active),.btn.btn-active-text-success:focus:not(.btn-active),.btn.btn-active-text-success:hover:not(.btn-active),.show>.btn.btn-active-text-success{color:#0bb783}.btn.btn-color-info{color:#8950fc}.btn.btn-color-info .svg-icon,.btn.btn-color-info i{color:#8950fc}.btn.btn-color-info.dropdown-toggle:after{color:#8950fc}.btn-check:active+.btn.btn-active-color-info,.btn-check:checked+.btn.btn-active-color-info,.btn.btn-active-color-info.active,.btn.btn-active-color-info.show,.btn.btn-active-color-info:active:not(.btn-active),.btn.btn-active-color-info:focus:not(.btn-active),.btn.btn-active-color-info:hover:not(.btn-active),.show>.btn.btn-active-color-info{color:#8950fc}.btn-check:active+.btn.btn-active-color-info .svg-icon,.btn-check:active+.btn.btn-active-color-info i,.btn-check:checked+.btn.btn-active-color-info .svg-icon,.btn-check:checked+.btn.btn-active-color-info i,.btn.btn-active-color-info.active .svg-icon,.btn.btn-active-color-info.active i,.btn.btn-active-color-info.show .svg-icon,.btn.btn-active-color-info.show i,.btn.btn-active-color-info:active:not(.btn-active) .svg-icon,.btn.btn-active-color-info:active:not(.btn-active) i,.btn.btn-active-color-info:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-info:focus:not(.btn-active) i,.btn.btn-active-color-info:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-info:hover:not(.btn-active) i,.show>.btn.btn-active-color-info .svg-icon,.show>.btn.btn-active-color-info i{color:#8950fc}.btn-check:active+.btn.btn-active-color-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-info.dropdown-toggle:after,.btn.btn-active-color-info.active.dropdown-toggle:after,.btn.btn-active-color-info.show.dropdown-toggle:after,.btn.btn-active-color-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-info.dropdown-toggle:after{color:#8950fc}.btn.btn-icon-info .svg-icon,.btn.btn-icon-info i{color:#8950fc}.btn.btn-icon-info.dropdown-toggle:after{color:#8950fc}.btn-check:active+.btn.btn-active-icon-info .svg-icon,.btn-check:active+.btn.btn-active-icon-info i,.btn-check:checked+.btn.btn-active-icon-info .svg-icon,.btn-check:checked+.btn.btn-active-icon-info i,.btn.btn-active-icon-info.active .svg-icon,.btn.btn-active-icon-info.active i,.btn.btn-active-icon-info.show .svg-icon,.btn.btn-active-icon-info.show i,.btn.btn-active-icon-info:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-info:active:not(.btn-active) i,.btn.btn-active-icon-info:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-info:focus:not(.btn-active) i,.btn.btn-active-icon-info:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-info:hover:not(.btn-active) i,.show>.btn.btn-active-icon-info .svg-icon,.show>.btn.btn-active-icon-info i{color:#8950fc}.btn-check:active+.btn.btn-active-icon-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-info.dropdown-toggle:after,.btn.btn-active-icon-info.active.dropdown-toggle:after,.btn.btn-active-icon-info.show.dropdown-toggle:after,.btn.btn-active-icon-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-info.dropdown-toggle:after{color:#8950fc}.btn.btn-text-info{color:#8950fc}.btn-check:active+.btn.btn-active-text-info,.btn-check:checked+.btn.btn-active-text-info,.btn.btn-active-text-info.active,.btn.btn-active-text-info.show,.btn.btn-active-text-info:active:not(.btn-active),.btn.btn-active-text-info:focus:not(.btn-active),.btn.btn-active-text-info:hover:not(.btn-active),.show>.btn.btn-active-text-info{color:#8950fc}.btn.btn-color-warning{color:#ffa800}.btn.btn-color-warning .svg-icon,.btn.btn-color-warning i{color:#ffa800}.btn.btn-color-warning.dropdown-toggle:after{color:#ffa800}.btn-check:active+.btn.btn-active-color-warning,.btn-check:checked+.btn.btn-active-color-warning,.btn.btn-active-color-warning.active,.btn.btn-active-color-warning.show,.btn.btn-active-color-warning:active:not(.btn-active),.btn.btn-active-color-warning:focus:not(.btn-active),.btn.btn-active-color-warning:hover:not(.btn-active),.show>.btn.btn-active-color-warning{color:#ffa800}.btn-check:active+.btn.btn-active-color-warning .svg-icon,.btn-check:active+.btn.btn-active-color-warning i,.btn-check:checked+.btn.btn-active-color-warning .svg-icon,.btn-check:checked+.btn.btn-active-color-warning i,.btn.btn-active-color-warning.active .svg-icon,.btn.btn-active-color-warning.active i,.btn.btn-active-color-warning.show .svg-icon,.btn.btn-active-color-warning.show i,.btn.btn-active-color-warning:active:not(.btn-active) .svg-icon,.btn.btn-active-color-warning:active:not(.btn-active) i,.btn.btn-active-color-warning:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-warning:focus:not(.btn-active) i,.btn.btn-active-color-warning:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-warning:hover:not(.btn-active) i,.show>.btn.btn-active-color-warning .svg-icon,.show>.btn.btn-active-color-warning i{color:#ffa800}.btn-check:active+.btn.btn-active-color-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-warning.dropdown-toggle:after,.btn.btn-active-color-warning.active.dropdown-toggle:after,.btn.btn-active-color-warning.show.dropdown-toggle:after,.btn.btn-active-color-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-warning.dropdown-toggle:after{color:#ffa800}.btn.btn-icon-warning .svg-icon,.btn.btn-icon-warning i{color:#ffa800}.btn.btn-icon-warning.dropdown-toggle:after{color:#ffa800}.btn-check:active+.btn.btn-active-icon-warning .svg-icon,.btn-check:active+.btn.btn-active-icon-warning i,.btn-check:checked+.btn.btn-active-icon-warning .svg-icon,.btn-check:checked+.btn.btn-active-icon-warning i,.btn.btn-active-icon-warning.active .svg-icon,.btn.btn-active-icon-warning.active i,.btn.btn-active-icon-warning.show .svg-icon,.btn.btn-active-icon-warning.show i,.btn.btn-active-icon-warning:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-warning:active:not(.btn-active) i,.btn.btn-active-icon-warning:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-warning:focus:not(.btn-active) i,.btn.btn-active-icon-warning:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-warning:hover:not(.btn-active) i,.show>.btn.btn-active-icon-warning .svg-icon,.show>.btn.btn-active-icon-warning i{color:#ffa800}.btn-check:active+.btn.btn-active-icon-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-warning.dropdown-toggle:after,.btn.btn-active-icon-warning.active.dropdown-toggle:after,.btn.btn-active-icon-warning.show.dropdown-toggle:after,.btn.btn-active-icon-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-warning.dropdown-toggle:after{color:#ffa800}.btn.btn-text-warning{color:#ffa800}.btn-check:active+.btn.btn-active-text-warning,.btn-check:checked+.btn.btn-active-text-warning,.btn.btn-active-text-warning.active,.btn.btn-active-text-warning.show,.btn.btn-active-text-warning:active:not(.btn-active),.btn.btn-active-text-warning:focus:not(.btn-active),.btn.btn-active-text-warning:hover:not(.btn-active),.show>.btn.btn-active-text-warning{color:#ffa800}.btn.btn-color-danger{color:#f64e60}.btn.btn-color-danger .svg-icon,.btn.btn-color-danger i{color:#f64e60}.btn.btn-color-danger.dropdown-toggle:after{color:#f64e60}.btn-check:active+.btn.btn-active-color-danger,.btn-check:checked+.btn.btn-active-color-danger,.btn.btn-active-color-danger.active,.btn.btn-active-color-danger.show,.btn.btn-active-color-danger:active:not(.btn-active),.btn.btn-active-color-danger:focus:not(.btn-active),.btn.btn-active-color-danger:hover:not(.btn-active),.show>.btn.btn-active-color-danger{color:#f64e60}.btn-check:active+.btn.btn-active-color-danger .svg-icon,.btn-check:active+.btn.btn-active-color-danger i,.btn-check:checked+.btn.btn-active-color-danger .svg-icon,.btn-check:checked+.btn.btn-active-color-danger i,.btn.btn-active-color-danger.active .svg-icon,.btn.btn-active-color-danger.active i,.btn.btn-active-color-danger.show .svg-icon,.btn.btn-active-color-danger.show i,.btn.btn-active-color-danger:active:not(.btn-active) .svg-icon,.btn.btn-active-color-danger:active:not(.btn-active) i,.btn.btn-active-color-danger:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-danger:focus:not(.btn-active) i,.btn.btn-active-color-danger:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-danger:hover:not(.btn-active) i,.show>.btn.btn-active-color-danger .svg-icon,.show>.btn.btn-active-color-danger i{color:#f64e60}.btn-check:active+.btn.btn-active-color-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-danger.dropdown-toggle:after,.btn.btn-active-color-danger.active.dropdown-toggle:after,.btn.btn-active-color-danger.show.dropdown-toggle:after,.btn.btn-active-color-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-danger.dropdown-toggle:after{color:#f64e60}.btn.btn-icon-danger .svg-icon,.btn.btn-icon-danger i{color:#f64e60}.btn.btn-icon-danger.dropdown-toggle:after{color:#f64e60}.btn-check:active+.btn.btn-active-icon-danger .svg-icon,.btn-check:active+.btn.btn-active-icon-danger i,.btn-check:checked+.btn.btn-active-icon-danger .svg-icon,.btn-check:checked+.btn.btn-active-icon-danger i,.btn.btn-active-icon-danger.active .svg-icon,.btn.btn-active-icon-danger.active i,.btn.btn-active-icon-danger.show .svg-icon,.btn.btn-active-icon-danger.show i,.btn.btn-active-icon-danger:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-danger:active:not(.btn-active) i,.btn.btn-active-icon-danger:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-danger:focus:not(.btn-active) i,.btn.btn-active-icon-danger:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-danger:hover:not(.btn-active) i,.show>.btn.btn-active-icon-danger .svg-icon,.show>.btn.btn-active-icon-danger i{color:#f64e60}.btn-check:active+.btn.btn-active-icon-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-danger.dropdown-toggle:after,.btn.btn-active-icon-danger.active.dropdown-toggle:after,.btn.btn-active-icon-danger.show.dropdown-toggle:after,.btn.btn-active-icon-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-danger.dropdown-toggle:after{color:#f64e60}.btn.btn-text-danger{color:#f64e60}.btn-check:active+.btn.btn-active-text-danger,.btn-check:checked+.btn.btn-active-text-danger,.btn.btn-active-text-danger.active,.btn.btn-active-text-danger.show,.btn.btn-active-text-danger:active:not(.btn-active),.btn.btn-active-text-danger:focus:not(.btn-active),.btn.btn-active-text-danger:hover:not(.btn-active),.show>.btn.btn-active-text-danger{color:#f64e60}.btn.btn-color-dark{color:#fff}.btn.btn-color-dark .svg-icon,.btn.btn-color-dark i{color:#fff}.btn.btn-color-dark.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-color-dark,.btn-check:checked+.btn.btn-active-color-dark,.btn.btn-active-color-dark.active,.btn.btn-active-color-dark.show,.btn.btn-active-color-dark:active:not(.btn-active),.btn.btn-active-color-dark:focus:not(.btn-active),.btn.btn-active-color-dark:hover:not(.btn-active),.show>.btn.btn-active-color-dark{color:#fff}.btn-check:active+.btn.btn-active-color-dark .svg-icon,.btn-check:active+.btn.btn-active-color-dark i,.btn-check:checked+.btn.btn-active-color-dark .svg-icon,.btn-check:checked+.btn.btn-active-color-dark i,.btn.btn-active-color-dark.active .svg-icon,.btn.btn-active-color-dark.active i,.btn.btn-active-color-dark.show .svg-icon,.btn.btn-active-color-dark.show i,.btn.btn-active-color-dark:active:not(.btn-active) .svg-icon,.btn.btn-active-color-dark:active:not(.btn-active) i,.btn.btn-active-color-dark:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-dark:focus:not(.btn-active) i,.btn.btn-active-color-dark:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-dark:hover:not(.btn-active) i,.show>.btn.btn-active-color-dark .svg-icon,.show>.btn.btn-active-color-dark i{color:#fff}.btn-check:active+.btn.btn-active-color-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-dark.dropdown-toggle:after,.btn.btn-active-color-dark.active.dropdown-toggle:after,.btn.btn-active-color-dark.show.dropdown-toggle:after,.btn.btn-active-color-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-dark.dropdown-toggle:after{color:#fff}.btn.btn-icon-dark .svg-icon,.btn.btn-icon-dark i{color:#fff}.btn.btn-icon-dark.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-icon-dark .svg-icon,.btn-check:active+.btn.btn-active-icon-dark i,.btn-check:checked+.btn.btn-active-icon-dark .svg-icon,.btn-check:checked+.btn.btn-active-icon-dark i,.btn.btn-active-icon-dark.active .svg-icon,.btn.btn-active-icon-dark.active i,.btn.btn-active-icon-dark.show .svg-icon,.btn.btn-active-icon-dark.show i,.btn.btn-active-icon-dark:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-dark:active:not(.btn-active) i,.btn.btn-active-icon-dark:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-dark:focus:not(.btn-active) i,.btn.btn-active-icon-dark:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-dark:hover:not(.btn-active) i,.show>.btn.btn-active-icon-dark .svg-icon,.show>.btn.btn-active-icon-dark i{color:#fff}.btn-check:active+.btn.btn-active-icon-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-dark.dropdown-toggle:after,.btn.btn-active-icon-dark.active.dropdown-toggle:after,.btn.btn-active-icon-dark.show.dropdown-toggle:after,.btn.btn-active-icon-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-dark.dropdown-toggle:after{color:#fff}.btn.btn-text-dark{color:#fff}.btn-check:active+.btn.btn-active-text-dark,.btn-check:checked+.btn.btn-active-text-dark,.btn.btn-active-text-dark.active,.btn.btn-active-text-dark.show,.btn.btn-active-text-dark:active:not(.btn-active),.btn.btn-active-text-dark:focus:not(.btn-active),.btn.btn-active-text-dark:hover:not(.btn-active),.show>.btn.btn-active-text-dark{color:#fff}.btn.btn-color-muted{color:#565674}.btn.btn-color-muted .svg-icon,.btn.btn-color-muted i{color:#565674}.btn.btn-color-muted.dropdown-toggle:after{color:#565674}.btn-check:active+.btn.btn-active-color-muted,.btn-check:checked+.btn.btn-active-color-muted,.btn.btn-active-color-muted.active,.btn.btn-active-color-muted.show,.btn.btn-active-color-muted:active:not(.btn-active),.btn.btn-active-color-muted:focus:not(.btn-active),.btn.btn-active-color-muted:hover:not(.btn-active),.show>.btn.btn-active-color-muted{color:#565674}.btn-check:active+.btn.btn-active-color-muted .svg-icon,.btn-check:active+.btn.btn-active-color-muted i,.btn-check:checked+.btn.btn-active-color-muted .svg-icon,.btn-check:checked+.btn.btn-active-color-muted i,.btn.btn-active-color-muted.active .svg-icon,.btn.btn-active-color-muted.active i,.btn.btn-active-color-muted.show .svg-icon,.btn.btn-active-color-muted.show i,.btn.btn-active-color-muted:active:not(.btn-active) .svg-icon,.btn.btn-active-color-muted:active:not(.btn-active) i,.btn.btn-active-color-muted:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-muted:focus:not(.btn-active) i,.btn.btn-active-color-muted:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-muted:hover:not(.btn-active) i,.show>.btn.btn-active-color-muted .svg-icon,.show>.btn.btn-active-color-muted i{color:#565674}.btn-check:active+.btn.btn-active-color-muted.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-muted.dropdown-toggle:after,.btn.btn-active-color-muted.active.dropdown-toggle:after,.btn.btn-active-color-muted.show.dropdown-toggle:after,.btn.btn-active-color-muted:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-muted:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-muted:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-muted.dropdown-toggle:after{color:#565674}.btn.btn-icon-muted .svg-icon,.btn.btn-icon-muted i{color:#565674}.btn.btn-icon-muted.dropdown-toggle:after{color:#565674}.btn-check:active+.btn.btn-active-icon-muted .svg-icon,.btn-check:active+.btn.btn-active-icon-muted i,.btn-check:checked+.btn.btn-active-icon-muted .svg-icon,.btn-check:checked+.btn.btn-active-icon-muted i,.btn.btn-active-icon-muted.active .svg-icon,.btn.btn-active-icon-muted.active i,.btn.btn-active-icon-muted.show .svg-icon,.btn.btn-active-icon-muted.show i,.btn.btn-active-icon-muted:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-muted:active:not(.btn-active) i,.btn.btn-active-icon-muted:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-muted:focus:not(.btn-active) i,.btn.btn-active-icon-muted:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-muted:hover:not(.btn-active) i,.show>.btn.btn-active-icon-muted .svg-icon,.show>.btn.btn-active-icon-muted i{color:#565674}.btn-check:active+.btn.btn-active-icon-muted.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-muted.dropdown-toggle:after,.btn.btn-active-icon-muted.active.dropdown-toggle:after,.btn.btn-active-icon-muted.show.dropdown-toggle:after,.btn.btn-active-icon-muted:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-muted:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-muted:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-muted.dropdown-toggle:after{color:#565674}.btn.btn-text-muted{color:#565674}.btn-check:active+.btn.btn-active-text-muted,.btn-check:checked+.btn.btn-active-text-muted,.btn.btn-active-text-muted.active,.btn.btn-active-text-muted.show,.btn.btn-active-text-muted:active:not(.btn-active),.btn.btn-active-text-muted:focus:not(.btn-active),.btn.btn-active-text-muted:hover:not(.btn-active),.show>.btn.btn-active-text-muted{color:#565674}.btn.btn-color-gray-100{color:#1b1b29}.btn.btn-color-gray-100 .svg-icon,.btn.btn-color-gray-100 i{color:#1b1b29}.btn.btn-color-gray-100.dropdown-toggle:after{color:#1b1b29}.btn-check:active+.btn.btn-active-color-gray-100,.btn-check:checked+.btn.btn-active-color-gray-100,.btn.btn-active-color-gray-100.active,.btn.btn-active-color-gray-100.show,.btn.btn-active-color-gray-100:active:not(.btn-active),.btn.btn-active-color-gray-100:focus:not(.btn-active),.btn.btn-active-color-gray-100:hover:not(.btn-active),.show>.btn.btn-active-color-gray-100{color:#1b1b29}.btn-check:active+.btn.btn-active-color-gray-100 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-100 i,.btn-check:checked+.btn.btn-active-color-gray-100 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-100 i,.btn.btn-active-color-gray-100.active .svg-icon,.btn.btn-active-color-gray-100.active i,.btn.btn-active-color-gray-100.show .svg-icon,.btn.btn-active-color-gray-100.show i,.btn.btn-active-color-gray-100:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-100:active:not(.btn-active) i,.btn.btn-active-color-gray-100:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-100:focus:not(.btn-active) i,.btn.btn-active-color-gray-100:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-100:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-100 .svg-icon,.show>.btn.btn-active-color-gray-100 i{color:#1b1b29}.btn-check:active+.btn.btn-active-color-gray-100.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-100.dropdown-toggle:after,.btn.btn-active-color-gray-100.active.dropdown-toggle:after,.btn.btn-active-color-gray-100.show.dropdown-toggle:after,.btn.btn-active-color-gray-100:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-100:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-100:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-100.dropdown-toggle:after{color:#1b1b29}.btn.btn-icon-gray-100 .svg-icon,.btn.btn-icon-gray-100 i{color:#1b1b29}.btn.btn-icon-gray-100.dropdown-toggle:after{color:#1b1b29}.btn-check:active+.btn.btn-active-icon-gray-100 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-100 i,.btn-check:checked+.btn.btn-active-icon-gray-100 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-100 i,.btn.btn-active-icon-gray-100.active .svg-icon,.btn.btn-active-icon-gray-100.active i,.btn.btn-active-icon-gray-100.show .svg-icon,.btn.btn-active-icon-gray-100.show i,.btn.btn-active-icon-gray-100:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-100:active:not(.btn-active) i,.btn.btn-active-icon-gray-100:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-100:focus:not(.btn-active) i,.btn.btn-active-icon-gray-100:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-100:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-100 .svg-icon,.show>.btn.btn-active-icon-gray-100 i{color:#1b1b29}.btn-check:active+.btn.btn-active-icon-gray-100.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-100.dropdown-toggle:after,.btn.btn-active-icon-gray-100.active.dropdown-toggle:after,.btn.btn-active-icon-gray-100.show.dropdown-toggle:after,.btn.btn-active-icon-gray-100:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-100:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-100:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-100.dropdown-toggle:after{color:#1b1b29}.btn.btn-text-gray-100{color:#1b1b29}.btn-check:active+.btn.btn-active-text-gray-100,.btn-check:checked+.btn.btn-active-text-gray-100,.btn.btn-active-text-gray-100.active,.btn.btn-active-text-gray-100.show,.btn.btn-active-text-gray-100:active:not(.btn-active),.btn.btn-active-text-gray-100:focus:not(.btn-active),.btn.btn-active-text-gray-100:hover:not(.btn-active),.show>.btn.btn-active-text-gray-100{color:#1b1b29}.btn.btn-color-gray-200{color:#2b2b40}.btn.btn-color-gray-200 .svg-icon,.btn.btn-color-gray-200 i{color:#2b2b40}.btn.btn-color-gray-200.dropdown-toggle:after{color:#2b2b40}.btn-check:active+.btn.btn-active-color-gray-200,.btn-check:checked+.btn.btn-active-color-gray-200,.btn.btn-active-color-gray-200.active,.btn.btn-active-color-gray-200.show,.btn.btn-active-color-gray-200:active:not(.btn-active),.btn.btn-active-color-gray-200:focus:not(.btn-active),.btn.btn-active-color-gray-200:hover:not(.btn-active),.show>.btn.btn-active-color-gray-200{color:#2b2b40}.btn-check:active+.btn.btn-active-color-gray-200 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-200 i,.btn-check:checked+.btn.btn-active-color-gray-200 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-200 i,.btn.btn-active-color-gray-200.active .svg-icon,.btn.btn-active-color-gray-200.active i,.btn.btn-active-color-gray-200.show .svg-icon,.btn.btn-active-color-gray-200.show i,.btn.btn-active-color-gray-200:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-200:active:not(.btn-active) i,.btn.btn-active-color-gray-200:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-200:focus:not(.btn-active) i,.btn.btn-active-color-gray-200:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-200:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-200 .svg-icon,.show>.btn.btn-active-color-gray-200 i{color:#2b2b40}.btn-check:active+.btn.btn-active-color-gray-200.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-200.dropdown-toggle:after,.btn.btn-active-color-gray-200.active.dropdown-toggle:after,.btn.btn-active-color-gray-200.show.dropdown-toggle:after,.btn.btn-active-color-gray-200:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-200:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-200:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-200.dropdown-toggle:after{color:#2b2b40}.btn.btn-icon-gray-200 .svg-icon,.btn.btn-icon-gray-200 i{color:#2b2b40}.btn.btn-icon-gray-200.dropdown-toggle:after{color:#2b2b40}.btn-check:active+.btn.btn-active-icon-gray-200 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-200 i,.btn-check:checked+.btn.btn-active-icon-gray-200 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-200 i,.btn.btn-active-icon-gray-200.active .svg-icon,.btn.btn-active-icon-gray-200.active i,.btn.btn-active-icon-gray-200.show .svg-icon,.btn.btn-active-icon-gray-200.show i,.btn.btn-active-icon-gray-200:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-200:active:not(.btn-active) i,.btn.btn-active-icon-gray-200:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-200:focus:not(.btn-active) i,.btn.btn-active-icon-gray-200:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-200:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-200 .svg-icon,.show>.btn.btn-active-icon-gray-200 i{color:#2b2b40}.btn-check:active+.btn.btn-active-icon-gray-200.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-200.dropdown-toggle:after,.btn.btn-active-icon-gray-200.active.dropdown-toggle:after,.btn.btn-active-icon-gray-200.show.dropdown-toggle:after,.btn.btn-active-icon-gray-200:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-200:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-200:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-200.dropdown-toggle:after{color:#2b2b40}.btn.btn-text-gray-200{color:#2b2b40}.btn-check:active+.btn.btn-active-text-gray-200,.btn-check:checked+.btn.btn-active-text-gray-200,.btn.btn-active-text-gray-200.active,.btn.btn-active-text-gray-200.show,.btn.btn-active-text-gray-200:active:not(.btn-active),.btn.btn-active-text-gray-200:focus:not(.btn-active),.btn.btn-active-text-gray-200:hover:not(.btn-active),.show>.btn.btn-active-text-gray-200{color:#2b2b40}.btn.btn-color-gray-300{color:#323248}.btn.btn-color-gray-300 .svg-icon,.btn.btn-color-gray-300 i{color:#323248}.btn.btn-color-gray-300.dropdown-toggle:after{color:#323248}.btn-check:active+.btn.btn-active-color-gray-300,.btn-check:checked+.btn.btn-active-color-gray-300,.btn.btn-active-color-gray-300.active,.btn.btn-active-color-gray-300.show,.btn.btn-active-color-gray-300:active:not(.btn-active),.btn.btn-active-color-gray-300:focus:not(.btn-active),.btn.btn-active-color-gray-300:hover:not(.btn-active),.show>.btn.btn-active-color-gray-300{color:#323248}.btn-check:active+.btn.btn-active-color-gray-300 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-300 i,.btn-check:checked+.btn.btn-active-color-gray-300 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-300 i,.btn.btn-active-color-gray-300.active .svg-icon,.btn.btn-active-color-gray-300.active i,.btn.btn-active-color-gray-300.show .svg-icon,.btn.btn-active-color-gray-300.show i,.btn.btn-active-color-gray-300:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-300:active:not(.btn-active) i,.btn.btn-active-color-gray-300:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-300:focus:not(.btn-active) i,.btn.btn-active-color-gray-300:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-300:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-300 .svg-icon,.show>.btn.btn-active-color-gray-300 i{color:#323248}.btn-check:active+.btn.btn-active-color-gray-300.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-300.dropdown-toggle:after,.btn.btn-active-color-gray-300.active.dropdown-toggle:after,.btn.btn-active-color-gray-300.show.dropdown-toggle:after,.btn.btn-active-color-gray-300:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-300:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-300:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-300.dropdown-toggle:after{color:#323248}.btn.btn-icon-gray-300 .svg-icon,.btn.btn-icon-gray-300 i{color:#323248}.btn.btn-icon-gray-300.dropdown-toggle:after{color:#323248}.btn-check:active+.btn.btn-active-icon-gray-300 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-300 i,.btn-check:checked+.btn.btn-active-icon-gray-300 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-300 i,.btn.btn-active-icon-gray-300.active .svg-icon,.btn.btn-active-icon-gray-300.active i,.btn.btn-active-icon-gray-300.show .svg-icon,.btn.btn-active-icon-gray-300.show i,.btn.btn-active-icon-gray-300:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-300:active:not(.btn-active) i,.btn.btn-active-icon-gray-300:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-300:focus:not(.btn-active) i,.btn.btn-active-icon-gray-300:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-300:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-300 .svg-icon,.show>.btn.btn-active-icon-gray-300 i{color:#323248}.btn-check:active+.btn.btn-active-icon-gray-300.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-300.dropdown-toggle:after,.btn.btn-active-icon-gray-300.active.dropdown-toggle:after,.btn.btn-active-icon-gray-300.show.dropdown-toggle:after,.btn.btn-active-icon-gray-300:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-300:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-300:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-300.dropdown-toggle:after{color:#323248}.btn.btn-text-gray-300{color:#323248}.btn-check:active+.btn.btn-active-text-gray-300,.btn-check:checked+.btn.btn-active-text-gray-300,.btn.btn-active-text-gray-300.active,.btn.btn-active-text-gray-300.show,.btn.btn-active-text-gray-300:active:not(.btn-active),.btn.btn-active-text-gray-300:focus:not(.btn-active),.btn.btn-active-text-gray-300:hover:not(.btn-active),.show>.btn.btn-active-text-gray-300{color:#323248}.btn.btn-color-gray-400{color:#474761}.btn.btn-color-gray-400 .svg-icon,.btn.btn-color-gray-400 i{color:#474761}.btn.btn-color-gray-400.dropdown-toggle:after{color:#474761}.btn-check:active+.btn.btn-active-color-gray-400,.btn-check:checked+.btn.btn-active-color-gray-400,.btn.btn-active-color-gray-400.active,.btn.btn-active-color-gray-400.show,.btn.btn-active-color-gray-400:active:not(.btn-active),.btn.btn-active-color-gray-400:focus:not(.btn-active),.btn.btn-active-color-gray-400:hover:not(.btn-active),.show>.btn.btn-active-color-gray-400{color:#474761}.btn-check:active+.btn.btn-active-color-gray-400 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-400 i,.btn-check:checked+.btn.btn-active-color-gray-400 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-400 i,.btn.btn-active-color-gray-400.active .svg-icon,.btn.btn-active-color-gray-400.active i,.btn.btn-active-color-gray-400.show .svg-icon,.btn.btn-active-color-gray-400.show i,.btn.btn-active-color-gray-400:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-400:active:not(.btn-active) i,.btn.btn-active-color-gray-400:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-400:focus:not(.btn-active) i,.btn.btn-active-color-gray-400:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-400:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-400 .svg-icon,.show>.btn.btn-active-color-gray-400 i{color:#474761}.btn-check:active+.btn.btn-active-color-gray-400.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-400.dropdown-toggle:after,.btn.btn-active-color-gray-400.active.dropdown-toggle:after,.btn.btn-active-color-gray-400.show.dropdown-toggle:after,.btn.btn-active-color-gray-400:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-400:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-400:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-400.dropdown-toggle:after{color:#474761}.btn.btn-icon-gray-400 .svg-icon,.btn.btn-icon-gray-400 i{color:#474761}.btn.btn-icon-gray-400.dropdown-toggle:after{color:#474761}.btn-check:active+.btn.btn-active-icon-gray-400 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-400 i,.btn-check:checked+.btn.btn-active-icon-gray-400 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-400 i,.btn.btn-active-icon-gray-400.active .svg-icon,.btn.btn-active-icon-gray-400.active i,.btn.btn-active-icon-gray-400.show .svg-icon,.btn.btn-active-icon-gray-400.show i,.btn.btn-active-icon-gray-400:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-400:active:not(.btn-active) i,.btn.btn-active-icon-gray-400:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-400:focus:not(.btn-active) i,.btn.btn-active-icon-gray-400:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-400:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-400 .svg-icon,.show>.btn.btn-active-icon-gray-400 i{color:#474761}.btn-check:active+.btn.btn-active-icon-gray-400.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-400.dropdown-toggle:after,.btn.btn-active-icon-gray-400.active.dropdown-toggle:after,.btn.btn-active-icon-gray-400.show.dropdown-toggle:after,.btn.btn-active-icon-gray-400:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-400:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-400:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-400.dropdown-toggle:after{color:#474761}.btn.btn-text-gray-400{color:#474761}.btn-check:active+.btn.btn-active-text-gray-400,.btn-check:checked+.btn.btn-active-text-gray-400,.btn.btn-active-text-gray-400.active,.btn.btn-active-text-gray-400.show,.btn.btn-active-text-gray-400:active:not(.btn-active),.btn.btn-active-text-gray-400:focus:not(.btn-active),.btn.btn-active-text-gray-400:hover:not(.btn-active),.show>.btn.btn-active-text-gray-400{color:#474761}.btn.btn-color-gray-500{color:#565674}.btn.btn-color-gray-500 .svg-icon,.btn.btn-color-gray-500 i{color:#565674}.btn.btn-color-gray-500.dropdown-toggle:after{color:#565674}.btn-check:active+.btn.btn-active-color-gray-500,.btn-check:checked+.btn.btn-active-color-gray-500,.btn.btn-active-color-gray-500.active,.btn.btn-active-color-gray-500.show,.btn.btn-active-color-gray-500:active:not(.btn-active),.btn.btn-active-color-gray-500:focus:not(.btn-active),.btn.btn-active-color-gray-500:hover:not(.btn-active),.show>.btn.btn-active-color-gray-500{color:#565674}.btn-check:active+.btn.btn-active-color-gray-500 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-500 i,.btn-check:checked+.btn.btn-active-color-gray-500 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-500 i,.btn.btn-active-color-gray-500.active .svg-icon,.btn.btn-active-color-gray-500.active i,.btn.btn-active-color-gray-500.show .svg-icon,.btn.btn-active-color-gray-500.show i,.btn.btn-active-color-gray-500:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-500:active:not(.btn-active) i,.btn.btn-active-color-gray-500:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-500:focus:not(.btn-active) i,.btn.btn-active-color-gray-500:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-500:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-500 .svg-icon,.show>.btn.btn-active-color-gray-500 i{color:#565674}.btn-check:active+.btn.btn-active-color-gray-500.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-500.dropdown-toggle:after,.btn.btn-active-color-gray-500.active.dropdown-toggle:after,.btn.btn-active-color-gray-500.show.dropdown-toggle:after,.btn.btn-active-color-gray-500:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-500:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-500:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-500.dropdown-toggle:after{color:#565674}.btn.btn-icon-gray-500 .svg-icon,.btn.btn-icon-gray-500 i{color:#565674}.btn.btn-icon-gray-500.dropdown-toggle:after{color:#565674}.btn-check:active+.btn.btn-active-icon-gray-500 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-500 i,.btn-check:checked+.btn.btn-active-icon-gray-500 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-500 i,.btn.btn-active-icon-gray-500.active .svg-icon,.btn.btn-active-icon-gray-500.active i,.btn.btn-active-icon-gray-500.show .svg-icon,.btn.btn-active-icon-gray-500.show i,.btn.btn-active-icon-gray-500:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-500:active:not(.btn-active) i,.btn.btn-active-icon-gray-500:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-500:focus:not(.btn-active) i,.btn.btn-active-icon-gray-500:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-500:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-500 .svg-icon,.show>.btn.btn-active-icon-gray-500 i{color:#565674}.btn-check:active+.btn.btn-active-icon-gray-500.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-500.dropdown-toggle:after,.btn.btn-active-icon-gray-500.active.dropdown-toggle:after,.btn.btn-active-icon-gray-500.show.dropdown-toggle:after,.btn.btn-active-icon-gray-500:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-500:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-500:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-500.dropdown-toggle:after{color:#565674}.btn.btn-text-gray-500{color:#565674}.btn-check:active+.btn.btn-active-text-gray-500,.btn-check:checked+.btn.btn-active-text-gray-500,.btn.btn-active-text-gray-500.active,.btn.btn-active-text-gray-500.show,.btn.btn-active-text-gray-500:active:not(.btn-active),.btn.btn-active-text-gray-500:focus:not(.btn-active),.btn.btn-active-text-gray-500:hover:not(.btn-active),.show>.btn.btn-active-text-gray-500{color:#565674}.btn.btn-color-gray-600{color:#6d6d80}.btn.btn-color-gray-600 .svg-icon,.btn.btn-color-gray-600 i{color:#6d6d80}.btn.btn-color-gray-600.dropdown-toggle:after{color:#6d6d80}.btn-check:active+.btn.btn-active-color-gray-600,.btn-check:checked+.btn.btn-active-color-gray-600,.btn.btn-active-color-gray-600.active,.btn.btn-active-color-gray-600.show,.btn.btn-active-color-gray-600:active:not(.btn-active),.btn.btn-active-color-gray-600:focus:not(.btn-active),.btn.btn-active-color-gray-600:hover:not(.btn-active),.show>.btn.btn-active-color-gray-600{color:#6d6d80}.btn-check:active+.btn.btn-active-color-gray-600 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-600 i,.btn-check:checked+.btn.btn-active-color-gray-600 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-600 i,.btn.btn-active-color-gray-600.active .svg-icon,.btn.btn-active-color-gray-600.active i,.btn.btn-active-color-gray-600.show .svg-icon,.btn.btn-active-color-gray-600.show i,.btn.btn-active-color-gray-600:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-600:active:not(.btn-active) i,.btn.btn-active-color-gray-600:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-600:focus:not(.btn-active) i,.btn.btn-active-color-gray-600:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-600:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-600 .svg-icon,.show>.btn.btn-active-color-gray-600 i{color:#6d6d80}.btn-check:active+.btn.btn-active-color-gray-600.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-600.dropdown-toggle:after,.btn.btn-active-color-gray-600.active.dropdown-toggle:after,.btn.btn-active-color-gray-600.show.dropdown-toggle:after,.btn.btn-active-color-gray-600:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-600:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-600:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-600.dropdown-toggle:after{color:#6d6d80}.btn.btn-icon-gray-600 .svg-icon,.btn.btn-icon-gray-600 i{color:#6d6d80}.btn.btn-icon-gray-600.dropdown-toggle:after{color:#6d6d80}.btn-check:active+.btn.btn-active-icon-gray-600 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-600 i,.btn-check:checked+.btn.btn-active-icon-gray-600 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-600 i,.btn.btn-active-icon-gray-600.active .svg-icon,.btn.btn-active-icon-gray-600.active i,.btn.btn-active-icon-gray-600.show .svg-icon,.btn.btn-active-icon-gray-600.show i,.btn.btn-active-icon-gray-600:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-600:active:not(.btn-active) i,.btn.btn-active-icon-gray-600:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-600:focus:not(.btn-active) i,.btn.btn-active-icon-gray-600:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-600:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-600 .svg-icon,.show>.btn.btn-active-icon-gray-600 i{color:#6d6d80}.btn-check:active+.btn.btn-active-icon-gray-600.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-600.dropdown-toggle:after,.btn.btn-active-icon-gray-600.active.dropdown-toggle:after,.btn.btn-active-icon-gray-600.show.dropdown-toggle:after,.btn.btn-active-icon-gray-600:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-600:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-600:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-600.dropdown-toggle:after{color:#6d6d80}.btn.btn-text-gray-600{color:#6d6d80}.btn-check:active+.btn.btn-active-text-gray-600,.btn-check:checked+.btn.btn-active-text-gray-600,.btn.btn-active-text-gray-600.active,.btn.btn-active-text-gray-600.show,.btn.btn-active-text-gray-600:active:not(.btn-active),.btn.btn-active-text-gray-600:focus:not(.btn-active),.btn.btn-active-text-gray-600:hover:not(.btn-active),.show>.btn.btn-active-text-gray-600{color:#6d6d80}.btn.btn-color-gray-700{color:#92929f}.btn.btn-color-gray-700 .svg-icon,.btn.btn-color-gray-700 i{color:#92929f}.btn.btn-color-gray-700.dropdown-toggle:after{color:#92929f}.btn-check:active+.btn.btn-active-color-gray-700,.btn-check:checked+.btn.btn-active-color-gray-700,.btn.btn-active-color-gray-700.active,.btn.btn-active-color-gray-700.show,.btn.btn-active-color-gray-700:active:not(.btn-active),.btn.btn-active-color-gray-700:focus:not(.btn-active),.btn.btn-active-color-gray-700:hover:not(.btn-active),.show>.btn.btn-active-color-gray-700{color:#92929f}.btn-check:active+.btn.btn-active-color-gray-700 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-700 i,.btn-check:checked+.btn.btn-active-color-gray-700 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-700 i,.btn.btn-active-color-gray-700.active .svg-icon,.btn.btn-active-color-gray-700.active i,.btn.btn-active-color-gray-700.show .svg-icon,.btn.btn-active-color-gray-700.show i,.btn.btn-active-color-gray-700:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-700:active:not(.btn-active) i,.btn.btn-active-color-gray-700:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-700:focus:not(.btn-active) i,.btn.btn-active-color-gray-700:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-700:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-700 .svg-icon,.show>.btn.btn-active-color-gray-700 i{color:#92929f}.btn-check:active+.btn.btn-active-color-gray-700.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-700.dropdown-toggle:after,.btn.btn-active-color-gray-700.active.dropdown-toggle:after,.btn.btn-active-color-gray-700.show.dropdown-toggle:after,.btn.btn-active-color-gray-700:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-700:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-700:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-700.dropdown-toggle:after{color:#92929f}.btn.btn-icon-gray-700 .svg-icon,.btn.btn-icon-gray-700 i{color:#92929f}.btn.btn-icon-gray-700.dropdown-toggle:after{color:#92929f}.btn-check:active+.btn.btn-active-icon-gray-700 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-700 i,.btn-check:checked+.btn.btn-active-icon-gray-700 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-700 i,.btn.btn-active-icon-gray-700.active .svg-icon,.btn.btn-active-icon-gray-700.active i,.btn.btn-active-icon-gray-700.show .svg-icon,.btn.btn-active-icon-gray-700.show i,.btn.btn-active-icon-gray-700:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-700:active:not(.btn-active) i,.btn.btn-active-icon-gray-700:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-700:focus:not(.btn-active) i,.btn.btn-active-icon-gray-700:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-700:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-700 .svg-icon,.show>.btn.btn-active-icon-gray-700 i{color:#92929f}.btn-check:active+.btn.btn-active-icon-gray-700.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-700.dropdown-toggle:after,.btn.btn-active-icon-gray-700.active.dropdown-toggle:after,.btn.btn-active-icon-gray-700.show.dropdown-toggle:after,.btn.btn-active-icon-gray-700:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-700:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-700:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-700.dropdown-toggle:after{color:#92929f}.btn.btn-text-gray-700{color:#92929f}.btn-check:active+.btn.btn-active-text-gray-700,.btn-check:checked+.btn.btn-active-text-gray-700,.btn.btn-active-text-gray-700.active,.btn.btn-active-text-gray-700.show,.btn.btn-active-text-gray-700:active:not(.btn-active),.btn.btn-active-text-gray-700:focus:not(.btn-active),.btn.btn-active-text-gray-700:hover:not(.btn-active),.show>.btn.btn-active-text-gray-700{color:#92929f}.btn.btn-color-gray-800{color:#cdcdde}.btn.btn-color-gray-800 .svg-icon,.btn.btn-color-gray-800 i{color:#cdcdde}.btn.btn-color-gray-800.dropdown-toggle:after{color:#cdcdde}.btn-check:active+.btn.btn-active-color-gray-800,.btn-check:checked+.btn.btn-active-color-gray-800,.btn.btn-active-color-gray-800.active,.btn.btn-active-color-gray-800.show,.btn.btn-active-color-gray-800:active:not(.btn-active),.btn.btn-active-color-gray-800:focus:not(.btn-active),.btn.btn-active-color-gray-800:hover:not(.btn-active),.show>.btn.btn-active-color-gray-800{color:#cdcdde}.btn-check:active+.btn.btn-active-color-gray-800 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-800 i,.btn-check:checked+.btn.btn-active-color-gray-800 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-800 i,.btn.btn-active-color-gray-800.active .svg-icon,.btn.btn-active-color-gray-800.active i,.btn.btn-active-color-gray-800.show .svg-icon,.btn.btn-active-color-gray-800.show i,.btn.btn-active-color-gray-800:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-800:active:not(.btn-active) i,.btn.btn-active-color-gray-800:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-800:focus:not(.btn-active) i,.btn.btn-active-color-gray-800:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-800:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-800 .svg-icon,.show>.btn.btn-active-color-gray-800 i{color:#cdcdde}.btn-check:active+.btn.btn-active-color-gray-800.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-800.dropdown-toggle:after,.btn.btn-active-color-gray-800.active.dropdown-toggle:after,.btn.btn-active-color-gray-800.show.dropdown-toggle:after,.btn.btn-active-color-gray-800:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-800:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-800:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-800.dropdown-toggle:after{color:#cdcdde}.btn.btn-icon-gray-800 .svg-icon,.btn.btn-icon-gray-800 i{color:#cdcdde}.btn.btn-icon-gray-800.dropdown-toggle:after{color:#cdcdde}.btn-check:active+.btn.btn-active-icon-gray-800 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-800 i,.btn-check:checked+.btn.btn-active-icon-gray-800 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-800 i,.btn.btn-active-icon-gray-800.active .svg-icon,.btn.btn-active-icon-gray-800.active i,.btn.btn-active-icon-gray-800.show .svg-icon,.btn.btn-active-icon-gray-800.show i,.btn.btn-active-icon-gray-800:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-800:active:not(.btn-active) i,.btn.btn-active-icon-gray-800:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-800:focus:not(.btn-active) i,.btn.btn-active-icon-gray-800:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-800:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-800 .svg-icon,.show>.btn.btn-active-icon-gray-800 i{color:#cdcdde}.btn-check:active+.btn.btn-active-icon-gray-800.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-800.dropdown-toggle:after,.btn.btn-active-icon-gray-800.active.dropdown-toggle:after,.btn.btn-active-icon-gray-800.show.dropdown-toggle:after,.btn.btn-active-icon-gray-800:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-800:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-800:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-800.dropdown-toggle:after{color:#cdcdde}.btn.btn-text-gray-800{color:#cdcdde}.btn-check:active+.btn.btn-active-text-gray-800,.btn-check:checked+.btn.btn-active-text-gray-800,.btn.btn-active-text-gray-800.active,.btn.btn-active-text-gray-800.show,.btn.btn-active-text-gray-800:active:not(.btn-active),.btn.btn-active-text-gray-800:focus:not(.btn-active),.btn.btn-active-text-gray-800:hover:not(.btn-active),.show>.btn.btn-active-text-gray-800{color:#cdcdde}.btn.btn-color-gray-900{color:#fff}.btn.btn-color-gray-900 .svg-icon,.btn.btn-color-gray-900 i{color:#fff}.btn.btn-color-gray-900.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-color-gray-900,.btn-check:checked+.btn.btn-active-color-gray-900,.btn.btn-active-color-gray-900.active,.btn.btn-active-color-gray-900.show,.btn.btn-active-color-gray-900:active:not(.btn-active),.btn.btn-active-color-gray-900:focus:not(.btn-active),.btn.btn-active-color-gray-900:hover:not(.btn-active),.show>.btn.btn-active-color-gray-900{color:#fff}.btn-check:active+.btn.btn-active-color-gray-900 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-900 i,.btn-check:checked+.btn.btn-active-color-gray-900 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-900 i,.btn.btn-active-color-gray-900.active .svg-icon,.btn.btn-active-color-gray-900.active i,.btn.btn-active-color-gray-900.show .svg-icon,.btn.btn-active-color-gray-900.show i,.btn.btn-active-color-gray-900:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-900:active:not(.btn-active) i,.btn.btn-active-color-gray-900:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-900:focus:not(.btn-active) i,.btn.btn-active-color-gray-900:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-900:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-900 .svg-icon,.show>.btn.btn-active-color-gray-900 i{color:#fff}.btn-check:active+.btn.btn-active-color-gray-900.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-900.dropdown-toggle:after,.btn.btn-active-color-gray-900.active.dropdown-toggle:after,.btn.btn-active-color-gray-900.show.dropdown-toggle:after,.btn.btn-active-color-gray-900:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-900:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-900:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-900.dropdown-toggle:after{color:#fff}.btn.btn-icon-gray-900 .svg-icon,.btn.btn-icon-gray-900 i{color:#fff}.btn.btn-icon-gray-900.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-icon-gray-900 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-900 i,.btn-check:checked+.btn.btn-active-icon-gray-900 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-900 i,.btn.btn-active-icon-gray-900.active .svg-icon,.btn.btn-active-icon-gray-900.active i,.btn.btn-active-icon-gray-900.show .svg-icon,.btn.btn-active-icon-gray-900.show i,.btn.btn-active-icon-gray-900:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-900:active:not(.btn-active) i,.btn.btn-active-icon-gray-900:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-900:focus:not(.btn-active) i,.btn.btn-active-icon-gray-900:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-900:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-900 .svg-icon,.show>.btn.btn-active-icon-gray-900 i{color:#fff}.btn-check:active+.btn.btn-active-icon-gray-900.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-900.dropdown-toggle:after,.btn.btn-active-icon-gray-900.active.dropdown-toggle:after,.btn.btn-active-icon-gray-900.show.dropdown-toggle:after,.btn.btn-active-icon-gray-900:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-900:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-900:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-900.dropdown-toggle:after{color:#fff}.btn.btn-text-gray-900{color:#fff}.btn-check:active+.btn.btn-active-text-gray-900,.btn-check:checked+.btn.btn-active-text-gray-900,.btn.btn-active-text-gray-900.active,.btn.btn-active-text-gray-900.show,.btn.btn-active-text-gray-900:active:not(.btn-active),.btn.btn-active-text-gray-900:focus:not(.btn-active),.btn.btn-active-text-gray-900:hover:not(.btn-active),.show>.btn.btn-active-text-gray-900{color:#fff}.btn.btn-facebook{color:#fff;border-color:#3b5998;background-color:#3b5998}.btn.btn-facebook .svg-icon,.btn.btn-facebook i{color:#fff}.btn.btn-facebook.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-facebook,.btn-check:checked+.btn.btn-facebook,.btn.btn-facebook.active,.btn.btn-facebook.show,.btn.btn-facebook:active:not(.btn-active),.btn.btn-facebook:focus:not(.btn-active),.btn.btn-facebook:hover:not(.btn-active),.show>.btn.btn-facebook{border-color:#30497c;background-color:#30497c!important}.btn.btn-light-facebook{color:#3b5998;border-color:rgba(59,89,152,.1);background-color:rgba(59,89,152,.1)}.btn.btn-light-facebook .svg-icon,.btn.btn-light-facebook i{color:#3b5998}.btn.btn-light-facebook.dropdown-toggle:after{color:#3b5998}.btn-check:active+.btn.btn-light-facebook,.btn-check:checked+.btn.btn-light-facebook,.btn.btn-light-facebook.active,.btn.btn-light-facebook.show,.btn.btn-light-facebook:active:not(.btn-active),.btn.btn-light-facebook:focus:not(.btn-active),.btn.btn-light-facebook:hover:not(.btn-active),.show>.btn.btn-light-facebook{color:#fff;border-color:#3b5998;background-color:#3b5998!important}.btn-check:active+.btn.btn-light-facebook .svg-icon,.btn-check:active+.btn.btn-light-facebook i,.btn-check:checked+.btn.btn-light-facebook .svg-icon,.btn-check:checked+.btn.btn-light-facebook i,.btn.btn-light-facebook.active .svg-icon,.btn.btn-light-facebook.active i,.btn.btn-light-facebook.show .svg-icon,.btn.btn-light-facebook.show i,.btn.btn-light-facebook:active:not(.btn-active) .svg-icon,.btn.btn-light-facebook:active:not(.btn-active) i,.btn.btn-light-facebook:focus:not(.btn-active) .svg-icon,.btn.btn-light-facebook:focus:not(.btn-active) i,.btn.btn-light-facebook:hover:not(.btn-active) .svg-icon,.btn.btn-light-facebook:hover:not(.btn-active) i,.show>.btn.btn-light-facebook .svg-icon,.show>.btn.btn-light-facebook i{color:#fff}.btn-check:active+.btn.btn-light-facebook.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-facebook.dropdown-toggle:after,.btn.btn-light-facebook.active.dropdown-toggle:after,.btn.btn-light-facebook.show.dropdown-toggle:after,.btn.btn-light-facebook:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-facebook:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-facebook:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-facebook.dropdown-toggle:after{color:#fff}.btn.btn-google{color:#fff;border-color:#dd4b39;background-color:#dd4b39}.btn.btn-google .svg-icon,.btn.btn-google i{color:#fff}.btn.btn-google.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-google,.btn-check:checked+.btn.btn-google,.btn.btn-google.active,.btn.btn-google.show,.btn.btn-google:active:not(.btn-active),.btn.btn-google:focus:not(.btn-active),.btn.btn-google:hover:not(.btn-active),.show>.btn.btn-google{border-color:#cd3623;background-color:#cd3623!important}.btn.btn-light-google{color:#dd4b39;border-color:rgba(221,75,57,.1);background-color:rgba(221,75,57,.1)}.btn.btn-light-google .svg-icon,.btn.btn-light-google i{color:#dd4b39}.btn.btn-light-google.dropdown-toggle:after{color:#dd4b39}.btn-check:active+.btn.btn-light-google,.btn-check:checked+.btn.btn-light-google,.btn.btn-light-google.active,.btn.btn-light-google.show,.btn.btn-light-google:active:not(.btn-active),.btn.btn-light-google:focus:not(.btn-active),.btn.btn-light-google:hover:not(.btn-active),.show>.btn.btn-light-google{color:#fff;border-color:#dd4b39;background-color:#dd4b39!important}.btn-check:active+.btn.btn-light-google .svg-icon,.btn-check:active+.btn.btn-light-google i,.btn-check:checked+.btn.btn-light-google .svg-icon,.btn-check:checked+.btn.btn-light-google i,.btn.btn-light-google.active .svg-icon,.btn.btn-light-google.active i,.btn.btn-light-google.show .svg-icon,.btn.btn-light-google.show i,.btn.btn-light-google:active:not(.btn-active) .svg-icon,.btn.btn-light-google:active:not(.btn-active) i,.btn.btn-light-google:focus:not(.btn-active) .svg-icon,.btn.btn-light-google:focus:not(.btn-active) i,.btn.btn-light-google:hover:not(.btn-active) .svg-icon,.btn.btn-light-google:hover:not(.btn-active) i,.show>.btn.btn-light-google .svg-icon,.show>.btn.btn-light-google i{color:#fff}.btn-check:active+.btn.btn-light-google.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-google.dropdown-toggle:after,.btn.btn-light-google.active.dropdown-toggle:after,.btn.btn-light-google.show.dropdown-toggle:after,.btn.btn-light-google:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-google:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-google:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-google.dropdown-toggle:after{color:#fff}.btn.btn-twitter{color:#fff;border-color:#1da1f2;background-color:#1da1f2}.btn.btn-twitter .svg-icon,.btn.btn-twitter i{color:#fff}.btn.btn-twitter.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-twitter,.btn-check:checked+.btn.btn-twitter,.btn.btn-twitter.active,.btn.btn-twitter.show,.btn.btn-twitter:active:not(.btn-active),.btn.btn-twitter:focus:not(.btn-active),.btn.btn-twitter:hover:not(.btn-active),.show>.btn.btn-twitter{border-color:#0d8ddc;background-color:#0d8ddc!important}.btn.btn-light-twitter{color:#1da1f2;border-color:rgba(29,161,242,.1);background-color:rgba(29,161,242,.1)}.btn.btn-light-twitter .svg-icon,.btn.btn-light-twitter i{color:#1da1f2}.btn.btn-light-twitter.dropdown-toggle:after{color:#1da1f2}.btn-check:active+.btn.btn-light-twitter,.btn-check:checked+.btn.btn-light-twitter,.btn.btn-light-twitter.active,.btn.btn-light-twitter.show,.btn.btn-light-twitter:active:not(.btn-active),.btn.btn-light-twitter:focus:not(.btn-active),.btn.btn-light-twitter:hover:not(.btn-active),.show>.btn.btn-light-twitter{color:#fff;border-color:#1da1f2;background-color:#1da1f2!important}.btn-check:active+.btn.btn-light-twitter .svg-icon,.btn-check:active+.btn.btn-light-twitter i,.btn-check:checked+.btn.btn-light-twitter .svg-icon,.btn-check:checked+.btn.btn-light-twitter i,.btn.btn-light-twitter.active .svg-icon,.btn.btn-light-twitter.active i,.btn.btn-light-twitter.show .svg-icon,.btn.btn-light-twitter.show i,.btn.btn-light-twitter:active:not(.btn-active) .svg-icon,.btn.btn-light-twitter:active:not(.btn-active) i,.btn.btn-light-twitter:focus:not(.btn-active) .svg-icon,.btn.btn-light-twitter:focus:not(.btn-active) i,.btn.btn-light-twitter:hover:not(.btn-active) .svg-icon,.btn.btn-light-twitter:hover:not(.btn-active) i,.show>.btn.btn-light-twitter .svg-icon,.show>.btn.btn-light-twitter i{color:#fff}.btn-check:active+.btn.btn-light-twitter.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-twitter.dropdown-toggle:after,.btn.btn-light-twitter.active.dropdown-toggle:after,.btn.btn-light-twitter.show.dropdown-toggle:after,.btn.btn-light-twitter:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-twitter:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-twitter:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-twitter.dropdown-toggle:after{color:#fff}.btn.btn-instagram{color:#fff;border-color:#e1306c;background-color:#e1306c}.btn.btn-instagram .svg-icon,.btn.btn-instagram i{color:#fff}.btn.btn-instagram.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-instagram,.btn-check:checked+.btn.btn-instagram,.btn.btn-instagram.active,.btn.btn-instagram.show,.btn.btn-instagram:active:not(.btn-active),.btn.btn-instagram:focus:not(.btn-active),.btn.btn-instagram:hover:not(.btn-active),.show>.btn.btn-instagram{border-color:#cd1e59;background-color:#cd1e59!important}.btn.btn-light-instagram{color:#e1306c;border-color:rgba(225,48,108,.1);background-color:rgba(225,48,108,.1)}.btn.btn-light-instagram .svg-icon,.btn.btn-light-instagram i{color:#e1306c}.btn.btn-light-instagram.dropdown-toggle:after{color:#e1306c}.btn-check:active+.btn.btn-light-instagram,.btn-check:checked+.btn.btn-light-instagram,.btn.btn-light-instagram.active,.btn.btn-light-instagram.show,.btn.btn-light-instagram:active:not(.btn-active),.btn.btn-light-instagram:focus:not(.btn-active),.btn.btn-light-instagram:hover:not(.btn-active),.show>.btn.btn-light-instagram{color:#fff;border-color:#e1306c;background-color:#e1306c!important}.btn-check:active+.btn.btn-light-instagram .svg-icon,.btn-check:active+.btn.btn-light-instagram i,.btn-check:checked+.btn.btn-light-instagram .svg-icon,.btn-check:checked+.btn.btn-light-instagram i,.btn.btn-light-instagram.active .svg-icon,.btn.btn-light-instagram.active i,.btn.btn-light-instagram.show .svg-icon,.btn.btn-light-instagram.show i,.btn.btn-light-instagram:active:not(.btn-active) .svg-icon,.btn.btn-light-instagram:active:not(.btn-active) i,.btn.btn-light-instagram:focus:not(.btn-active) .svg-icon,.btn.btn-light-instagram:focus:not(.btn-active) i,.btn.btn-light-instagram:hover:not(.btn-active) .svg-icon,.btn.btn-light-instagram:hover:not(.btn-active) i,.show>.btn.btn-light-instagram .svg-icon,.show>.btn.btn-light-instagram i{color:#fff}.btn-check:active+.btn.btn-light-instagram.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-instagram.dropdown-toggle:after,.btn.btn-light-instagram.active.dropdown-toggle:after,.btn.btn-light-instagram.show.dropdown-toggle:after,.btn.btn-light-instagram:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-instagram:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-instagram:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-instagram.dropdown-toggle:after{color:#fff}.btn.btn-youtube{color:#fff;border-color:red;background-color:red}.btn.btn-youtube .svg-icon,.btn.btn-youtube i{color:#fff}.btn.btn-youtube.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-youtube,.btn-check:checked+.btn.btn-youtube,.btn.btn-youtube.active,.btn.btn-youtube.show,.btn.btn-youtube:active:not(.btn-active),.btn.btn-youtube:focus:not(.btn-active),.btn.btn-youtube:hover:not(.btn-active),.show>.btn.btn-youtube{border-color:#d90000;background-color:#d90000!important}.btn.btn-light-youtube{color:red;border-color:rgba(255,0,0,.1);background-color:rgba(255,0,0,.1)}.btn.btn-light-youtube .svg-icon,.btn.btn-light-youtube i{color:red}.btn.btn-light-youtube.dropdown-toggle:after{color:red}.btn-check:active+.btn.btn-light-youtube,.btn-check:checked+.btn.btn-light-youtube,.btn.btn-light-youtube.active,.btn.btn-light-youtube.show,.btn.btn-light-youtube:active:not(.btn-active),.btn.btn-light-youtube:focus:not(.btn-active),.btn.btn-light-youtube:hover:not(.btn-active),.show>.btn.btn-light-youtube{color:#fff;border-color:red;background-color:red!important}.btn-check:active+.btn.btn-light-youtube .svg-icon,.btn-check:active+.btn.btn-light-youtube i,.btn-check:checked+.btn.btn-light-youtube .svg-icon,.btn-check:checked+.btn.btn-light-youtube i,.btn.btn-light-youtube.active .svg-icon,.btn.btn-light-youtube.active i,.btn.btn-light-youtube.show .svg-icon,.btn.btn-light-youtube.show i,.btn.btn-light-youtube:active:not(.btn-active) .svg-icon,.btn.btn-light-youtube:active:not(.btn-active) i,.btn.btn-light-youtube:focus:not(.btn-active) .svg-icon,.btn.btn-light-youtube:focus:not(.btn-active) i,.btn.btn-light-youtube:hover:not(.btn-active) .svg-icon,.btn.btn-light-youtube:hover:not(.btn-active) i,.show>.btn.btn-light-youtube .svg-icon,.show>.btn.btn-light-youtube i{color:#fff}.btn-check:active+.btn.btn-light-youtube.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-youtube.dropdown-toggle:after,.btn.btn-light-youtube.active.dropdown-toggle:after,.btn.btn-light-youtube.show.dropdown-toggle:after,.btn.btn-light-youtube:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-youtube:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-youtube:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-youtube.dropdown-toggle:after{color:#fff}.btn.btn-linkedin{color:#fff;border-color:#0077b5;background-color:#0077b5}.btn.btn-linkedin .svg-icon,.btn.btn-linkedin i{color:#fff}.btn.btn-linkedin.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-linkedin,.btn-check:checked+.btn.btn-linkedin,.btn.btn-linkedin.active,.btn.btn-linkedin.show,.btn.btn-linkedin:active:not(.btn-active),.btn.btn-linkedin:focus:not(.btn-active),.btn.btn-linkedin:hover:not(.btn-active),.show>.btn.btn-linkedin{border-color:#005e8f;background-color:#005e8f!important}.btn.btn-light-linkedin{color:#0077b5;border-color:rgba(0,119,181,.1);background-color:rgba(0,119,181,.1)}.btn.btn-light-linkedin .svg-icon,.btn.btn-light-linkedin i{color:#0077b5}.btn.btn-light-linkedin.dropdown-toggle:after{color:#0077b5}.btn-check:active+.btn.btn-light-linkedin,.btn-check:checked+.btn.btn-light-linkedin,.btn.btn-light-linkedin.active,.btn.btn-light-linkedin.show,.btn.btn-light-linkedin:active:not(.btn-active),.btn.btn-light-linkedin:focus:not(.btn-active),.btn.btn-light-linkedin:hover:not(.btn-active),.show>.btn.btn-light-linkedin{color:#fff;border-color:#0077b5;background-color:#0077b5!important}.btn-check:active+.btn.btn-light-linkedin .svg-icon,.btn-check:active+.btn.btn-light-linkedin i,.btn-check:checked+.btn.btn-light-linkedin .svg-icon,.btn-check:checked+.btn.btn-light-linkedin i,.btn.btn-light-linkedin.active .svg-icon,.btn.btn-light-linkedin.active i,.btn.btn-light-linkedin.show .svg-icon,.btn.btn-light-linkedin.show i,.btn.btn-light-linkedin:active:not(.btn-active) .svg-icon,.btn.btn-light-linkedin:active:not(.btn-active) i,.btn.btn-light-linkedin:focus:not(.btn-active) .svg-icon,.btn.btn-light-linkedin:focus:not(.btn-active) i,.btn.btn-light-linkedin:hover:not(.btn-active) .svg-icon,.btn.btn-light-linkedin:hover:not(.btn-active) i,.show>.btn.btn-light-linkedin .svg-icon,.show>.btn.btn-light-linkedin i{color:#fff}.btn-check:active+.btn.btn-light-linkedin.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-linkedin.dropdown-toggle:after,.btn.btn-light-linkedin.active.dropdown-toggle:after,.btn.btn-light-linkedin.show.dropdown-toggle:after,.btn.btn-light-linkedin:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-linkedin:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-linkedin:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-linkedin.dropdown-toggle:after{color:#fff}.btn.btn-outline.btn-outline-dashed{border-width:1px;border-style:dashed}.btn-check:active+.btn.btn-outline.btn-outline-dashed,.btn-check:checked+.btn.btn-outline.btn-outline-dashed,.btn.btn-outline.btn-outline-dashed.active,.btn.btn-outline.btn-outline-dashed.show,.btn.btn-outline.btn-outline-dashed:active:not(.btn-active),.btn.btn-outline.btn-outline-dashed:focus:not(.btn-active),.btn.btn-outline.btn-outline-dashed:hover:not(.btn-active),.show>.btn.btn-outline.btn-outline-dashed{border-color:#3699ff}.btn.btn-outline.btn-outline-dashed.btn-outline-default{border-width:1px;border-style:dashed;color:#cdcdde;border-color:#323248}.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default i{color:#cdcdde}.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after{color:#cdcdde}.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default,.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default,.btn.btn-outline.btn-outline-dashed.btn-outline-default.active,.btn.btn-outline.btn-outline-dashed.btn-outline-default.show,.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active),.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active),.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active),.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default{color:#3699ff;border-color:#3699ff;background-color:#212e48!important}.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon,.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default i,.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon,.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default i,.btn.btn-outline.btn-outline-dashed.btn-outline-default.active .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default.active i,.btn.btn-outline.btn-outline-dashed.btn-outline-default.show .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default.show i,.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active) .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active) i,.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active) .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active) i,.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active) .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active) i,.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon,.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default i{color:#3699ff}.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after,.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default.active.dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default.show.dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active).dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after{color:#3699ff}code:not([class*=language-]){font-weight:400;color:#b93993;line-height:inherit;font-size:inherit;background-color:#2b2b40;padding:.1rem .4rem;margin:0 .5rem;box-shadow:0 3px 9px rgba(0,0,0,.08);border-radius:.3rem}.form-control{box-shadow:none!important}.dropdown.show>.form-control{color:#92929f;background-color:#1e1e2d;border-color:#474761}.form-control[readonly]{background-color:#1e1e2d}.form-control.form-control-solid{background-color:#1b1b29;border-color:#1b1b29;color:#92929f;transition:color .2s ease,background-color .2s ease}.form-control.form-control-solid::placeholder{color:#565674}.form-control.form-control-solid::-moz-placeholder{color:#565674;opacity:1}.dropdown.show>.form-control.form-control-solid,.form-control.form-control-solid.active,.form-control.form-control-solid.focus,.form-control.form-control-solid:active,.form-control.form-control-solid:focus{background-color:#171723;border-color:#171723;color:#92929f;transition:color .2s ease,background-color .2s ease}.form-control.form-control-transparent{background-color:transparent;border-color:transparent}.dropdown.show>.form-control.form-control-transparent,.form-control.form-control-transparent.active,.form-control.form-control-transparent.focus,.form-control.form-control-transparent:active,.form-control.form-control-transparent:focus{background-color:transparent;border-color:transparent}.form-control.form-control-flush{border:0;background-color:transparent;outline:0!important;box-shadow:none;border-radius:0}.placeholder-gray-500::placeholder{color:#565674}.placeholder-gray-500::-moz-placeholder{color:#565674;opacity:1}.placeholder-white::placeholder{color:#fff}.placeholder-white::-moz-placeholder{color:#fff;opacity:1}.resize-none{resize:none}.form-control-solid-bg{background-color:#1b1b29}.form-select{box-shadow:none!important}.form-select.form-select-solid{background-color:#1b1b29;border-color:#1b1b29;color:#92929f;transition:color .2s ease,background-color .2s ease}.form-select.form-select-solid::placeholder{color:#565674}.form-select.form-select-solid::-moz-placeholder{color:#565674;opacity:1}.dropdown.show>.form-select.form-select-solid,.form-select.form-select-solid.active,.form-select.form-select-solid.focus,.form-select.form-select-solid:active,.form-select.form-select-solid:focus{background-color:#171723;border-color:#171723!important;color:#92929f;transition:color .2s ease,background-color .2s ease}.form-select.form-select-transparent{background-color:transparent;border-color:transparent;color:#92929f}.form-select.form-select-transparent::placeholder{color:#565674}.form-select.form-select-transparent::-moz-placeholder{color:#565674;opacity:1}.dropdown.show>.form-select.form-select-transparent,.form-select.form-select-transparent.active,.form-select.form-select-transparent.focus,.form-select.form-select-transparent:active,.form-select.form-select-transparent:focus{background-color:transparent;border-color:transparent!important;color:#92929f}.form-check .form-check-label{cursor:pointer}.form-check .form-check-input{cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-check.form-check-custom{display:flex;align-items:center;padding-left:0;margin:0}.form-check.form-check-custom .form-check-input{margin:0;float:none;flex-shrink:0}.form-check.form-check-custom .form-check-label{margin-left:.55rem}.form-check:not(.form-switch) .form-check-input[type=checkbox]{background-size:60% 60%}.form-check.form-check-solid .form-check-input{border:0;background-color:#2b2b40}.form-check.form-check-solid .form-check-input:active,.form-check.form-check-solid .form-check-input:focus{filter:none;background-color:#2b2b40}.form-check.form-check-solid .form-check-input:checked{background-color:#3699ff}.form-check.form-check-success .form-check-input:checked{background-color:#0bb783}.form-check.form-check-danger .form-check-input:checked{background-color:#f64e60}.form-check.form-check-warning .form-check-input:checked{background-color:#ffa800}.form-check.form-check-custom.form-check-sm .form-check-input{height:1.5rem;width:1.5rem}.form-check.form-check-custom.form-check-lg .form-check-input{height:2.25rem;width:2.25rem}.form-switch.form-check-solid .form-check-input{height:2.25rem;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='%23565674'/%3e%3c/svg%3e");border-radius:3.25rem}.form-switch.form-check-solid .form-check-input:checked{filter:none;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='%23FFFFFF'/%3e%3c/svg%3e")}.form-switch.form-check-solid.form-switch-sm .form-check-input{height:1.5rem;width:2.5rem}.form-switch.form-check-solid.form-switch-lg .form-check-input{height:2.75rem;width:3.75rem}.form-floating .form-control.form-control-solid::placeholder{color:transparent}.input-group.input-group-solid{border-radius:.475rem}.input-group.input-group-solid.input-group-sm{border-radius:.325rem}.input-group.input-group-solid.input-group-lg{border-radius:.625rem}.input-group.input-group-solid .input-group-text{background-color:#1b1b29;border-color:#1b1b29}.input-group.input-group-solid .input-group-text+.form-control{border-left-color:#323248}.input-group.input-group-solid .form-control{background-color:#1b1b29;border-color:#1b1b29}.input-group.input-group-solid .form-control+.input-group-text{border-left-color:#323248}.required:after{content:"*";position:relative;font-size:inherit;color:#f64e60;padding-left:.25rem;font-weight:700}.modal .modal-header{align-items:center;justify-content:space-between;border-top-left-radius:.475rem;border-top-right-radius:.475rem}.modal .modal-header .h1,.modal .modal-header .h2,.modal .modal-header .h3,.modal .modal-header .h4,.modal .modal-header .h5,.modal .modal-header .h6,.modal .modal-header h1,.modal .modal-header h2,.modal .modal-header h3,.modal .modal-header h4,.modal .modal-header h5,.modal .modal-header h6{margin-bottom:0}.modal .modal-dialog{outline:0!important}.modal-rounded{border-radius:.475rem!important}.progress-vertical{display:flex;align-items:stretch;justify-content:space-between}.progress-vertical .progress{height:100%;border-radius:.475rem;display:flex;align-items:flex-end;margin-right:1rem}.progress-vertical .progress:last-child{margin-right:0}.progress-vertical .progress .progress-bar{width:8px;border-radius:.475rem}.table>:not(:first-child){border-color:transparent;border-width:0;border-style:none}.table>:not(:last-child)>:last-child>*{border-bottom-color:inherit}.table td,.table th,.table tr{border-color:inherit;border-width:inherit;border-style:inherit;text-transform:inherit;font-weight:inherit;font-size:inherit;color:inherit;height:inherit;min-height:inherit}.table td:first-child,.table th:first-child,.table tr:first-child{padding-left:0}.table td:last-child,.table th:last-child,.table tr:last-child{padding-right:0}.table tbody tr:last-child,.table tfoot tr:last-child{border-bottom:0!important}.table tbody tr:last-child td,.table tbody tr:last-child th,.table tfoot tr:last-child td,.table tfoot tr:last-child th{border-bottom:0!important}.table tfoot td,.table tfoot th{border-top:inherit}.table.table-rounded{border-radius:.475rem;border-spacing:0;border-collapse:separate}.table.table-flush td,.table.table-flush th,.table.table-flush tr{padding:inherit}.table.table-row-bordered tr{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#2b2b40}.table.table-row-bordered tfoot td,.table.table-row-bordered tfoot th{border-top-width:1px!important}.table.table-row-dashed tr{border-bottom-width:1px;border-bottom-style:dashed;border-bottom-color:#2b2b40}.table.table-row-dashed tfoot td,.table.table-row-dashed tfoot th{border-top-width:1px!important}.table.table-row-gray-100 tr{border-bottom-color:#1b1b29}.table.table-row-gray-200 tr{border-bottom-color:#2b2b40}.table.table-row-gray-300 tr{border-bottom-color:#323248}.table.table-row-gray-400 tr{border-bottom-color:#474761}.table.table-row-gray-500 tr{border-bottom-color:#565674}.table.table-row-gray-600 tr{border-bottom-color:#6d6d80}.table.table-row-gray-700 tr{border-bottom-color:#92929f}.table.table-row-gray-800 tr{border-bottom-color:#cdcdde}.table.table-row-gray-900 tr{border-bottom-color:#fff}.table-sort:after{opacity:0}.table-sort,.table-sort-asc,.table-sort-desc{vertical-align:middle}.table-sort-asc:after,.table-sort-desc:after,.table-sort:after{position:relative;display:inline-block;width:.75rem;height:.75rem;content:" ";bottom:auto;right:auto;left:auto;margin-left:.5rem}.table-sort-asc:after{opacity:1;background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 8' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.42111 2.06463C4.22088 1.96161 3.9637 1.9809 3.78597 2.12863L0.177181 5.12847C-0.046034 5.31402 -0.0602611 5.63049 0.145404 5.83532C0.351069 6.04015 0.698744 6.05578 0.921959 5.87023L4.14137 3.19406L7.06417 5.84414C7.27904 6.03896 7.62686 6.03835 7.84105 5.84278C8.05524 5.64721 8.05469 5.33073 7.83982 5.13591L4.54449 2.14806C4.50704 2.1141 4.46541 2.08629 4.42111 2.06463Z'/%3e%3c/svg%3e")}.table-sort-desc:after{opacity:1;background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 8' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.42111 5.93537C4.22088 6.03839 3.9637 6.0191 3.78597 5.87137L0.177181 2.87153C-0.046034 2.68598 -0.060261 2.36951 0.145404 2.16468C0.351069 1.95985 0.698744 1.94422 0.921959 2.12977L4.14137 4.80594L7.06417 2.15586C7.27904 1.96104 7.62686 1.96165 7.84105 2.15722C8.05524 2.35279 8.05469 2.66927 7.83982 2.86409L4.54449 5.85194C4.50704 5.8859 4.46541 5.91371 4.42111 5.93537Z'/%3e%3c/svg%3e")}.table-loading-message{display:none;position:absolute;top:50%;left:50%;border-radius:.475rem;box-shadow:0 0 30px rgba(0,0,0,.3);background-color:#2b2b40;color:#92929f;font-weight:500;margin:0!important;width:auto;padding:1rem 2rem!important;transform:translateX(-50%) translateY(-50%)}.table-loading{position:relative}.table-loading .table-loading-message{display:block}.table.g-0 td,.table.g-0 th{padding:0}.table.g-0 td.dtr-control,.table.g-0 th.dtr-control{padding-left:0!important}.table.gy-0 td,.table.gy-0 th{padding-top:0;padding-bottom:0}.table.gx-0 td,.table.gx-0 th{padding-left:0;padding-right:0}.table.gx-0 td.dtr-control,.table.gx-0 th.dtr-control{padding-left:0!important}.table.gs-0 td:first-child,.table.gs-0 th:first-child{padding-left:0}.table.gs-0 td:last-child,.table.gs-0 th:last-child{padding-right:0}.table.gs-0 td.dtr-control:first-child,.table.gs-0 th.dtr-control:first-child{padding-left:0!important}.table.g-1 td,.table.g-1 th{padding:.25rem}.table.g-1 td.dtr-control,.table.g-1 th.dtr-control{padding-left:.25rem!important}.table.gy-1 td,.table.gy-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-1 td,.table.gx-1 th{padding-left:.25rem;padding-right:.25rem}.table.gx-1 td.dtr-control,.table.gx-1 th.dtr-control{padding-left:.25rem!important}.table.gs-1 td:first-child,.table.gs-1 th:first-child{padding-left:.25rem}.table.gs-1 td:last-child,.table.gs-1 th:last-child{padding-right:.25rem}.table.gs-1 td.dtr-control:first-child,.table.gs-1 th.dtr-control:first-child{padding-left:.25rem!important}.table.g-2 td,.table.g-2 th{padding:.5rem}.table.g-2 td.dtr-control,.table.g-2 th.dtr-control{padding-left:.5rem!important}.table.gy-2 td,.table.gy-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-2 td,.table.gx-2 th{padding-left:.5rem;padding-right:.5rem}.table.gx-2 td.dtr-control,.table.gx-2 th.dtr-control{padding-left:.5rem!important}.table.gs-2 td:first-child,.table.gs-2 th:first-child{padding-left:.5rem}.table.gs-2 td:last-child,.table.gs-2 th:last-child{padding-right:.5rem}.table.gs-2 td.dtr-control:first-child,.table.gs-2 th.dtr-control:first-child{padding-left:.5rem!important}.table.g-3 td,.table.g-3 th{padding:.75rem}.table.g-3 td.dtr-control,.table.g-3 th.dtr-control{padding-left:.75rem!important}.table.gy-3 td,.table.gy-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-3 td,.table.gx-3 th{padding-left:.75rem;padding-right:.75rem}.table.gx-3 td.dtr-control,.table.gx-3 th.dtr-control{padding-left:.75rem!important}.table.gs-3 td:first-child,.table.gs-3 th:first-child{padding-left:.75rem}.table.gs-3 td:last-child,.table.gs-3 th:last-child{padding-right:.75rem}.table.gs-3 td.dtr-control:first-child,.table.gs-3 th.dtr-control:first-child{padding-left:.75rem!important}.table.g-4 td,.table.g-4 th{padding:1rem}.table.g-4 td.dtr-control,.table.g-4 th.dtr-control{padding-left:1rem!important}.table.gy-4 td,.table.gy-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-4 td,.table.gx-4 th{padding-left:1rem;padding-right:1rem}.table.gx-4 td.dtr-control,.table.gx-4 th.dtr-control{padding-left:1rem!important}.table.gs-4 td:first-child,.table.gs-4 th:first-child{padding-left:1rem}.table.gs-4 td:last-child,.table.gs-4 th:last-child{padding-right:1rem}.table.gs-4 td.dtr-control:first-child,.table.gs-4 th.dtr-control:first-child{padding-left:1rem!important}.table.g-5 td,.table.g-5 th{padding:1.25rem}.table.g-5 td.dtr-control,.table.g-5 th.dtr-control{padding-left:1.25rem!important}.table.gy-5 td,.table.gy-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-5 td,.table.gx-5 th{padding-left:1.25rem;padding-right:1.25rem}.table.gx-5 td.dtr-control,.table.gx-5 th.dtr-control{padding-left:1.25rem!important}.table.gs-5 td:first-child,.table.gs-5 th:first-child{padding-left:1.25rem}.table.gs-5 td:last-child,.table.gs-5 th:last-child{padding-right:1.25rem}.table.gs-5 td.dtr-control:first-child,.table.gs-5 th.dtr-control:first-child{padding-left:1.25rem!important}.table.g-6 td,.table.g-6 th{padding:1.5rem}.table.g-6 td.dtr-control,.table.g-6 th.dtr-control{padding-left:1.5rem!important}.table.gy-6 td,.table.gy-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-6 td,.table.gx-6 th{padding-left:1.5rem;padding-right:1.5rem}.table.gx-6 td.dtr-control,.table.gx-6 th.dtr-control{padding-left:1.5rem!important}.table.gs-6 td:first-child,.table.gs-6 th:first-child{padding-left:1.5rem}.table.gs-6 td:last-child,.table.gs-6 th:last-child{padding-right:1.5rem}.table.gs-6 td.dtr-control:first-child,.table.gs-6 th.dtr-control:first-child{padding-left:1.5rem!important}.table.g-7 td,.table.g-7 th{padding:1.75rem}.table.g-7 td.dtr-control,.table.g-7 th.dtr-control{padding-left:1.75rem!important}.table.gy-7 td,.table.gy-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-7 td,.table.gx-7 th{padding-left:1.75rem;padding-right:1.75rem}.table.gx-7 td.dtr-control,.table.gx-7 th.dtr-control{padding-left:1.75rem!important}.table.gs-7 td:first-child,.table.gs-7 th:first-child{padding-left:1.75rem}.table.gs-7 td:last-child,.table.gs-7 th:last-child{padding-right:1.75rem}.table.gs-7 td.dtr-control:first-child,.table.gs-7 th.dtr-control:first-child{padding-left:1.75rem!important}.table.g-8 td,.table.g-8 th{padding:2rem}.table.g-8 td.dtr-control,.table.g-8 th.dtr-control{padding-left:2rem!important}.table.gy-8 td,.table.gy-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-8 td,.table.gx-8 th{padding-left:2rem;padding-right:2rem}.table.gx-8 td.dtr-control,.table.gx-8 th.dtr-control{padding-left:2rem!important}.table.gs-8 td:first-child,.table.gs-8 th:first-child{padding-left:2rem}.table.gs-8 td:last-child,.table.gs-8 th:last-child{padding-right:2rem}.table.gs-8 td.dtr-control:first-child,.table.gs-8 th.dtr-control:first-child{padding-left:2rem!important}.table.g-9 td,.table.g-9 th{padding:2.25rem}.table.g-9 td.dtr-control,.table.g-9 th.dtr-control{padding-left:2.25rem!important}.table.gy-9 td,.table.gy-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-9 td,.table.gx-9 th{padding-left:2.25rem;padding-right:2.25rem}.table.gx-9 td.dtr-control,.table.gx-9 th.dtr-control{padding-left:2.25rem!important}.table.gs-9 td:first-child,.table.gs-9 th:first-child{padding-left:2.25rem}.table.gs-9 td:last-child,.table.gs-9 th:last-child{padding-right:2.25rem}.table.gs-9 td.dtr-control:first-child,.table.gs-9 th.dtr-control:first-child{padding-left:2.25rem!important}.table.g-10 td,.table.g-10 th{padding:2.5rem}.table.g-10 td.dtr-control,.table.g-10 th.dtr-control{padding-left:2.5rem!important}.table.gy-10 td,.table.gy-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-10 td,.table.gx-10 th{padding-left:2.5rem;padding-right:2.5rem}.table.gx-10 td.dtr-control,.table.gx-10 th.dtr-control{padding-left:2.5rem!important}.table.gs-10 td:first-child,.table.gs-10 th:first-child{padding-left:2.5rem}.table.gs-10 td:last-child,.table.gs-10 th:last-child{padding-right:2.5rem}.table.gs-10 td.dtr-control:first-child,.table.gs-10 th.dtr-control:first-child{padding-left:2.5rem!important}@media (min-width:576px){.table.g-sm-0 td,.table.g-sm-0 th{padding:0}.table.g-sm-0 td.dtr-control,.table.g-sm-0 th.dtr-control{padding-left:0!important}.table.gy-sm-0 td,.table.gy-sm-0 th{padding-top:0;padding-bottom:0}.table.gx-sm-0 td,.table.gx-sm-0 th{padding-left:0;padding-right:0}.table.gx-sm-0 td.dtr-control,.table.gx-sm-0 th.dtr-control{padding-left:0!important}.table.gs-sm-0 td:first-child,.table.gs-sm-0 th:first-child{padding-left:0}.table.gs-sm-0 td:last-child,.table.gs-sm-0 th:last-child{padding-right:0}.table.gs-sm-0 td.dtr-control:first-child,.table.gs-sm-0 th.dtr-control:first-child{padding-left:0!important}.table.g-sm-1 td,.table.g-sm-1 th{padding:.25rem}.table.g-sm-1 td.dtr-control,.table.g-sm-1 th.dtr-control{padding-left:.25rem!important}.table.gy-sm-1 td,.table.gy-sm-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-sm-1 td,.table.gx-sm-1 th{padding-left:.25rem;padding-right:.25rem}.table.gx-sm-1 td.dtr-control,.table.gx-sm-1 th.dtr-control{padding-left:.25rem!important}.table.gs-sm-1 td:first-child,.table.gs-sm-1 th:first-child{padding-left:.25rem}.table.gs-sm-1 td:last-child,.table.gs-sm-1 th:last-child{padding-right:.25rem}.table.gs-sm-1 td.dtr-control:first-child,.table.gs-sm-1 th.dtr-control:first-child{padding-left:.25rem!important}.table.g-sm-2 td,.table.g-sm-2 th{padding:.5rem}.table.g-sm-2 td.dtr-control,.table.g-sm-2 th.dtr-control{padding-left:.5rem!important}.table.gy-sm-2 td,.table.gy-sm-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-sm-2 td,.table.gx-sm-2 th{padding-left:.5rem;padding-right:.5rem}.table.gx-sm-2 td.dtr-control,.table.gx-sm-2 th.dtr-control{padding-left:.5rem!important}.table.gs-sm-2 td:first-child,.table.gs-sm-2 th:first-child{padding-left:.5rem}.table.gs-sm-2 td:last-child,.table.gs-sm-2 th:last-child{padding-right:.5rem}.table.gs-sm-2 td.dtr-control:first-child,.table.gs-sm-2 th.dtr-control:first-child{padding-left:.5rem!important}.table.g-sm-3 td,.table.g-sm-3 th{padding:.75rem}.table.g-sm-3 td.dtr-control,.table.g-sm-3 th.dtr-control{padding-left:.75rem!important}.table.gy-sm-3 td,.table.gy-sm-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-sm-3 td,.table.gx-sm-3 th{padding-left:.75rem;padding-right:.75rem}.table.gx-sm-3 td.dtr-control,.table.gx-sm-3 th.dtr-control{padding-left:.75rem!important}.table.gs-sm-3 td:first-child,.table.gs-sm-3 th:first-child{padding-left:.75rem}.table.gs-sm-3 td:last-child,.table.gs-sm-3 th:last-child{padding-right:.75rem}.table.gs-sm-3 td.dtr-control:first-child,.table.gs-sm-3 th.dtr-control:first-child{padding-left:.75rem!important}.table.g-sm-4 td,.table.g-sm-4 th{padding:1rem}.table.g-sm-4 td.dtr-control,.table.g-sm-4 th.dtr-control{padding-left:1rem!important}.table.gy-sm-4 td,.table.gy-sm-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-sm-4 td,.table.gx-sm-4 th{padding-left:1rem;padding-right:1rem}.table.gx-sm-4 td.dtr-control,.table.gx-sm-4 th.dtr-control{padding-left:1rem!important}.table.gs-sm-4 td:first-child,.table.gs-sm-4 th:first-child{padding-left:1rem}.table.gs-sm-4 td:last-child,.table.gs-sm-4 th:last-child{padding-right:1rem}.table.gs-sm-4 td.dtr-control:first-child,.table.gs-sm-4 th.dtr-control:first-child{padding-left:1rem!important}.table.g-sm-5 td,.table.g-sm-5 th{padding:1.25rem}.table.g-sm-5 td.dtr-control,.table.g-sm-5 th.dtr-control{padding-left:1.25rem!important}.table.gy-sm-5 td,.table.gy-sm-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-sm-5 td,.table.gx-sm-5 th{padding-left:1.25rem;padding-right:1.25rem}.table.gx-sm-5 td.dtr-control,.table.gx-sm-5 th.dtr-control{padding-left:1.25rem!important}.table.gs-sm-5 td:first-child,.table.gs-sm-5 th:first-child{padding-left:1.25rem}.table.gs-sm-5 td:last-child,.table.gs-sm-5 th:last-child{padding-right:1.25rem}.table.gs-sm-5 td.dtr-control:first-child,.table.gs-sm-5 th.dtr-control:first-child{padding-left:1.25rem!important}.table.g-sm-6 td,.table.g-sm-6 th{padding:1.5rem}.table.g-sm-6 td.dtr-control,.table.g-sm-6 th.dtr-control{padding-left:1.5rem!important}.table.gy-sm-6 td,.table.gy-sm-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-sm-6 td,.table.gx-sm-6 th{padding-left:1.5rem;padding-right:1.5rem}.table.gx-sm-6 td.dtr-control,.table.gx-sm-6 th.dtr-control{padding-left:1.5rem!important}.table.gs-sm-6 td:first-child,.table.gs-sm-6 th:first-child{padding-left:1.5rem}.table.gs-sm-6 td:last-child,.table.gs-sm-6 th:last-child{padding-right:1.5rem}.table.gs-sm-6 td.dtr-control:first-child,.table.gs-sm-6 th.dtr-control:first-child{padding-left:1.5rem!important}.table.g-sm-7 td,.table.g-sm-7 th{padding:1.75rem}.table.g-sm-7 td.dtr-control,.table.g-sm-7 th.dtr-control{padding-left:1.75rem!important}.table.gy-sm-7 td,.table.gy-sm-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-sm-7 td,.table.gx-sm-7 th{padding-left:1.75rem;padding-right:1.75rem}.table.gx-sm-7 td.dtr-control,.table.gx-sm-7 th.dtr-control{padding-left:1.75rem!important}.table.gs-sm-7 td:first-child,.table.gs-sm-7 th:first-child{padding-left:1.75rem}.table.gs-sm-7 td:last-child,.table.gs-sm-7 th:last-child{padding-right:1.75rem}.table.gs-sm-7 td.dtr-control:first-child,.table.gs-sm-7 th.dtr-control:first-child{padding-left:1.75rem!important}.table.g-sm-8 td,.table.g-sm-8 th{padding:2rem}.table.g-sm-8 td.dtr-control,.table.g-sm-8 th.dtr-control{padding-left:2rem!important}.table.gy-sm-8 td,.table.gy-sm-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-sm-8 td,.table.gx-sm-8 th{padding-left:2rem;padding-right:2rem}.table.gx-sm-8 td.dtr-control,.table.gx-sm-8 th.dtr-control{padding-left:2rem!important}.table.gs-sm-8 td:first-child,.table.gs-sm-8 th:first-child{padding-left:2rem}.table.gs-sm-8 td:last-child,.table.gs-sm-8 th:last-child{padding-right:2rem}.table.gs-sm-8 td.dtr-control:first-child,.table.gs-sm-8 th.dtr-control:first-child{padding-left:2rem!important}.table.g-sm-9 td,.table.g-sm-9 th{padding:2.25rem}.table.g-sm-9 td.dtr-control,.table.g-sm-9 th.dtr-control{padding-left:2.25rem!important}.table.gy-sm-9 td,.table.gy-sm-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-sm-9 td,.table.gx-sm-9 th{padding-left:2.25rem;padding-right:2.25rem}.table.gx-sm-9 td.dtr-control,.table.gx-sm-9 th.dtr-control{padding-left:2.25rem!important}.table.gs-sm-9 td:first-child,.table.gs-sm-9 th:first-child{padding-left:2.25rem}.table.gs-sm-9 td:last-child,.table.gs-sm-9 th:last-child{padding-right:2.25rem}.table.gs-sm-9 td.dtr-control:first-child,.table.gs-sm-9 th.dtr-control:first-child{padding-left:2.25rem!important}.table.g-sm-10 td,.table.g-sm-10 th{padding:2.5rem}.table.g-sm-10 td.dtr-control,.table.g-sm-10 th.dtr-control{padding-left:2.5rem!important}.table.gy-sm-10 td,.table.gy-sm-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-sm-10 td,.table.gx-sm-10 th{padding-left:2.5rem;padding-right:2.5rem}.table.gx-sm-10 td.dtr-control,.table.gx-sm-10 th.dtr-control{padding-left:2.5rem!important}.table.gs-sm-10 td:first-child,.table.gs-sm-10 th:first-child{padding-left:2.5rem}.table.gs-sm-10 td:last-child,.table.gs-sm-10 th:last-child{padding-right:2.5rem}.table.gs-sm-10 td.dtr-control:first-child,.table.gs-sm-10 th.dtr-control:first-child{padding-left:2.5rem!important}}@media (min-width:768px){.table.g-md-0 td,.table.g-md-0 th{padding:0}.table.g-md-0 td.dtr-control,.table.g-md-0 th.dtr-control{padding-left:0!important}.table.gy-md-0 td,.table.gy-md-0 th{padding-top:0;padding-bottom:0}.table.gx-md-0 td,.table.gx-md-0 th{padding-left:0;padding-right:0}.table.gx-md-0 td.dtr-control,.table.gx-md-0 th.dtr-control{padding-left:0!important}.table.gs-md-0 td:first-child,.table.gs-md-0 th:first-child{padding-left:0}.table.gs-md-0 td:last-child,.table.gs-md-0 th:last-child{padding-right:0}.table.gs-md-0 td.dtr-control:first-child,.table.gs-md-0 th.dtr-control:first-child{padding-left:0!important}.table.g-md-1 td,.table.g-md-1 th{padding:.25rem}.table.g-md-1 td.dtr-control,.table.g-md-1 th.dtr-control{padding-left:.25rem!important}.table.gy-md-1 td,.table.gy-md-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-md-1 td,.table.gx-md-1 th{padding-left:.25rem;padding-right:.25rem}.table.gx-md-1 td.dtr-control,.table.gx-md-1 th.dtr-control{padding-left:.25rem!important}.table.gs-md-1 td:first-child,.table.gs-md-1 th:first-child{padding-left:.25rem}.table.gs-md-1 td:last-child,.table.gs-md-1 th:last-child{padding-right:.25rem}.table.gs-md-1 td.dtr-control:first-child,.table.gs-md-1 th.dtr-control:first-child{padding-left:.25rem!important}.table.g-md-2 td,.table.g-md-2 th{padding:.5rem}.table.g-md-2 td.dtr-control,.table.g-md-2 th.dtr-control{padding-left:.5rem!important}.table.gy-md-2 td,.table.gy-md-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-md-2 td,.table.gx-md-2 th{padding-left:.5rem;padding-right:.5rem}.table.gx-md-2 td.dtr-control,.table.gx-md-2 th.dtr-control{padding-left:.5rem!important}.table.gs-md-2 td:first-child,.table.gs-md-2 th:first-child{padding-left:.5rem}.table.gs-md-2 td:last-child,.table.gs-md-2 th:last-child{padding-right:.5rem}.table.gs-md-2 td.dtr-control:first-child,.table.gs-md-2 th.dtr-control:first-child{padding-left:.5rem!important}.table.g-md-3 td,.table.g-md-3 th{padding:.75rem}.table.g-md-3 td.dtr-control,.table.g-md-3 th.dtr-control{padding-left:.75rem!important}.table.gy-md-3 td,.table.gy-md-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-md-3 td,.table.gx-md-3 th{padding-left:.75rem;padding-right:.75rem}.table.gx-md-3 td.dtr-control,.table.gx-md-3 th.dtr-control{padding-left:.75rem!important}.table.gs-md-3 td:first-child,.table.gs-md-3 th:first-child{padding-left:.75rem}.table.gs-md-3 td:last-child,.table.gs-md-3 th:last-child{padding-right:.75rem}.table.gs-md-3 td.dtr-control:first-child,.table.gs-md-3 th.dtr-control:first-child{padding-left:.75rem!important}.table.g-md-4 td,.table.g-md-4 th{padding:1rem}.table.g-md-4 td.dtr-control,.table.g-md-4 th.dtr-control{padding-left:1rem!important}.table.gy-md-4 td,.table.gy-md-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-md-4 td,.table.gx-md-4 th{padding-left:1rem;padding-right:1rem}.table.gx-md-4 td.dtr-control,.table.gx-md-4 th.dtr-control{padding-left:1rem!important}.table.gs-md-4 td:first-child,.table.gs-md-4 th:first-child{padding-left:1rem}.table.gs-md-4 td:last-child,.table.gs-md-4 th:last-child{padding-right:1rem}.table.gs-md-4 td.dtr-control:first-child,.table.gs-md-4 th.dtr-control:first-child{padding-left:1rem!important}.table.g-md-5 td,.table.g-md-5 th{padding:1.25rem}.table.g-md-5 td.dtr-control,.table.g-md-5 th.dtr-control{padding-left:1.25rem!important}.table.gy-md-5 td,.table.gy-md-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-md-5 td,.table.gx-md-5 th{padding-left:1.25rem;padding-right:1.25rem}.table.gx-md-5 td.dtr-control,.table.gx-md-5 th.dtr-control{padding-left:1.25rem!important}.table.gs-md-5 td:first-child,.table.gs-md-5 th:first-child{padding-left:1.25rem}.table.gs-md-5 td:last-child,.table.gs-md-5 th:last-child{padding-right:1.25rem}.table.gs-md-5 td.dtr-control:first-child,.table.gs-md-5 th.dtr-control:first-child{padding-left:1.25rem!important}.table.g-md-6 td,.table.g-md-6 th{padding:1.5rem}.table.g-md-6 td.dtr-control,.table.g-md-6 th.dtr-control{padding-left:1.5rem!important}.table.gy-md-6 td,.table.gy-md-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-md-6 td,.table.gx-md-6 th{padding-left:1.5rem;padding-right:1.5rem}.table.gx-md-6 td.dtr-control,.table.gx-md-6 th.dtr-control{padding-left:1.5rem!important}.table.gs-md-6 td:first-child,.table.gs-md-6 th:first-child{padding-left:1.5rem}.table.gs-md-6 td:last-child,.table.gs-md-6 th:last-child{padding-right:1.5rem}.table.gs-md-6 td.dtr-control:first-child,.table.gs-md-6 th.dtr-control:first-child{padding-left:1.5rem!important}.table.g-md-7 td,.table.g-md-7 th{padding:1.75rem}.table.g-md-7 td.dtr-control,.table.g-md-7 th.dtr-control{padding-left:1.75rem!important}.table.gy-md-7 td,.table.gy-md-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-md-7 td,.table.gx-md-7 th{padding-left:1.75rem;padding-right:1.75rem}.table.gx-md-7 td.dtr-control,.table.gx-md-7 th.dtr-control{padding-left:1.75rem!important}.table.gs-md-7 td:first-child,.table.gs-md-7 th:first-child{padding-left:1.75rem}.table.gs-md-7 td:last-child,.table.gs-md-7 th:last-child{padding-right:1.75rem}.table.gs-md-7 td.dtr-control:first-child,.table.gs-md-7 th.dtr-control:first-child{padding-left:1.75rem!important}.table.g-md-8 td,.table.g-md-8 th{padding:2rem}.table.g-md-8 td.dtr-control,.table.g-md-8 th.dtr-control{padding-left:2rem!important}.table.gy-md-8 td,.table.gy-md-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-md-8 td,.table.gx-md-8 th{padding-left:2rem;padding-right:2rem}.table.gx-md-8 td.dtr-control,.table.gx-md-8 th.dtr-control{padding-left:2rem!important}.table.gs-md-8 td:first-child,.table.gs-md-8 th:first-child{padding-left:2rem}.table.gs-md-8 td:last-child,.table.gs-md-8 th:last-child{padding-right:2rem}.table.gs-md-8 td.dtr-control:first-child,.table.gs-md-8 th.dtr-control:first-child{padding-left:2rem!important}.table.g-md-9 td,.table.g-md-9 th{padding:2.25rem}.table.g-md-9 td.dtr-control,.table.g-md-9 th.dtr-control{padding-left:2.25rem!important}.table.gy-md-9 td,.table.gy-md-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-md-9 td,.table.gx-md-9 th{padding-left:2.25rem;padding-right:2.25rem}.table.gx-md-9 td.dtr-control,.table.gx-md-9 th.dtr-control{padding-left:2.25rem!important}.table.gs-md-9 td:first-child,.table.gs-md-9 th:first-child{padding-left:2.25rem}.table.gs-md-9 td:last-child,.table.gs-md-9 th:last-child{padding-right:2.25rem}.table.gs-md-9 td.dtr-control:first-child,.table.gs-md-9 th.dtr-control:first-child{padding-left:2.25rem!important}.table.g-md-10 td,.table.g-md-10 th{padding:2.5rem}.table.g-md-10 td.dtr-control,.table.g-md-10 th.dtr-control{padding-left:2.5rem!important}.table.gy-md-10 td,.table.gy-md-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-md-10 td,.table.gx-md-10 th{padding-left:2.5rem;padding-right:2.5rem}.table.gx-md-10 td.dtr-control,.table.gx-md-10 th.dtr-control{padding-left:2.5rem!important}.table.gs-md-10 td:first-child,.table.gs-md-10 th:first-child{padding-left:2.5rem}.table.gs-md-10 td:last-child,.table.gs-md-10 th:last-child{padding-right:2.5rem}.table.gs-md-10 td.dtr-control:first-child,.table.gs-md-10 th.dtr-control:first-child{padding-left:2.5rem!important}}@media (min-width:992px){.table.g-lg-0 td,.table.g-lg-0 th{padding:0}.table.g-lg-0 td.dtr-control,.table.g-lg-0 th.dtr-control{padding-left:0!important}.table.gy-lg-0 td,.table.gy-lg-0 th{padding-top:0;padding-bottom:0}.table.gx-lg-0 td,.table.gx-lg-0 th{padding-left:0;padding-right:0}.table.gx-lg-0 td.dtr-control,.table.gx-lg-0 th.dtr-control{padding-left:0!important}.table.gs-lg-0 td:first-child,.table.gs-lg-0 th:first-child{padding-left:0}.table.gs-lg-0 td:last-child,.table.gs-lg-0 th:last-child{padding-right:0}.table.gs-lg-0 td.dtr-control:first-child,.table.gs-lg-0 th.dtr-control:first-child{padding-left:0!important}.table.g-lg-1 td,.table.g-lg-1 th{padding:.25rem}.table.g-lg-1 td.dtr-control,.table.g-lg-1 th.dtr-control{padding-left:.25rem!important}.table.gy-lg-1 td,.table.gy-lg-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-lg-1 td,.table.gx-lg-1 th{padding-left:.25rem;padding-right:.25rem}.table.gx-lg-1 td.dtr-control,.table.gx-lg-1 th.dtr-control{padding-left:.25rem!important}.table.gs-lg-1 td:first-child,.table.gs-lg-1 th:first-child{padding-left:.25rem}.table.gs-lg-1 td:last-child,.table.gs-lg-1 th:last-child{padding-right:.25rem}.table.gs-lg-1 td.dtr-control:first-child,.table.gs-lg-1 th.dtr-control:first-child{padding-left:.25rem!important}.table.g-lg-2 td,.table.g-lg-2 th{padding:.5rem}.table.g-lg-2 td.dtr-control,.table.g-lg-2 th.dtr-control{padding-left:.5rem!important}.table.gy-lg-2 td,.table.gy-lg-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-lg-2 td,.table.gx-lg-2 th{padding-left:.5rem;padding-right:.5rem}.table.gx-lg-2 td.dtr-control,.table.gx-lg-2 th.dtr-control{padding-left:.5rem!important}.table.gs-lg-2 td:first-child,.table.gs-lg-2 th:first-child{padding-left:.5rem}.table.gs-lg-2 td:last-child,.table.gs-lg-2 th:last-child{padding-right:.5rem}.table.gs-lg-2 td.dtr-control:first-child,.table.gs-lg-2 th.dtr-control:first-child{padding-left:.5rem!important}.table.g-lg-3 td,.table.g-lg-3 th{padding:.75rem}.table.g-lg-3 td.dtr-control,.table.g-lg-3 th.dtr-control{padding-left:.75rem!important}.table.gy-lg-3 td,.table.gy-lg-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-lg-3 td,.table.gx-lg-3 th{padding-left:.75rem;padding-right:.75rem}.table.gx-lg-3 td.dtr-control,.table.gx-lg-3 th.dtr-control{padding-left:.75rem!important}.table.gs-lg-3 td:first-child,.table.gs-lg-3 th:first-child{padding-left:.75rem}.table.gs-lg-3 td:last-child,.table.gs-lg-3 th:last-child{padding-right:.75rem}.table.gs-lg-3 td.dtr-control:first-child,.table.gs-lg-3 th.dtr-control:first-child{padding-left:.75rem!important}.table.g-lg-4 td,.table.g-lg-4 th{padding:1rem}.table.g-lg-4 td.dtr-control,.table.g-lg-4 th.dtr-control{padding-left:1rem!important}.table.gy-lg-4 td,.table.gy-lg-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-lg-4 td,.table.gx-lg-4 th{padding-left:1rem;padding-right:1rem}.table.gx-lg-4 td.dtr-control,.table.gx-lg-4 th.dtr-control{padding-left:1rem!important}.table.gs-lg-4 td:first-child,.table.gs-lg-4 th:first-child{padding-left:1rem}.table.gs-lg-4 td:last-child,.table.gs-lg-4 th:last-child{padding-right:1rem}.table.gs-lg-4 td.dtr-control:first-child,.table.gs-lg-4 th.dtr-control:first-child{padding-left:1rem!important}.table.g-lg-5 td,.table.g-lg-5 th{padding:1.25rem}.table.g-lg-5 td.dtr-control,.table.g-lg-5 th.dtr-control{padding-left:1.25rem!important}.table.gy-lg-5 td,.table.gy-lg-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-lg-5 td,.table.gx-lg-5 th{padding-left:1.25rem;padding-right:1.25rem}.table.gx-lg-5 td.dtr-control,.table.gx-lg-5 th.dtr-control{padding-left:1.25rem!important}.table.gs-lg-5 td:first-child,.table.gs-lg-5 th:first-child{padding-left:1.25rem}.table.gs-lg-5 td:last-child,.table.gs-lg-5 th:last-child{padding-right:1.25rem}.table.gs-lg-5 td.dtr-control:first-child,.table.gs-lg-5 th.dtr-control:first-child{padding-left:1.25rem!important}.table.g-lg-6 td,.table.g-lg-6 th{padding:1.5rem}.table.g-lg-6 td.dtr-control,.table.g-lg-6 th.dtr-control{padding-left:1.5rem!important}.table.gy-lg-6 td,.table.gy-lg-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-lg-6 td,.table.gx-lg-6 th{padding-left:1.5rem;padding-right:1.5rem}.table.gx-lg-6 td.dtr-control,.table.gx-lg-6 th.dtr-control{padding-left:1.5rem!important}.table.gs-lg-6 td:first-child,.table.gs-lg-6 th:first-child{padding-left:1.5rem}.table.gs-lg-6 td:last-child,.table.gs-lg-6 th:last-child{padding-right:1.5rem}.table.gs-lg-6 td.dtr-control:first-child,.table.gs-lg-6 th.dtr-control:first-child{padding-left:1.5rem!important}.table.g-lg-7 td,.table.g-lg-7 th{padding:1.75rem}.table.g-lg-7 td.dtr-control,.table.g-lg-7 th.dtr-control{padding-left:1.75rem!important}.table.gy-lg-7 td,.table.gy-lg-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-lg-7 td,.table.gx-lg-7 th{padding-left:1.75rem;padding-right:1.75rem}.table.gx-lg-7 td.dtr-control,.table.gx-lg-7 th.dtr-control{padding-left:1.75rem!important}.table.gs-lg-7 td:first-child,.table.gs-lg-7 th:first-child{padding-left:1.75rem}.table.gs-lg-7 td:last-child,.table.gs-lg-7 th:last-child{padding-right:1.75rem}.table.gs-lg-7 td.dtr-control:first-child,.table.gs-lg-7 th.dtr-control:first-child{padding-left:1.75rem!important}.table.g-lg-8 td,.table.g-lg-8 th{padding:2rem}.table.g-lg-8 td.dtr-control,.table.g-lg-8 th.dtr-control{padding-left:2rem!important}.table.gy-lg-8 td,.table.gy-lg-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-lg-8 td,.table.gx-lg-8 th{padding-left:2rem;padding-right:2rem}.table.gx-lg-8 td.dtr-control,.table.gx-lg-8 th.dtr-control{padding-left:2rem!important}.table.gs-lg-8 td:first-child,.table.gs-lg-8 th:first-child{padding-left:2rem}.table.gs-lg-8 td:last-child,.table.gs-lg-8 th:last-child{padding-right:2rem}.table.gs-lg-8 td.dtr-control:first-child,.table.gs-lg-8 th.dtr-control:first-child{padding-left:2rem!important}.table.g-lg-9 td,.table.g-lg-9 th{padding:2.25rem}.table.g-lg-9 td.dtr-control,.table.g-lg-9 th.dtr-control{padding-left:2.25rem!important}.table.gy-lg-9 td,.table.gy-lg-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-lg-9 td,.table.gx-lg-9 th{padding-left:2.25rem;padding-right:2.25rem}.table.gx-lg-9 td.dtr-control,.table.gx-lg-9 th.dtr-control{padding-left:2.25rem!important}.table.gs-lg-9 td:first-child,.table.gs-lg-9 th:first-child{padding-left:2.25rem}.table.gs-lg-9 td:last-child,.table.gs-lg-9 th:last-child{padding-right:2.25rem}.table.gs-lg-9 td.dtr-control:first-child,.table.gs-lg-9 th.dtr-control:first-child{padding-left:2.25rem!important}.table.g-lg-10 td,.table.g-lg-10 th{padding:2.5rem}.table.g-lg-10 td.dtr-control,.table.g-lg-10 th.dtr-control{padding-left:2.5rem!important}.table.gy-lg-10 td,.table.gy-lg-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-lg-10 td,.table.gx-lg-10 th{padding-left:2.5rem;padding-right:2.5rem}.table.gx-lg-10 td.dtr-control,.table.gx-lg-10 th.dtr-control{padding-left:2.5rem!important}.table.gs-lg-10 td:first-child,.table.gs-lg-10 th:first-child{padding-left:2.5rem}.table.gs-lg-10 td:last-child,.table.gs-lg-10 th:last-child{padding-right:2.5rem}.table.gs-lg-10 td.dtr-control:first-child,.table.gs-lg-10 th.dtr-control:first-child{padding-left:2.5rem!important}}@media (min-width:1200px){.table.g-xl-0 td,.table.g-xl-0 th{padding:0}.table.g-xl-0 td.dtr-control,.table.g-xl-0 th.dtr-control{padding-left:0!important}.table.gy-xl-0 td,.table.gy-xl-0 th{padding-top:0;padding-bottom:0}.table.gx-xl-0 td,.table.gx-xl-0 th{padding-left:0;padding-right:0}.table.gx-xl-0 td.dtr-control,.table.gx-xl-0 th.dtr-control{padding-left:0!important}.table.gs-xl-0 td:first-child,.table.gs-xl-0 th:first-child{padding-left:0}.table.gs-xl-0 td:last-child,.table.gs-xl-0 th:last-child{padding-right:0}.table.gs-xl-0 td.dtr-control:first-child,.table.gs-xl-0 th.dtr-control:first-child{padding-left:0!important}.table.g-xl-1 td,.table.g-xl-1 th{padding:.25rem}.table.g-xl-1 td.dtr-control,.table.g-xl-1 th.dtr-control{padding-left:.25rem!important}.table.gy-xl-1 td,.table.gy-xl-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-xl-1 td,.table.gx-xl-1 th{padding-left:.25rem;padding-right:.25rem}.table.gx-xl-1 td.dtr-control,.table.gx-xl-1 th.dtr-control{padding-left:.25rem!important}.table.gs-xl-1 td:first-child,.table.gs-xl-1 th:first-child{padding-left:.25rem}.table.gs-xl-1 td:last-child,.table.gs-xl-1 th:last-child{padding-right:.25rem}.table.gs-xl-1 td.dtr-control:first-child,.table.gs-xl-1 th.dtr-control:first-child{padding-left:.25rem!important}.table.g-xl-2 td,.table.g-xl-2 th{padding:.5rem}.table.g-xl-2 td.dtr-control,.table.g-xl-2 th.dtr-control{padding-left:.5rem!important}.table.gy-xl-2 td,.table.gy-xl-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-xl-2 td,.table.gx-xl-2 th{padding-left:.5rem;padding-right:.5rem}.table.gx-xl-2 td.dtr-control,.table.gx-xl-2 th.dtr-control{padding-left:.5rem!important}.table.gs-xl-2 td:first-child,.table.gs-xl-2 th:first-child{padding-left:.5rem}.table.gs-xl-2 td:last-child,.table.gs-xl-2 th:last-child{padding-right:.5rem}.table.gs-xl-2 td.dtr-control:first-child,.table.gs-xl-2 th.dtr-control:first-child{padding-left:.5rem!important}.table.g-xl-3 td,.table.g-xl-3 th{padding:.75rem}.table.g-xl-3 td.dtr-control,.table.g-xl-3 th.dtr-control{padding-left:.75rem!important}.table.gy-xl-3 td,.table.gy-xl-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-xl-3 td,.table.gx-xl-3 th{padding-left:.75rem;padding-right:.75rem}.table.gx-xl-3 td.dtr-control,.table.gx-xl-3 th.dtr-control{padding-left:.75rem!important}.table.gs-xl-3 td:first-child,.table.gs-xl-3 th:first-child{padding-left:.75rem}.table.gs-xl-3 td:last-child,.table.gs-xl-3 th:last-child{padding-right:.75rem}.table.gs-xl-3 td.dtr-control:first-child,.table.gs-xl-3 th.dtr-control:first-child{padding-left:.75rem!important}.table.g-xl-4 td,.table.g-xl-4 th{padding:1rem}.table.g-xl-4 td.dtr-control,.table.g-xl-4 th.dtr-control{padding-left:1rem!important}.table.gy-xl-4 td,.table.gy-xl-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-xl-4 td,.table.gx-xl-4 th{padding-left:1rem;padding-right:1rem}.table.gx-xl-4 td.dtr-control,.table.gx-xl-4 th.dtr-control{padding-left:1rem!important}.table.gs-xl-4 td:first-child,.table.gs-xl-4 th:first-child{padding-left:1rem}.table.gs-xl-4 td:last-child,.table.gs-xl-4 th:last-child{padding-right:1rem}.table.gs-xl-4 td.dtr-control:first-child,.table.gs-xl-4 th.dtr-control:first-child{padding-left:1rem!important}.table.g-xl-5 td,.table.g-xl-5 th{padding:1.25rem}.table.g-xl-5 td.dtr-control,.table.g-xl-5 th.dtr-control{padding-left:1.25rem!important}.table.gy-xl-5 td,.table.gy-xl-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-xl-5 td,.table.gx-xl-5 th{padding-left:1.25rem;padding-right:1.25rem}.table.gx-xl-5 td.dtr-control,.table.gx-xl-5 th.dtr-control{padding-left:1.25rem!important}.table.gs-xl-5 td:first-child,.table.gs-xl-5 th:first-child{padding-left:1.25rem}.table.gs-xl-5 td:last-child,.table.gs-xl-5 th:last-child{padding-right:1.25rem}.table.gs-xl-5 td.dtr-control:first-child,.table.gs-xl-5 th.dtr-control:first-child{padding-left:1.25rem!important}.table.g-xl-6 td,.table.g-xl-6 th{padding:1.5rem}.table.g-xl-6 td.dtr-control,.table.g-xl-6 th.dtr-control{padding-left:1.5rem!important}.table.gy-xl-6 td,.table.gy-xl-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-xl-6 td,.table.gx-xl-6 th{padding-left:1.5rem;padding-right:1.5rem}.table.gx-xl-6 td.dtr-control,.table.gx-xl-6 th.dtr-control{padding-left:1.5rem!important}.table.gs-xl-6 td:first-child,.table.gs-xl-6 th:first-child{padding-left:1.5rem}.table.gs-xl-6 td:last-child,.table.gs-xl-6 th:last-child{padding-right:1.5rem}.table.gs-xl-6 td.dtr-control:first-child,.table.gs-xl-6 th.dtr-control:first-child{padding-left:1.5rem!important}.table.g-xl-7 td,.table.g-xl-7 th{padding:1.75rem}.table.g-xl-7 td.dtr-control,.table.g-xl-7 th.dtr-control{padding-left:1.75rem!important}.table.gy-xl-7 td,.table.gy-xl-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-xl-7 td,.table.gx-xl-7 th{padding-left:1.75rem;padding-right:1.75rem}.table.gx-xl-7 td.dtr-control,.table.gx-xl-7 th.dtr-control{padding-left:1.75rem!important}.table.gs-xl-7 td:first-child,.table.gs-xl-7 th:first-child{padding-left:1.75rem}.table.gs-xl-7 td:last-child,.table.gs-xl-7 th:last-child{padding-right:1.75rem}.table.gs-xl-7 td.dtr-control:first-child,.table.gs-xl-7 th.dtr-control:first-child{padding-left:1.75rem!important}.table.g-xl-8 td,.table.g-xl-8 th{padding:2rem}.table.g-xl-8 td.dtr-control,.table.g-xl-8 th.dtr-control{padding-left:2rem!important}.table.gy-xl-8 td,.table.gy-xl-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-xl-8 td,.table.gx-xl-8 th{padding-left:2rem;padding-right:2rem}.table.gx-xl-8 td.dtr-control,.table.gx-xl-8 th.dtr-control{padding-left:2rem!important}.table.gs-xl-8 td:first-child,.table.gs-xl-8 th:first-child{padding-left:2rem}.table.gs-xl-8 td:last-child,.table.gs-xl-8 th:last-child{padding-right:2rem}.table.gs-xl-8 td.dtr-control:first-child,.table.gs-xl-8 th.dtr-control:first-child{padding-left:2rem!important}.table.g-xl-9 td,.table.g-xl-9 th{padding:2.25rem}.table.g-xl-9 td.dtr-control,.table.g-xl-9 th.dtr-control{padding-left:2.25rem!important}.table.gy-xl-9 td,.table.gy-xl-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-xl-9 td,.table.gx-xl-9 th{padding-left:2.25rem;padding-right:2.25rem}.table.gx-xl-9 td.dtr-control,.table.gx-xl-9 th.dtr-control{padding-left:2.25rem!important}.table.gs-xl-9 td:first-child,.table.gs-xl-9 th:first-child{padding-left:2.25rem}.table.gs-xl-9 td:last-child,.table.gs-xl-9 th:last-child{padding-right:2.25rem}.table.gs-xl-9 td.dtr-control:first-child,.table.gs-xl-9 th.dtr-control:first-child{padding-left:2.25rem!important}.table.g-xl-10 td,.table.g-xl-10 th{padding:2.5rem}.table.g-xl-10 td.dtr-control,.table.g-xl-10 th.dtr-control{padding-left:2.5rem!important}.table.gy-xl-10 td,.table.gy-xl-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-xl-10 td,.table.gx-xl-10 th{padding-left:2.5rem;padding-right:2.5rem}.table.gx-xl-10 td.dtr-control,.table.gx-xl-10 th.dtr-control{padding-left:2.5rem!important}.table.gs-xl-10 td:first-child,.table.gs-xl-10 th:first-child{padding-left:2.5rem}.table.gs-xl-10 td:last-child,.table.gs-xl-10 th:last-child{padding-right:2.5rem}.table.gs-xl-10 td.dtr-control:first-child,.table.gs-xl-10 th.dtr-control:first-child{padding-left:2.5rem!important}}@media (min-width:1400px){.table.g-xxl-0 td,.table.g-xxl-0 th{padding:0}.table.g-xxl-0 td.dtr-control,.table.g-xxl-0 th.dtr-control{padding-left:0!important}.table.gy-xxl-0 td,.table.gy-xxl-0 th{padding-top:0;padding-bottom:0}.table.gx-xxl-0 td,.table.gx-xxl-0 th{padding-left:0;padding-right:0}.table.gx-xxl-0 td.dtr-control,.table.gx-xxl-0 th.dtr-control{padding-left:0!important}.table.gs-xxl-0 td:first-child,.table.gs-xxl-0 th:first-child{padding-left:0}.table.gs-xxl-0 td:last-child,.table.gs-xxl-0 th:last-child{padding-right:0}.table.gs-xxl-0 td.dtr-control:first-child,.table.gs-xxl-0 th.dtr-control:first-child{padding-left:0!important}.table.g-xxl-1 td,.table.g-xxl-1 th{padding:.25rem}.table.g-xxl-1 td.dtr-control,.table.g-xxl-1 th.dtr-control{padding-left:.25rem!important}.table.gy-xxl-1 td,.table.gy-xxl-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-xxl-1 td,.table.gx-xxl-1 th{padding-left:.25rem;padding-right:.25rem}.table.gx-xxl-1 td.dtr-control,.table.gx-xxl-1 th.dtr-control{padding-left:.25rem!important}.table.gs-xxl-1 td:first-child,.table.gs-xxl-1 th:first-child{padding-left:.25rem}.table.gs-xxl-1 td:last-child,.table.gs-xxl-1 th:last-child{padding-right:.25rem}.table.gs-xxl-1 td.dtr-control:first-child,.table.gs-xxl-1 th.dtr-control:first-child{padding-left:.25rem!important}.table.g-xxl-2 td,.table.g-xxl-2 th{padding:.5rem}.table.g-xxl-2 td.dtr-control,.table.g-xxl-2 th.dtr-control{padding-left:.5rem!important}.table.gy-xxl-2 td,.table.gy-xxl-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-xxl-2 td,.table.gx-xxl-2 th{padding-left:.5rem;padding-right:.5rem}.table.gx-xxl-2 td.dtr-control,.table.gx-xxl-2 th.dtr-control{padding-left:.5rem!important}.table.gs-xxl-2 td:first-child,.table.gs-xxl-2 th:first-child{padding-left:.5rem}.table.gs-xxl-2 td:last-child,.table.gs-xxl-2 th:last-child{padding-right:.5rem}.table.gs-xxl-2 td.dtr-control:first-child,.table.gs-xxl-2 th.dtr-control:first-child{padding-left:.5rem!important}.table.g-xxl-3 td,.table.g-xxl-3 th{padding:.75rem}.table.g-xxl-3 td.dtr-control,.table.g-xxl-3 th.dtr-control{padding-left:.75rem!important}.table.gy-xxl-3 td,.table.gy-xxl-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-xxl-3 td,.table.gx-xxl-3 th{padding-left:.75rem;padding-right:.75rem}.table.gx-xxl-3 td.dtr-control,.table.gx-xxl-3 th.dtr-control{padding-left:.75rem!important}.table.gs-xxl-3 td:first-child,.table.gs-xxl-3 th:first-child{padding-left:.75rem}.table.gs-xxl-3 td:last-child,.table.gs-xxl-3 th:last-child{padding-right:.75rem}.table.gs-xxl-3 td.dtr-control:first-child,.table.gs-xxl-3 th.dtr-control:first-child{padding-left:.75rem!important}.table.g-xxl-4 td,.table.g-xxl-4 th{padding:1rem}.table.g-xxl-4 td.dtr-control,.table.g-xxl-4 th.dtr-control{padding-left:1rem!important}.table.gy-xxl-4 td,.table.gy-xxl-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-xxl-4 td,.table.gx-xxl-4 th{padding-left:1rem;padding-right:1rem}.table.gx-xxl-4 td.dtr-control,.table.gx-xxl-4 th.dtr-control{padding-left:1rem!important}.table.gs-xxl-4 td:first-child,.table.gs-xxl-4 th:first-child{padding-left:1rem}.table.gs-xxl-4 td:last-child,.table.gs-xxl-4 th:last-child{padding-right:1rem}.table.gs-xxl-4 td.dtr-control:first-child,.table.gs-xxl-4 th.dtr-control:first-child{padding-left:1rem!important}.table.g-xxl-5 td,.table.g-xxl-5 th{padding:1.25rem}.table.g-xxl-5 td.dtr-control,.table.g-xxl-5 th.dtr-control{padding-left:1.25rem!important}.table.gy-xxl-5 td,.table.gy-xxl-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-xxl-5 td,.table.gx-xxl-5 th{padding-left:1.25rem;padding-right:1.25rem}.table.gx-xxl-5 td.dtr-control,.table.gx-xxl-5 th.dtr-control{padding-left:1.25rem!important}.table.gs-xxl-5 td:first-child,.table.gs-xxl-5 th:first-child{padding-left:1.25rem}.table.gs-xxl-5 td:last-child,.table.gs-xxl-5 th:last-child{padding-right:1.25rem}.table.gs-xxl-5 td.dtr-control:first-child,.table.gs-xxl-5 th.dtr-control:first-child{padding-left:1.25rem!important}.table.g-xxl-6 td,.table.g-xxl-6 th{padding:1.5rem}.table.g-xxl-6 td.dtr-control,.table.g-xxl-6 th.dtr-control{padding-left:1.5rem!important}.table.gy-xxl-6 td,.table.gy-xxl-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-xxl-6 td,.table.gx-xxl-6 th{padding-left:1.5rem;padding-right:1.5rem}.table.gx-xxl-6 td.dtr-control,.table.gx-xxl-6 th.dtr-control{padding-left:1.5rem!important}.table.gs-xxl-6 td:first-child,.table.gs-xxl-6 th:first-child{padding-left:1.5rem}.table.gs-xxl-6 td:last-child,.table.gs-xxl-6 th:last-child{padding-right:1.5rem}.table.gs-xxl-6 td.dtr-control:first-child,.table.gs-xxl-6 th.dtr-control:first-child{padding-left:1.5rem!important}.table.g-xxl-7 td,.table.g-xxl-7 th{padding:1.75rem}.table.g-xxl-7 td.dtr-control,.table.g-xxl-7 th.dtr-control{padding-left:1.75rem!important}.table.gy-xxl-7 td,.table.gy-xxl-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-xxl-7 td,.table.gx-xxl-7 th{padding-left:1.75rem;padding-right:1.75rem}.table.gx-xxl-7 td.dtr-control,.table.gx-xxl-7 th.dtr-control{padding-left:1.75rem!important}.table.gs-xxl-7 td:first-child,.table.gs-xxl-7 th:first-child{padding-left:1.75rem}.table.gs-xxl-7 td:last-child,.table.gs-xxl-7 th:last-child{padding-right:1.75rem}.table.gs-xxl-7 td.dtr-control:first-child,.table.gs-xxl-7 th.dtr-control:first-child{padding-left:1.75rem!important}.table.g-xxl-8 td,.table.g-xxl-8 th{padding:2rem}.table.g-xxl-8 td.dtr-control,.table.g-xxl-8 th.dtr-control{padding-left:2rem!important}.table.gy-xxl-8 td,.table.gy-xxl-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-xxl-8 td,.table.gx-xxl-8 th{padding-left:2rem;padding-right:2rem}.table.gx-xxl-8 td.dtr-control,.table.gx-xxl-8 th.dtr-control{padding-left:2rem!important}.table.gs-xxl-8 td:first-child,.table.gs-xxl-8 th:first-child{padding-left:2rem}.table.gs-xxl-8 td:last-child,.table.gs-xxl-8 th:last-child{padding-right:2rem}.table.gs-xxl-8 td.dtr-control:first-child,.table.gs-xxl-8 th.dtr-control:first-child{padding-left:2rem!important}.table.g-xxl-9 td,.table.g-xxl-9 th{padding:2.25rem}.table.g-xxl-9 td.dtr-control,.table.g-xxl-9 th.dtr-control{padding-left:2.25rem!important}.table.gy-xxl-9 td,.table.gy-xxl-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-xxl-9 td,.table.gx-xxl-9 th{padding-left:2.25rem;padding-right:2.25rem}.table.gx-xxl-9 td.dtr-control,.table.gx-xxl-9 th.dtr-control{padding-left:2.25rem!important}.table.gs-xxl-9 td:first-child,.table.gs-xxl-9 th:first-child{padding-left:2.25rem}.table.gs-xxl-9 td:last-child,.table.gs-xxl-9 th:last-child{padding-right:2.25rem}.table.gs-xxl-9 td.dtr-control:first-child,.table.gs-xxl-9 th.dtr-control:first-child{padding-left:2.25rem!important}.table.g-xxl-10 td,.table.g-xxl-10 th{padding:2.5rem}.table.g-xxl-10 td.dtr-control,.table.g-xxl-10 th.dtr-control{padding-left:2.5rem!important}.table.gy-xxl-10 td,.table.gy-xxl-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-xxl-10 td,.table.gx-xxl-10 th{padding-left:2.5rem;padding-right:2.5rem}.table.gx-xxl-10 td.dtr-control,.table.gx-xxl-10 th.dtr-control{padding-left:2.5rem!important}.table.gs-xxl-10 td:first-child,.table.gs-xxl-10 th:first-child{padding-left:2.5rem}.table.gs-xxl-10 td:last-child,.table.gs-xxl-10 th:last-child{padding-right:2.5rem}.table.gs-xxl-10 td.dtr-control:first-child,.table.gs-xxl-10 th.dtr-control:first-child{padding-left:2.5rem!important}}.popover .popover-header{font-size:1rem;font-weight:500;border-bottom:1px solid #323248}.popover .popover-dismiss{position:absolute;top:.85rem;right:.85rem;height:1.5rem;width:1.5rem;background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23565674'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");background-size:45%}.popover .popover-dismiss:hover{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233699FF'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")}.popover .popover-dismiss+.popover-header{padding-right:2.75rem}.popover-dark{background-color:#fff;border:0}.popover-dark .popover-header{background-color:#fff;color:#2b2b40;border-bottom-color:#cdcdde}.popover-dark .popover-body{color:#474761}.popover-dark.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.popover-dark.bs-popover-top>.popover-arrow::before{border-top-color:#1b1b29}.popover-dark.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.popover-dark.bs-popover-top>.popover-arrow::after{border-top-color:#fff}.popover-dark.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.popover-dark.bs-popover-end>.popover-arrow::before{border-right-color:#1b1b29}.popover-dark.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.popover-dark.bs-popover-end>.popover-arrow::after{border-right-color:#fff}.popover-dark.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.popover-dark.bs-popover-bottom>.popover-arrow::before{border-bottom-color:#1b1b29}.popover-dark.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.popover-dark.bs-popover-bottom>.popover-arrow::after{border-bottom-color:#fff}.popover-dark.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.popover-dark.bs-popover-bottom .popover-header::before{border-bottom-color:#fff}.popover-dark.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.popover-dark.bs-popover-start>.popover-arrow::before{border-left-color:#1b1b29}.popover-dark.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.popover-dark.bs-popover-start>.popover-arrow::after{border-left-color:#fff}.tooltip .tooltip-inner{box-shadow:0 0 30px rgba(0,0,0,.3)}.tooltip.tooltop-auto-width .tooltip-inner{white-space:nowrap;max-width:none}.tooltip.tooltip-dark .tooltip-inner{color:#1b1b29;background-color:#fff}.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.tooltip.tooltip-dark.bs-tooltip-top .tooltip-arrow::before{border-top-color:#fff}.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.tooltip.tooltip-dark.bs-tooltip-end .tooltip-arrow::before{border-right-color:#fff}.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.tooltip.tooltip-dark.bs-tooltip-bottom .tooltip-arrow::before{border-bottom-color:#fff}.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.tooltip.tooltip-dark.bs-tooltip-start .tooltip-arrow::before{border-left-color:#fff}.accordion .accordion-header{cursor:pointer}.accordion.accordion-icon-toggle .accordion-icon{display:flex;flex-shrink:0;transition:all .2s ease;transform:rotate(90deg);align-items:center;justify-content:center}.accordion.accordion-icon-toggle .accordion-icon .svg-icon,.accordion.accordion-icon-toggle .accordion-icon i{color:#3699ff}.accordion.accordion-icon-toggle .collapsed .accordion-icon{transition:all .2s ease;transform:rotate(0)}.accordion.accordion-icon-toggle .collapsed .accordion-icon .svg-icon,.accordion.accordion-icon-toggle .collapsed .accordion-icon i{color:#565674}.accordion.accordion-borderless .accordion-item{border:0}.accordion.accordion-flush .accordion-item{background-color:transparent;border:0;border-radius:0;padding-left:0;padding-right:0}.feedback{display:none}.feedback-popup{display:flex;justify-content:center;margin:0 auto;position:fixed;z-index:1000;box-shadow:0 0 30px rgba(0,0,0,.3);background-color:#1e1e2d;border-radius:.475rem;padding:1rem 1.25rem}.feedback-top-center{display:flex;transition:top .6s ease;left:50%;transform:translateX(-50%);border-top-left-radius:0;border-top-right-radius:0}.feedback-top-center.feedback-shown{top:0;transition:top .6s ease}.image-input{position:relative;display:inline-block;border-radius:.475rem;background-repeat:no-repeat;background-size:cover}.image-input:not(.image-input-empty){background-image:none!important}.image-input .image-input-wrapper{width:120px;height:120px;border-radius:.475rem;background-repeat:no-repeat;background-size:cover}.image-input [data-kt-image-input-action]{cursor:pointer;position:absolute;transform:translate(-50%,-50%)}.image-input [data-kt-image-input-action=change]{left:100%;top:0}.image-input [data-kt-image-input-action=change] input{width:0!important;height:0!important;overflow:hidden;opacity:0}.image-input [data-kt-image-input-action=cancel],.image-input [data-kt-image-input-action=remove]{position:absolute;left:100%;top:100%}.image-input [data-kt-image-input-action=cancel]{display:none}.image-input.image-input-changed [data-kt-image-input-action=cancel]{display:flex}.image-input.image-input-changed [data-kt-image-input-action=remove]{display:none}.image-input.image-input-empty [data-kt-image-input-action=cancel],.image-input.image-input-empty [data-kt-image-input-action=remove]{display:none}.image-input.image-input-circle{border-radius:50%}.image-input.image-input-circle .image-input-wrapper{border-radius:50%}.image-input.image-input-circle [data-kt-image-input-action=change]{left:100%;top:0;transform:translate(-100%,0)}.image-input.image-input-circle [data-kt-image-input-action=cancel],.image-input.image-input-circle [data-kt-image-input-action=remove]{left:100%;top:100%;transform:translate(-100%,-100%)}.image-input.image-input-outline .image-input-wrapper{border:3px solid #1e1e2d;box-shadow:0 .5rem 1.5rem .5rem rgba(0,0,0,.075)}.symbol{display:inline-block;flex-shrink:0;position:relative;border-radius:.475rem}.symbol .symbol-label{display:flex;align-items:center;justify-content:center;font-weight:500;color:#cdcdde;background-color:#1b1b29;background-repeat:no-repeat;background-position:center center;background-size:cover;border-radius:.475rem}.symbol .symbol-badge{position:absolute;border:2px solid #1e1e2d;border-radius:100%;top:0;left:50%;transform:translateX(-50%) translateY(-50%)!important}.symbol>img{width:100%;flex-shrink:0;display:inline-block;border-radius:.475rem}.symbol.symbol-square,.symbol.symbol-square .symbol-label,.symbol.symbol-square>img{border-radius:0!important}.symbol.symbol-circle,.symbol.symbol-circle .symbol-label,.symbol.symbol-circle>img{border-radius:50%}.symbol>img{width:50px;height:50px}.symbol .symbol-label{width:50px;height:50px}.symbol.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-20px>img{width:20px;height:20px}.symbol.symbol-20px .symbol-label{width:20px;height:20px}.symbol.symbol-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-25px>img{width:25px;height:25px}.symbol.symbol-25px .symbol-label{width:25px;height:25px}.symbol.symbol-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-30px>img{width:30px;height:30px}.symbol.symbol-30px .symbol-label{width:30px;height:30px}.symbol.symbol-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-35px>img{width:35px;height:35px}.symbol.symbol-35px .symbol-label{width:35px;height:35px}.symbol.symbol-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-40px>img{width:40px;height:40px}.symbol.symbol-40px .symbol-label{width:40px;height:40px}.symbol.symbol-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-45px>img{width:45px;height:45px}.symbol.symbol-45px .symbol-label{width:45px;height:45px}.symbol.symbol-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-50px>img{width:50px;height:50px}.symbol.symbol-50px .symbol-label{width:50px;height:50px}.symbol.symbol-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-55px>img{width:55px;height:55px}.symbol.symbol-55px .symbol-label{width:55px;height:55px}.symbol.symbol-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-60px>img{width:60px;height:60px}.symbol.symbol-60px .symbol-label{width:60px;height:60px}.symbol.symbol-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-65px>img{width:65px;height:65px}.symbol.symbol-65px .symbol-label{width:65px;height:65px}.symbol.symbol-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-70px>img{width:70px;height:70px}.symbol.symbol-70px .symbol-label{width:70px;height:70px}.symbol.symbol-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-75px>img{width:75px;height:75px}.symbol.symbol-75px .symbol-label{width:75px;height:75px}.symbol.symbol-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-100px>img{width:100px;height:100px}.symbol.symbol-100px .symbol-label{width:100px;height:100px}.symbol.symbol-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-125px>img{width:125px;height:125px}.symbol.symbol-125px .symbol-label{width:125px;height:125px}.symbol.symbol-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-150px>img{width:150px;height:150px}.symbol.symbol-150px .symbol-label{width:150px;height:150px}.symbol.symbol-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-160px>img{width:160px;height:160px}.symbol.symbol-160px .symbol-label{width:160px;height:160px}.symbol.symbol-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-175px>img{width:175px;height:175px}.symbol.symbol-175px .symbol-label{width:175px;height:175px}.symbol.symbol-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-200px>img{width:200px;height:200px}.symbol.symbol-200px .symbol-label{width:200px;height:200px}.symbol.symbol-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}@media (min-width:576px){.symbol.symbol-sm-20px>img{width:20px;height:20px}.symbol.symbol-sm-20px .symbol-label{width:20px;height:20px}.symbol.symbol-sm-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-sm-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-sm-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-sm-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-sm-25px>img{width:25px;height:25px}.symbol.symbol-sm-25px .symbol-label{width:25px;height:25px}.symbol.symbol-sm-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-sm-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-sm-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-sm-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-sm-30px>img{width:30px;height:30px}.symbol.symbol-sm-30px .symbol-label{width:30px;height:30px}.symbol.symbol-sm-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-sm-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-sm-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-sm-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-sm-35px>img{width:35px;height:35px}.symbol.symbol-sm-35px .symbol-label{width:35px;height:35px}.symbol.symbol-sm-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-sm-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-sm-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-sm-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-sm-40px>img{width:40px;height:40px}.symbol.symbol-sm-40px .symbol-label{width:40px;height:40px}.symbol.symbol-sm-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-sm-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-sm-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-sm-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-sm-45px>img{width:45px;height:45px}.symbol.symbol-sm-45px .symbol-label{width:45px;height:45px}.symbol.symbol-sm-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-sm-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-sm-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-sm-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-sm-50px>img{width:50px;height:50px}.symbol.symbol-sm-50px .symbol-label{width:50px;height:50px}.symbol.symbol-sm-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-sm-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-sm-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-sm-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-sm-55px>img{width:55px;height:55px}.symbol.symbol-sm-55px .symbol-label{width:55px;height:55px}.symbol.symbol-sm-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-sm-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-sm-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-sm-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-sm-60px>img{width:60px;height:60px}.symbol.symbol-sm-60px .symbol-label{width:60px;height:60px}.symbol.symbol-sm-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-sm-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-sm-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-sm-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-sm-65px>img{width:65px;height:65px}.symbol.symbol-sm-65px .symbol-label{width:65px;height:65px}.symbol.symbol-sm-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-sm-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-sm-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-sm-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-sm-70px>img{width:70px;height:70px}.symbol.symbol-sm-70px .symbol-label{width:70px;height:70px}.symbol.symbol-sm-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-sm-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-sm-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-sm-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-sm-75px>img{width:75px;height:75px}.symbol.symbol-sm-75px .symbol-label{width:75px;height:75px}.symbol.symbol-sm-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-sm-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-sm-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-sm-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-sm-100px>img{width:100px;height:100px}.symbol.symbol-sm-100px .symbol-label{width:100px;height:100px}.symbol.symbol-sm-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-sm-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-sm-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-sm-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-sm-125px>img{width:125px;height:125px}.symbol.symbol-sm-125px .symbol-label{width:125px;height:125px}.symbol.symbol-sm-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-sm-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-sm-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-sm-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-sm-150px>img{width:150px;height:150px}.symbol.symbol-sm-150px .symbol-label{width:150px;height:150px}.symbol.symbol-sm-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-sm-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-sm-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-sm-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-sm-160px>img{width:160px;height:160px}.symbol.symbol-sm-160px .symbol-label{width:160px;height:160px}.symbol.symbol-sm-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-sm-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-sm-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-sm-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-sm-175px>img{width:175px;height:175px}.symbol.symbol-sm-175px .symbol-label{width:175px;height:175px}.symbol.symbol-sm-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-sm-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-sm-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-sm-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-sm-200px>img{width:200px;height:200px}.symbol.symbol-sm-200px .symbol-label{width:200px;height:200px}.symbol.symbol-sm-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-sm-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-sm-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-sm-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}@media (min-width:768px){.symbol.symbol-md-20px>img{width:20px;height:20px}.symbol.symbol-md-20px .symbol-label{width:20px;height:20px}.symbol.symbol-md-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-md-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-md-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-md-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-md-25px>img{width:25px;height:25px}.symbol.symbol-md-25px .symbol-label{width:25px;height:25px}.symbol.symbol-md-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-md-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-md-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-md-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-md-30px>img{width:30px;height:30px}.symbol.symbol-md-30px .symbol-label{width:30px;height:30px}.symbol.symbol-md-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-md-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-md-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-md-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-md-35px>img{width:35px;height:35px}.symbol.symbol-md-35px .symbol-label{width:35px;height:35px}.symbol.symbol-md-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-md-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-md-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-md-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-md-40px>img{width:40px;height:40px}.symbol.symbol-md-40px .symbol-label{width:40px;height:40px}.symbol.symbol-md-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-md-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-md-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-md-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-md-45px>img{width:45px;height:45px}.symbol.symbol-md-45px .symbol-label{width:45px;height:45px}.symbol.symbol-md-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-md-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-md-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-md-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-md-50px>img{width:50px;height:50px}.symbol.symbol-md-50px .symbol-label{width:50px;height:50px}.symbol.symbol-md-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-md-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-md-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-md-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-md-55px>img{width:55px;height:55px}.symbol.symbol-md-55px .symbol-label{width:55px;height:55px}.symbol.symbol-md-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-md-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-md-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-md-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-md-60px>img{width:60px;height:60px}.symbol.symbol-md-60px .symbol-label{width:60px;height:60px}.symbol.symbol-md-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-md-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-md-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-md-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-md-65px>img{width:65px;height:65px}.symbol.symbol-md-65px .symbol-label{width:65px;height:65px}.symbol.symbol-md-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-md-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-md-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-md-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-md-70px>img{width:70px;height:70px}.symbol.symbol-md-70px .symbol-label{width:70px;height:70px}.symbol.symbol-md-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-md-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-md-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-md-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-md-75px>img{width:75px;height:75px}.symbol.symbol-md-75px .symbol-label{width:75px;height:75px}.symbol.symbol-md-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-md-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-md-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-md-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-md-100px>img{width:100px;height:100px}.symbol.symbol-md-100px .symbol-label{width:100px;height:100px}.symbol.symbol-md-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-md-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-md-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-md-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-md-125px>img{width:125px;height:125px}.symbol.symbol-md-125px .symbol-label{width:125px;height:125px}.symbol.symbol-md-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-md-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-md-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-md-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-md-150px>img{width:150px;height:150px}.symbol.symbol-md-150px .symbol-label{width:150px;height:150px}.symbol.symbol-md-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-md-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-md-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-md-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-md-160px>img{width:160px;height:160px}.symbol.symbol-md-160px .symbol-label{width:160px;height:160px}.symbol.symbol-md-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-md-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-md-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-md-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-md-175px>img{width:175px;height:175px}.symbol.symbol-md-175px .symbol-label{width:175px;height:175px}.symbol.symbol-md-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-md-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-md-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-md-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-md-200px>img{width:200px;height:200px}.symbol.symbol-md-200px .symbol-label{width:200px;height:200px}.symbol.symbol-md-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-md-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-md-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-md-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}@media (min-width:992px){.symbol.symbol-lg-20px>img{width:20px;height:20px}.symbol.symbol-lg-20px .symbol-label{width:20px;height:20px}.symbol.symbol-lg-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-lg-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-lg-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-lg-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-lg-25px>img{width:25px;height:25px}.symbol.symbol-lg-25px .symbol-label{width:25px;height:25px}.symbol.symbol-lg-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-lg-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-lg-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-lg-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-lg-30px>img{width:30px;height:30px}.symbol.symbol-lg-30px .symbol-label{width:30px;height:30px}.symbol.symbol-lg-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-lg-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-lg-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-lg-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-lg-35px>img{width:35px;height:35px}.symbol.symbol-lg-35px .symbol-label{width:35px;height:35px}.symbol.symbol-lg-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-lg-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-lg-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-lg-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-lg-40px>img{width:40px;height:40px}.symbol.symbol-lg-40px .symbol-label{width:40px;height:40px}.symbol.symbol-lg-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-lg-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-lg-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-lg-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-lg-45px>img{width:45px;height:45px}.symbol.symbol-lg-45px .symbol-label{width:45px;height:45px}.symbol.symbol-lg-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-lg-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-lg-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-lg-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-lg-50px>img{width:50px;height:50px}.symbol.symbol-lg-50px .symbol-label{width:50px;height:50px}.symbol.symbol-lg-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-lg-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-lg-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-lg-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-lg-55px>img{width:55px;height:55px}.symbol.symbol-lg-55px .symbol-label{width:55px;height:55px}.symbol.symbol-lg-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-lg-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-lg-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-lg-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-lg-60px>img{width:60px;height:60px}.symbol.symbol-lg-60px .symbol-label{width:60px;height:60px}.symbol.symbol-lg-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-lg-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-lg-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-lg-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-lg-65px>img{width:65px;height:65px}.symbol.symbol-lg-65px .symbol-label{width:65px;height:65px}.symbol.symbol-lg-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-lg-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-lg-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-lg-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-lg-70px>img{width:70px;height:70px}.symbol.symbol-lg-70px .symbol-label{width:70px;height:70px}.symbol.symbol-lg-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-lg-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-lg-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-lg-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-lg-75px>img{width:75px;height:75px}.symbol.symbol-lg-75px .symbol-label{width:75px;height:75px}.symbol.symbol-lg-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-lg-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-lg-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-lg-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-lg-100px>img{width:100px;height:100px}.symbol.symbol-lg-100px .symbol-label{width:100px;height:100px}.symbol.symbol-lg-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-lg-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-lg-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-lg-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-lg-125px>img{width:125px;height:125px}.symbol.symbol-lg-125px .symbol-label{width:125px;height:125px}.symbol.symbol-lg-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-lg-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-lg-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-lg-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-lg-150px>img{width:150px;height:150px}.symbol.symbol-lg-150px .symbol-label{width:150px;height:150px}.symbol.symbol-lg-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-lg-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-lg-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-lg-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-lg-160px>img{width:160px;height:160px}.symbol.symbol-lg-160px .symbol-label{width:160px;height:160px}.symbol.symbol-lg-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-lg-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-lg-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-lg-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-lg-175px>img{width:175px;height:175px}.symbol.symbol-lg-175px .symbol-label{width:175px;height:175px}.symbol.symbol-lg-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-lg-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-lg-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-lg-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-lg-200px>img{width:200px;height:200px}.symbol.symbol-lg-200px .symbol-label{width:200px;height:200px}.symbol.symbol-lg-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-lg-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-lg-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-lg-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}@media (min-width:1200px){.symbol.symbol-xl-20px>img{width:20px;height:20px}.symbol.symbol-xl-20px .symbol-label{width:20px;height:20px}.symbol.symbol-xl-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-xl-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-xl-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-xl-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-xl-25px>img{width:25px;height:25px}.symbol.symbol-xl-25px .symbol-label{width:25px;height:25px}.symbol.symbol-xl-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-xl-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-xl-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-xl-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-xl-30px>img{width:30px;height:30px}.symbol.symbol-xl-30px .symbol-label{width:30px;height:30px}.symbol.symbol-xl-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-xl-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-xl-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-xl-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-xl-35px>img{width:35px;height:35px}.symbol.symbol-xl-35px .symbol-label{width:35px;height:35px}.symbol.symbol-xl-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-xl-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-xl-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-xl-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-xl-40px>img{width:40px;height:40px}.symbol.symbol-xl-40px .symbol-label{width:40px;height:40px}.symbol.symbol-xl-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-xl-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-xl-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-xl-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-xl-45px>img{width:45px;height:45px}.symbol.symbol-xl-45px .symbol-label{width:45px;height:45px}.symbol.symbol-xl-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-xl-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-xl-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-xl-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-xl-50px>img{width:50px;height:50px}.symbol.symbol-xl-50px .symbol-label{width:50px;height:50px}.symbol.symbol-xl-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-xl-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-xl-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-xl-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-xl-55px>img{width:55px;height:55px}.symbol.symbol-xl-55px .symbol-label{width:55px;height:55px}.symbol.symbol-xl-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-xl-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-xl-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-xl-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-xl-60px>img{width:60px;height:60px}.symbol.symbol-xl-60px .symbol-label{width:60px;height:60px}.symbol.symbol-xl-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-xl-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-xl-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-xl-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-xl-65px>img{width:65px;height:65px}.symbol.symbol-xl-65px .symbol-label{width:65px;height:65px}.symbol.symbol-xl-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-xl-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-xl-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-xl-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-xl-70px>img{width:70px;height:70px}.symbol.symbol-xl-70px .symbol-label{width:70px;height:70px}.symbol.symbol-xl-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-xl-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-xl-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-xl-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-xl-75px>img{width:75px;height:75px}.symbol.symbol-xl-75px .symbol-label{width:75px;height:75px}.symbol.symbol-xl-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-xl-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-xl-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-xl-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-xl-100px>img{width:100px;height:100px}.symbol.symbol-xl-100px .symbol-label{width:100px;height:100px}.symbol.symbol-xl-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-xl-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-xl-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-xl-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-xl-125px>img{width:125px;height:125px}.symbol.symbol-xl-125px .symbol-label{width:125px;height:125px}.symbol.symbol-xl-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-xl-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-xl-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-xl-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-xl-150px>img{width:150px;height:150px}.symbol.symbol-xl-150px .symbol-label{width:150px;height:150px}.symbol.symbol-xl-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-xl-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-xl-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-xl-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-xl-160px>img{width:160px;height:160px}.symbol.symbol-xl-160px .symbol-label{width:160px;height:160px}.symbol.symbol-xl-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-xl-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-xl-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-xl-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-xl-175px>img{width:175px;height:175px}.symbol.symbol-xl-175px .symbol-label{width:175px;height:175px}.symbol.symbol-xl-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-xl-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-xl-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-xl-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-xl-200px>img{width:200px;height:200px}.symbol.symbol-xl-200px .symbol-label{width:200px;height:200px}.symbol.symbol-xl-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-xl-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-xl-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-xl-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}@media (min-width:1400px){.symbol.symbol-xxl-20px>img{width:20px;height:20px}.symbol.symbol-xxl-20px .symbol-label{width:20px;height:20px}.symbol.symbol-xxl-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-xxl-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-xxl-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-xxl-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-xxl-25px>img{width:25px;height:25px}.symbol.symbol-xxl-25px .symbol-label{width:25px;height:25px}.symbol.symbol-xxl-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-xxl-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-xxl-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-xxl-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-xxl-30px>img{width:30px;height:30px}.symbol.symbol-xxl-30px .symbol-label{width:30px;height:30px}.symbol.symbol-xxl-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-xxl-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-xxl-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-xxl-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-xxl-35px>img{width:35px;height:35px}.symbol.symbol-xxl-35px .symbol-label{width:35px;height:35px}.symbol.symbol-xxl-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-xxl-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-xxl-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-xxl-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-xxl-40px>img{width:40px;height:40px}.symbol.symbol-xxl-40px .symbol-label{width:40px;height:40px}.symbol.symbol-xxl-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-xxl-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-xxl-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-xxl-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-xxl-45px>img{width:45px;height:45px}.symbol.symbol-xxl-45px .symbol-label{width:45px;height:45px}.symbol.symbol-xxl-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-xxl-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-xxl-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-xxl-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-xxl-50px>img{width:50px;height:50px}.symbol.symbol-xxl-50px .symbol-label{width:50px;height:50px}.symbol.symbol-xxl-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-xxl-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-xxl-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-xxl-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-xxl-55px>img{width:55px;height:55px}.symbol.symbol-xxl-55px .symbol-label{width:55px;height:55px}.symbol.symbol-xxl-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-xxl-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-xxl-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-xxl-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-xxl-60px>img{width:60px;height:60px}.symbol.symbol-xxl-60px .symbol-label{width:60px;height:60px}.symbol.symbol-xxl-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-xxl-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-xxl-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-xxl-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-xxl-65px>img{width:65px;height:65px}.symbol.symbol-xxl-65px .symbol-label{width:65px;height:65px}.symbol.symbol-xxl-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-xxl-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-xxl-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-xxl-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-xxl-70px>img{width:70px;height:70px}.symbol.symbol-xxl-70px .symbol-label{width:70px;height:70px}.symbol.symbol-xxl-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-xxl-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-xxl-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-xxl-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-xxl-75px>img{width:75px;height:75px}.symbol.symbol-xxl-75px .symbol-label{width:75px;height:75px}.symbol.symbol-xxl-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-xxl-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-xxl-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-xxl-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-xxl-100px>img{width:100px;height:100px}.symbol.symbol-xxl-100px .symbol-label{width:100px;height:100px}.symbol.symbol-xxl-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-xxl-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-xxl-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-xxl-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-xxl-125px>img{width:125px;height:125px}.symbol.symbol-xxl-125px .symbol-label{width:125px;height:125px}.symbol.symbol-xxl-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-xxl-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-xxl-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-xxl-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-xxl-150px>img{width:150px;height:150px}.symbol.symbol-xxl-150px .symbol-label{width:150px;height:150px}.symbol.symbol-xxl-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-xxl-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-xxl-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-xxl-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-xxl-160px>img{width:160px;height:160px}.symbol.symbol-xxl-160px .symbol-label{width:160px;height:160px}.symbol.symbol-xxl-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-xxl-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-xxl-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-xxl-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-xxl-175px>img{width:175px;height:175px}.symbol.symbol-xxl-175px .symbol-label{width:175px;height:175px}.symbol.symbol-xxl-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-xxl-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-xxl-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-xxl-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-xxl-200px>img{width:200px;height:200px}.symbol.symbol-xxl-200px .symbol-label{width:200px;height:200px}.symbol.symbol-xxl-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-xxl-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-xxl-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-xxl-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}.symbol-group{display:flex;flex-wrap:wrap;align-items:center;margin-left:10px}.symbol-group .symbol{position:relative;z-index:0;margin-left:-10px;border:2px solid #1e1e2d;transition:all .3s ease}.symbol-group .symbol:hover{transition:all .3s ease;z-index:1}.symbol-group.symbol-hover .symbol{cursor:pointer}.pulse{position:relative}.pulse.pulse-white .pulse-ring{border-color:#fff}.pulse.pulse-light .pulse-ring{border-color:#323248}.pulse.pulse-primary .pulse-ring{border-color:#3699ff}.pulse.pulse-secondary .pulse-ring{border-color:#323248}.pulse.pulse-success .pulse-ring{border-color:#0bb783}.pulse.pulse-info .pulse-ring{border-color:#8950fc}.pulse.pulse-warning .pulse-ring{border-color:#ffa800}.pulse.pulse-danger .pulse-ring{border-color:#f64e60}.pulse.pulse-dark .pulse-ring{border-color:#fff}.pulse-ring{display:block;border-radius:40px;height:40px;width:40px;position:absolute;animation:animation-pulse 3.5s ease-out;animation-iteration-count:infinite;opacity:0;border-width:3px;border-style:solid;border-color:#565674}@keyframes animation-pulse{0%{-webkit-transform:scale(.1,.1);opacity:0}60%{-webkit-transform:scale(.1,.1);opacity:0}65%{opacity:1}100%{-webkit-transform:scale(1.2,1.2);opacity:0}}.page-loading *{transition:none!important}.page-loader{background:#1e1e2d;position:fixed;top:0;bottom:0;left:0;right:0;z-index:1000;display:none}.page-loading .page-loader{display:flex;justify-content:center;align-items:center}.scrolltop{position:fixed;display:none;cursor:pointer;z-index:100;justify-content:center;align-items:center;width:36px;height:36px;bottom:40px;right:20px;background-color:#3699ff;box-shadow:0 .5rem 1.5rem .5rem rgba(0,0,0,.075);opacity:0;transition:color .2s ease,background-color .2s ease;border-radius:.475rem}.scrolltop .svg-icon{color:#fff}.scrolltop .svg-icon svg{height:24px;width:24px}.scrolltop>i{font-size:1.3rem;color:#fff}.scrolltop:hover{background-color:#3699ff}.scrolltop:hover>i{color:#fff}.scrolltop:hover .svg-icon{color:#fff}[data-kt-scrolltop=on] .scrolltop{opacity:.3;animation:animation-scrolltop .4s ease-out 1;display:flex}[data-kt-scrolltop=on] .scrolltop:hover{transition:color .2s ease,background-color .2s ease;opacity:1}@media (max-width:991.98px){.scrolltop{bottom:30px;right:15px;width:30px;height:30px}}@keyframes animation-scrolltop{from{margin-bottom:-15px}to{margin-bottom:0}}.svg-icon{line-height:1;color:#565674}.svg-icon svg{height:1.15rem;width:1.15rem}.svg-icon.svg-icon-white{color:#fff}.svg-icon.svg-icon-primary{color:#3699ff}.svg-icon.svg-icon-secondary{color:#323248}.svg-icon.svg-icon-light{color:#323248}.svg-icon.svg-icon-success{color:#0bb783}.svg-icon.svg-icon-info{color:#8950fc}.svg-icon.svg-icon-warning{color:#ffa800}.svg-icon.svg-icon-danger{color:#f64e60}.svg-icon.svg-icon-dark{color:#fff}.svg-icon.svg-icon-muted{color:#565674}.svg-icon.svg-icon-gray-100{color:#1b1b29}.svg-icon.svg-icon-gray-200{color:#2b2b40}.svg-icon.svg-icon-gray-300{color:#323248}.svg-icon.svg-icon-gray-400{color:#474761}.svg-icon.svg-icon-gray-500{color:#565674}.svg-icon.svg-icon-gray-600{color:#6d6d80}.svg-icon.svg-icon-gray-700{color:#92929f}.svg-icon.svg-icon-gray-800{color:#cdcdde}.svg-icon.svg-icon-gray-900{color:#fff}.svg-icon.svg-icon-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-5tx svg{height:5.75rem!important;width:5.75rem!important}@media (min-width:576px){.svg-icon.svg-icon-sm-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-sm-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-sm-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-sm-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-sm-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-sm-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-sm-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-sm-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-sm-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-sm-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-sm-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-sm-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-sm-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-sm-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-sm-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-sm-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-sm-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-sm-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-sm-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-sm-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-sm-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-sm-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-sm-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-sm-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-sm-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-sm-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-sm-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-sm-5tx svg{height:5.75rem!important;width:5.75rem!important}}@media (min-width:768px){.svg-icon.svg-icon-md-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-md-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-md-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-md-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-md-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-md-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-md-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-md-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-md-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-md-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-md-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-md-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-md-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-md-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-md-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-md-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-md-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-md-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-md-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-md-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-md-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-md-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-md-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-md-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-md-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-md-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-md-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-md-5tx svg{height:5.75rem!important;width:5.75rem!important}}@media (min-width:992px){.svg-icon.svg-icon-lg-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-lg-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-lg-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-lg-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-lg-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-lg-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-lg-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-lg-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-lg-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-lg-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-lg-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-lg-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-lg-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-lg-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-lg-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-lg-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-lg-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-lg-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-lg-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-lg-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-lg-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-lg-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-lg-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-lg-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-lg-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-lg-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-lg-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-lg-5tx svg{height:5.75rem!important;width:5.75rem!important}}@media (min-width:1200px){.svg-icon.svg-icon-xl-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-xl-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-xl-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-xl-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-xl-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-xl-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-xl-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-xl-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-xl-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-xl-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-xl-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-xl-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-xl-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-xl-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-xl-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-xl-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-xl-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-xl-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-xl-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-xl-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-xl-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-xl-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-xl-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-xl-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-xl-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-xl-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-xl-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-xl-5tx svg{height:5.75rem!important;width:5.75rem!important}}@media (min-width:1400px){.svg-icon.svg-icon-xxl-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-xxl-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-xxl-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-xxl-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-xxl-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-xxl-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-xxl-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-xxl-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-xxl-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-xxl-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-xxl-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-xxl-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-xxl-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-xxl-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-xxl-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-xxl-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-xxl-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-xxl-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-xxl-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-xxl-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-xxl-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-xxl-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-xxl-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-xxl-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-xxl-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-xxl-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-xxl-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-xxl-5tx svg{height:5.75rem!important;width:5.75rem!important}}.fixed-top{position:fixed;z-index:101;top:0;left:0;right:0}@media (min-width:576px){.fixed-top-sm{position:fixed;z-index:101;top:0;left:0;right:0}}@media (min-width:768px){.fixed-top-md{position:fixed;z-index:101;top:0;left:0;right:0}}@media (min-width:992px){.fixed-top-lg{position:fixed;z-index:101;top:0;left:0;right:0}}@media (min-width:1200px){.fixed-top-xl{position:fixed;z-index:101;top:0;left:0;right:0}}@media (min-width:1400px){.fixed-top-xxl{position:fixed;z-index:101;top:0;left:0;right:0}}.timeline .timeline-item{position:relative;padding:0;margin:0;display:flex;align-items:flex-start}.timeline .timeline-item:last-child .timeline-line{bottom:100%}.timeline .timeline-line{display:block;content:" ";justify-content:center;position:absolute;z-index:0;left:0;top:0;bottom:0;transform:translate(50%);border-left-width:1px;border-left-style:dashed;border-left-color:#323248}.timeline .timeline-icon{z-index:1;flex-shrink:0;margin-right:1rem}.timeline .timeline-content{width:100%;overflow:auto;margin-bottom:1.5rem}.timeline.timeline-center .timeline-item{align-items:center}.timeline.timeline-center .timeline-item:first-child .timeline-line{top:50%}.timeline.timeline-center .timeline-item:last-child .timeline-line{bottom:50%}.timeline-label{position:relative}.timeline-label:before{content:"";position:absolute;left:51px;width:3px;top:0;bottom:0;background-color:#2b2b40}.timeline-label .timeline-item{display:flex;align-items:flex-start;position:relative;margin-bottom:1.7rem}.timeline-label .timeline-item:last-child{margin-bottom:0}.timeline-label .timeline-label{width:50px;flex-shrink:0;position:relative;color:#cdcdde}.timeline-label .timeline-badge{flex-shrink:0;background:#1e1e2d;width:1rem;height:1rem;border-radius:100%;display:flex;justify-content:center;align-items:center;z-index:1;position:relative;margin-top:1px;margin-left:-.5rem;padding:3px!important;border:6px solid #1e1e2d!important}.timeline-label .timeline-badge span{display:block;border-radius:100%;width:6px;height:6px;background-color:#2b2b40}.timeline-label .timeline-content{flex-grow:1}.overlay{position:relative}.overlay .overlay-layer{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;justify-content:center;align-items:center;background-color:rgba(0,0,0,.05);transition:all .3s ease;opacity:0}.overlay.overlay-block .overlay-layer,.overlay.overlay-show .overlay-layer,.overlay:hover .overlay-layer{transition:all .3s ease;opacity:1}.overlay.overlay-block{cursor:wait}.bullet{display:inline-block;background-color:#474761;border-radius:6px;width:8px;height:4px;flex-shrink:0}.bullet-dot{width:4px;height:4px;border-radius:100%!important}.bullet-vertical{width:4px;height:8px}.bullet-line{width:5px;height:1px;border-radius:0}.drawer{display:flex!important;overflow:auto;z-index:110;position:fixed;top:0;bottom:0;background-color:#1e1e2d;transition:transform .3s ease-in-out}.drawer.drawer-start{left:0;transform:translateX(-100%)}.drawer.drawer-end{right:0;transform:translateX(100%)}.drawer.drawer-on{transform:none;box-shadow:0 0 30px rgba(0,0,0,.1);transition:transform .3s ease-in-out}.drawer-overlay{position:fixed;top:0;left:0;bottom:0;right:0;overflow:hidden;z-index:109;background-color:rgba(0,0,0,.4);animation:animation-drawer-fade-in .3s ease-in-out 1}[data-kt-drawer=true]{display:none}@keyframes animation-drawer-fade-in{from{opacity:0}to{opacity:1}}@media (max-width:991.98px){body[data-kt-drawer=on]{overflow:hidden}}.badge{display:inline-flex;align-items:center}.badge.badge-circle,.badge.badge-square{display:inline-flex;align-items:center;justify-content:center;height:1.75rem;min-width:1.75rem;padding:0 .1rem;line-height:0}.badge.badge-circle{border-radius:50%;padding:0;min-width:unset;width:1.75rem}.badge.badge-sm{min-width:1.5rem;font-size:.8rem}.badge.badge-sm.badge-square{height:1.5rem}.badge.badge-sm.badge-circle{width:1.5rem;height:1.5rem}.badge.badge-lg{min-width:2rem;font-size:1rem}.badge.badge-lg.badge-square{height:2rem}.badge.badge-lg.badge-circle{width:2rem;height:2rem}.badge-white{color:#6d6d80;background-color:#fff}.badge-light-white{color:#fff}.badge-light{color:#cdcdde;background-color:#323248}.badge-light-light{color:#323248}.badge-primary{color:#fff;background-color:#3699ff}.badge-light-primary{color:#3699ff;background-color:#212e48}.badge-secondary{color:#cdcdde;background-color:#323248}.badge-light-secondary{color:#323248}.badge-success{color:#fff;background-color:#0bb783}.badge-light-success{color:#0bb783;background-color:#1c3238}.badge-info{color:#fff;background-color:#8950fc}.badge-light-info{color:#8950fc;background-color:#2f264f}.badge-warning{color:#fff;background-color:#ffa800}.badge-light-warning{color:#ffa800;background-color:#392f28}.badge-danger{color:#fff;background-color:#f64e60}.badge-light-danger{color:#f64e60;background-color:#3a2434}.badge-dark{color:#1b1b29;background-color:#fff}.badge-light-dark{color:#fff;background-color:#2b2b40}.indicator-progress{display:none}[data-kt-indicator=on]>.indicator-progress{display:inline-block}[data-kt-indicator=on]>.indicator-label{display:none}.rotate{display:inline-flex;align-items:center}.rotate-90{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-90,.collapsible:not(.collapsed)>.rotate-90,.show>.rotate-90{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-90,[direction=rtl] .collapsible:not(.collapsed)>.rotate-90,[direction=rtl] .show>.rotate-90{transform:rotateZ(-90deg)}.rotate-n90{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-n90,.collapsible:not(.collapsed)>.rotate-n90,.show>.rotate-n90{transform:rotateZ(-90deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-n90,[direction=rtl] .collapsible:not(.collapsed)>.rotate-n90,[direction=rtl] .show>.rotate-n90{transform:rotateZ(90deg)}.rotate-180{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-180,.collapsible:not(.collapsed)>.rotate-180,.show>.rotate-180{transform:rotateZ(180deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-180,[direction=rtl] .collapsible:not(.collapsed)>.rotate-180,[direction=rtl] .show>.rotate-180{transform:rotateZ(-180deg)}.rotate-n180{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-n180,.collapsible:not(.collapsed)>.rotate-n180,.show>.rotate-n180{transform:rotateZ(-180deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-n180,[direction=rtl] .collapsible:not(.collapsed)>.rotate-n180,[direction=rtl] .show>.rotate-n180{transform:rotateZ(180deg)}.rotate-270{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-270,.collapsible:not(.collapsed)>.rotate-270,.show>.rotate-270{transform:rotateZ(270deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-270,[direction=rtl] .collapsible:not(.collapsed)>.rotate-270,[direction=rtl] .show>.rotate-270{transform:rotateZ(-270deg)}.rotate-n270{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-n270,.collapsible:not(.collapsed)>.rotate-n270,.show>.rotate-n270{transform:rotateZ(-270deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-n270,[direction=rtl] .collapsible:not(.collapsed)>.rotate-n270,[direction=rtl] .show>.rotate-n270{transform:rotateZ(270deg)}@media (min-width:992px){div,main,ol,pre,span,ul{scrollbar-width:thin;scrollbar-color:#2b2b40 transparent}div::-webkit-scrollbar,main::-webkit-scrollbar,ol::-webkit-scrollbar,pre::-webkit-scrollbar,span::-webkit-scrollbar,ul::-webkit-scrollbar{width:.4rem;height:.4rem}div::-webkit-scrollbar-thumb,main::-webkit-scrollbar-thumb,ol::-webkit-scrollbar-thumb,pre::-webkit-scrollbar-thumb,span::-webkit-scrollbar-thumb,ul::-webkit-scrollbar-thumb{background-color:#2b2b40}div:hover,main:hover,ol:hover,pre:hover,span:hover,ul:hover{scrollbar-color:#27273a transparent}div:hover::-webkit-scrollbar-thumb,main:hover::-webkit-scrollbar-thumb,ol:hover::-webkit-scrollbar-thumb,pre:hover::-webkit-scrollbar-thumb,span:hover::-webkit-scrollbar-thumb,ul:hover::-webkit-scrollbar-thumb{background-color:#27273a}}.scroll{overflow:scroll;position:relative}@media (max-width:991.98px){.scroll{overflow:auto}}.scroll-x{overflow-x:scroll;position:relative}@media (max-width:991.98px){.scroll-x{overflow-x:auto}}.scroll-y{overflow-y:scroll;position:relative}@media (max-width:991.98px){.scroll-y{overflow-y:auto}}.hover-scroll{position:relative}@media (min-width:992px){.hover-scroll{overflow:hidden;border-right:.4rem solid transparent;border-bottom:.4rem solid transparent;margin-right:-.4rem;margin-bottom:-.4rem}.hover-scroll:hover{overflow:scroll;border-right:0;border-bottom:0}@-moz-document url-prefix(){.hover-scroll{overflow:scroll;position:relative;border-right:0;border-bottom:0}}}@media (max-width:991.98px){.hover-scroll{overflow:auto}}.hover-scroll-y{position:relative}@media (min-width:992px){.hover-scroll-y{overflow-y:hidden;border-right:.4rem solid transparent;margin-right:-.4rem}.hover-scroll-y:hover{overflow-y:scroll;border-right:0}@-moz-document url-prefix(){.hover-scroll-y{overflow-y:scroll;position:relative;border-right:0}}}@media (max-width:991.98px){.hover-scroll-y{overflow-y:auto}}.hover-scroll-x{position:relative}@media (min-width:992px){.hover-scroll-x{overflow-x:hidden;border-bottom:.4rem solid transparent}.hover-scroll-x:hover{overflow-x:scroll;border-bottom:0}@-moz-document url-prefix(){.hover-scroll-x{overflow-x:scroll;position:relative;border-bottom:0}}}@media (max-width:991.98px){.hover-scroll-x{overflow-x:auto}}.hover-scroll-overlay-y{overflow-y:hidden;position:relative;--scrollbar-space:0.5rem}.hover-scroll-overlay-y::-webkit-scrollbar{width:calc(.4rem + var(--scrollbar-space))}.hover-scroll-overlay-y::-webkit-scrollbar-thumb{background-clip:content-box;border-right:var(--scrollbar-space) solid transparent}.hover-scroll-overlay-y:hover{overflow-y:overlay}@-moz-document url-prefix(){.hover-scroll-overlay-y{overflow-y:scroll;position:relative}}.scroll-ps{padding-left:.4rem!important}.scroll-ms{margin-left:.4rem!important}.scroll-pe{padding-right:.4rem!important}.scroll-me{margin-right:.4rem!important}.scroll-px{padding-left:.4rem!important;padding-right:.4rem!important}.scroll-mx{margin-left:.4rem!important;margin-right:.4rem!important}.rating{display:flex;align-items:center}.rating-input{position:absolute!important;left:-9999px!important}.rating-input[disabled]{display:none}.rating-label{padding:0;margin:0}.rating-label>.svg-icon,.rating-label>i{line-height:1;color:#474761}label.rating-label{cursor:pointer}div.rating-label.checked>.svg-icon,div.rating-label.checked>i,label.rating-label>.svg-icon,label.rating-label>i{color:#ffad0f}.rating-input:checked~.rating-label>.svg-icon,.rating-input:checked~.rating-label>i{color:#474761}.rating:hover label.rating-label>.svg-icon,.rating:hover label.rating-label>i{color:#ffad0f}label.rating-label:hover~.rating-label{color:#474761}label.rating-label:hover~.rating-label>.svg-icon,label.rating-label:hover~.rating-label>i{color:#474761}.stepper [data-kt-stepper-element=content],.stepper [data-kt-stepper-element=info]{display:none}.stepper [data-kt-stepper-element=content].current,.stepper [data-kt-stepper-element=info].current{display:flex}.stepper .stepper-item[data-kt-stepper-action=step]{cursor:pointer}.stepper [data-kt-stepper-action=previous]{display:none}.stepper [data-kt-stepper-action=next]{display:inline-block}.stepper [data-kt-stepper-action=submit]{display:none}.stepper.first [data-kt-stepper-action=previous]{display:none}.stepper.first [data-kt-stepper-action=next]{display:inline-block}.stepper.first [data-kt-stepper-action=submit]{display:none}.stepper.between [data-kt-stepper-action=previous]{display:inline-block}.stepper.between [data-kt-stepper-action=next]{display:inline-block}.stepper.between [data-kt-stepper-action=submit]{display:none}.stepper.last [data-kt-stepper-action=previous]{display:inline-block}.stepper.last [data-kt-stepper-action=next]{display:none}.stepper.last [data-kt-stepper-action=submit]{display:inline-block}.stepper.last [data-kt-stepper-action=submit].btn-flex{display:flex}.stepper.stepper-pills .stepper-nav{display:flex}.stepper.stepper-pills .stepper-item{display:flex;align-items:center;transition:color .2s ease,background-color .2s ease}.stepper.stepper-pills .stepper-item .stepper-icon{display:flex;align-items:center;justify-content:center;transition:color .2s ease,background-color .2s ease;width:40px;height:40px;border-radius:.475rem;background-color:#212e48;margin-right:1.5rem}.stepper.stepper-pills .stepper-item .stepper-icon .stepper-check{display:none;font-size:1rem}.stepper.stepper-pills .stepper-item .stepper-icon .stepper-number{font-weight:600;color:#3699ff!important;font-size:1.25rem}.stepper.stepper-pills .stepper-item .stepper-label{display:flex;flex-direction:column;justify-content:center}.stepper.stepper-pills .stepper-item .stepper-label .stepper-title{color:#cdcdde;font-weight:600;font-size:1.25rem;margin-bottom:.3rem}.stepper.stepper-pills .stepper-item .stepper-label .stepper-desc{color:#565674}.stepper.stepper-pills .stepper-item.current{transition:color .2s ease,background-color .2s ease}.stepper.stepper-pills .stepper-item.current .stepper-icon{transition:color .2s ease,background-color .2s ease;background-color:#3699ff}.stepper.stepper-pills .stepper-item.current .stepper-icon .stepper-check{color:#3699ff;display:none}.stepper.stepper-pills .stepper-item.current .stepper-icon .stepper-number{color:#fff!important;font-size:1.35rem}.stepper.stepper-pills .stepper-item.current .stepper-label .stepper-title{color:#6d6d80}.stepper.stepper-pills .stepper-item.current .stepper-label .stepper-desc{color:#474761}.stepper.stepper-pills .stepper-item.completed .stepper-icon,.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon{transition:color .2s ease,background-color .2s ease;background-color:#212e48}.stepper.stepper-pills .stepper-item.completed .stepper-icon .stepper-check,.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon .stepper-check{color:#3699ff!important;display:inline-block}.stepper.stepper-pills .stepper-item.completed .stepper-icon .stepper-number,.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon .stepper-number{display:none}.stepper.stepper-pills .stepper-item.completed .stepper-label .stepper-title,.stepper.stepper-pills .stepper-item.current:last-child .stepper-label .stepper-title{color:#565674}.stepper.stepper-pills .stepper-item.completed .stepper-label .stepper-desc,.stepper.stepper-pills .stepper-item.current:last-child .stepper-label .stepper-desc{color:#474761}.stepper.stepper-pills.stepper-column .stepper-nav{flex-direction:column}.stepper.stepper-pills.stepper-column .stepper-item{position:relative;padding:0;margin:0;padding-bottom:2.5rem}.stepper.stepper-pills.stepper-column .stepper-icon{z-index:1}.stepper.stepper-pills.stepper-column .stepper-line{display:block;content:" ";justify-content:center;position:absolute;z-index:0;left:0;top:0;bottom:0;width:40px;transform:translate(50%);border-left-width:1px;border-left-style:dashed;border-left-color:#323248}.stepper.stepper-pills.stepper-column .stepper-item:first-child .stepper-line{top:50%}.stepper.stepper-pills.stepper-column .stepper-item:last-child .stepper-line{bottom:50%}.stepper.stepper-links .stepper-nav{display:flex;margin:0 auto;justify-content:center;align-items:center;flex-wrap:wrap}.stepper.stepper-links .stepper-nav .stepper-item{position:relative;flex-shrink:0;margin:1rem 1.5rem}.stepper.stepper-links .stepper-nav .stepper-item:after{content:" ";position:absolute;top:2.3rem;left:0;height:2px;width:100%;background-color:transparent;transition:color .2s ease,background-color .2s ease}.stepper.stepper-links .stepper-nav .stepper-item .stepper-title{color:#fff;font-weight:600;font-size:1.25rem}.stepper.stepper-links .stepper-nav .stepper-item.current{transition:color .2s ease,background-color .2s ease}.stepper.stepper-links .stepper-nav .stepper-item.current .stepper-title{color:#3699ff}.stepper.stepper-links .stepper-nav .stepper-item.current:after{background-color:#3699ff}.stepper.stepper-links .stepper-nav .stepper-item.completed .stepper-title{color:#474761}.toggle.active .toggle-off,.toggle.collapsible:not(.collapsed) .toggle-off{display:none}.toggle.collapsible.collapsed .toggle-on,.toggle:not(.collapsible):not(.active) .toggle-on{display:none}.xehagon{clip-path:polygon(45% 1.3397459622%,46.5797985667% .6030737921%,48.2635182233% .1519224699%,50% 0,51.7364817767% .1519224699%,53.4202014333% .6030737921%,55% 1.3397459622%,89.6410161514% 21.3397459622%,91.0688922482% 22.3395555688%,92.3014605826% 23.5721239031%,93.3012701892% 25%,94.0379423592% 26.5797985667%,94.4890936815% 28.2635182233%,94.6410161514% 30%,94.6410161514% 70%,94.4890936815% 71.7364817767%,94.0379423592% 73.4202014333%,93.3012701892% 75%,92.3014605826% 76.4278760969%,91.0688922482% 77.6604444312%,89.6410161514% 78.6602540378%,55% 98.6602540378%,53.4202014333% 99.3969262079%,51.7364817767% 99.8480775301%,50% 100%,48.2635182233% 99.8480775301%,46.5797985667% 99.3969262079%,45% 98.6602540378%,10.3589838486% 78.6602540378%,8.9311077518% 77.6604444312%,7.6985394174% 76.4278760969%,6.6987298108% 75%,5.9620576408% 73.4202014333%,5.5109063185% 71.7364817767%,5.3589838486% 70%,5.3589838486% 30%,5.5109063185% 28.2635182233%,5.9620576408% 26.5797985667%,6.6987298108% 25%,7.6985394174% 23.5721239031%,8.9311077518% 22.3395555688%,10.3589838486% 21.3397459622%)}.octagon{clip-path:polygon(46.1731656763% .7612046749%,47.411809549% .3407417371%,48.6947380778% .0855513863%,50% 0,51.3052619222% .0855513863%,52.588190451% .3407417371%,53.8268343237% .7612046749%,82.1111055711% 12.4769334274%,83.2842712475% 13.0554747147%,84.3718855375% 13.7821953496%,85.3553390593% 14.6446609407%,86.2178046504% 15.6281144625%,86.9445252853% 16.7157287525%,87.5230665726% 17.8888944289%,99.2387953251% 46.1731656763%,99.6592582629% 47.411809549%,99.9144486137% 48.6947380778%,100% 50%,99.9144486137% 51.3052619222%,99.6592582629% 52.588190451%,99.2387953251% 53.8268343237%,87.5230665726% 82.1111055711%,86.9445252853% 83.2842712475%,86.2178046504% 84.3718855375%,85.3553390593% 85.3553390593%,84.3718855375% 86.2178046504%,83.2842712475% 86.9445252853%,82.1111055711% 87.5230665726%,53.8268343237% 99.2387953251%,52.588190451% 99.6592582629%,51.3052619222% 99.9144486137%,50% 100%,48.6947380778% 99.9144486137%,47.411809549% 99.6592582629%,46.1731656763% 99.2387953251%,17.8888944289% 87.5230665726%,16.7157287525% 86.9445252853%,15.6281144625% 86.2178046504%,14.6446609407% 85.3553390593%,13.7821953496% 84.3718855375%,13.0554747147% 83.2842712475%,12.4769334274% 82.1111055711%,.7612046749% 53.8268343237%,.3407417371% 52.588190451%,.0855513863% 51.3052619222%,0 50%,.0855513863% 48.6947380778%,.3407417371% 47.411809549%,.7612046749% 46.1731656763%,12.4769334274% 17.8888944289%,13.0554747147% 16.7157287525%,13.7821953496% 15.6281144625%,14.6446609407% 14.6446609407%,15.6281144625% 13.7821953496%,16.7157287525% 13.0554747147%,17.8888944289% 12.4769334274%)}.ribbon{position:relative}.ribbon .ribbon-label{display:flex;justify-content:center;align-items:center;padding:5px 10px;position:absolute;z-index:1;background-color:#3699ff;box-shadow:0 -1px 5px 0 rgba(0,0,0,.1);color:#fff;top:50%;right:0;transform:translateX(5px) translateY(-50%)}.ribbon .ribbon-label>.ribbon-inner{z-index:-1;position:absolute;padding:0;width:100%;height:100%;top:0;left:0}.ribbon .ribbon-label:after{border-color:#004d9c}.ribbon-vertical .ribbon-label{padding:5px 10px;min-width:36px;min-height:46px;text-align:center}.ribbon.ribbon-top .ribbon-label{top:0;transform:translateX(-15px) translateY(-4px);border-bottom-right-radius:.475rem;border-bottom-left-radius:.475rem}.ribbon.ribbon-bottom .ribbon-label{border-top-right-radius:.475rem;border-top-left-radius:.475rem}.ribbon.ribbon-start .ribbon-label{top:50%;left:0;right:auto;transform:translateX(-5px) translateY(-50%);border-top-right-radius:.475rem;border-bottom-right-radius:.475rem}.ribbon.ribbon-end .ribbon-label{border-top-left-radius:.475rem;border-bottom-left-radius:.475rem}.ribbon.ribbon-clip.ribbon-start .ribbon-label{left:-5px}.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner{border-top-right-radius:.475rem;border-bottom-right-radius:.475rem}.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:after,.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:before{content:"";position:absolute;border-style:solid;border-color:transparent!important;bottom:-10px}.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:before{border-width:0 10px 10px 0;border-right-color:#323248!important;left:0}.ribbon.ribbon-clip.ribbon-end .ribbon-label{right:-5px}.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner{border-top-left-radius:.475rem;border-bottom-left-radius:.475rem}.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:after,.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:before{content:"";position:absolute;border-style:solid;border-color:transparent!important;bottom:-10px}.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:before{border-width:0 0 10px 10px;border-left-color:#323248!important;right:0}.ribbon.ribbon-triangle{position:absolute;z-index:1;display:flex;align-items:flex-start;justify-content:flex-start}.ribbon.ribbon-triangle.ribbon-top-start{top:0;left:0;width:4rem;height:4rem;border-bottom:solid 2rem transparent!important;border-left:solid 2rem red;border-right:solid 2rem transparent!important;border-top:solid 2rem red}.ribbon.ribbon-triangle.ribbon-top-end{top:0;right:0;width:4rem;height:4rem;border-bottom:solid 2rem transparent!important;border-left:solid 2rem transparent!important;border-right:solid 2rem red;border-top:solid 2rem red}.ribbon.ribbon-triangle.ribbon-bottom-start{bottom:0;left:0;width:4rem;height:4rem;border-bottom:solid 2rem red;border-left:solid 2rem red;border-right:solid 2rem transparent!important;border-top:solid 2rem transparent!important}.ribbon.ribbon-triangle.ribbon-bottom-end{bottom:0;right:0;width:4rem;height:4rem;border-bottom:solid 2rem red;border-right:solid 2rem red;border-left:solid 2rem transparent!important;border-top:solid 2rem transparent!important}.blockui{position:relative}.blockui .blockui-overlay{transition:all .3s ease;position:absolute;top:0;bottom:0;left:0;right:0;display:flex;justify-content:center;align-items:center;background-color:rgba(0,0,0,.05)}.blockui .blockui-overlay .spinner-border{height:1.35rem;width:1.35rem}.blockui .blockui-message{display:flex;align-items:center;border-radius:.475rem;box-shadow:0 0 30px rgba(0,0,0,.3);background-color:#2b2b40;color:#92929f;font-weight:500;margin:0!important;width:auto;padding:.85rem 1.75rem!important}.blockui .blockui-message .spinner-border{margin-right:.65rem}.notice.border-white{border-color:rgba(255,255,255,.5)!important}.notice.border-light{border-color:rgba(50,50,72,.5)!important}.notice.border-primary{border-color:rgba(54,153,255,.5)!important}.notice.border-secondary{border-color:rgba(50,50,72,.5)!important}.notice.border-success{border-color:rgba(11,183,131,.5)!important}.notice.border-info{border-color:rgba(137,80,252,.5)!important}.notice.border-warning{border-color:rgba(255,168,0,.5)!important}.notice.border-danger{border-color:rgba(246,78,96,.5)!important}.notice.border-dark{border-color:rgba(255,255,255,.5)!important}.explore-btn-toggle{color:#6d6d80;background-color:#fff}.explore-btn-toggle:active,.explore-btn-toggle:focus,.explore-btn-toggle:hover{color:#fff;background-color:#00b2ff}.explore-btn-dismiss{border:0}.explore-btn-dismiss:hover .svg-icon,.explore-btn-dismiss:hover i{color:#00b2ff}.explore-btn-primary{border:0;color:#fff;background-color:#00b2ff}.explore-btn-primary:hover{color:#fff;background-color:#0098da}.explore-btn-secondary{border:0;color:#6d6d80;background-color:#1b1b29}.explore-btn-secondary:hover{color:#cdcdde;background-color:#2b2b40}.explore-btn-outline{border:1px dashed #323248!important}.explore-btn-outline.active,.explore-btn-outline:hover{border:1px dashed #50cd89!important;background-color:#e8fff3}.explore-link{color:#00b2ff}.explore-link:hover{color:#0098da}.explore-link-hover:hover{color:#00b2ff!important}.explore-icon-success{color:#50cd89}.explore-icon-danger{color:#f1416c}.explore-label-free{color:#fff;background-color:#ffc700}.explore-label-pro{color:#fff;background-color:#50cd89}.cookiealert{background:inherit;color:inherit}@media print{.print-content-only{padding:0!important;background:0 0!important}.print-content-only .container,.print-content-only .container-fluid,.print-content-only .container-lg,.print-content-only .container-md,.print-content-only .container-sm,.print-content-only .container-xl,.print-content-only .container-xxl,.print-content-only .page,.print-content-only .page-title .content,.print-content-only .wrapper{background:0 0!important;padding:0!important;margin:0!important}.print-content-only .aside,.print-content-only .btn,.print-content-only .drawer,.print-content-only .footer,.print-content-only .header,.print-content-only .scrolltop,.print-content-only .sidebar,.print-content-only .toolbar{display:none!important}}@media (min-width:992px){.container-custom{padding-left:2rem!important;padding-right:2rem!important}}@media (max-width:991.98px){.container-custom{max-width:none;padding-left:1.5rem!important;padding-right:1.5rem!important}}.landing-dark-bg{background-color:#13263c}.landing-dark-color{color:#13263c}.landing-dark-border{border:1px dashed #2c3f5b}.landing-dark-separator{border-top:1px dashed #2c3f5b}.landing-curve{position:relative}.landing-curve svg{position:relative;top:0;display:block}.landing-header{display:flex;align-items:center;height:100px}.landing-header .logo-default{display:block}.landing-header .logo-sticky{display:none}.landing-header .menu .menu-link.active{color:#fff}[data-kt-sticky-landing-header=on] .landing-header .menu .menu-link.active{color:#3699ff;background-color:rgba(239,242,245,.4)}[data-kt-sticky-landing-header=on] .landing-header{padding:0;position:fixed;top:0;right:0;left:0;z-index:100;background-color:#fff;box-shadow:0 10px 30px 0 rgba(82,63,105,.05);height:70px}[data-kt-sticky-landing-header=on] .landing-header .logo-sticky{display:block}[data-kt-sticky-landing-header=on] .landing-header .logo-default{display:none}body[data-kt-sticky-landing-header=on]{padding-top:100px}@media (max-width:991.98px){.landing-header{height:70px}.landing-header .landing-menu-wrapper{position:relative;overflow:auto}[data-kt-sticky-landing-header=on] .landing-header{height:70px}.landing-header .menu .menu-link.active{color:#3699ff;background-color:rgba(239,242,245,.4)}body[data-kt-sticky-landing-header=on]{padding-top:70px}}html{font-family:sans-serif;text-size-adjust:100%}body,html{height:100%;margin:0;padding:0;font-size:13px!important;font-weight:400;font-family:Poppins,Helvetica,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (max-width:991.98px){body,html{font-size:13px!important}}@media (max-width:767.98px){body,html{font-size:12px!important}}body a:active,body a:focus,body a:hover,html a:active,html a:focus,html a:hover{text-decoration:none!important}body{display:flex;flex-direction:column;color:#fff}router-outlet{display:none}canvas{user-select:none}@media print{.print-content-only{padding:0!important;background:0 0!important}.print-content-only .container,.print-content-only .container-fluid,.print-content-only .container-lg,.print-content-only .container-md,.print-content-only .container-sm,.print-content-only .container-xl,.print-content-only .container-xxl,.print-content-only .page,.print-content-only .page-title .content,.print-content-only .wrapper{background:0 0!important;padding:0!important;margin:0!important}.print-content-only .aside,.print-content-only .btn,.print-content-only .drawer,.print-content-only .footer,.print-content-only .header,.print-content-only .scrolltop,.print-content-only .sidebar,.print-content-only .toolbar{display:none!important}}body{background-color:#151521}.text-page-bg{color:#151521}@media (min-width:992px){.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{padding:0 30px}.wrapper{transition:padding-left .3s ease,margin-right .3s ease}.aside-enabled.aside-fixed .wrapper{transition:padding-left .3s ease;padding-left:265px}.aside-enabled.aside-fixed[data-kt-aside-minimize=on] .wrapper{transition:padding-left .3s ease;padding-left:75px}.header-fixed .wrapper{padding-top:65px}.header-fixed.toolbar-fixed .wrapper{padding-top:calc(65px + var(--kt-toolbar-height))}}@media (max-width:991.98px){.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:none;padding:0 15px}.header-tablet-and-mobile-fixed .wrapper{padding-top:55px}.header-tablet-and-mobile-fixed.toolbar-tablet-and-mobile-fixed .wrapper{padding-top:calc(55px + var(--kt-toolbar-height-tablet-and-mobile))}}@media (min-width:992px){.header{display:flex;justify-content:space-between;align-items:center;position:relative;z-index:2;height:65px;transition:left .3s ease}.header-fixed .header{position:fixed;top:0;right:0;left:0;z-index:100;background-color:#1e1e2d;height:65px;padding:0;box-shadow:none}.header-fixed.toolbar-fixed .header{box-shadow:none}.aside-enabled.aside-fixed.header-fixed .header{left:265px;transition:left .3s ease}.aside-enabled.aside-fixed.header-fixed[data-kt-aside-minimize=on] .header{left:75px;transition:left .3s ease}.header .header-menu{display:flex}}@media (max-width:991.98px){.header{display:flex;justify-content:space-between;align-items:center;height:55px;position:relative;z-index:3}.header-tablet-and-mobile-fixed .header{position:fixed;top:0;right:0;left:0;z-index:100;height:55px;min-height:55px;background-color:#1e1e2d;box-shadow:none}.header-tablet-and-mobile-fixed.toolbar-tablet-and-mobile-fixed .header{box-shadow:none}.header .header-menu{display:none;z-index:99}.header .page-title{display:none!important}}.toolbar{display:flex;align-items:center;background-color:#1a1a27;padding:.5rem 0}@media (min-width:992px){.toolbar-fixed .toolbar{height:var(--kt-toolbar-height);position:fixed;top:0;right:0;left:0;z-index:99;box-shadow:none}.toolbar-enabled:not(.toolbar-fixed) .toolbar{margin-bottom:30px}.header-fixed.toolbar-fixed .toolbar{padding:0;top:65px;border-top:0}.aside-enabled.aside-fixed.toolbar-fixed .toolbar{left:265px;transition:left .3s ease}.aside-enabled.aside-fixed.toolbar-fixed[data-kt-aside-minimize=on] .toolbar{left:75px;transition:left .3s ease}}@media (max-width:991.98px){.toolbar-tablet-and-mobile-fixed .toolbar{height:var(--kt-toolbar-height-tablet-and-mobile);position:fixed;top:0;right:0;left:0;z-index:99;box-shadow:none}.toolbar-enabled:not(.toolbar-tablet-and-mobile-fixed) .toolbar{margin-bottom:15px}.header-tablet-and-mobile-fixed.toolbar-tablet-and-mobile-fixed .toolbar{padding:0;top:55px;border-top:0}.toolbar .page-title[data-kt-swapper=true]{display:none!important}}.aside{display:flex;flex-direction:column;box-shadow:none;padding:0}.aside .btn-custom{display:flex;align-items:center;justify-content:center;padding-left:0;padding-right:0}.aside .btn-custom .btn-label{transition:opacity .3s ease;display:inline-block;white-space:nowrap;overflow:hidden;opacity:1}.aside .btn-custom .btn-icon{display:inline-block;transition:opacity .3s ease;overflow:hidden;opacity:0;margin:0;width:0}.aside.aside-dark{background-color:#1e1e2d}.aside.aside-dark .aside-logo{background-color:#1a1a27}.aside.aside-dark .aside-toggle{color:#494b74}.aside.aside-dark .separator{border-bottom-color:#282a3d}.aside.aside-dark .btn-custom{color:#b5b5c3;background-color:rgba(63,66,84,.35)}.aside.aside-dark .btn-custom.active,.aside.aside-dark .btn-custom.show,.aside.aside-dark .btn-custom:active:not(.btn-active),.aside.aside-dark .btn-custom:focus:not(.btn-active),.aside.aside-dark .btn-custom:hover:not(.btn-active),.btn-check:active+.aside.aside-dark .btn-custom,.btn-check:checked+.aside.aside-dark .btn-custom,.show>.aside.aside-dark .btn-custom{color:#b5b5c3;background-color:rgba(63,66,84,.35)!important}.aside.aside-dark .btn-custom .btn-icon,.aside.aside-dark .btn-custom .btn-icon .svg-icon,.aside.aside-dark .btn-custom .btn-icon i{color:#b5b5c3}.aside.aside-light{background-color:#fff}@media (min-width:992px){.aside{width:265px;transition:width .3s ease}.aside .aside-logo{display:flex;justify-content:space-between;align-items:center;height:65px;padding:0 25px}.aside .aside-menu{width:265px}.aside-fixed .aside{position:fixed;top:0;bottom:0;left:0;z-index:101;overflow:hidden}.aside-static .aside{position:relative;z-index:1}[data-kt-aside-minimize=on] .aside{width:75px;transition:width .3s ease}[data-kt-aside-minimize=on] .aside .aside-logo .logo-default{display:inline-block}[data-kt-aside-minimize=on] .aside .aside-logo .logo-minimize{display:none}[data-kt-aside-minimize=on] .aside.aside-hoverable:hover:not(.animating){transition:width .3s ease;width:265px;box-shadow:none}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo{justify-content:center}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo .logo,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo .logo{display:none}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo .logo-default,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo .logo-default{display:none}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo .logo-minimize,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo .logo-minimize{display:inline-block}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-menu .menu-content,[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-menu .menu-title,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-menu .menu-content,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-menu .menu-title{opacity:0;transition:opacity .3s ease}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-menu .menu-item.show>.menu-sub,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-menu .menu-item.show>.menu-sub{height:0;overflow:hidden;transition:height .3s ease}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .btn-custom .btn-label,[data-kt-aside-minimize=on] .aside:not(:hover) .btn-custom .btn-label{width:0;opacity:0;transition:opacity .3s ease}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .btn-custom .btn-icon,[data-kt-aside-minimize=on] .aside:not(:hover) .btn-custom .btn-icon{width:auto;opacity:1;transition:opacity .3s ease}}@media (max-width:991.98px){.aside{display:none}.aside .aside-logo{display:none}}.aside-menu .menu .menu-item .menu-content,.aside-menu .menu .menu-item .menu-link{padding-left:25px;padding-right:25px}.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(.75rem + 25px)}.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(1.5rem + 25px)}.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(2.25rem + 25px)}.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(3rem + 25px)}.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:.75rem;padding-right:0}.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(1.5rem);padding-right:0}.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(2.25rem);padding-right:0}.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(3rem);padding-right:0}.aside-menu .menu-item{padding:0}.aside-menu .menu-item .menu-link{padding-top:.75rem;padding-bottom:.75rem}.aside-menu .menu-item .menu-icon{justify-content:flex-start}.aside-dark .hover-scroll-overlay-y{--scrollbar-space:0.4rem;scrollbar-color:#2b2b40 transparent}.aside-dark .hover-scroll-overlay-y::-webkit-scrollbar-thumb{background-color:#2b2b40}.aside-dark .hover-scroll-overlay-y:hover{scrollbar-color:#323248 transparent}.aside-dark .hover-scroll-overlay-y:hover::-webkit-scrollbar-thumb{background-color:#323248}.aside-dark .menu .menu-item .menu-section{color:#4c4e6f!important}.aside-dark .menu .menu-item .menu-link{color:#9899ac}.aside-dark .menu .menu-item .menu-link .menu-title{color:#9899ac}.aside-dark .menu .menu-item .menu-link .menu-icon,.aside-dark .menu .menu-item .menu-link .menu-icon .svg-icon,.aside-dark .menu .menu-item .menu-link .menu-icon i{color:#494b74}.aside-dark .menu .menu-item .menu-link .menu-bullet .bullet{background-color:#9899ac}.aside-dark .menu .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%239899ac'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%239899ac'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#1b1b28;color:#fff}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#fff}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.aside-dark .menu .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#1b1b28;color:#fff}.aside-dark .menu .menu-item.here>.menu-link .menu-title{color:#fff}.aside-dark .menu .menu-item.here>.menu-link .menu-icon,.aside-dark .menu .menu-item.here>.menu-link .menu-icon .svg-icon,.aside-dark .menu .menu-item.here>.menu-link .menu-icon i{color:#3699ff}.aside-dark .menu .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#3699ff}.aside-dark .menu .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.aside-dark .menu .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#1b1b28;color:#fff}.aside-dark .menu .menu-item.show>.menu-link .menu-title{color:#fff}.aside-dark .menu .menu-item.show>.menu-link .menu-icon,.aside-dark .menu .menu-item.show>.menu-link .menu-icon .svg-icon,.aside-dark .menu .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.aside-dark .menu .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.aside-dark .menu .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.aside-dark .menu .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#1b1b28;color:#fff}.aside-dark .menu .menu-item .menu-link.active .menu-title{color:#fff}.aside-dark .menu .menu-item .menu-link.active .menu-icon,.aside-dark .menu .menu-item .menu-link.active .menu-icon .svg-icon,.aside-dark .menu .menu-item .menu-link.active .menu-icon i{color:#3699ff}.aside-dark .menu .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.aside-dark .menu .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.aside-light .menu .menu-title{font-weight:500}@media (min-width:992px){.content{padding:30px 0}.toolbar-enabled:not(.toolbar-fixed) .content{padding-top:0}}@media (max-width:991.98px){.content{padding:15px 0}.toolbar-enabled:not(.toolbar-tablet-and-mobile-fixed) .content{padding-top:0}}.footer{background-color:#1b1b28}@media print{.print-content-only{padding:0!important;background:0 0!important}.print-content-only .container,.print-content-only .container-fluid,.print-content-only .container-lg,.print-content-only .container-md,.print-content-only .container-sm,.print-content-only .container-xl,.print-content-only .container-xxl,.print-content-only .docs-page,.print-content-only .docs-page-title .docs-content,.print-content-only .docs-wrapper{background:0 0!important;padding:0!important;margin:0!important}.print-content-only .btn,.print-content-only .docs-aside,.print-content-only .docs-header,.print-content-only .drawer,.print-content-only docs- .scrolltop{display:none!important}}.docs-wrapper{background-color:#151521}@media (min-width:992px){.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{padding:0 30px}.docs-wrapper{padding-left:265px}}@media (max-width:991.98px){.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:none;padding:0 15px}}@media (min-width:992px){.docs-header{display:flex;justify-content:space-between;align-items:center}}@media (max-width:991.98px){.docs-header{display:flex;justify-content:space-between;align-items:center}.docs-header .docs-page-title[data-kt-swapper=true]{display:none!important}}.docs-aside{display:flex;flex-direction:column;box-shadow:0 0 28px 0 rgba(82,63,105,.025);background-color:#1e1e2d;padding:0}@media (min-width:992px){.docs-aside{position:fixed;top:0;bottom:0;left:0;z-index:101;overflow:hidden;width:265px}.docs-aside .docs-aside-logo{display:flex;justify-content:space-between;align-items:center;padding:0 25px}.docs-aside .docs-aside-menu{width:265px}}@media (max-width:991.98px){.docs-aside{display:none}.docs-aside .docs-aside-logo{display:none}}.docs-aside-menu .menu .menu-item .menu-content,.docs-aside-menu .menu .menu-item .menu-link{padding-left:25px;padding-right:25px}.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(.75rem + 25px)}.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(1.5rem + 25px)}.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(2.25rem + 25px)}.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(3rem + 25px)}.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:.75rem;padding-right:0}.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(1.5rem);padding-right:0}.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(2.25rem);padding-right:0}.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-left:calc(3rem);padding-right:0}.docs-aside-menu .menu-item{padding:0}.docs-aside-menu .menu-item .menu-link{font-weight:500;padding-top:.75rem;padding-bottom:.75rem}.docs-aside-menu .menu-item .menu-icon{justify-content:flex-start}.card.card-docs{background-color:#1e1e2d;border:0} \ No newline at end of file diff --git a/Mid-term/public/assets/css/style.dark.bundle.rtl.css b/Mid-term/public/assets/css/style.dark.bundle.rtl.css new file mode 100644 index 000000000..f7b731483 --- /dev/null +++ b/Mid-term/public/assets/css/style.dark.bundle.rtl.css @@ -0,0 +1 @@ +@charset "UTF-8";:root{--bs-blue:#009ef6;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-gray:#6D6D80;--bs-gray-dark:#CDCDDE;--bs-gray-100:#1b1b29;--bs-gray-200:#2B2B40;--bs-gray-300:#323248;--bs-gray-400:#474761;--bs-gray-500:#565674;--bs-gray-600:#6D6D80;--bs-gray-700:#92929F;--bs-gray-800:#CDCDDE;--bs-gray-900:#FFFFFF;--bs-white:#ffffff;--bs-light:#323248;--bs-primary:#3699FF;--bs-secondary:#323248;--bs-success:#0BB783;--bs-info:#8950FC;--bs-warning:#FFA800;--bs-danger:#F64E60;--bs-dark:#FFFFFF;--bs-white-rgb:255,255,255;--bs-light-rgb:50,50,72;--bs-primary-rgb:54,153,255;--bs-secondary-rgb:50,50,72;--bs-success-rgb:11,183,131;--bs-info-rgb:137,80,252;--bs-warning-rgb:255,168,0;--bs-danger-rgb:246,78,96;--bs-dark-rgb:255,255,255;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:255,255,255;--bs-body-bg-rgb:30,30,45;--bs-font-sans-serif:Poppins,Helvetica,"sans-serif";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#FFFFFF;--bs-body-bg:#1E1E2D}*,::after,::before{box-sizing:border-box}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:600;line-height:1.2;color:#fff}.h1,h1{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h1,h1{font-size:1.75rem}}.h2,h2{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h2,h2{font-size:1.5rem}}.h3,h3{font-size:calc(1.26rem + .12vw)}@media (min-width:1200px){.h3,h3{font-size:1.35rem}}.h4,h4{font-size:1.25rem}.h5,h5{font-size:1.15rem}.h6,h6{font-size:1.075rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:500}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:600}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#3699ff;text-decoration:none}a:hover{color:#0073e9;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#b93993;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#fff;border-radius:.325rem}kbd kbd{padding:0;font-size:1em;font-weight:500}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#565674;text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=email],[type=number],[type=tel],[type=url]{direction:ltr}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:600;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-right:0;list-style:none}.list-inline{padding-right:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-left:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6d6d80}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#1e1e2d;border:1px solid #323248;border-radius:.475rem;box-shadow:0 .1rem 1rem .25rem rgba(0,0,0,.05);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6d6d80}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-left:var(--bs-gutter-x,1.5rem);padding-right:var(--bs-gutter-x,1.5rem);margin-left:auto;margin-right:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-left:calc(-.5 * var(--bs-gutter-x));margin-right:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--bs-gutter-x) * .5);padding-right:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.33333333%}.offset-2{margin-right:16.66666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.33333333%}.offset-5{margin-right:41.66666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.33333333%}.offset-8{margin-right:66.66666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.33333333%}.offset-11{margin-right:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0rem}.g-0,.gy-0{--bs-gutter-y:0rem}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:0.75rem}.g-3,.gy-3{--bs-gutter-y:0.75rem}.g-4,.gx-4{--bs-gutter-x:1rem}.g-4,.gy-4{--bs-gutter-y:1rem}.g-5,.gx-5{--bs-gutter-x:1.25rem}.g-5,.gy-5{--bs-gutter-y:1.25rem}.g-6,.gx-6{--bs-gutter-x:1.5rem}.g-6,.gy-6{--bs-gutter-y:1.5rem}.g-7,.gx-7{--bs-gutter-x:1.75rem}.g-7,.gy-7{--bs-gutter-y:1.75rem}.g-8,.gx-8{--bs-gutter-x:2rem}.g-8,.gy-8{--bs-gutter-y:2rem}.g-9,.gx-9{--bs-gutter-x:2.25rem}.g-9,.gy-9{--bs-gutter-y:2.25rem}.g-10,.gx-10{--bs-gutter-x:2.5rem}.g-10,.gy-10{--bs-gutter-y:2.5rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.33333333%}.offset-sm-2{margin-right:16.66666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.33333333%}.offset-sm-5{margin-right:41.66666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.33333333%}.offset-sm-8{margin-right:66.66666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.33333333%}.offset-sm-11{margin-right:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0rem}.g-sm-0,.gy-sm-0{--bs-gutter-y:0rem}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:0.75rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:0.75rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:1.25rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:1.25rem}.g-sm-6,.gx-sm-6{--bs-gutter-x:1.5rem}.g-sm-6,.gy-sm-6{--bs-gutter-y:1.5rem}.g-sm-7,.gx-sm-7{--bs-gutter-x:1.75rem}.g-sm-7,.gy-sm-7{--bs-gutter-y:1.75rem}.g-sm-8,.gx-sm-8{--bs-gutter-x:2rem}.g-sm-8,.gy-sm-8{--bs-gutter-y:2rem}.g-sm-9,.gx-sm-9{--bs-gutter-x:2.25rem}.g-sm-9,.gy-sm-9{--bs-gutter-y:2.25rem}.g-sm-10,.gx-sm-10{--bs-gutter-x:2.5rem}.g-sm-10,.gy-sm-10{--bs-gutter-y:2.5rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.33333333%}.offset-md-2{margin-right:16.66666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.33333333%}.offset-md-5{margin-right:41.66666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.33333333%}.offset-md-8{margin-right:66.66666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.33333333%}.offset-md-11{margin-right:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0rem}.g-md-0,.gy-md-0{--bs-gutter-y:0rem}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:0.75rem}.g-md-3,.gy-md-3{--bs-gutter-y:0.75rem}.g-md-4,.gx-md-4{--bs-gutter-x:1rem}.g-md-4,.gy-md-4{--bs-gutter-y:1rem}.g-md-5,.gx-md-5{--bs-gutter-x:1.25rem}.g-md-5,.gy-md-5{--bs-gutter-y:1.25rem}.g-md-6,.gx-md-6{--bs-gutter-x:1.5rem}.g-md-6,.gy-md-6{--bs-gutter-y:1.5rem}.g-md-7,.gx-md-7{--bs-gutter-x:1.75rem}.g-md-7,.gy-md-7{--bs-gutter-y:1.75rem}.g-md-8,.gx-md-8{--bs-gutter-x:2rem}.g-md-8,.gy-md-8{--bs-gutter-y:2rem}.g-md-9,.gx-md-9{--bs-gutter-x:2.25rem}.g-md-9,.gy-md-9{--bs-gutter-y:2.25rem}.g-md-10,.gx-md-10{--bs-gutter-x:2.5rem}.g-md-10,.gy-md-10{--bs-gutter-y:2.5rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.33333333%}.offset-lg-2{margin-right:16.66666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.33333333%}.offset-lg-5{margin-right:41.66666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.33333333%}.offset-lg-8{margin-right:66.66666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.33333333%}.offset-lg-11{margin-right:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0rem}.g-lg-0,.gy-lg-0{--bs-gutter-y:0rem}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:0.75rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:0.75rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:1.25rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:1.25rem}.g-lg-6,.gx-lg-6{--bs-gutter-x:1.5rem}.g-lg-6,.gy-lg-6{--bs-gutter-y:1.5rem}.g-lg-7,.gx-lg-7{--bs-gutter-x:1.75rem}.g-lg-7,.gy-lg-7{--bs-gutter-y:1.75rem}.g-lg-8,.gx-lg-8{--bs-gutter-x:2rem}.g-lg-8,.gy-lg-8{--bs-gutter-y:2rem}.g-lg-9,.gx-lg-9{--bs-gutter-x:2.25rem}.g-lg-9,.gy-lg-9{--bs-gutter-y:2.25rem}.g-lg-10,.gx-lg-10{--bs-gutter-x:2.5rem}.g-lg-10,.gy-lg-10{--bs-gutter-y:2.5rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.33333333%}.offset-xl-2{margin-right:16.66666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.33333333%}.offset-xl-5{margin-right:41.66666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.33333333%}.offset-xl-8{margin-right:66.66666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.33333333%}.offset-xl-11{margin-right:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0rem}.g-xl-0,.gy-xl-0{--bs-gutter-y:0rem}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:0.75rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:0.75rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:1.25rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:1.25rem}.g-xl-6,.gx-xl-6{--bs-gutter-x:1.5rem}.g-xl-6,.gy-xl-6{--bs-gutter-y:1.5rem}.g-xl-7,.gx-xl-7{--bs-gutter-x:1.75rem}.g-xl-7,.gy-xl-7{--bs-gutter-y:1.75rem}.g-xl-8,.gx-xl-8{--bs-gutter-x:2rem}.g-xl-8,.gy-xl-8{--bs-gutter-y:2rem}.g-xl-9,.gx-xl-9{--bs-gutter-x:2.25rem}.g-xl-9,.gy-xl-9{--bs-gutter-y:2.25rem}.g-xl-10,.gx-xl-10{--bs-gutter-x:2.5rem}.g-xl-10,.gy-xl-10{--bs-gutter-y:2.5rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.33333333%}.offset-xxl-2{margin-right:16.66666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.33333333%}.offset-xxl-5{margin-right:41.66666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.33333333%}.offset-xxl-8{margin-right:66.66666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.33333333%}.offset-xxl-11{margin-right:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0rem}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0rem}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:0.75rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:0.75rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:1.25rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:1.25rem}.g-xxl-6,.gx-xxl-6{--bs-gutter-x:1.5rem}.g-xxl-6,.gy-xxl-6{--bs-gutter-y:1.5rem}.g-xxl-7,.gx-xxl-7{--bs-gutter-x:1.75rem}.g-xxl-7,.gy-xxl-7{--bs-gutter-y:1.75rem}.g-xxl-8,.gx-xxl-8{--bs-gutter-x:2rem}.g-xxl-8,.gy-xxl-8{--bs-gutter-y:2rem}.g-xxl-9,.gx-xxl-9{--bs-gutter-x:2.25rem}.g-xxl-9,.gy-xxl-9{--bs-gutter-y:2.25rem}.g-xxl-10,.gx-xxl-10{--bs-gutter-x:2.5rem}.g-xxl-10,.gy-xxl-10{--bs-gutter-y:2.5rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#FFFFFF;--bs-table-striped-bg:rgba(27, 27, 41, 0.75);--bs-table-active-color:#FFFFFF;--bs-table-active-bg:#1b1b29;--bs-table-hover-color:#FFFFFF;--bs-table-hover-bg:#1b1b29;width:100%;margin-bottom:1rem;color:#fff;vertical-align:top;border-color:#2b2b40}.table>:not(caption)>*>*{padding:.75rem .75rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.5rem .5rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#d7ebff;--bs-table-striped-bg:#ccdff2;--bs-table-striped-color:#000000;--bs-table-active-bg:#c2d4e6;--bs-table-active-color:#000000;--bs-table-hover-bg:#c7d9ec;--bs-table-hover-color:#000000;color:#000;border-color:#c2d4e6}.table-secondary{--bs-table-bg:#d6d6da;--bs-table-striped-bg:#cbcbcf;--bs-table-striped-color:#000000;--bs-table-active-bg:#c1c1c4;--bs-table-active-color:#000000;--bs-table-hover-bg:#c6c6ca;--bs-table-hover-color:#000000;color:#000;border-color:#c1c1c4}.table-success{--bs-table-bg:#cef1e6;--bs-table-striped-bg:#c4e5db;--bs-table-striped-color:#000000;--bs-table-active-bg:#b9d9cf;--bs-table-active-color:#000000;--bs-table-hover-bg:#bfdfd5;--bs-table-hover-color:#000000;color:#000;border-color:#b9d9cf}.table-info{--bs-table-bg:#e7dcfe;--bs-table-striped-bg:#dbd1f1;--bs-table-striped-color:#000000;--bs-table-active-bg:#d0c6e5;--bs-table-active-color:#000000;--bs-table-hover-bg:#d6cceb;--bs-table-hover-color:#000000;color:#000;border-color:#d0c6e5}.table-warning{--bs-table-bg:#ffeecc;--bs-table-striped-bg:#f2e2c2;--bs-table-striped-color:#000000;--bs-table-active-bg:#e6d6b8;--bs-table-active-color:#000000;--bs-table-hover-bg:#ecdcbd;--bs-table-hover-color:#000000;color:#000;border-color:#e6d6b8}.table-danger{--bs-table-bg:#fddcdf;--bs-table-striped-bg:#f0d1d4;--bs-table-striped-color:#000000;--bs-table-active-bg:#e4c6c9;--bs-table-active-color:#000000;--bs-table-hover-bg:#eaccce;--bs-table-hover-color:#000000;color:#000;border-color:#e4c6c9}.table-light{--bs-table-bg:#323248;--bs-table-striped-bg:#3c3c51;--bs-table-striped-color:#ffffff;--bs-table-active-bg:#47475a;--bs-table-active-color:#ffffff;--bs-table-hover-bg:#414156;--bs-table-hover-color:#ffffff;color:#fff;border-color:#47475a}.table-dark{--bs-table-bg:#FFFFFF;--bs-table-striped-bg:#f2f2f2;--bs-table-striped-color:#000000;--bs-table-active-bg:#e6e6e6;--bs-table-active-color:#000000;--bs-table-hover-bg:#ececec;--bs-table-hover-color:#000000;color:#000;border-color:#e6e6e6}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem;font-size:1.05rem;font-weight:500;color:#cdcdde}.col-form-label{padding-top:calc(.75rem + 1px);padding-bottom:calc(.75rem + 1px);margin-bottom:0;font-size:inherit;font-weight:500;line-height:1.5;color:#cdcdde}.col-form-label-lg{padding-top:calc(.825rem + 1px);padding-bottom:calc(.825rem + 1px);font-size:1.15rem}.col-form-label-sm{padding-top:calc(.55rem + 1px);padding-bottom:calc(.55rem + 1px);font-size:.925rem}.form-text{margin-top:.5rem;font-size:.925rem;color:#565674}.form-control{display:block;width:100%;padding:.75rem 1rem;font-size:1.1rem;font-weight:500;line-height:1.5;color:#92929f;background-color:#1e1e2d;background-clip:padding-box;border:1px solid #323248;appearance:none;border-radius:.475rem;box-shadow:inset 0 1px 2px rgba(0,0,0,.075);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#92929f;background-color:#1e1e2d;border-color:#474761;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 0 .25rem rgba(54,153,255,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::placeholder{color:#565674;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#2b2b40;opacity:1}.form-control::file-selector-button{padding:.75rem 1rem;margin:-.75rem -1rem;margin-inline-end:1rem;color:#92929f;background-color:#1b1b29;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;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 (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#1a1a27}.form-control::-webkit-file-upload-button{padding:.75rem 1rem;margin:-.75rem -1rem;margin-inline-end:1rem;color:#92929f;background-color:#1b1b29;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;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 (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#1a1a27}.form-control-plaintext{display:block;width:100%;padding:.75rem 0;margin-bottom:0;line-height:1.5;color:#92929f;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{min-height:calc(1.5em + 1.1rem + 2px);padding:.55rem .75rem;font-size:.925rem;border-radius:.325rem}.form-control-sm::file-selector-button{padding:.55rem .75rem;margin:-.55rem -.75rem;margin-inline-end:.75rem}.form-control-sm::-webkit-file-upload-button{padding:.55rem .75rem;margin:-.55rem -.75rem;margin-inline-end:.75rem}.form-control-lg{min-height:calc(1.5em + 1.65rem + 2px);padding:.825rem 1.5rem;font-size:1.15rem;border-radius:.625rem}.form-control-lg::file-selector-button{padding:.825rem 1.5rem;margin:-.825rem -1.5rem;margin-inline-end:1.5rem}.form-control-lg::-webkit-file-upload-button{padding:.825rem 1.5rem;margin:-.825rem -1.5rem;margin-inline-end:1.5rem}textarea.form-control{min-height:calc(1.5em + 1.5rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + 1.1rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1.65rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.75rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.475rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.475rem}.form-select{display:block;width:100%;padding:.75rem 1rem .75rem 3rem;-moz-padding-start:calc(1rem - 3px);font-size:1.1rem;font-weight:500;line-height:1.5;color:#92929f;background-color:#1e1e2d;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236D6D80' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:left 1rem center;background-size:16px 12px;border:1px solid #323248;border-radius:.475rem;box-shadow:inset 0 1px 2px rgba(0,0,0,.075);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#474761;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 0 .25rem rgba(54,153,255,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-left:1rem;background-image:none}.form-select:disabled{background-color:#2b2b40}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #92929f}.form-select-sm{padding-top:.55rem;padding-bottom:.55rem;padding-right:.75rem;font-size:.925rem;border-radius:.325rem}.form-select-lg{padding-top:.825rem;padding-bottom:.825rem;padding-right:1.5rem;font-size:1.15rem;border-radius:.625rem}.form-check{display:block;min-height:1.5rem;padding-right:2.25rem;margin-bottom:.125rem}.form-check .form-check-input{float:right;margin-right:-2.25rem}.form-check-input{width:1.75rem;height:1.75rem;margin-top:-.125rem;vertical-align:top;background-color:#1e1e2d;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);appearance:none;color-adjust:exact;transition:background-color .15s ease-in-out,background-position .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-check-input{transition:none}}.form-check-input[type=checkbox]{border-radius:.45em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#474761;outline:0;box-shadow:none}.form-check-input:checked{background-color:#3699ff;border-color:#3699ff}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11' width='13' height='11' fill='none'%3e%3cpath d='M11.0426 1.02893C11.3258 0.695792 11.8254 0.655283 12.1585 0.938451C12.4917 1.22162 12.5322 1.72124 12.249 2.05437L5.51985 9.97104C5.23224 10.3094 4.72261 10.3451 4.3907 10.05L0.828197 6.88335C0.50141 6.59288 0.471975 6.09249 0.762452 5.7657C1.05293 5.43891 1.55332 5.40948 1.88011 5.69995L4.83765 8.32889L11.0426 1.02893Z' fill='%23FFFFFF'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23FFFFFF'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#3699ff;border-color:#3699ff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-right:3.75rem}.form-switch .form-check-input{width:3.25rem;margin-right:-3.75rem;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='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:right center;border-radius:3.25rem;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{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='%23474761'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:left center;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='%23FFFFFF'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-left:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.6}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #1e1e2d,0 0 0 .25rem rgba(54,153,255,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #1e1e2d,0 0 0 .25rem rgba(54,153,255,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#3699ff;border:0;border-radius:1rem;box-shadow:0 .1rem .25rem rgba(0,0,0,.1);transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#c3e0ff}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#323248;border-color:transparent;border-radius:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075)}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#3699ff;border:0;border-radius:1rem;box-shadow:0 .1rem .25rem rgba(0,0,0,.1);transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:#c3e0ff}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#323248;border-color:transparent;border-radius:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075)}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#565674}.form-range:disabled::-moz-range-thumb{background-color:#565674}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:add(3.75rem,2px);line-height:1.25}.form-floating>label{position:absolute;top:0;right:0;height:100%;padding:1rem 1rem;pointer-events:none;border:1px solid transparent;transform-origin:100% 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem 1rem}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:2.15rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:2.15rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:2.15rem;padding-bottom:.625rem}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.75rem 1rem;font-size:1.1rem;font-weight:500;line-height:1.5;color:#cdcdde;text-align:center;white-space:nowrap;background-color:#1b1b29;border:1px solid #323248;border-radius:.475rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.825rem 1.5rem;font-size:1.15rem;border-radius:.625rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.55rem .75rem;font-size:.925rem;border-radius:.325rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-left:4rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-left-radius:0;border-bottom-left-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}.valid-feedback{display:none;width:100%;margin-top:.5rem;font-size:.925rem;color:#0bb783}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.75rem 1rem;margin-top:.1rem;font-size:.925rem;color:#000;background-color:#0bb783;border-radius:.475rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#0bb783;padding-left:calc(1.5em + 1.5rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%230BB783' 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:left calc(.375em + .375rem) center;background-size:calc(.75em + .75rem) calc(.75em + .75rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#0bb783;box-shadow:0 0 0 .25rem rgba(11,183,131,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-left:calc(1.5em + 1.5rem);background-position:top calc(.375em + .375rem) left calc(.375em + .375rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#0bb783}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-left:5.5rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236D6D80' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%230BB783' 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-position:left 1rem center,center left 3rem;background-size:16px 12px,calc(.75em + .75rem) calc(.75em + .75rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#0bb783;box-shadow:0 0 0 .25rem rgba(11,183,131,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#0bb783}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#0bb783}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(11,183,131,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#0bb783}.form-check-inline .form-check-input~.valid-feedback{margin-right:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.5rem;font-size:.925rem;color:#f64e60}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.75rem 1rem;margin-top:.1rem;font-size:.925rem;color:#000;background-color:#f64e60;border-radius:.475rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#f64e60;padding-left:calc(1.5em + 1.5rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F64E60'%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='%23F64E60' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:left calc(.375em + .375rem) center;background-size:calc(.75em + .75rem) calc(.75em + .75rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#f64e60;box-shadow:0 0 0 .25rem rgba(246,78,96,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-left:calc(1.5em + 1.5rem);background-position:top calc(.375em + .375rem) left calc(.375em + .375rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#f64e60}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-left:5.5rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236D6D80' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F64E60'%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='%23F64E60' stroke='none'/%3e%3c/svg%3e");background-position:left 1rem center,center left 3rem;background-size:16px 12px,calc(.75em + .75rem) calc(.75em + .75rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#f64e60;box-shadow:0 0 0 .25rem rgba(246,78,96,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#f64e60}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#f64e60}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(246,78,96,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#f64e60}.form-check-inline .form-check-input~.invalid-feedback{margin-right:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:500;line-height:1.5;color:#fff;text-align:center;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.75rem 1.5rem;font-size:1.1rem;border-radius:.475rem;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 (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#fff;text-decoration:none}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(54,153,255,.25)}.btn-check:active+.btn,.btn-check:checked+.btn,.btn.active,.btn:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-check:active+.btn:focus,.btn-check:checked+.btn:focus,.btn.active:focus,.btn:active:focus{box-shadow:0 0 0 .25rem rgba(54,153,255,.25),inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.6;box-shadow:none}.btn-white{color:#000;background-color:#fff;border-color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-white,.btn-white:focus{color:#000;background-color:#fff;border-color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(217,217,217,.5)}.btn-check:active+.btn-white,.btn-check:checked+.btn-white,.btn-white.active,.btn-white:active,.show>.btn-white.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-white:focus,.btn-check:checked+.btn-white:focus,.btn-white.active:focus,.btn-white:active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(217,217,217,.5)}.btn-white.disabled,.btn-white:disabled{color:#000;background-color:#fff;border-color:#fff}.btn-light{color:#fff;background-color:#323248;border-color:#323248;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-light:hover{color:#fff;background-color:#2b2b3d;border-color:#28283a}.btn-check:focus+.btn-light,.btn-light:focus{color:#fff;background-color:#2b2b3d;border-color:#28283a;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(81,81,99,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#fff;background-color:#28283a;border-color:#262636}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(81,81,99,.5)}.btn-light.disabled,.btn-light:disabled{color:#fff;background-color:#323248;border-color:#323248}.btn-primary{color:#000;background-color:#3699ff;border-color:#3699ff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-primary:hover{color:#000;background-color:#54a8ff;border-color:#4aa3ff}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#000;background-color:#54a8ff;border-color:#4aa3ff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(46,130,217,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#000;background-color:#5eadff;border-color:#4aa3ff}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(46,130,217,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#000;background-color:#3699ff;border-color:#3699ff}.btn-secondary{color:#fff;background-color:#323248;border-color:#323248;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-secondary:hover{color:#fff;background-color:#2b2b3d;border-color:#28283a}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#2b2b3d;border-color:#28283a;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(81,81,99,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#28283a;border-color:#262636}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(81,81,99,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#323248;border-color:#323248}.btn-success{color:#000;background-color:#0bb783;border-color:#0bb783;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-success:hover{color:#000;background-color:#30c296;border-color:#23be8f}.btn-check:focus+.btn-success,.btn-success:focus{color:#000;background-color:#30c296;border-color:#23be8f;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(9,156,111,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#000;background-color:#3cc59c;border-color:#23be8f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(9,156,111,.5)}.btn-success.disabled,.btn-success:disabled{color:#000;background-color:#0bb783;border-color:#0bb783}.btn-info{color:#fff;background-color:#8950fc;border-color:#8950fc;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-info:hover{color:#fff;background-color:#7444d6;border-color:#6e40ca}.btn-check:focus+.btn-info,.btn-info:focus{color:#fff;background-color:#7444d6;border-color:#6e40ca;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(155,106,252,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#6e40ca;border-color:#673cbd}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(155,106,252,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#8950fc;border-color:#8950fc}.btn-warning{color:#000;background-color:#ffa800;border-color:#ffa800;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-warning:hover{color:#000;background-color:#ffb526;border-color:#ffb11a}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffb526;border-color:#ffb11a;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(217,143,0,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffb933;border-color:#ffb11a}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(217,143,0,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffa800;border-color:#ffa800}.btn-danger{color:#000;background-color:#f64e60;border-color:#f64e60;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger:hover{color:#000;background-color:#f76978;border-color:#f76070}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#000;background-color:#f76978;border-color:#f76070;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(209,66,82,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#000;background-color:#f87180;border-color:#f76070}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(209,66,82,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#000;background-color:#f64e60;border-color:#f64e60}.btn-dark{color:#000;background-color:#fff;border-color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-dark:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#000;background-color:#fff;border-color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(217,217,217,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(217,217,217,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#000;background-color:#fff;border-color:#fff}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-white,.btn-outline-white:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-check:active+.btn-outline-white,.btn-check:checked+.btn-outline-white,.btn-outline-white.active,.btn-outline-white.dropdown-toggle.show,.btn-outline-white:active{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-outline-white:focus,.btn-check:checked+.btn-outline-white:focus,.btn-outline-white.active:focus,.btn-outline-white.dropdown-toggle.show:focus,.btn-outline-white:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(255,255,255,.5)}.btn-outline-white.disabled,.btn-outline-white:disabled{color:#fff;background-color:transparent}.btn-outline-light{color:#323248;border-color:#323248}.btn-outline-light:hover{color:#fff;background-color:#323248;border-color:#323248}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(50,50,72,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#fff;background-color:#323248;border-color:#323248}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(50,50,72,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#323248;background-color:transparent}.btn-outline-primary{color:#3699ff;border-color:#3699ff}.btn-outline-primary:hover{color:#000;background-color:#3699ff;border-color:#3699ff}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(54,153,255,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#000;background-color:#3699ff;border-color:#3699ff}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(54,153,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#3699ff;background-color:transparent}.btn-outline-secondary{color:#323248;border-color:#323248}.btn-outline-secondary:hover{color:#fff;background-color:#323248;border-color:#323248}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(50,50,72,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#323248;border-color:#323248}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(50,50,72,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#323248;background-color:transparent}.btn-outline-success{color:#0bb783;border-color:#0bb783}.btn-outline-success:hover{color:#000;background-color:#0bb783;border-color:#0bb783}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(11,183,131,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#000;background-color:#0bb783;border-color:#0bb783}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(11,183,131,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#0bb783;background-color:transparent}.btn-outline-info{color:#8950fc;border-color:#8950fc}.btn-outline-info:hover{color:#fff;background-color:#8950fc;border-color:#8950fc}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(137,80,252,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#fff;background-color:#8950fc;border-color:#8950fc}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(137,80,252,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#8950fc;background-color:transparent}.btn-outline-warning{color:#ffa800;border-color:#ffa800}.btn-outline-warning:hover{color:#000;background-color:#ffa800;border-color:#ffa800}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,168,0,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffa800;border-color:#ffa800}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(255,168,0,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffa800;background-color:transparent}.btn-outline-danger{color:#f64e60;border-color:#f64e60}.btn-outline-danger:hover{color:#000;background-color:#f64e60;border-color:#f64e60}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(246,78,96,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#000;background-color:#f64e60;border-color:#f64e60}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(246,78,96,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#f64e60;background-color:transparent}.btn-outline-dark{color:#fff;border-color:#fff}.btn-outline-dark:hover{color:#000;background-color:#fff;border-color:#fff}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(255,255,255,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#000;background-color:#fff;border-color:#fff}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:inset 0 3px 5px rgba(0,0,0,.125),0 0 0 .25rem rgba(255,255,255,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#fff;background-color:transparent}.btn-link{font-weight:400;color:#3699ff;text-decoration:none}.btn-link:hover{color:#0073e9;text-decoration:underline}.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6d6d80}.btn-group-lg>.btn,.btn-lg{padding:.825rem 1.75rem;font-size:1.15rem;border-radius:.625rem}.btn-group-sm>.btn,.btn-sm{padding:.55rem 1.25rem;font-size:.925rem;border-radius:.325rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-left:.3em solid transparent;border-bottom:0;border-right:.3em solid transparent}.dropdown-toggle:empty::after{margin-right:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#fff;text-align:right;list-style:none;background-color:#1e1e2d;background-clip:padding-box;border:0 solid rgba(0,0,0,.15);border-radius:.475rem;box-shadow:0 0 30px rgba(0,0,0,.3)}.dropdown-menu[data-bs-popper]{top:100%;right:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{left:0;right:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{left:0;right:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{left:0;right:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{left:0;right:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{left:0;right:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{left:0;right:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:0;border-left:.3em solid transparent;border-bottom:.3em solid;border-right:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-right:0}.dropend .dropdown-menu[data-bs-popper]{top:0;left:auto;right:100%;margin-top:0;margin-right:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:0;border-bottom:.3em solid transparent;border-right:.3em solid}.dropend .dropdown-toggle:empty::after{margin-right:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;left:100%;right:auto;margin-top:0;margin-left:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-right:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#fff;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#e6e6e6;text-decoration:none;background-color:#2b2b40}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#3699ff}.dropdown-item.disabled,.dropdown-item:disabled{color:#565674;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.925rem;color:#6d6d80;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#fff}.dropdown-menu-dark{color:#323248;background-color:#cdcdde;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#323248}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#3699ff}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#565674}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#323248}.dropdown-menu-dark .dropdown-header{color:#565674}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-right:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-right-radius:0;border-bottom-right-radius:0}.dropdown-toggle-split{padding-left:1.125rem;padding-right:1.125rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-right:0}.dropstart .dropdown-toggle-split::before{margin-left:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.9375rem;padding-right:.9375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:1.3125rem;padding-right:1.3125rem}.btn-group.show .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.show .dropdown-toggle.btn-link{box-shadow:none}.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-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-right-radius:0;border-top-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#3699ff;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0073e9;text-decoration:none}.nav-link.disabled{color:#6d6d80;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #2b2b40}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-right-radius:.475rem;border-top-left-radius:.475rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#2b2b40 #2b2b40 #2b2b40;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6d6d80;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#92929f;background-color:#1e1e2d;border-color:#323248 #323248 #1e1e2d}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.475rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#3699ff}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.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-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.44375rem;padding-bottom:.44375rem;margin-left:1rem;font-size:1.075rem;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{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.075rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.475rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap: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-left:.5rem;padding-right:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap: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-left:.5rem;padding-right:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap: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-left:.5rem;padding-right:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap: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-left:.5rem;padding-right:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-left:0;border-right:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.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,.55)}.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 .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%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,.55)}.navbar-light .navbar-text a,.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,.55)}.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 .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%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,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#1e1e2d;background-clip:border-box;border:1px solid #2b2b40;border-radius:.625rem;box-shadow:none}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-right-radius:calc(.625rem - 1px);border-top-left-radius:calc(.625rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-left-radius:calc(.625rem - 1px);border-bottom-right-radius:calc(.625rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-right:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:#fff;border-bottom:1px solid #2b2b40}.card-header:first-child{border-radius:calc(.625rem - 1px) calc(.625rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:#fff;border-top:1px solid #2b2b40}.card-footer:last-child{border-radius:0 0 calc(.625rem - 1px) calc(.625rem - 1px)}.card-header-tabs{margin-left:-.5rem;margin-bottom:-.5rem;margin-right:-.5rem;border-bottom:0}.card-header-pills{margin-left:-.5rem;margin-right:-.5rem}.card-img-overlay{position:absolute;top:0;left:0;bottom:0;right:0;padding:1rem;border-radius:calc(.625rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-right-radius:calc(.625rem - 1px);border-top-left-radius:calc(.625rem - 1px)}.card-img,.card-img-bottom{border-bottom-left-radius:calc(.625rem - 1px);border-bottom-right-radius:calc(.625rem - 1px)}.card-group>.card{margin-bottom:.75rem}@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-right:0;border-right:0}.card-group>.card:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-right-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1.5rem 1.5rem;font-size:1rem;color:#fff;text-align:right;background-color:#1e1e2d;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#3699ff;background-color:#1b1b29;box-shadow:inset 0 -1px 0 #2b2b40}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233699FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(180deg)}.accordion-button::after{flex-shrink:0;width:1.15rem;height:1.15rem;margin-right:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.15rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#2b2b40;outline:0;box-shadow:none}.accordion-header{margin-bottom:0}.accordion-item{background-color:#1e1e2d;border:1px solid #2b2b40}.accordion-item:first-of-type{border-top-right-radius:.475rem;border-top-left-radius:.475rem}.accordion-item:first-of-type .accordion-button{border-top-right-radius:calc(.475rem - 1px);border-top-left-radius:calc(.475rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-left-radius:.475rem;border-bottom-right-radius:.475rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-left-radius:calc(.475rem - 1px);border-bottom-right-radius:calc(.475rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-left-radius:.475rem;border-bottom-right-radius:.475rem}.accordion-body{padding:1.5rem 1.5rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-left:0;border-right:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-right:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:right;padding-left:.5rem;color:#6d6d80;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#3699ff}.pagination{display:flex;padding-right:0;list-style:none}.page-link{position:relative;display:block;color:#92929f;background-color:transparent;border:0 solid transparent;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 (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#3699ff;text-decoration:none;background-color:#212e48;border-color:transparent}.page-link:focus{z-index:3;color:#3699ff;background-color:#212e48;outline:0;box-shadow:none}.page-item:not(:first-child) .page-link{margin-right:0}.page-item.active .page-link{z-index:3;color:#fff;background-color:#3699ff;border-color:transparent}.page-item.disabled .page-link{color:#474761;pointer-events:none;background-color:transparent;border-color:transparent}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-right-radius:.475rem;border-bottom-right-radius:.475rem}.page-item:last-child .page-link{border-top-left-radius:.475rem;border-bottom-left-radius:.475rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.075rem}.pagination-lg .page-item:first-child .page-link{border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.pagination-lg .page-item:last-child .page-link{border-top-left-radius:.625rem;border-bottom-left-radius:.625rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.925rem}.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.325rem;border-bottom-right-radius:.325rem}.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.325rem;border-bottom-left-radius:.325rem}.badge{display:inline-block;padding:.325rem .5rem;font-size:.85rem;font-weight:600;line-height:1;color:#1e1e2d;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.325rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.475rem}.alert-heading{color:inherit}.alert-link{font-weight:500}.alert-dismissible{padding-left:3rem}.alert-dismissible .btn-close{position:absolute;top:0;left:0;z-index:2;padding:1.25rem 1rem}.alert-white{color:#666;background-color:#fff;border-color:#fff}.alert-white .alert-link{color:#525252}.alert-light{color:#14141d;background-color:#adadb6;border-color:#adadb6}.alert-light .alert-link{color:#101017}.alert-primary{color:#163d66;background-color:#afd6ff;border-color:#afd6ff}.alert-primary .alert-link{color:#123152}.alert-secondary{color:#14141d;background-color:#adadb6;border-color:#adadb6}.alert-secondary .alert-link{color:#101017}.alert-success{color:#044934;background-color:#9de2cd;border-color:#9de2cd}.alert-success .alert-link{color:#033a2a}.alert-info{color:#372065;background-color:#d0b9fe;border-color:#d0b9fe}.alert-info .alert-link{color:#2c1a51}.alert-warning{color:#664300;background-color:#ffdc99;border-color:#ffdc99}.alert-warning .alert-link{color:#523600}.alert-danger{color:#621f26;background-color:#fbb8bf;border-color:#fbb8bf}.alert-danger .alert-link{color:#4e191e}.alert-dark{color:#666;background-color:#fff;border-color:#fff}.alert-dark .alert-link{color:#525252}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#1b1b29;border-radius:6px;box-shadow:none}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#3699ff;transition:width .6s ease}@media (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{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;border-radius:.475rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#92929f;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#92929f;text-decoration:none;background-color:#1b1b29}.list-group-item-action:active{color:#fff;background-color:#2b2b40}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#fff;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-right-radius:inherit;border-top-left-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6d6d80;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#3699ff;border-color:#3699ff}.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-right-radius:.475rem;border-top-left-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-left-radius:.475rem;border-bottom-right-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-right-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-right-radius:.475rem;border-top-left-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-left-radius:.475rem;border-bottom-right-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-right-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-right-radius:.475rem;border-top-left-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-left-radius:.475rem;border-bottom-right-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-right-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-right-radius:.475rem;border-top-left-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-left-radius:.475rem;border-bottom-right-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-right-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-right-radius:.475rem;border-top-left-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-left-radius:.475rem;border-bottom-right-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-right-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-right-radius:.475rem;border-top-left-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-left-radius:.475rem;border-bottom-right-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-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-white{color:#666;background-color:#fff}.list-group-item-white.list-group-item-action:focus,.list-group-item-white.list-group-item-action:hover{color:#666;background-color:#e6e6e6}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.list-group-item-light{color:#1e1e2b;background-color:#d6d6da}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#1e1e2b;background-color:#c1c1c4}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#1e1e2b;border-color:#1e1e2b}.list-group-item-primary{color:#205c99;background-color:#d7ebff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#205c99;background-color:#c2d4e6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#205c99;border-color:#205c99}.list-group-item-secondary{color:#1e1e2b;background-color:#d6d6da}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#1e1e2b;background-color:#c1c1c4}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#1e1e2b;border-color:#1e1e2b}.list-group-item-success{color:#076e4f;background-color:#cef1e6}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#076e4f;background-color:#b9d9cf}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#076e4f;border-color:#076e4f}.list-group-item-info{color:#523097;background-color:#e7dcfe}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#523097;background-color:#d0c6e5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#523097;border-color:#523097}.list-group-item-warning{color:#664300;background-color:#fec}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664300;background-color:#e6d6b8}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664300;border-color:#664300}.list-group-item-danger{color:#942f3a;background-color:#fddcdf}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#942f3a;background-color:#e4c6c9}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#942f3a;border-color:#942f3a}.list-group-item-dark{color:#666;background-color:#fff}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#666;background-color:#e6e6e6}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#666;border-color:#666}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.475rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(54,153,255,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1.5rem .5rem rgba(0,0,0,.075);border-radius:.475rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:1.5rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6d6d80;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-right-radius:calc(.475rem - 1px);border-top-left-radius:calc(.475rem - 1px)}.toast-header .btn-close{margin-left:-.375rem;margin-right:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;right:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .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{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#1e1e2d;background-clip:padding-box;border:0 solid rgba(0,0,0,.2);border-radius:.475rem;box-shadow:0 .25rem .5rem rgba(0,0,0,.1);outline:0}.modal-backdrop{position:fixed;top:0;right:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.4}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1.75rem 1.75rem;border-bottom:1px solid #2b2b40;border-top-right-radius:.475rem;border-top-left-radius:.475rem}.modal-header .btn-close{padding:.875rem .875rem;margin:-.875rem auto -.875rem -.875rem}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1.75rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:1.5rem;border-top:1px solid #2b2b40;border-bottom-left-radius:.475rem;border-bottom-right-radius:.475rem}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-content{box-shadow:0 .5rem 1rem rgba(0,0,0,.1)}.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}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:right;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:.925rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:1}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#2b2b40}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#2b2b40}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#2b2b40}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#2b2b40}.tooltip-inner{max-width:200px;padding:.75rem 1rem;color:#cdcdde;text-align:center;background-color:#2b2b40;border-radius:.475rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:right;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:1rem;word-wrap:break-word;background-color:#2b2b40;background-clip:padding-box;border:1px solid #2b2b40;border-radius:.475rem;box-shadow:0 0 30px rgba(0,0,0,.3)}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#2b2b40}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#2b2b40}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#2b2b40}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#2b2b40}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:#2b2b40}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#2b2b40}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-.5rem;content:"";border-bottom:1px solid #2b2b40}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#2b2b40}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#2b2b40}.popover-header{padding:1rem 1.25rem;margin-bottom:0;font-size:1rem;color:#cdcdde;background-color:#2b2b40;border-bottom:1px solid #2b2b40;border-top-right-radius:calc(.475rem - 1px);border-top-left-radius:calc(.475rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1.25rem 1.25rem;color:#cdcdde}.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:right;width:100%;margin-left:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.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{right:0}.carousel-control-next{left:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;left:0;bottom:0;right:0;z-index:2;display:flex;justify-content:center;padding:0;margin-left:15%;margin-bottom:1rem;margin-right:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-left:3px;margin-right:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;left:15%;bottom:1.25rem;right:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.185em solid currentColor;border-left-color:transparent;border-radius:50%;animation:.65s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.145em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;animation:.65s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{animation-duration:1.3s}}.clearfix::after{display:block;clear:both;content:""}.link-white{color:#fff}.link-white:focus,.link-white:hover{color:#fff}.link-light{color:#323248}.link-light:focus,.link-light:hover{color:#28283a}.link-primary{color:#3699ff}.link-primary:focus,.link-primary:hover{color:#5eadff}.link-secondary{color:#323248}.link-secondary:focus,.link-secondary:hover{color:#28283a}.link-success{color:#0bb783}.link-success:focus,.link-success:hover{color:#3cc59c}.link-info{color:#8950fc}.link-info:focus,.link-info:hover{color:#6e40ca}.link-warning{color:#ffa800}.link-warning:focus,.link-warning:hover{color:#ffb933}.link-danger{color:#f64e60}.link-danger:focus,.link-danger:hover{color:#f87180}.link-dark{color:#fff}.link-dark:focus,.link-dark:hover{color:#fff}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;right:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;left:0;right:0;z-index:1030}.fixed-bottom{position:fixed;left:0;bottom:0;right:0;z-index:1030}.sticky-top{position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.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}.float-start{float:right!important}.float-end{float:left!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-5{opacity:.05!important}.opacity-10{opacity:.1!important}.opacity-15{opacity:.15!important}.opacity-20{opacity:.2!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!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}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1.5rem .5rem rgba(0,0,0,.075)!important}.shadow-sm{box-shadow:0 .1rem 1rem .25rem rgba(0,0,0,.05)!important}.shadow-lg{box-shadow:0 1rem 2rem 1rem rgba(0,0,0,.1)!important}.shadow-none{box-shadow: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:sticky!important}.top-0{top:0!important}.top-25{top:25%!important}.top-50{top:50%!important}.top-75{top:75%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-25{bottom:25%!important}.bottom-50{bottom:50%!important}.bottom-75{bottom:75%!important}.bottom-100{bottom:100%!important}.start-0{right:0!important}.start-25{right:25%!important}.start-50{right:50%!important}.start-75{right:75%!important}.start-100{right:100%!important}.end-0{left:0!important}.end-25{left:25%!important}.end-50{left:50%!important}.end-75{left:75%!important}.end-100{left:100%!important}.translate-middle{transform:translate(50%,-50%)!important}.translate-middle-x{transform:translateX(50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #2b2b40!important}.border-0{border:0!important}.border-top{border-top:1px solid #2b2b40!important}.border-top-0{border-top:0!important}.border-end{border-left:1px solid #2b2b40!important}.border-end-0{border-left:0!important}.border-bottom{border-bottom:1px solid #2b2b40!important}.border-bottom-0{border-bottom:0!important}.border-start{border-right:1px solid #2b2b40!important}.border-start-0{border-right:0!important}.border-white{border-color:#fff!important}.border-light{border-color:#323248!important}.border-primary{border-color:#3699ff!important}.border-secondary{border-color:#323248!important}.border-success{border-color:#0bb783!important}.border-info{border-color:#8950fc!important}.border-warning{border-color:#ffa800!important}.border-danger{border-color:#f64e60!important}.border-dark{border-color:#fff!important}.border-0{border-width:0!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-unset{width:unset!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}.w-1px{width:1px!important}.w-2px{width:2px!important}.w-3px{width:3px!important}.w-4px{width:4px!important}.w-5px{width:5px!important}.w-6px{width:6px!important}.w-7px{width:7px!important}.w-8px{width:8px!important}.w-9px{width:9px!important}.w-10px{width:10px!important}.w-15px{width:15px!important}.w-20px{width:20px!important}.w-25px{width:25px!important}.w-30px{width:30px!important}.w-35px{width:35px!important}.w-40px{width:40px!important}.w-45px{width:45px!important}.w-50px{width:50px!important}.w-55px{width:55px!important}.w-60px{width:60px!important}.w-65px{width:65px!important}.w-70px{width:70px!important}.w-75px{width:75px!important}.w-80px{width:80px!important}.w-85px{width:85px!important}.w-90px{width:90px!important}.w-95px{width:95px!important}.w-100px{width:100px!important}.w-125px{width:125px!important}.w-150px{width:150px!important}.w-175px{width:175px!important}.w-200px{width:200px!important}.w-225px{width:225px!important}.w-250px{width:250px!important}.w-275px{width:275px!important}.w-300px{width:300px!important}.w-325px{width:325px!important}.w-350px{width:350px!important}.w-375px{width:375px!important}.w-400px{width:400px!important}.w-425px{width:425px!important}.w-450px{width:450px!important}.w-475px{width:475px!important}.w-500px{width:500px!important}.w-550px{width:550px!important}.w-600px{width:600px!important}.w-650px{width:650px!important}.w-700px{width:700px!important}.w-750px{width:750px!important}.w-800px{width:800px!important}.w-850px{width:850px!important}.w-900px{width:900px!important}.w-950px{width:950px!important}.w-1000px{width:1000px!important}.mw-unset{max-width:unset!important}.mw-25{max-width:25%!important}.mw-50{max-width:50%!important}.mw-75{max-width:75%!important}.mw-100{max-width:100%!important}.mw-auto{max-width:auto!important}.mw-1px{max-width:1px!important}.mw-2px{max-width:2px!important}.mw-3px{max-width:3px!important}.mw-4px{max-width:4px!important}.mw-5px{max-width:5px!important}.mw-6px{max-width:6px!important}.mw-7px{max-width:7px!important}.mw-8px{max-width:8px!important}.mw-9px{max-width:9px!important}.mw-10px{max-width:10px!important}.mw-15px{max-width:15px!important}.mw-20px{max-width:20px!important}.mw-25px{max-width:25px!important}.mw-30px{max-width:30px!important}.mw-35px{max-width:35px!important}.mw-40px{max-width:40px!important}.mw-45px{max-width:45px!important}.mw-50px{max-width:50px!important}.mw-55px{max-width:55px!important}.mw-60px{max-width:60px!important}.mw-65px{max-width:65px!important}.mw-70px{max-width:70px!important}.mw-75px{max-width:75px!important}.mw-80px{max-width:80px!important}.mw-85px{max-width:85px!important}.mw-90px{max-width:90px!important}.mw-95px{max-width:95px!important}.mw-100px{max-width:100px!important}.mw-125px{max-width:125px!important}.mw-150px{max-width:150px!important}.mw-175px{max-width:175px!important}.mw-200px{max-width:200px!important}.mw-225px{max-width:225px!important}.mw-250px{max-width:250px!important}.mw-275px{max-width:275px!important}.mw-300px{max-width:300px!important}.mw-325px{max-width:325px!important}.mw-350px{max-width:350px!important}.mw-375px{max-width:375px!important}.mw-400px{max-width:400px!important}.mw-425px{max-width:425px!important}.mw-450px{max-width:450px!important}.mw-475px{max-width:475px!important}.mw-500px{max-width:500px!important}.mw-550px{max-width:550px!important}.mw-600px{max-width:600px!important}.mw-650px{max-width:650px!important}.mw-700px{max-width:700px!important}.mw-750px{max-width:750px!important}.mw-800px{max-width:800px!important}.mw-850px{max-width:850px!important}.mw-900px{max-width:900px!important}.mw-950px{max-width:950px!important}.mw-1000px{max-width:1000px!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-unset{height:unset!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}.h-1px{height:1px!important}.h-2px{height:2px!important}.h-3px{height:3px!important}.h-4px{height:4px!important}.h-5px{height:5px!important}.h-6px{height:6px!important}.h-7px{height:7px!important}.h-8px{height:8px!important}.h-9px{height:9px!important}.h-10px{height:10px!important}.h-15px{height:15px!important}.h-20px{height:20px!important}.h-25px{height:25px!important}.h-30px{height:30px!important}.h-35px{height:35px!important}.h-40px{height:40px!important}.h-45px{height:45px!important}.h-50px{height:50px!important}.h-55px{height:55px!important}.h-60px{height:60px!important}.h-65px{height:65px!important}.h-70px{height:70px!important}.h-75px{height:75px!important}.h-80px{height:80px!important}.h-85px{height:85px!important}.h-90px{height:90px!important}.h-95px{height:95px!important}.h-100px{height:100px!important}.h-125px{height:125px!important}.h-150px{height:150px!important}.h-175px{height:175px!important}.h-200px{height:200px!important}.h-225px{height:225px!important}.h-250px{height:250px!important}.h-275px{height:275px!important}.h-300px{height:300px!important}.h-325px{height:325px!important}.h-350px{height:350px!important}.h-375px{height:375px!important}.h-400px{height:400px!important}.h-425px{height:425px!important}.h-450px{height:450px!important}.h-475px{height:475px!important}.h-500px{height:500px!important}.h-550px{height:550px!important}.h-600px{height:600px!important}.h-650px{height:650px!important}.h-700px{height:700px!important}.h-750px{height:750px!important}.h-800px{height:800px!important}.h-850px{height:850px!important}.h-900px{height:900px!important}.h-950px{height:950px!important}.h-1000px{height:1000px!important}.mh-unset{max-height:unset!important}.mh-25{max-height:25%!important}.mh-50{max-height:50%!important}.mh-75{max-height:75%!important}.mh-100{max-height:100%!important}.mh-auto{max-height:auto!important}.mh-1px{max-height:1px!important}.mh-2px{max-height:2px!important}.mh-3px{max-height:3px!important}.mh-4px{max-height:4px!important}.mh-5px{max-height:5px!important}.mh-6px{max-height:6px!important}.mh-7px{max-height:7px!important}.mh-8px{max-height:8px!important}.mh-9px{max-height:9px!important}.mh-10px{max-height:10px!important}.mh-15px{max-height:15px!important}.mh-20px{max-height:20px!important}.mh-25px{max-height:25px!important}.mh-30px{max-height:30px!important}.mh-35px{max-height:35px!important}.mh-40px{max-height:40px!important}.mh-45px{max-height:45px!important}.mh-50px{max-height:50px!important}.mh-55px{max-height:55px!important}.mh-60px{max-height:60px!important}.mh-65px{max-height:65px!important}.mh-70px{max-height:70px!important}.mh-75px{max-height:75px!important}.mh-80px{max-height:80px!important}.mh-85px{max-height:85px!important}.mh-90px{max-height:90px!important}.mh-95px{max-height:95px!important}.mh-100px{max-height:100px!important}.mh-125px{max-height:125px!important}.mh-150px{max-height:150px!important}.mh-175px{max-height:175px!important}.mh-200px{max-height:200px!important}.mh-225px{max-height:225px!important}.mh-250px{max-height:250px!important}.mh-275px{max-height:275px!important}.mh-300px{max-height:300px!important}.mh-325px{max-height:325px!important}.mh-350px{max-height:350px!important}.mh-375px{max-height:375px!important}.mh-400px{max-height:400px!important}.mh-425px{max-height:425px!important}.mh-450px{max-height:450px!important}.mh-475px{max-height:475px!important}.mh-500px{max-height:500px!important}.mh-550px{max-height:550px!important}.mh-600px{max-height:600px!important}.mh-650px{max-height:650px!important}.mh-700px{max-height:700px!important}.mh-750px{max-height:750px!important}.mh-800px{max-height:800px!important}.mh-850px{max-height:850px!important}.mh-900px{max-height:900px!important}.mh-950px{max-height:950px!important}.mh-1000px{max-height:1000px!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.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-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}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:.75rem!important}.gap-4{gap:1rem!important}.gap-5{gap:1.25rem!important}.gap-6{gap:1.5rem!important}.gap-7{gap:1.75rem!important}.gap-8{gap:2rem!important}.gap-9{gap:2.25rem!important}.gap-10{gap:2.5rem!important}.gap-11{gap:2.75rem!important}.gap-12{gap:3rem!important}.gap-13{gap:3.25rem!important}.gap-14{gap:3.5rem!important}.gap-15{gap:3.75rem!important}.gap-16{gap:4rem!important}.gap-17{gap:4.25rem!important}.gap-18{gap:4.5rem!important}.gap-19{gap:4.75rem!important}.gap-20{gap:5rem!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}.justify-content-evenly{justify-content:space-evenly!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}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:.75rem!important}.m-4{margin:1rem!important}.m-5{margin:1.25rem!important}.m-6{margin:1.5rem!important}.m-7{margin:1.75rem!important}.m-8{margin:2rem!important}.m-9{margin:2.25rem!important}.m-10{margin:2.5rem!important}.m-11{margin:2.75rem!important}.m-12{margin:3rem!important}.m-13{margin:3.25rem!important}.m-14{margin:3.5rem!important}.m-15{margin:3.75rem!important}.m-16{margin:4rem!important}.m-17{margin:4.25rem!important}.m-18{margin:4.5rem!important}.m-19{margin:4.75rem!important}.m-20{margin:5rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.mx-4{margin-left:1rem!important;margin-right:1rem!important}.mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.mx-8{margin-left:2rem!important;margin-right:2rem!important}.mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.mx-12{margin-left:3rem!important;margin-right:3rem!important}.mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.mx-16{margin-left:4rem!important;margin-right:4rem!important}.mx-17{margin-left:4.25rem!important;margin-right:4.25rem!important}.mx-18{margin-left:4.5rem!important;margin-right:4.5rem!important}.mx-19{margin-left:4.75rem!important;margin-right:4.75rem!important}.mx-20{margin-left:5rem!important;margin-right:5rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:.75rem!important}.mt-4{margin-top:1rem!important}.mt-5{margin-top:1.25rem!important}.mt-6{margin-top:1.5rem!important}.mt-7{margin-top:1.75rem!important}.mt-8{margin-top:2rem!important}.mt-9{margin-top:2.25rem!important}.mt-10{margin-top:2.5rem!important}.mt-11{margin-top:2.75rem!important}.mt-12{margin-top:3rem!important}.mt-13{margin-top:3.25rem!important}.mt-14{margin-top:3.5rem!important}.mt-15{margin-top:3.75rem!important}.mt-16{margin-top:4rem!important}.mt-17{margin-top:4.25rem!important}.mt-18{margin-top:4.5rem!important}.mt-19{margin-top:4.75rem!important}.mt-20{margin-top:5rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-left:0!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-3{margin-left:.75rem!important}.me-4{margin-left:1rem!important}.me-5{margin-left:1.25rem!important}.me-6{margin-left:1.5rem!important}.me-7{margin-left:1.75rem!important}.me-8{margin-left:2rem!important}.me-9{margin-left:2.25rem!important}.me-10{margin-left:2.5rem!important}.me-11{margin-left:2.75rem!important}.me-12{margin-left:3rem!important}.me-13{margin-left:3.25rem!important}.me-14{margin-left:3.5rem!important}.me-15{margin-left:3.75rem!important}.me-16{margin-left:4rem!important}.me-17{margin-left:4.25rem!important}.me-18{margin-left:4.5rem!important}.me-19{margin-left:4.75rem!important}.me-20{margin-left:5rem!important}.me-auto{margin-left:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:.75rem!important}.mb-4{margin-bottom:1rem!important}.mb-5{margin-bottom:1.25rem!important}.mb-6{margin-bottom:1.5rem!important}.mb-7{margin-bottom:1.75rem!important}.mb-8{margin-bottom:2rem!important}.mb-9{margin-bottom:2.25rem!important}.mb-10{margin-bottom:2.5rem!important}.mb-11{margin-bottom:2.75rem!important}.mb-12{margin-bottom:3rem!important}.mb-13{margin-bottom:3.25rem!important}.mb-14{margin-bottom:3.5rem!important}.mb-15{margin-bottom:3.75rem!important}.mb-16{margin-bottom:4rem!important}.mb-17{margin-bottom:4.25rem!important}.mb-18{margin-bottom:4.5rem!important}.mb-19{margin-bottom:4.75rem!important}.mb-20{margin-bottom:5rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-right:0!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-3{margin-right:.75rem!important}.ms-4{margin-right:1rem!important}.ms-5{margin-right:1.25rem!important}.ms-6{margin-right:1.5rem!important}.ms-7{margin-right:1.75rem!important}.ms-8{margin-right:2rem!important}.ms-9{margin-right:2.25rem!important}.ms-10{margin-right:2.5rem!important}.ms-11{margin-right:2.75rem!important}.ms-12{margin-right:3rem!important}.ms-13{margin-right:3.25rem!important}.ms-14{margin-right:3.5rem!important}.ms-15{margin-right:3.75rem!important}.ms-16{margin-right:4rem!important}.ms-17{margin-right:4.25rem!important}.ms-18{margin-right:4.5rem!important}.ms-19{margin-right:4.75rem!important}.ms-20{margin-right:5rem!important}.ms-auto{margin-right:auto!important}.m-n1{margin:-.25rem!important}.m-n2{margin:-.5rem!important}.m-n3{margin:-.75rem!important}.m-n4{margin:-1rem!important}.m-n5{margin:-1.25rem!important}.m-n6{margin:-1.5rem!important}.m-n7{margin:-1.75rem!important}.m-n8{margin:-2rem!important}.m-n9{margin:-2.25rem!important}.m-n10{margin:-2.5rem!important}.m-n11{margin:-2.75rem!important}.m-n12{margin:-3rem!important}.m-n13{margin:-3.25rem!important}.m-n14{margin:-3.5rem!important}.m-n15{margin:-3.75rem!important}.m-n16{margin:-4rem!important}.m-n17{margin:-4.25rem!important}.m-n18{margin:-4.5rem!important}.m-n19{margin:-4.75rem!important}.m-n20{margin:-5rem!important}.mx-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-n3{margin-left:-.75rem!important;margin-right:-.75rem!important}.mx-n4{margin-left:-1rem!important;margin-right:-1rem!important}.mx-n5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.mx-n6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-n7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.mx-n8{margin-left:-2rem!important;margin-right:-2rem!important}.mx-n9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.mx-n10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.mx-n11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.mx-n12{margin-left:-3rem!important;margin-right:-3rem!important}.mx-n13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.mx-n14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.mx-n15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.mx-n16{margin-left:-4rem!important;margin-right:-4rem!important}.mx-n17{margin-left:-4.25rem!important;margin-right:-4.25rem!important}.mx-n18{margin-left:-4.5rem!important;margin-right:-4.5rem!important}.mx-n19{margin-left:-4.75rem!important;margin-right:-4.75rem!important}.mx-n20{margin-left:-5rem!important;margin-right:-5rem!important}.my-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-n1{margin-top:-.25rem!important}.mt-n2{margin-top:-.5rem!important}.mt-n3{margin-top:-.75rem!important}.mt-n4{margin-top:-1rem!important}.mt-n5{margin-top:-1.25rem!important}.mt-n6{margin-top:-1.5rem!important}.mt-n7{margin-top:-1.75rem!important}.mt-n8{margin-top:-2rem!important}.mt-n9{margin-top:-2.25rem!important}.mt-n10{margin-top:-2.5rem!important}.mt-n11{margin-top:-2.75rem!important}.mt-n12{margin-top:-3rem!important}.mt-n13{margin-top:-3.25rem!important}.mt-n14{margin-top:-3.5rem!important}.mt-n15{margin-top:-3.75rem!important}.mt-n16{margin-top:-4rem!important}.mt-n17{margin-top:-4.25rem!important}.mt-n18{margin-top:-4.5rem!important}.mt-n19{margin-top:-4.75rem!important}.mt-n20{margin-top:-5rem!important}.me-n1{margin-left:-.25rem!important}.me-n2{margin-left:-.5rem!important}.me-n3{margin-left:-.75rem!important}.me-n4{margin-left:-1rem!important}.me-n5{margin-left:-1.25rem!important}.me-n6{margin-left:-1.5rem!important}.me-n7{margin-left:-1.75rem!important}.me-n8{margin-left:-2rem!important}.me-n9{margin-left:-2.25rem!important}.me-n10{margin-left:-2.5rem!important}.me-n11{margin-left:-2.75rem!important}.me-n12{margin-left:-3rem!important}.me-n13{margin-left:-3.25rem!important}.me-n14{margin-left:-3.5rem!important}.me-n15{margin-left:-3.75rem!important}.me-n16{margin-left:-4rem!important}.me-n17{margin-left:-4.25rem!important}.me-n18{margin-left:-4.5rem!important}.me-n19{margin-left:-4.75rem!important}.me-n20{margin-left:-5rem!important}.mb-n1{margin-bottom:-.25rem!important}.mb-n2{margin-bottom:-.5rem!important}.mb-n3{margin-bottom:-.75rem!important}.mb-n4{margin-bottom:-1rem!important}.mb-n5{margin-bottom:-1.25rem!important}.mb-n6{margin-bottom:-1.5rem!important}.mb-n7{margin-bottom:-1.75rem!important}.mb-n8{margin-bottom:-2rem!important}.mb-n9{margin-bottom:-2.25rem!important}.mb-n10{margin-bottom:-2.5rem!important}.mb-n11{margin-bottom:-2.75rem!important}.mb-n12{margin-bottom:-3rem!important}.mb-n13{margin-bottom:-3.25rem!important}.mb-n14{margin-bottom:-3.5rem!important}.mb-n15{margin-bottom:-3.75rem!important}.mb-n16{margin-bottom:-4rem!important}.mb-n17{margin-bottom:-4.25rem!important}.mb-n18{margin-bottom:-4.5rem!important}.mb-n19{margin-bottom:-4.75rem!important}.mb-n20{margin-bottom:-5rem!important}.ms-n1{margin-right:-.25rem!important}.ms-n2{margin-right:-.5rem!important}.ms-n3{margin-right:-.75rem!important}.ms-n4{margin-right:-1rem!important}.ms-n5{margin-right:-1.25rem!important}.ms-n6{margin-right:-1.5rem!important}.ms-n7{margin-right:-1.75rem!important}.ms-n8{margin-right:-2rem!important}.ms-n9{margin-right:-2.25rem!important}.ms-n10{margin-right:-2.5rem!important}.ms-n11{margin-right:-2.75rem!important}.ms-n12{margin-right:-3rem!important}.ms-n13{margin-right:-3.25rem!important}.ms-n14{margin-right:-3.5rem!important}.ms-n15{margin-right:-3.75rem!important}.ms-n16{margin-right:-4rem!important}.ms-n17{margin-right:-4.25rem!important}.ms-n18{margin-right:-4.5rem!important}.ms-n19{margin-right:-4.75rem!important}.ms-n20{margin-right:-5rem!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:.75rem!important}.p-4{padding:1rem!important}.p-5{padding:1.25rem!important}.p-6{padding:1.5rem!important}.p-7{padding:1.75rem!important}.p-8{padding:2rem!important}.p-9{padding:2.25rem!important}.p-10{padding:2.5rem!important}.p-11{padding:2.75rem!important}.p-12{padding:3rem!important}.p-13{padding:3.25rem!important}.p-14{padding:3.5rem!important}.p-15{padding:3.75rem!important}.p-16{padding:4rem!important}.p-17{padding:4.25rem!important}.p-18{padding:4.5rem!important}.p-19{padding:4.75rem!important}.p-20{padding:5rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-4{padding-left:1rem!important;padding-right:1rem!important}.px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.px-8{padding-left:2rem!important;padding-right:2rem!important}.px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.px-12{padding-left:3rem!important;padding-right:3rem!important}.px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.px-16{padding-left:4rem!important;padding-right:4rem!important}.px-17{padding-left:4.25rem!important;padding-right:4.25rem!important}.px-18{padding-left:4.5rem!important;padding-right:4.5rem!important}.px-19{padding-left:4.75rem!important;padding-right:4.75rem!important}.px-20{padding-left:5rem!important;padding-right:5rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:.75rem!important}.pt-4{padding-top:1rem!important}.pt-5{padding-top:1.25rem!important}.pt-6{padding-top:1.5rem!important}.pt-7{padding-top:1.75rem!important}.pt-8{padding-top:2rem!important}.pt-9{padding-top:2.25rem!important}.pt-10{padding-top:2.5rem!important}.pt-11{padding-top:2.75rem!important}.pt-12{padding-top:3rem!important}.pt-13{padding-top:3.25rem!important}.pt-14{padding-top:3.5rem!important}.pt-15{padding-top:3.75rem!important}.pt-16{padding-top:4rem!important}.pt-17{padding-top:4.25rem!important}.pt-18{padding-top:4.5rem!important}.pt-19{padding-top:4.75rem!important}.pt-20{padding-top:5rem!important}.pe-0{padding-left:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-3{padding-left:.75rem!important}.pe-4{padding-left:1rem!important}.pe-5{padding-left:1.25rem!important}.pe-6{padding-left:1.5rem!important}.pe-7{padding-left:1.75rem!important}.pe-8{padding-left:2rem!important}.pe-9{padding-left:2.25rem!important}.pe-10{padding-left:2.5rem!important}.pe-11{padding-left:2.75rem!important}.pe-12{padding-left:3rem!important}.pe-13{padding-left:3.25rem!important}.pe-14{padding-left:3.5rem!important}.pe-15{padding-left:3.75rem!important}.pe-16{padding-left:4rem!important}.pe-17{padding-left:4.25rem!important}.pe-18{padding-left:4.5rem!important}.pe-19{padding-left:4.75rem!important}.pe-20{padding-left:5rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:.75rem!important}.pb-4{padding-bottom:1rem!important}.pb-5{padding-bottom:1.25rem!important}.pb-6{padding-bottom:1.5rem!important}.pb-7{padding-bottom:1.75rem!important}.pb-8{padding-bottom:2rem!important}.pb-9{padding-bottom:2.25rem!important}.pb-10{padding-bottom:2.5rem!important}.pb-11{padding-bottom:2.75rem!important}.pb-12{padding-bottom:3rem!important}.pb-13{padding-bottom:3.25rem!important}.pb-14{padding-bottom:3.5rem!important}.pb-15{padding-bottom:3.75rem!important}.pb-16{padding-bottom:4rem!important}.pb-17{padding-bottom:4.25rem!important}.pb-18{padding-bottom:4.5rem!important}.pb-19{padding-bottom:4.75rem!important}.pb-20{padding-bottom:5rem!important}.ps-0{padding-right:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-3{padding-right:.75rem!important}.ps-4{padding-right:1rem!important}.ps-5{padding-right:1.25rem!important}.ps-6{padding-right:1.5rem!important}.ps-7{padding-right:1.75rem!important}.ps-8{padding-right:2rem!important}.ps-9{padding-right:2.25rem!important}.ps-10{padding-right:2.5rem!important}.ps-11{padding-right:2.75rem!important}.ps-12{padding-right:3rem!important}.ps-13{padding-right:3.25rem!important}.ps-14{padding-right:3.5rem!important}.ps-15{padding-right:3.75rem!important}.ps-16{padding-right:4rem!important}.ps-17{padding-right:4.25rem!important}.ps-18{padding-right:4.5rem!important}.ps-19{padding-right:4.75rem!important}.ps-20{padding-right:5rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.3rem + .6vw)!important}.fs-2{font-size:calc(1.275rem + .3vw)!important}.fs-3{font-size:calc(1.26rem + .12vw)!important}.fs-4{font-size:1.25rem!important}.fs-5{font-size:1.15rem!important}.fs-6{font-size:1.075rem!important}.fs-7{font-size:.95rem!important}.fs-8{font-size:.85rem!important}.fs-9{font-size:.75rem!important}.fs-10{font-size:.5rem!important}.fs-base{font-size:1rem!important}.fs-fluid{font-size:100%!important}.fs-2x{font-size:calc(1.325rem + .9vw)!important}.fs-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-5tx{font-size:calc(1.7rem + 5.4vw)!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:500!important}.fw-bolder{font-weight:600!important}.lh-0{line-height:0!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:1.75!important}.lh-xl{line-height:2!important}.lh-xxl{line-height:2.25!important}.text-start{text-align:right!important}.text-end{text-align:left!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#565674!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{user-select:all!important}.user-select-auto{user-select:auto!important}.user-select-none{user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.475rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.325rem!important}.rounded-2{border-radius:.475rem!important}.rounded-3{border-radius:.625rem!important}.rounded-4{border-radius:1rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-right-radius:.475rem!important;border-top-left-radius:.475rem!important}.rounded-end{border-top-left-radius:.475rem!important;border-bottom-left-radius:.475rem!important}.rounded-bottom{border-bottom-left-radius:.475rem!important;border-bottom-right-radius:.475rem!important}.rounded-start{border-bottom-right-radius:.475rem!important;border-top-right-radius:.475rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.opacity-0{opacity:0!important}.opacity-0-hover:hover{opacity:0!important}.opacity-5{opacity:.05!important}.opacity-5-hover:hover{opacity:.05!important}.opacity-10{opacity:.1!important}.opacity-10-hover:hover{opacity:.1!important}.opacity-15{opacity:.15!important}.opacity-15-hover:hover{opacity:.15!important}.opacity-20{opacity:.2!important}.opacity-20-hover:hover{opacity:.2!important}.opacity-25{opacity:.25!important}.opacity-25-hover:hover{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-50-hover:hover{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-75-hover:hover{opacity:.75!important}.opacity-100{opacity:1!important}.opacity-100-hover:hover{opacity:1!important}.min-w-unset{min-width:unset!important}.min-w-25{min-width:25%!important}.min-w-50{min-width:50%!important}.min-w-75{min-width:75%!important}.min-w-100{min-width:100%!important}.min-w-auto{min-width:auto!important}.min-w-1px{min-width:1px!important}.min-w-2px{min-width:2px!important}.min-w-3px{min-width:3px!important}.min-w-4px{min-width:4px!important}.min-w-5px{min-width:5px!important}.min-w-6px{min-width:6px!important}.min-w-7px{min-width:7px!important}.min-w-8px{min-width:8px!important}.min-w-9px{min-width:9px!important}.min-w-10px{min-width:10px!important}.min-w-15px{min-width:15px!important}.min-w-20px{min-width:20px!important}.min-w-25px{min-width:25px!important}.min-w-30px{min-width:30px!important}.min-w-35px{min-width:35px!important}.min-w-40px{min-width:40px!important}.min-w-45px{min-width:45px!important}.min-w-50px{min-width:50px!important}.min-w-55px{min-width:55px!important}.min-w-60px{min-width:60px!important}.min-w-65px{min-width:65px!important}.min-w-70px{min-width:70px!important}.min-w-75px{min-width:75px!important}.min-w-80px{min-width:80px!important}.min-w-85px{min-width:85px!important}.min-w-90px{min-width:90px!important}.min-w-95px{min-width:95px!important}.min-w-100px{min-width:100px!important}.min-w-125px{min-width:125px!important}.min-w-150px{min-width:150px!important}.min-w-175px{min-width:175px!important}.min-w-200px{min-width:200px!important}.min-w-225px{min-width:225px!important}.min-w-250px{min-width:250px!important}.min-w-275px{min-width:275px!important}.min-w-300px{min-width:300px!important}.min-w-325px{min-width:325px!important}.min-w-350px{min-width:350px!important}.min-w-375px{min-width:375px!important}.min-w-400px{min-width:400px!important}.min-w-425px{min-width:425px!important}.min-w-450px{min-width:450px!important}.min-w-475px{min-width:475px!important}.min-w-500px{min-width:500px!important}.min-w-550px{min-width:550px!important}.min-w-600px{min-width:600px!important}.min-w-650px{min-width:650px!important}.min-w-700px{min-width:700px!important}.min-w-750px{min-width:750px!important}.min-w-800px{min-width:800px!important}.min-w-850px{min-width:850px!important}.min-w-900px{min-width:900px!important}.min-w-950px{min-width:950px!important}.min-w-1000px{min-width:1000px!important}.min-h-unset{min-height:unset!important}.min-h-25{min-height:25%!important}.min-h-50{min-height:50%!important}.min-h-75{min-height:75%!important}.min-h-100{min-height:100%!important}.min-h-auto{min-height:auto!important}.min-h-1px{min-height:1px!important}.min-h-2px{min-height:2px!important}.min-h-3px{min-height:3px!important}.min-h-4px{min-height:4px!important}.min-h-5px{min-height:5px!important}.min-h-6px{min-height:6px!important}.min-h-7px{min-height:7px!important}.min-h-8px{min-height:8px!important}.min-h-9px{min-height:9px!important}.min-h-10px{min-height:10px!important}.min-h-15px{min-height:15px!important}.min-h-20px{min-height:20px!important}.min-h-25px{min-height:25px!important}.min-h-30px{min-height:30px!important}.min-h-35px{min-height:35px!important}.min-h-40px{min-height:40px!important}.min-h-45px{min-height:45px!important}.min-h-50px{min-height:50px!important}.min-h-55px{min-height:55px!important}.min-h-60px{min-height:60px!important}.min-h-65px{min-height:65px!important}.min-h-70px{min-height:70px!important}.min-h-75px{min-height:75px!important}.min-h-80px{min-height:80px!important}.min-h-85px{min-height:85px!important}.min-h-90px{min-height:90px!important}.min-h-95px{min-height:95px!important}.min-h-100px{min-height:100px!important}.min-h-125px{min-height:125px!important}.min-h-150px{min-height:150px!important}.min-h-175px{min-height:175px!important}.min-h-200px{min-height:200px!important}.min-h-225px{min-height:225px!important}.min-h-250px{min-height:250px!important}.min-h-275px{min-height:275px!important}.min-h-300px{min-height:300px!important}.min-h-325px{min-height:325px!important}.min-h-350px{min-height:350px!important}.min-h-375px{min-height:375px!important}.min-h-400px{min-height:400px!important}.min-h-425px{min-height:425px!important}.min-h-450px{min-height:450px!important}.min-h-475px{min-height:475px!important}.min-h-500px{min-height:500px!important}.min-h-550px{min-height:550px!important}.min-h-600px{min-height:600px!important}.min-h-650px{min-height:650px!important}.min-h-700px{min-height:700px!important}.min-h-750px{min-height:750px!important}.min-h-800px{min-height:800px!important}.min-h-850px{min-height:850px!important}.min-h-900px{min-height:900px!important}.min-h-950px{min-height:950px!important}.min-h-1000px{min-height:1000px!important}.z-index-n1{z-index:-1!important}.z-index-n2{z-index:-2!important}.z-index-0{z-index:0!important}.z-index-1{z-index:1!important}.z-index-2{z-index:2!important}.z-index-3{z-index:3!important}.border-top-0{border-top-width:0!important}.border-top-1{border-top-width:1px!important}.border-top-2{border-top-width:2px!important}.border-top-3{border-top-width:3px!important}.border-top-4{border-top-width:4px!important}.border-top-5{border-top-width:5px!important}.border-bottom-0{border-bottom-width:0!important}.border-bottom-1{border-bottom-width:1px!important}.border-bottom-2{border-bottom-width:2px!important}.border-bottom-3{border-bottom-width:3px!important}.border-bottom-4{border-bottom-width:4px!important}.border-bottom-5{border-bottom-width:5px!important}.border-right-0{border-left-width:0!important}.border-right-1{border-left-width:1px!important}.border-right-2{border-left-width:2px!important}.border-right-3{border-left-width:3px!important}.border-right-4{border-left-width:4px!important}.border-right-5{border-left-width:5px!important}.border-left-0{border-right-width:0!important}.border-left-1{border-right-width:1px!important}.border-left-2{border-right-width:2px!important}.border-left-3{border-right-width:3px!important}.border-left-4{border-right-width:4px!important}.border-left-5{border-right-width:5px!important}.ls-1{letter-spacing:.1rem!important}.ls-2{letter-spacing:.115rem!important}.ls-3{letter-spacing:.125rem!important}.ls-4{letter-spacing:.25rem!important}.ls-5{letter-spacing:.5rem!important}.ls-n1{letter-spacing:-.1rem!important}.ls-n2{letter-spacing:-.115rem!important}.ls-n3{letter-spacing:-.125rem!important}.ls-n4{letter-spacing:-.25rem!important}.ls-n5{letter-spacing:-.5rem!important}@media (min-width:576px){.float-sm-start{float:right!important}.float-sm-end{float:left!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!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}.d-sm-none{display:none!important}.position-sm-static{position:static!important}.position-sm-relative{position:relative!important}.position-sm-absolute{position:absolute!important}.position-sm-fixed{position:fixed!important}.position-sm-sticky{position:sticky!important}.w-sm-unset{width:unset!important}.w-sm-25{width:25%!important}.w-sm-50{width:50%!important}.w-sm-75{width:75%!important}.w-sm-100{width:100%!important}.w-sm-auto{width:auto!important}.w-sm-1px{width:1px!important}.w-sm-2px{width:2px!important}.w-sm-3px{width:3px!important}.w-sm-4px{width:4px!important}.w-sm-5px{width:5px!important}.w-sm-6px{width:6px!important}.w-sm-7px{width:7px!important}.w-sm-8px{width:8px!important}.w-sm-9px{width:9px!important}.w-sm-10px{width:10px!important}.w-sm-15px{width:15px!important}.w-sm-20px{width:20px!important}.w-sm-25px{width:25px!important}.w-sm-30px{width:30px!important}.w-sm-35px{width:35px!important}.w-sm-40px{width:40px!important}.w-sm-45px{width:45px!important}.w-sm-50px{width:50px!important}.w-sm-55px{width:55px!important}.w-sm-60px{width:60px!important}.w-sm-65px{width:65px!important}.w-sm-70px{width:70px!important}.w-sm-75px{width:75px!important}.w-sm-80px{width:80px!important}.w-sm-85px{width:85px!important}.w-sm-90px{width:90px!important}.w-sm-95px{width:95px!important}.w-sm-100px{width:100px!important}.w-sm-125px{width:125px!important}.w-sm-150px{width:150px!important}.w-sm-175px{width:175px!important}.w-sm-200px{width:200px!important}.w-sm-225px{width:225px!important}.w-sm-250px{width:250px!important}.w-sm-275px{width:275px!important}.w-sm-300px{width:300px!important}.w-sm-325px{width:325px!important}.w-sm-350px{width:350px!important}.w-sm-375px{width:375px!important}.w-sm-400px{width:400px!important}.w-sm-425px{width:425px!important}.w-sm-450px{width:450px!important}.w-sm-475px{width:475px!important}.w-sm-500px{width:500px!important}.w-sm-550px{width:550px!important}.w-sm-600px{width:600px!important}.w-sm-650px{width:650px!important}.w-sm-700px{width:700px!important}.w-sm-750px{width:750px!important}.w-sm-800px{width:800px!important}.w-sm-850px{width:850px!important}.w-sm-900px{width:900px!important}.w-sm-950px{width:950px!important}.w-sm-1000px{width:1000px!important}.mw-sm-unset{max-width:unset!important}.mw-sm-25{max-width:25%!important}.mw-sm-50{max-width:50%!important}.mw-sm-75{max-width:75%!important}.mw-sm-100{max-width:100%!important}.mw-sm-auto{max-width:auto!important}.mw-sm-1px{max-width:1px!important}.mw-sm-2px{max-width:2px!important}.mw-sm-3px{max-width:3px!important}.mw-sm-4px{max-width:4px!important}.mw-sm-5px{max-width:5px!important}.mw-sm-6px{max-width:6px!important}.mw-sm-7px{max-width:7px!important}.mw-sm-8px{max-width:8px!important}.mw-sm-9px{max-width:9px!important}.mw-sm-10px{max-width:10px!important}.mw-sm-15px{max-width:15px!important}.mw-sm-20px{max-width:20px!important}.mw-sm-25px{max-width:25px!important}.mw-sm-30px{max-width:30px!important}.mw-sm-35px{max-width:35px!important}.mw-sm-40px{max-width:40px!important}.mw-sm-45px{max-width:45px!important}.mw-sm-50px{max-width:50px!important}.mw-sm-55px{max-width:55px!important}.mw-sm-60px{max-width:60px!important}.mw-sm-65px{max-width:65px!important}.mw-sm-70px{max-width:70px!important}.mw-sm-75px{max-width:75px!important}.mw-sm-80px{max-width:80px!important}.mw-sm-85px{max-width:85px!important}.mw-sm-90px{max-width:90px!important}.mw-sm-95px{max-width:95px!important}.mw-sm-100px{max-width:100px!important}.mw-sm-125px{max-width:125px!important}.mw-sm-150px{max-width:150px!important}.mw-sm-175px{max-width:175px!important}.mw-sm-200px{max-width:200px!important}.mw-sm-225px{max-width:225px!important}.mw-sm-250px{max-width:250px!important}.mw-sm-275px{max-width:275px!important}.mw-sm-300px{max-width:300px!important}.mw-sm-325px{max-width:325px!important}.mw-sm-350px{max-width:350px!important}.mw-sm-375px{max-width:375px!important}.mw-sm-400px{max-width:400px!important}.mw-sm-425px{max-width:425px!important}.mw-sm-450px{max-width:450px!important}.mw-sm-475px{max-width:475px!important}.mw-sm-500px{max-width:500px!important}.mw-sm-550px{max-width:550px!important}.mw-sm-600px{max-width:600px!important}.mw-sm-650px{max-width:650px!important}.mw-sm-700px{max-width:700px!important}.mw-sm-750px{max-width:750px!important}.mw-sm-800px{max-width:800px!important}.mw-sm-850px{max-width:850px!important}.mw-sm-900px{max-width:900px!important}.mw-sm-950px{max-width:950px!important}.mw-sm-1000px{max-width:1000px!important}.h-sm-unset{height:unset!important}.h-sm-25{height:25%!important}.h-sm-50{height:50%!important}.h-sm-75{height:75%!important}.h-sm-100{height:100%!important}.h-sm-auto{height:auto!important}.h-sm-1px{height:1px!important}.h-sm-2px{height:2px!important}.h-sm-3px{height:3px!important}.h-sm-4px{height:4px!important}.h-sm-5px{height:5px!important}.h-sm-6px{height:6px!important}.h-sm-7px{height:7px!important}.h-sm-8px{height:8px!important}.h-sm-9px{height:9px!important}.h-sm-10px{height:10px!important}.h-sm-15px{height:15px!important}.h-sm-20px{height:20px!important}.h-sm-25px{height:25px!important}.h-sm-30px{height:30px!important}.h-sm-35px{height:35px!important}.h-sm-40px{height:40px!important}.h-sm-45px{height:45px!important}.h-sm-50px{height:50px!important}.h-sm-55px{height:55px!important}.h-sm-60px{height:60px!important}.h-sm-65px{height:65px!important}.h-sm-70px{height:70px!important}.h-sm-75px{height:75px!important}.h-sm-80px{height:80px!important}.h-sm-85px{height:85px!important}.h-sm-90px{height:90px!important}.h-sm-95px{height:95px!important}.h-sm-100px{height:100px!important}.h-sm-125px{height:125px!important}.h-sm-150px{height:150px!important}.h-sm-175px{height:175px!important}.h-sm-200px{height:200px!important}.h-sm-225px{height:225px!important}.h-sm-250px{height:250px!important}.h-sm-275px{height:275px!important}.h-sm-300px{height:300px!important}.h-sm-325px{height:325px!important}.h-sm-350px{height:350px!important}.h-sm-375px{height:375px!important}.h-sm-400px{height:400px!important}.h-sm-425px{height:425px!important}.h-sm-450px{height:450px!important}.h-sm-475px{height:475px!important}.h-sm-500px{height:500px!important}.h-sm-550px{height:550px!important}.h-sm-600px{height:600px!important}.h-sm-650px{height:650px!important}.h-sm-700px{height:700px!important}.h-sm-750px{height:750px!important}.h-sm-800px{height:800px!important}.h-sm-850px{height:850px!important}.h-sm-900px{height:900px!important}.h-sm-950px{height:950px!important}.h-sm-1000px{height:1000px!important}.mh-sm-unset{max-height:unset!important}.mh-sm-25{max-height:25%!important}.mh-sm-50{max-height:50%!important}.mh-sm-75{max-height:75%!important}.mh-sm-100{max-height:100%!important}.mh-sm-auto{max-height:auto!important}.mh-sm-1px{max-height:1px!important}.mh-sm-2px{max-height:2px!important}.mh-sm-3px{max-height:3px!important}.mh-sm-4px{max-height:4px!important}.mh-sm-5px{max-height:5px!important}.mh-sm-6px{max-height:6px!important}.mh-sm-7px{max-height:7px!important}.mh-sm-8px{max-height:8px!important}.mh-sm-9px{max-height:9px!important}.mh-sm-10px{max-height:10px!important}.mh-sm-15px{max-height:15px!important}.mh-sm-20px{max-height:20px!important}.mh-sm-25px{max-height:25px!important}.mh-sm-30px{max-height:30px!important}.mh-sm-35px{max-height:35px!important}.mh-sm-40px{max-height:40px!important}.mh-sm-45px{max-height:45px!important}.mh-sm-50px{max-height:50px!important}.mh-sm-55px{max-height:55px!important}.mh-sm-60px{max-height:60px!important}.mh-sm-65px{max-height:65px!important}.mh-sm-70px{max-height:70px!important}.mh-sm-75px{max-height:75px!important}.mh-sm-80px{max-height:80px!important}.mh-sm-85px{max-height:85px!important}.mh-sm-90px{max-height:90px!important}.mh-sm-95px{max-height:95px!important}.mh-sm-100px{max-height:100px!important}.mh-sm-125px{max-height:125px!important}.mh-sm-150px{max-height:150px!important}.mh-sm-175px{max-height:175px!important}.mh-sm-200px{max-height:200px!important}.mh-sm-225px{max-height:225px!important}.mh-sm-250px{max-height:250px!important}.mh-sm-275px{max-height:275px!important}.mh-sm-300px{max-height:300px!important}.mh-sm-325px{max-height:325px!important}.mh-sm-350px{max-height:350px!important}.mh-sm-375px{max-height:375px!important}.mh-sm-400px{max-height:400px!important}.mh-sm-425px{max-height:425px!important}.mh-sm-450px{max-height:450px!important}.mh-sm-475px{max-height:475px!important}.mh-sm-500px{max-height:500px!important}.mh-sm-550px{max-height:550px!important}.mh-sm-600px{max-height:600px!important}.mh-sm-650px{max-height:650px!important}.mh-sm-700px{max-height:700px!important}.mh-sm-750px{max-height:750px!important}.mh-sm-800px{max-height:800px!important}.mh-sm-850px{max-height:850px!important}.mh-sm-900px{max-height:900px!important}.mh-sm-950px{max-height:950px!important}.mh-sm-1000px{max-height:1000px!important}.flex-sm-fill{flex:1 1 auto!important}.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-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}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:.75rem!important}.gap-sm-4{gap:1rem!important}.gap-sm-5{gap:1.25rem!important}.gap-sm-6{gap:1.5rem!important}.gap-sm-7{gap:1.75rem!important}.gap-sm-8{gap:2rem!important}.gap-sm-9{gap:2.25rem!important}.gap-sm-10{gap:2.5rem!important}.gap-sm-11{gap:2.75rem!important}.gap-sm-12{gap:3rem!important}.gap-sm-13{gap:3.25rem!important}.gap-sm-14{gap:3.5rem!important}.gap-sm-15{gap:3.75rem!important}.gap-sm-16{gap:4rem!important}.gap-sm-17{gap:4.25rem!important}.gap-sm-18{gap:4.5rem!important}.gap-sm-19{gap:4.75rem!important}.gap-sm-20{gap:5rem!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}.justify-content-sm-evenly{justify-content:space-evenly!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}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:.75rem!important}.m-sm-4{margin:1rem!important}.m-sm-5{margin:1.25rem!important}.m-sm-6{margin:1.5rem!important}.m-sm-7{margin:1.75rem!important}.m-sm-8{margin:2rem!important}.m-sm-9{margin:2.25rem!important}.m-sm-10{margin:2.5rem!important}.m-sm-11{margin:2.75rem!important}.m-sm-12{margin:3rem!important}.m-sm-13{margin:3.25rem!important}.m-sm-14{margin:3.5rem!important}.m-sm-15{margin:3.75rem!important}.m-sm-16{margin:4rem!important}.m-sm-17{margin:4.25rem!important}.m-sm-18{margin:4.5rem!important}.m-sm-19{margin:4.75rem!important}.m-sm-20{margin:5rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:.75rem!important;margin-right:.75rem!important}.mx-sm-4{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.mx-sm-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.mx-sm-8{margin-left:2rem!important;margin-right:2rem!important}.mx-sm-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.mx-sm-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.mx-sm-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.mx-sm-12{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.mx-sm-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.mx-sm-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.mx-sm-16{margin-left:4rem!important;margin-right:4rem!important}.mx-sm-17{margin-left:4.25rem!important;margin-right:4.25rem!important}.mx-sm-18{margin-left:4.5rem!important;margin-right:4.5rem!important}.mx-sm-19{margin-left:4.75rem!important;margin-right:4.75rem!important}.mx-sm-20{margin-left:5rem!important;margin-right:5rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-sm-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-sm-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-sm-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-sm-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-sm-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-sm-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-sm-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-sm-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-sm-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-sm-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-sm-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-sm-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-sm-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-sm-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:.75rem!important}.mt-sm-4{margin-top:1rem!important}.mt-sm-5{margin-top:1.25rem!important}.mt-sm-6{margin-top:1.5rem!important}.mt-sm-7{margin-top:1.75rem!important}.mt-sm-8{margin-top:2rem!important}.mt-sm-9{margin-top:2.25rem!important}.mt-sm-10{margin-top:2.5rem!important}.mt-sm-11{margin-top:2.75rem!important}.mt-sm-12{margin-top:3rem!important}.mt-sm-13{margin-top:3.25rem!important}.mt-sm-14{margin-top:3.5rem!important}.mt-sm-15{margin-top:3.75rem!important}.mt-sm-16{margin-top:4rem!important}.mt-sm-17{margin-top:4.25rem!important}.mt-sm-18{margin-top:4.5rem!important}.mt-sm-19{margin-top:4.75rem!important}.mt-sm-20{margin-top:5rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-left:0!important}.me-sm-1{margin-left:.25rem!important}.me-sm-2{margin-left:.5rem!important}.me-sm-3{margin-left:.75rem!important}.me-sm-4{margin-left:1rem!important}.me-sm-5{margin-left:1.25rem!important}.me-sm-6{margin-left:1.5rem!important}.me-sm-7{margin-left:1.75rem!important}.me-sm-8{margin-left:2rem!important}.me-sm-9{margin-left:2.25rem!important}.me-sm-10{margin-left:2.5rem!important}.me-sm-11{margin-left:2.75rem!important}.me-sm-12{margin-left:3rem!important}.me-sm-13{margin-left:3.25rem!important}.me-sm-14{margin-left:3.5rem!important}.me-sm-15{margin-left:3.75rem!important}.me-sm-16{margin-left:4rem!important}.me-sm-17{margin-left:4.25rem!important}.me-sm-18{margin-left:4.5rem!important}.me-sm-19{margin-left:4.75rem!important}.me-sm-20{margin-left:5rem!important}.me-sm-auto{margin-left:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:.75rem!important}.mb-sm-4{margin-bottom:1rem!important}.mb-sm-5{margin-bottom:1.25rem!important}.mb-sm-6{margin-bottom:1.5rem!important}.mb-sm-7{margin-bottom:1.75rem!important}.mb-sm-8{margin-bottom:2rem!important}.mb-sm-9{margin-bottom:2.25rem!important}.mb-sm-10{margin-bottom:2.5rem!important}.mb-sm-11{margin-bottom:2.75rem!important}.mb-sm-12{margin-bottom:3rem!important}.mb-sm-13{margin-bottom:3.25rem!important}.mb-sm-14{margin-bottom:3.5rem!important}.mb-sm-15{margin-bottom:3.75rem!important}.mb-sm-16{margin-bottom:4rem!important}.mb-sm-17{margin-bottom:4.25rem!important}.mb-sm-18{margin-bottom:4.5rem!important}.mb-sm-19{margin-bottom:4.75rem!important}.mb-sm-20{margin-bottom:5rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-right:0!important}.ms-sm-1{margin-right:.25rem!important}.ms-sm-2{margin-right:.5rem!important}.ms-sm-3{margin-right:.75rem!important}.ms-sm-4{margin-right:1rem!important}.ms-sm-5{margin-right:1.25rem!important}.ms-sm-6{margin-right:1.5rem!important}.ms-sm-7{margin-right:1.75rem!important}.ms-sm-8{margin-right:2rem!important}.ms-sm-9{margin-right:2.25rem!important}.ms-sm-10{margin-right:2.5rem!important}.ms-sm-11{margin-right:2.75rem!important}.ms-sm-12{margin-right:3rem!important}.ms-sm-13{margin-right:3.25rem!important}.ms-sm-14{margin-right:3.5rem!important}.ms-sm-15{margin-right:3.75rem!important}.ms-sm-16{margin-right:4rem!important}.ms-sm-17{margin-right:4.25rem!important}.ms-sm-18{margin-right:4.5rem!important}.ms-sm-19{margin-right:4.75rem!important}.ms-sm-20{margin-right:5rem!important}.ms-sm-auto{margin-right:auto!important}.m-sm-n1{margin:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.m-sm-n3{margin:-.75rem!important}.m-sm-n4{margin:-1rem!important}.m-sm-n5{margin:-1.25rem!important}.m-sm-n6{margin:-1.5rem!important}.m-sm-n7{margin:-1.75rem!important}.m-sm-n8{margin:-2rem!important}.m-sm-n9{margin:-2.25rem!important}.m-sm-n10{margin:-2.5rem!important}.m-sm-n11{margin:-2.75rem!important}.m-sm-n12{margin:-3rem!important}.m-sm-n13{margin:-3.25rem!important}.m-sm-n14{margin:-3.5rem!important}.m-sm-n15{margin:-3.75rem!important}.m-sm-n16{margin:-4rem!important}.m-sm-n17{margin:-4.25rem!important}.m-sm-n18{margin:-4.5rem!important}.m-sm-n19{margin:-4.75rem!important}.m-sm-n20{margin:-5rem!important}.mx-sm-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-sm-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-sm-n3{margin-left:-.75rem!important;margin-right:-.75rem!important}.mx-sm-n4{margin-left:-1rem!important;margin-right:-1rem!important}.mx-sm-n5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.mx-sm-n6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-sm-n7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.mx-sm-n8{margin-left:-2rem!important;margin-right:-2rem!important}.mx-sm-n9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.mx-sm-n10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.mx-sm-n11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.mx-sm-n12{margin-left:-3rem!important;margin-right:-3rem!important}.mx-sm-n13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.mx-sm-n14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.mx-sm-n15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.mx-sm-n16{margin-left:-4rem!important;margin-right:-4rem!important}.mx-sm-n17{margin-left:-4.25rem!important;margin-right:-4.25rem!important}.mx-sm-n18{margin-left:-4.5rem!important;margin-right:-4.5rem!important}.mx-sm-n19{margin-left:-4.75rem!important;margin-right:-4.75rem!important}.mx-sm-n20{margin-left:-5rem!important;margin-right:-5rem!important}.my-sm-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-sm-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-sm-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-sm-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-sm-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-sm-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-sm-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-sm-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-sm-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-sm-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-sm-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-sm-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-sm-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-sm-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-sm-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-sm-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-sm-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-sm-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-sm-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-sm-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-sm-n1{margin-top:-.25rem!important}.mt-sm-n2{margin-top:-.5rem!important}.mt-sm-n3{margin-top:-.75rem!important}.mt-sm-n4{margin-top:-1rem!important}.mt-sm-n5{margin-top:-1.25rem!important}.mt-sm-n6{margin-top:-1.5rem!important}.mt-sm-n7{margin-top:-1.75rem!important}.mt-sm-n8{margin-top:-2rem!important}.mt-sm-n9{margin-top:-2.25rem!important}.mt-sm-n10{margin-top:-2.5rem!important}.mt-sm-n11{margin-top:-2.75rem!important}.mt-sm-n12{margin-top:-3rem!important}.mt-sm-n13{margin-top:-3.25rem!important}.mt-sm-n14{margin-top:-3.5rem!important}.mt-sm-n15{margin-top:-3.75rem!important}.mt-sm-n16{margin-top:-4rem!important}.mt-sm-n17{margin-top:-4.25rem!important}.mt-sm-n18{margin-top:-4.5rem!important}.mt-sm-n19{margin-top:-4.75rem!important}.mt-sm-n20{margin-top:-5rem!important}.me-sm-n1{margin-left:-.25rem!important}.me-sm-n2{margin-left:-.5rem!important}.me-sm-n3{margin-left:-.75rem!important}.me-sm-n4{margin-left:-1rem!important}.me-sm-n5{margin-left:-1.25rem!important}.me-sm-n6{margin-left:-1.5rem!important}.me-sm-n7{margin-left:-1.75rem!important}.me-sm-n8{margin-left:-2rem!important}.me-sm-n9{margin-left:-2.25rem!important}.me-sm-n10{margin-left:-2.5rem!important}.me-sm-n11{margin-left:-2.75rem!important}.me-sm-n12{margin-left:-3rem!important}.me-sm-n13{margin-left:-3.25rem!important}.me-sm-n14{margin-left:-3.5rem!important}.me-sm-n15{margin-left:-3.75rem!important}.me-sm-n16{margin-left:-4rem!important}.me-sm-n17{margin-left:-4.25rem!important}.me-sm-n18{margin-left:-4.5rem!important}.me-sm-n19{margin-left:-4.75rem!important}.me-sm-n20{margin-left:-5rem!important}.mb-sm-n1{margin-bottom:-.25rem!important}.mb-sm-n2{margin-bottom:-.5rem!important}.mb-sm-n3{margin-bottom:-.75rem!important}.mb-sm-n4{margin-bottom:-1rem!important}.mb-sm-n5{margin-bottom:-1.25rem!important}.mb-sm-n6{margin-bottom:-1.5rem!important}.mb-sm-n7{margin-bottom:-1.75rem!important}.mb-sm-n8{margin-bottom:-2rem!important}.mb-sm-n9{margin-bottom:-2.25rem!important}.mb-sm-n10{margin-bottom:-2.5rem!important}.mb-sm-n11{margin-bottom:-2.75rem!important}.mb-sm-n12{margin-bottom:-3rem!important}.mb-sm-n13{margin-bottom:-3.25rem!important}.mb-sm-n14{margin-bottom:-3.5rem!important}.mb-sm-n15{margin-bottom:-3.75rem!important}.mb-sm-n16{margin-bottom:-4rem!important}.mb-sm-n17{margin-bottom:-4.25rem!important}.mb-sm-n18{margin-bottom:-4.5rem!important}.mb-sm-n19{margin-bottom:-4.75rem!important}.mb-sm-n20{margin-bottom:-5rem!important}.ms-sm-n1{margin-right:-.25rem!important}.ms-sm-n2{margin-right:-.5rem!important}.ms-sm-n3{margin-right:-.75rem!important}.ms-sm-n4{margin-right:-1rem!important}.ms-sm-n5{margin-right:-1.25rem!important}.ms-sm-n6{margin-right:-1.5rem!important}.ms-sm-n7{margin-right:-1.75rem!important}.ms-sm-n8{margin-right:-2rem!important}.ms-sm-n9{margin-right:-2.25rem!important}.ms-sm-n10{margin-right:-2.5rem!important}.ms-sm-n11{margin-right:-2.75rem!important}.ms-sm-n12{margin-right:-3rem!important}.ms-sm-n13{margin-right:-3.25rem!important}.ms-sm-n14{margin-right:-3.5rem!important}.ms-sm-n15{margin-right:-3.75rem!important}.ms-sm-n16{margin-right:-4rem!important}.ms-sm-n17{margin-right:-4.25rem!important}.ms-sm-n18{margin-right:-4.5rem!important}.ms-sm-n19{margin-right:-4.75rem!important}.ms-sm-n20{margin-right:-5rem!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:.75rem!important}.p-sm-4{padding:1rem!important}.p-sm-5{padding:1.25rem!important}.p-sm-6{padding:1.5rem!important}.p-sm-7{padding:1.75rem!important}.p-sm-8{padding:2rem!important}.p-sm-9{padding:2.25rem!important}.p-sm-10{padding:2.5rem!important}.p-sm-11{padding:2.75rem!important}.p-sm-12{padding:3rem!important}.p-sm-13{padding:3.25rem!important}.p-sm-14{padding:3.5rem!important}.p-sm-15{padding:3.75rem!important}.p-sm-16{padding:4rem!important}.p-sm-17{padding:4.25rem!important}.p-sm-18{padding:4.5rem!important}.p-sm-19{padding:4.75rem!important}.p-sm-20{padding:5rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-sm-4{padding-left:1rem!important;padding-right:1rem!important}.px-sm-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-sm-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.px-sm-8{padding-left:2rem!important;padding-right:2rem!important}.px-sm-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.px-sm-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.px-sm-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.px-sm-12{padding-left:3rem!important;padding-right:3rem!important}.px-sm-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.px-sm-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.px-sm-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.px-sm-16{padding-left:4rem!important;padding-right:4rem!important}.px-sm-17{padding-left:4.25rem!important;padding-right:4.25rem!important}.px-sm-18{padding-left:4.5rem!important;padding-right:4.5rem!important}.px-sm-19{padding-left:4.75rem!important;padding-right:4.75rem!important}.px-sm-20{padding-left:5rem!important;padding-right:5rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-sm-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-sm-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-sm-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-sm-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-sm-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-sm-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-sm-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-sm-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-sm-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-sm-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-sm-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-sm-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-sm-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-sm-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-sm-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:.75rem!important}.pt-sm-4{padding-top:1rem!important}.pt-sm-5{padding-top:1.25rem!important}.pt-sm-6{padding-top:1.5rem!important}.pt-sm-7{padding-top:1.75rem!important}.pt-sm-8{padding-top:2rem!important}.pt-sm-9{padding-top:2.25rem!important}.pt-sm-10{padding-top:2.5rem!important}.pt-sm-11{padding-top:2.75rem!important}.pt-sm-12{padding-top:3rem!important}.pt-sm-13{padding-top:3.25rem!important}.pt-sm-14{padding-top:3.5rem!important}.pt-sm-15{padding-top:3.75rem!important}.pt-sm-16{padding-top:4rem!important}.pt-sm-17{padding-top:4.25rem!important}.pt-sm-18{padding-top:4.5rem!important}.pt-sm-19{padding-top:4.75rem!important}.pt-sm-20{padding-top:5rem!important}.pe-sm-0{padding-left:0!important}.pe-sm-1{padding-left:.25rem!important}.pe-sm-2{padding-left:.5rem!important}.pe-sm-3{padding-left:.75rem!important}.pe-sm-4{padding-left:1rem!important}.pe-sm-5{padding-left:1.25rem!important}.pe-sm-6{padding-left:1.5rem!important}.pe-sm-7{padding-left:1.75rem!important}.pe-sm-8{padding-left:2rem!important}.pe-sm-9{padding-left:2.25rem!important}.pe-sm-10{padding-left:2.5rem!important}.pe-sm-11{padding-left:2.75rem!important}.pe-sm-12{padding-left:3rem!important}.pe-sm-13{padding-left:3.25rem!important}.pe-sm-14{padding-left:3.5rem!important}.pe-sm-15{padding-left:3.75rem!important}.pe-sm-16{padding-left:4rem!important}.pe-sm-17{padding-left:4.25rem!important}.pe-sm-18{padding-left:4.5rem!important}.pe-sm-19{padding-left:4.75rem!important}.pe-sm-20{padding-left:5rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:.75rem!important}.pb-sm-4{padding-bottom:1rem!important}.pb-sm-5{padding-bottom:1.25rem!important}.pb-sm-6{padding-bottom:1.5rem!important}.pb-sm-7{padding-bottom:1.75rem!important}.pb-sm-8{padding-bottom:2rem!important}.pb-sm-9{padding-bottom:2.25rem!important}.pb-sm-10{padding-bottom:2.5rem!important}.pb-sm-11{padding-bottom:2.75rem!important}.pb-sm-12{padding-bottom:3rem!important}.pb-sm-13{padding-bottom:3.25rem!important}.pb-sm-14{padding-bottom:3.5rem!important}.pb-sm-15{padding-bottom:3.75rem!important}.pb-sm-16{padding-bottom:4rem!important}.pb-sm-17{padding-bottom:4.25rem!important}.pb-sm-18{padding-bottom:4.5rem!important}.pb-sm-19{padding-bottom:4.75rem!important}.pb-sm-20{padding-bottom:5rem!important}.ps-sm-0{padding-right:0!important}.ps-sm-1{padding-right:.25rem!important}.ps-sm-2{padding-right:.5rem!important}.ps-sm-3{padding-right:.75rem!important}.ps-sm-4{padding-right:1rem!important}.ps-sm-5{padding-right:1.25rem!important}.ps-sm-6{padding-right:1.5rem!important}.ps-sm-7{padding-right:1.75rem!important}.ps-sm-8{padding-right:2rem!important}.ps-sm-9{padding-right:2.25rem!important}.ps-sm-10{padding-right:2.5rem!important}.ps-sm-11{padding-right:2.75rem!important}.ps-sm-12{padding-right:3rem!important}.ps-sm-13{padding-right:3.25rem!important}.ps-sm-14{padding-right:3.5rem!important}.ps-sm-15{padding-right:3.75rem!important}.ps-sm-16{padding-right:4rem!important}.ps-sm-17{padding-right:4.25rem!important}.ps-sm-18{padding-right:4.5rem!important}.ps-sm-19{padding-right:4.75rem!important}.ps-sm-20{padding-right:5rem!important}.fs-sm-1{font-size:calc(1.3rem + .6vw)!important}.fs-sm-2{font-size:calc(1.275rem + .3vw)!important}.fs-sm-3{font-size:calc(1.26rem + .12vw)!important}.fs-sm-4{font-size:1.25rem!important}.fs-sm-5{font-size:1.15rem!important}.fs-sm-6{font-size:1.075rem!important}.fs-sm-7{font-size:.95rem!important}.fs-sm-8{font-size:.85rem!important}.fs-sm-9{font-size:.75rem!important}.fs-sm-10{font-size:.5rem!important}.fs-sm-base{font-size:1rem!important}.fs-sm-fluid{font-size:100%!important}.fs-sm-2x{font-size:calc(1.325rem + .9vw)!important}.fs-sm-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-sm-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-sm-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-sm-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-sm-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-sm-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-sm-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-sm-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-sm-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-sm-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-sm-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-sm-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-sm-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-sm-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-sm-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-sm-start{text-align:right!important}.text-sm-end{text-align:left!important}.text-sm-center{text-align:center!important}.min-w-sm-unset{min-width:unset!important}.min-w-sm-25{min-width:25%!important}.min-w-sm-50{min-width:50%!important}.min-w-sm-75{min-width:75%!important}.min-w-sm-100{min-width:100%!important}.min-w-sm-auto{min-width:auto!important}.min-w-sm-1px{min-width:1px!important}.min-w-sm-2px{min-width:2px!important}.min-w-sm-3px{min-width:3px!important}.min-w-sm-4px{min-width:4px!important}.min-w-sm-5px{min-width:5px!important}.min-w-sm-6px{min-width:6px!important}.min-w-sm-7px{min-width:7px!important}.min-w-sm-8px{min-width:8px!important}.min-w-sm-9px{min-width:9px!important}.min-w-sm-10px{min-width:10px!important}.min-w-sm-15px{min-width:15px!important}.min-w-sm-20px{min-width:20px!important}.min-w-sm-25px{min-width:25px!important}.min-w-sm-30px{min-width:30px!important}.min-w-sm-35px{min-width:35px!important}.min-w-sm-40px{min-width:40px!important}.min-w-sm-45px{min-width:45px!important}.min-w-sm-50px{min-width:50px!important}.min-w-sm-55px{min-width:55px!important}.min-w-sm-60px{min-width:60px!important}.min-w-sm-65px{min-width:65px!important}.min-w-sm-70px{min-width:70px!important}.min-w-sm-75px{min-width:75px!important}.min-w-sm-80px{min-width:80px!important}.min-w-sm-85px{min-width:85px!important}.min-w-sm-90px{min-width:90px!important}.min-w-sm-95px{min-width:95px!important}.min-w-sm-100px{min-width:100px!important}.min-w-sm-125px{min-width:125px!important}.min-w-sm-150px{min-width:150px!important}.min-w-sm-175px{min-width:175px!important}.min-w-sm-200px{min-width:200px!important}.min-w-sm-225px{min-width:225px!important}.min-w-sm-250px{min-width:250px!important}.min-w-sm-275px{min-width:275px!important}.min-w-sm-300px{min-width:300px!important}.min-w-sm-325px{min-width:325px!important}.min-w-sm-350px{min-width:350px!important}.min-w-sm-375px{min-width:375px!important}.min-w-sm-400px{min-width:400px!important}.min-w-sm-425px{min-width:425px!important}.min-w-sm-450px{min-width:450px!important}.min-w-sm-475px{min-width:475px!important}.min-w-sm-500px{min-width:500px!important}.min-w-sm-550px{min-width:550px!important}.min-w-sm-600px{min-width:600px!important}.min-w-sm-650px{min-width:650px!important}.min-w-sm-700px{min-width:700px!important}.min-w-sm-750px{min-width:750px!important}.min-w-sm-800px{min-width:800px!important}.min-w-sm-850px{min-width:850px!important}.min-w-sm-900px{min-width:900px!important}.min-w-sm-950px{min-width:950px!important}.min-w-sm-1000px{min-width:1000px!important}.min-h-sm-unset{min-height:unset!important}.min-h-sm-25{min-height:25%!important}.min-h-sm-50{min-height:50%!important}.min-h-sm-75{min-height:75%!important}.min-h-sm-100{min-height:100%!important}.min-h-sm-auto{min-height:auto!important}.min-h-sm-1px{min-height:1px!important}.min-h-sm-2px{min-height:2px!important}.min-h-sm-3px{min-height:3px!important}.min-h-sm-4px{min-height:4px!important}.min-h-sm-5px{min-height:5px!important}.min-h-sm-6px{min-height:6px!important}.min-h-sm-7px{min-height:7px!important}.min-h-sm-8px{min-height:8px!important}.min-h-sm-9px{min-height:9px!important}.min-h-sm-10px{min-height:10px!important}.min-h-sm-15px{min-height:15px!important}.min-h-sm-20px{min-height:20px!important}.min-h-sm-25px{min-height:25px!important}.min-h-sm-30px{min-height:30px!important}.min-h-sm-35px{min-height:35px!important}.min-h-sm-40px{min-height:40px!important}.min-h-sm-45px{min-height:45px!important}.min-h-sm-50px{min-height:50px!important}.min-h-sm-55px{min-height:55px!important}.min-h-sm-60px{min-height:60px!important}.min-h-sm-65px{min-height:65px!important}.min-h-sm-70px{min-height:70px!important}.min-h-sm-75px{min-height:75px!important}.min-h-sm-80px{min-height:80px!important}.min-h-sm-85px{min-height:85px!important}.min-h-sm-90px{min-height:90px!important}.min-h-sm-95px{min-height:95px!important}.min-h-sm-100px{min-height:100px!important}.min-h-sm-125px{min-height:125px!important}.min-h-sm-150px{min-height:150px!important}.min-h-sm-175px{min-height:175px!important}.min-h-sm-200px{min-height:200px!important}.min-h-sm-225px{min-height:225px!important}.min-h-sm-250px{min-height:250px!important}.min-h-sm-275px{min-height:275px!important}.min-h-sm-300px{min-height:300px!important}.min-h-sm-325px{min-height:325px!important}.min-h-sm-350px{min-height:350px!important}.min-h-sm-375px{min-height:375px!important}.min-h-sm-400px{min-height:400px!important}.min-h-sm-425px{min-height:425px!important}.min-h-sm-450px{min-height:450px!important}.min-h-sm-475px{min-height:475px!important}.min-h-sm-500px{min-height:500px!important}.min-h-sm-550px{min-height:550px!important}.min-h-sm-600px{min-height:600px!important}.min-h-sm-650px{min-height:650px!important}.min-h-sm-700px{min-height:700px!important}.min-h-sm-750px{min-height:750px!important}.min-h-sm-800px{min-height:800px!important}.min-h-sm-850px{min-height:850px!important}.min-h-sm-900px{min-height:900px!important}.min-h-sm-950px{min-height:950px!important}.min-h-sm-1000px{min-height:1000px!important}}@media (min-width:768px){.float-md-start{float:right!important}.float-md-end{float:left!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!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}.d-md-none{display:none!important}.position-md-static{position:static!important}.position-md-relative{position:relative!important}.position-md-absolute{position:absolute!important}.position-md-fixed{position:fixed!important}.position-md-sticky{position:sticky!important}.w-md-unset{width:unset!important}.w-md-25{width:25%!important}.w-md-50{width:50%!important}.w-md-75{width:75%!important}.w-md-100{width:100%!important}.w-md-auto{width:auto!important}.w-md-1px{width:1px!important}.w-md-2px{width:2px!important}.w-md-3px{width:3px!important}.w-md-4px{width:4px!important}.w-md-5px{width:5px!important}.w-md-6px{width:6px!important}.w-md-7px{width:7px!important}.w-md-8px{width:8px!important}.w-md-9px{width:9px!important}.w-md-10px{width:10px!important}.w-md-15px{width:15px!important}.w-md-20px{width:20px!important}.w-md-25px{width:25px!important}.w-md-30px{width:30px!important}.w-md-35px{width:35px!important}.w-md-40px{width:40px!important}.w-md-45px{width:45px!important}.w-md-50px{width:50px!important}.w-md-55px{width:55px!important}.w-md-60px{width:60px!important}.w-md-65px{width:65px!important}.w-md-70px{width:70px!important}.w-md-75px{width:75px!important}.w-md-80px{width:80px!important}.w-md-85px{width:85px!important}.w-md-90px{width:90px!important}.w-md-95px{width:95px!important}.w-md-100px{width:100px!important}.w-md-125px{width:125px!important}.w-md-150px{width:150px!important}.w-md-175px{width:175px!important}.w-md-200px{width:200px!important}.w-md-225px{width:225px!important}.w-md-250px{width:250px!important}.w-md-275px{width:275px!important}.w-md-300px{width:300px!important}.w-md-325px{width:325px!important}.w-md-350px{width:350px!important}.w-md-375px{width:375px!important}.w-md-400px{width:400px!important}.w-md-425px{width:425px!important}.w-md-450px{width:450px!important}.w-md-475px{width:475px!important}.w-md-500px{width:500px!important}.w-md-550px{width:550px!important}.w-md-600px{width:600px!important}.w-md-650px{width:650px!important}.w-md-700px{width:700px!important}.w-md-750px{width:750px!important}.w-md-800px{width:800px!important}.w-md-850px{width:850px!important}.w-md-900px{width:900px!important}.w-md-950px{width:950px!important}.w-md-1000px{width:1000px!important}.mw-md-unset{max-width:unset!important}.mw-md-25{max-width:25%!important}.mw-md-50{max-width:50%!important}.mw-md-75{max-width:75%!important}.mw-md-100{max-width:100%!important}.mw-md-auto{max-width:auto!important}.mw-md-1px{max-width:1px!important}.mw-md-2px{max-width:2px!important}.mw-md-3px{max-width:3px!important}.mw-md-4px{max-width:4px!important}.mw-md-5px{max-width:5px!important}.mw-md-6px{max-width:6px!important}.mw-md-7px{max-width:7px!important}.mw-md-8px{max-width:8px!important}.mw-md-9px{max-width:9px!important}.mw-md-10px{max-width:10px!important}.mw-md-15px{max-width:15px!important}.mw-md-20px{max-width:20px!important}.mw-md-25px{max-width:25px!important}.mw-md-30px{max-width:30px!important}.mw-md-35px{max-width:35px!important}.mw-md-40px{max-width:40px!important}.mw-md-45px{max-width:45px!important}.mw-md-50px{max-width:50px!important}.mw-md-55px{max-width:55px!important}.mw-md-60px{max-width:60px!important}.mw-md-65px{max-width:65px!important}.mw-md-70px{max-width:70px!important}.mw-md-75px{max-width:75px!important}.mw-md-80px{max-width:80px!important}.mw-md-85px{max-width:85px!important}.mw-md-90px{max-width:90px!important}.mw-md-95px{max-width:95px!important}.mw-md-100px{max-width:100px!important}.mw-md-125px{max-width:125px!important}.mw-md-150px{max-width:150px!important}.mw-md-175px{max-width:175px!important}.mw-md-200px{max-width:200px!important}.mw-md-225px{max-width:225px!important}.mw-md-250px{max-width:250px!important}.mw-md-275px{max-width:275px!important}.mw-md-300px{max-width:300px!important}.mw-md-325px{max-width:325px!important}.mw-md-350px{max-width:350px!important}.mw-md-375px{max-width:375px!important}.mw-md-400px{max-width:400px!important}.mw-md-425px{max-width:425px!important}.mw-md-450px{max-width:450px!important}.mw-md-475px{max-width:475px!important}.mw-md-500px{max-width:500px!important}.mw-md-550px{max-width:550px!important}.mw-md-600px{max-width:600px!important}.mw-md-650px{max-width:650px!important}.mw-md-700px{max-width:700px!important}.mw-md-750px{max-width:750px!important}.mw-md-800px{max-width:800px!important}.mw-md-850px{max-width:850px!important}.mw-md-900px{max-width:900px!important}.mw-md-950px{max-width:950px!important}.mw-md-1000px{max-width:1000px!important}.h-md-unset{height:unset!important}.h-md-25{height:25%!important}.h-md-50{height:50%!important}.h-md-75{height:75%!important}.h-md-100{height:100%!important}.h-md-auto{height:auto!important}.h-md-1px{height:1px!important}.h-md-2px{height:2px!important}.h-md-3px{height:3px!important}.h-md-4px{height:4px!important}.h-md-5px{height:5px!important}.h-md-6px{height:6px!important}.h-md-7px{height:7px!important}.h-md-8px{height:8px!important}.h-md-9px{height:9px!important}.h-md-10px{height:10px!important}.h-md-15px{height:15px!important}.h-md-20px{height:20px!important}.h-md-25px{height:25px!important}.h-md-30px{height:30px!important}.h-md-35px{height:35px!important}.h-md-40px{height:40px!important}.h-md-45px{height:45px!important}.h-md-50px{height:50px!important}.h-md-55px{height:55px!important}.h-md-60px{height:60px!important}.h-md-65px{height:65px!important}.h-md-70px{height:70px!important}.h-md-75px{height:75px!important}.h-md-80px{height:80px!important}.h-md-85px{height:85px!important}.h-md-90px{height:90px!important}.h-md-95px{height:95px!important}.h-md-100px{height:100px!important}.h-md-125px{height:125px!important}.h-md-150px{height:150px!important}.h-md-175px{height:175px!important}.h-md-200px{height:200px!important}.h-md-225px{height:225px!important}.h-md-250px{height:250px!important}.h-md-275px{height:275px!important}.h-md-300px{height:300px!important}.h-md-325px{height:325px!important}.h-md-350px{height:350px!important}.h-md-375px{height:375px!important}.h-md-400px{height:400px!important}.h-md-425px{height:425px!important}.h-md-450px{height:450px!important}.h-md-475px{height:475px!important}.h-md-500px{height:500px!important}.h-md-550px{height:550px!important}.h-md-600px{height:600px!important}.h-md-650px{height:650px!important}.h-md-700px{height:700px!important}.h-md-750px{height:750px!important}.h-md-800px{height:800px!important}.h-md-850px{height:850px!important}.h-md-900px{height:900px!important}.h-md-950px{height:950px!important}.h-md-1000px{height:1000px!important}.mh-md-unset{max-height:unset!important}.mh-md-25{max-height:25%!important}.mh-md-50{max-height:50%!important}.mh-md-75{max-height:75%!important}.mh-md-100{max-height:100%!important}.mh-md-auto{max-height:auto!important}.mh-md-1px{max-height:1px!important}.mh-md-2px{max-height:2px!important}.mh-md-3px{max-height:3px!important}.mh-md-4px{max-height:4px!important}.mh-md-5px{max-height:5px!important}.mh-md-6px{max-height:6px!important}.mh-md-7px{max-height:7px!important}.mh-md-8px{max-height:8px!important}.mh-md-9px{max-height:9px!important}.mh-md-10px{max-height:10px!important}.mh-md-15px{max-height:15px!important}.mh-md-20px{max-height:20px!important}.mh-md-25px{max-height:25px!important}.mh-md-30px{max-height:30px!important}.mh-md-35px{max-height:35px!important}.mh-md-40px{max-height:40px!important}.mh-md-45px{max-height:45px!important}.mh-md-50px{max-height:50px!important}.mh-md-55px{max-height:55px!important}.mh-md-60px{max-height:60px!important}.mh-md-65px{max-height:65px!important}.mh-md-70px{max-height:70px!important}.mh-md-75px{max-height:75px!important}.mh-md-80px{max-height:80px!important}.mh-md-85px{max-height:85px!important}.mh-md-90px{max-height:90px!important}.mh-md-95px{max-height:95px!important}.mh-md-100px{max-height:100px!important}.mh-md-125px{max-height:125px!important}.mh-md-150px{max-height:150px!important}.mh-md-175px{max-height:175px!important}.mh-md-200px{max-height:200px!important}.mh-md-225px{max-height:225px!important}.mh-md-250px{max-height:250px!important}.mh-md-275px{max-height:275px!important}.mh-md-300px{max-height:300px!important}.mh-md-325px{max-height:325px!important}.mh-md-350px{max-height:350px!important}.mh-md-375px{max-height:375px!important}.mh-md-400px{max-height:400px!important}.mh-md-425px{max-height:425px!important}.mh-md-450px{max-height:450px!important}.mh-md-475px{max-height:475px!important}.mh-md-500px{max-height:500px!important}.mh-md-550px{max-height:550px!important}.mh-md-600px{max-height:600px!important}.mh-md-650px{max-height:650px!important}.mh-md-700px{max-height:700px!important}.mh-md-750px{max-height:750px!important}.mh-md-800px{max-height:800px!important}.mh-md-850px{max-height:850px!important}.mh-md-900px{max-height:900px!important}.mh-md-950px{max-height:950px!important}.mh-md-1000px{max-height:1000px!important}.flex-md-fill{flex:1 1 auto!important}.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-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}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:.75rem!important}.gap-md-4{gap:1rem!important}.gap-md-5{gap:1.25rem!important}.gap-md-6{gap:1.5rem!important}.gap-md-7{gap:1.75rem!important}.gap-md-8{gap:2rem!important}.gap-md-9{gap:2.25rem!important}.gap-md-10{gap:2.5rem!important}.gap-md-11{gap:2.75rem!important}.gap-md-12{gap:3rem!important}.gap-md-13{gap:3.25rem!important}.gap-md-14{gap:3.5rem!important}.gap-md-15{gap:3.75rem!important}.gap-md-16{gap:4rem!important}.gap-md-17{gap:4.25rem!important}.gap-md-18{gap:4.5rem!important}.gap-md-19{gap:4.75rem!important}.gap-md-20{gap:5rem!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}.justify-content-md-evenly{justify-content:space-evenly!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}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:.75rem!important}.m-md-4{margin:1rem!important}.m-md-5{margin:1.25rem!important}.m-md-6{margin:1.5rem!important}.m-md-7{margin:1.75rem!important}.m-md-8{margin:2rem!important}.m-md-9{margin:2.25rem!important}.m-md-10{margin:2.5rem!important}.m-md-11{margin:2.75rem!important}.m-md-12{margin:3rem!important}.m-md-13{margin:3.25rem!important}.m-md-14{margin:3.5rem!important}.m-md-15{margin:3.75rem!important}.m-md-16{margin:4rem!important}.m-md-17{margin:4.25rem!important}.m-md-18{margin:4.5rem!important}.m-md-19{margin:4.75rem!important}.m-md-20{margin:5rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:.75rem!important;margin-right:.75rem!important}.mx-md-4{margin-left:1rem!important;margin-right:1rem!important}.mx-md-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.mx-md-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.mx-md-8{margin-left:2rem!important;margin-right:2rem!important}.mx-md-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.mx-md-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.mx-md-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.mx-md-12{margin-left:3rem!important;margin-right:3rem!important}.mx-md-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.mx-md-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.mx-md-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.mx-md-16{margin-left:4rem!important;margin-right:4rem!important}.mx-md-17{margin-left:4.25rem!important;margin-right:4.25rem!important}.mx-md-18{margin-left:4.5rem!important;margin-right:4.5rem!important}.mx-md-19{margin-left:4.75rem!important;margin-right:4.75rem!important}.mx-md-20{margin-left:5rem!important;margin-right:5rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-md-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-md-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-md-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-md-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-md-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-md-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-md-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-md-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-md-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-md-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-md-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-md-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-md-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-md-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:.75rem!important}.mt-md-4{margin-top:1rem!important}.mt-md-5{margin-top:1.25rem!important}.mt-md-6{margin-top:1.5rem!important}.mt-md-7{margin-top:1.75rem!important}.mt-md-8{margin-top:2rem!important}.mt-md-9{margin-top:2.25rem!important}.mt-md-10{margin-top:2.5rem!important}.mt-md-11{margin-top:2.75rem!important}.mt-md-12{margin-top:3rem!important}.mt-md-13{margin-top:3.25rem!important}.mt-md-14{margin-top:3.5rem!important}.mt-md-15{margin-top:3.75rem!important}.mt-md-16{margin-top:4rem!important}.mt-md-17{margin-top:4.25rem!important}.mt-md-18{margin-top:4.5rem!important}.mt-md-19{margin-top:4.75rem!important}.mt-md-20{margin-top:5rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-left:0!important}.me-md-1{margin-left:.25rem!important}.me-md-2{margin-left:.5rem!important}.me-md-3{margin-left:.75rem!important}.me-md-4{margin-left:1rem!important}.me-md-5{margin-left:1.25rem!important}.me-md-6{margin-left:1.5rem!important}.me-md-7{margin-left:1.75rem!important}.me-md-8{margin-left:2rem!important}.me-md-9{margin-left:2.25rem!important}.me-md-10{margin-left:2.5rem!important}.me-md-11{margin-left:2.75rem!important}.me-md-12{margin-left:3rem!important}.me-md-13{margin-left:3.25rem!important}.me-md-14{margin-left:3.5rem!important}.me-md-15{margin-left:3.75rem!important}.me-md-16{margin-left:4rem!important}.me-md-17{margin-left:4.25rem!important}.me-md-18{margin-left:4.5rem!important}.me-md-19{margin-left:4.75rem!important}.me-md-20{margin-left:5rem!important}.me-md-auto{margin-left:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:.75rem!important}.mb-md-4{margin-bottom:1rem!important}.mb-md-5{margin-bottom:1.25rem!important}.mb-md-6{margin-bottom:1.5rem!important}.mb-md-7{margin-bottom:1.75rem!important}.mb-md-8{margin-bottom:2rem!important}.mb-md-9{margin-bottom:2.25rem!important}.mb-md-10{margin-bottom:2.5rem!important}.mb-md-11{margin-bottom:2.75rem!important}.mb-md-12{margin-bottom:3rem!important}.mb-md-13{margin-bottom:3.25rem!important}.mb-md-14{margin-bottom:3.5rem!important}.mb-md-15{margin-bottom:3.75rem!important}.mb-md-16{margin-bottom:4rem!important}.mb-md-17{margin-bottom:4.25rem!important}.mb-md-18{margin-bottom:4.5rem!important}.mb-md-19{margin-bottom:4.75rem!important}.mb-md-20{margin-bottom:5rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-right:0!important}.ms-md-1{margin-right:.25rem!important}.ms-md-2{margin-right:.5rem!important}.ms-md-3{margin-right:.75rem!important}.ms-md-4{margin-right:1rem!important}.ms-md-5{margin-right:1.25rem!important}.ms-md-6{margin-right:1.5rem!important}.ms-md-7{margin-right:1.75rem!important}.ms-md-8{margin-right:2rem!important}.ms-md-9{margin-right:2.25rem!important}.ms-md-10{margin-right:2.5rem!important}.ms-md-11{margin-right:2.75rem!important}.ms-md-12{margin-right:3rem!important}.ms-md-13{margin-right:3.25rem!important}.ms-md-14{margin-right:3.5rem!important}.ms-md-15{margin-right:3.75rem!important}.ms-md-16{margin-right:4rem!important}.ms-md-17{margin-right:4.25rem!important}.ms-md-18{margin-right:4.5rem!important}.ms-md-19{margin-right:4.75rem!important}.ms-md-20{margin-right:5rem!important}.ms-md-auto{margin-right:auto!important}.m-md-n1{margin:-.25rem!important}.m-md-n2{margin:-.5rem!important}.m-md-n3{margin:-.75rem!important}.m-md-n4{margin:-1rem!important}.m-md-n5{margin:-1.25rem!important}.m-md-n6{margin:-1.5rem!important}.m-md-n7{margin:-1.75rem!important}.m-md-n8{margin:-2rem!important}.m-md-n9{margin:-2.25rem!important}.m-md-n10{margin:-2.5rem!important}.m-md-n11{margin:-2.75rem!important}.m-md-n12{margin:-3rem!important}.m-md-n13{margin:-3.25rem!important}.m-md-n14{margin:-3.5rem!important}.m-md-n15{margin:-3.75rem!important}.m-md-n16{margin:-4rem!important}.m-md-n17{margin:-4.25rem!important}.m-md-n18{margin:-4.5rem!important}.m-md-n19{margin:-4.75rem!important}.m-md-n20{margin:-5rem!important}.mx-md-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-md-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-md-n3{margin-left:-.75rem!important;margin-right:-.75rem!important}.mx-md-n4{margin-left:-1rem!important;margin-right:-1rem!important}.mx-md-n5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.mx-md-n6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-md-n7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.mx-md-n8{margin-left:-2rem!important;margin-right:-2rem!important}.mx-md-n9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.mx-md-n10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.mx-md-n11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.mx-md-n12{margin-left:-3rem!important;margin-right:-3rem!important}.mx-md-n13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.mx-md-n14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.mx-md-n15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.mx-md-n16{margin-left:-4rem!important;margin-right:-4rem!important}.mx-md-n17{margin-left:-4.25rem!important;margin-right:-4.25rem!important}.mx-md-n18{margin-left:-4.5rem!important;margin-right:-4.5rem!important}.mx-md-n19{margin-left:-4.75rem!important;margin-right:-4.75rem!important}.mx-md-n20{margin-left:-5rem!important;margin-right:-5rem!important}.my-md-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-md-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-md-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-md-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-md-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-md-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-md-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-md-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-md-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-md-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-md-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-md-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-md-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-md-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-md-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-md-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-md-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-md-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-md-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-md-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-md-n1{margin-top:-.25rem!important}.mt-md-n2{margin-top:-.5rem!important}.mt-md-n3{margin-top:-.75rem!important}.mt-md-n4{margin-top:-1rem!important}.mt-md-n5{margin-top:-1.25rem!important}.mt-md-n6{margin-top:-1.5rem!important}.mt-md-n7{margin-top:-1.75rem!important}.mt-md-n8{margin-top:-2rem!important}.mt-md-n9{margin-top:-2.25rem!important}.mt-md-n10{margin-top:-2.5rem!important}.mt-md-n11{margin-top:-2.75rem!important}.mt-md-n12{margin-top:-3rem!important}.mt-md-n13{margin-top:-3.25rem!important}.mt-md-n14{margin-top:-3.5rem!important}.mt-md-n15{margin-top:-3.75rem!important}.mt-md-n16{margin-top:-4rem!important}.mt-md-n17{margin-top:-4.25rem!important}.mt-md-n18{margin-top:-4.5rem!important}.mt-md-n19{margin-top:-4.75rem!important}.mt-md-n20{margin-top:-5rem!important}.me-md-n1{margin-left:-.25rem!important}.me-md-n2{margin-left:-.5rem!important}.me-md-n3{margin-left:-.75rem!important}.me-md-n4{margin-left:-1rem!important}.me-md-n5{margin-left:-1.25rem!important}.me-md-n6{margin-left:-1.5rem!important}.me-md-n7{margin-left:-1.75rem!important}.me-md-n8{margin-left:-2rem!important}.me-md-n9{margin-left:-2.25rem!important}.me-md-n10{margin-left:-2.5rem!important}.me-md-n11{margin-left:-2.75rem!important}.me-md-n12{margin-left:-3rem!important}.me-md-n13{margin-left:-3.25rem!important}.me-md-n14{margin-left:-3.5rem!important}.me-md-n15{margin-left:-3.75rem!important}.me-md-n16{margin-left:-4rem!important}.me-md-n17{margin-left:-4.25rem!important}.me-md-n18{margin-left:-4.5rem!important}.me-md-n19{margin-left:-4.75rem!important}.me-md-n20{margin-left:-5rem!important}.mb-md-n1{margin-bottom:-.25rem!important}.mb-md-n2{margin-bottom:-.5rem!important}.mb-md-n3{margin-bottom:-.75rem!important}.mb-md-n4{margin-bottom:-1rem!important}.mb-md-n5{margin-bottom:-1.25rem!important}.mb-md-n6{margin-bottom:-1.5rem!important}.mb-md-n7{margin-bottom:-1.75rem!important}.mb-md-n8{margin-bottom:-2rem!important}.mb-md-n9{margin-bottom:-2.25rem!important}.mb-md-n10{margin-bottom:-2.5rem!important}.mb-md-n11{margin-bottom:-2.75rem!important}.mb-md-n12{margin-bottom:-3rem!important}.mb-md-n13{margin-bottom:-3.25rem!important}.mb-md-n14{margin-bottom:-3.5rem!important}.mb-md-n15{margin-bottom:-3.75rem!important}.mb-md-n16{margin-bottom:-4rem!important}.mb-md-n17{margin-bottom:-4.25rem!important}.mb-md-n18{margin-bottom:-4.5rem!important}.mb-md-n19{margin-bottom:-4.75rem!important}.mb-md-n20{margin-bottom:-5rem!important}.ms-md-n1{margin-right:-.25rem!important}.ms-md-n2{margin-right:-.5rem!important}.ms-md-n3{margin-right:-.75rem!important}.ms-md-n4{margin-right:-1rem!important}.ms-md-n5{margin-right:-1.25rem!important}.ms-md-n6{margin-right:-1.5rem!important}.ms-md-n7{margin-right:-1.75rem!important}.ms-md-n8{margin-right:-2rem!important}.ms-md-n9{margin-right:-2.25rem!important}.ms-md-n10{margin-right:-2.5rem!important}.ms-md-n11{margin-right:-2.75rem!important}.ms-md-n12{margin-right:-3rem!important}.ms-md-n13{margin-right:-3.25rem!important}.ms-md-n14{margin-right:-3.5rem!important}.ms-md-n15{margin-right:-3.75rem!important}.ms-md-n16{margin-right:-4rem!important}.ms-md-n17{margin-right:-4.25rem!important}.ms-md-n18{margin-right:-4.5rem!important}.ms-md-n19{margin-right:-4.75rem!important}.ms-md-n20{margin-right:-5rem!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:.75rem!important}.p-md-4{padding:1rem!important}.p-md-5{padding:1.25rem!important}.p-md-6{padding:1.5rem!important}.p-md-7{padding:1.75rem!important}.p-md-8{padding:2rem!important}.p-md-9{padding:2.25rem!important}.p-md-10{padding:2.5rem!important}.p-md-11{padding:2.75rem!important}.p-md-12{padding:3rem!important}.p-md-13{padding:3.25rem!important}.p-md-14{padding:3.5rem!important}.p-md-15{padding:3.75rem!important}.p-md-16{padding:4rem!important}.p-md-17{padding:4.25rem!important}.p-md-18{padding:4.5rem!important}.p-md-19{padding:4.75rem!important}.p-md-20{padding:5rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-md-4{padding-left:1rem!important;padding-right:1rem!important}.px-md-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-md-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.px-md-8{padding-left:2rem!important;padding-right:2rem!important}.px-md-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.px-md-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.px-md-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.px-md-12{padding-left:3rem!important;padding-right:3rem!important}.px-md-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.px-md-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.px-md-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.px-md-16{padding-left:4rem!important;padding-right:4rem!important}.px-md-17{padding-left:4.25rem!important;padding-right:4.25rem!important}.px-md-18{padding-left:4.5rem!important;padding-right:4.5rem!important}.px-md-19{padding-left:4.75rem!important;padding-right:4.75rem!important}.px-md-20{padding-left:5rem!important;padding-right:5rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-md-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-md-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-md-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-md-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-md-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-md-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-md-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-md-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-md-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-md-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-md-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-md-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-md-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-md-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-md-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:.75rem!important}.pt-md-4{padding-top:1rem!important}.pt-md-5{padding-top:1.25rem!important}.pt-md-6{padding-top:1.5rem!important}.pt-md-7{padding-top:1.75rem!important}.pt-md-8{padding-top:2rem!important}.pt-md-9{padding-top:2.25rem!important}.pt-md-10{padding-top:2.5rem!important}.pt-md-11{padding-top:2.75rem!important}.pt-md-12{padding-top:3rem!important}.pt-md-13{padding-top:3.25rem!important}.pt-md-14{padding-top:3.5rem!important}.pt-md-15{padding-top:3.75rem!important}.pt-md-16{padding-top:4rem!important}.pt-md-17{padding-top:4.25rem!important}.pt-md-18{padding-top:4.5rem!important}.pt-md-19{padding-top:4.75rem!important}.pt-md-20{padding-top:5rem!important}.pe-md-0{padding-left:0!important}.pe-md-1{padding-left:.25rem!important}.pe-md-2{padding-left:.5rem!important}.pe-md-3{padding-left:.75rem!important}.pe-md-4{padding-left:1rem!important}.pe-md-5{padding-left:1.25rem!important}.pe-md-6{padding-left:1.5rem!important}.pe-md-7{padding-left:1.75rem!important}.pe-md-8{padding-left:2rem!important}.pe-md-9{padding-left:2.25rem!important}.pe-md-10{padding-left:2.5rem!important}.pe-md-11{padding-left:2.75rem!important}.pe-md-12{padding-left:3rem!important}.pe-md-13{padding-left:3.25rem!important}.pe-md-14{padding-left:3.5rem!important}.pe-md-15{padding-left:3.75rem!important}.pe-md-16{padding-left:4rem!important}.pe-md-17{padding-left:4.25rem!important}.pe-md-18{padding-left:4.5rem!important}.pe-md-19{padding-left:4.75rem!important}.pe-md-20{padding-left:5rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:.75rem!important}.pb-md-4{padding-bottom:1rem!important}.pb-md-5{padding-bottom:1.25rem!important}.pb-md-6{padding-bottom:1.5rem!important}.pb-md-7{padding-bottom:1.75rem!important}.pb-md-8{padding-bottom:2rem!important}.pb-md-9{padding-bottom:2.25rem!important}.pb-md-10{padding-bottom:2.5rem!important}.pb-md-11{padding-bottom:2.75rem!important}.pb-md-12{padding-bottom:3rem!important}.pb-md-13{padding-bottom:3.25rem!important}.pb-md-14{padding-bottom:3.5rem!important}.pb-md-15{padding-bottom:3.75rem!important}.pb-md-16{padding-bottom:4rem!important}.pb-md-17{padding-bottom:4.25rem!important}.pb-md-18{padding-bottom:4.5rem!important}.pb-md-19{padding-bottom:4.75rem!important}.pb-md-20{padding-bottom:5rem!important}.ps-md-0{padding-right:0!important}.ps-md-1{padding-right:.25rem!important}.ps-md-2{padding-right:.5rem!important}.ps-md-3{padding-right:.75rem!important}.ps-md-4{padding-right:1rem!important}.ps-md-5{padding-right:1.25rem!important}.ps-md-6{padding-right:1.5rem!important}.ps-md-7{padding-right:1.75rem!important}.ps-md-8{padding-right:2rem!important}.ps-md-9{padding-right:2.25rem!important}.ps-md-10{padding-right:2.5rem!important}.ps-md-11{padding-right:2.75rem!important}.ps-md-12{padding-right:3rem!important}.ps-md-13{padding-right:3.25rem!important}.ps-md-14{padding-right:3.5rem!important}.ps-md-15{padding-right:3.75rem!important}.ps-md-16{padding-right:4rem!important}.ps-md-17{padding-right:4.25rem!important}.ps-md-18{padding-right:4.5rem!important}.ps-md-19{padding-right:4.75rem!important}.ps-md-20{padding-right:5rem!important}.fs-md-1{font-size:calc(1.3rem + .6vw)!important}.fs-md-2{font-size:calc(1.275rem + .3vw)!important}.fs-md-3{font-size:calc(1.26rem + .12vw)!important}.fs-md-4{font-size:1.25rem!important}.fs-md-5{font-size:1.15rem!important}.fs-md-6{font-size:1.075rem!important}.fs-md-7{font-size:.95rem!important}.fs-md-8{font-size:.85rem!important}.fs-md-9{font-size:.75rem!important}.fs-md-10{font-size:.5rem!important}.fs-md-base{font-size:1rem!important}.fs-md-fluid{font-size:100%!important}.fs-md-2x{font-size:calc(1.325rem + .9vw)!important}.fs-md-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-md-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-md-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-md-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-md-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-md-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-md-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-md-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-md-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-md-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-md-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-md-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-md-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-md-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-md-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-md-start{text-align:right!important}.text-md-end{text-align:left!important}.text-md-center{text-align:center!important}.min-w-md-unset{min-width:unset!important}.min-w-md-25{min-width:25%!important}.min-w-md-50{min-width:50%!important}.min-w-md-75{min-width:75%!important}.min-w-md-100{min-width:100%!important}.min-w-md-auto{min-width:auto!important}.min-w-md-1px{min-width:1px!important}.min-w-md-2px{min-width:2px!important}.min-w-md-3px{min-width:3px!important}.min-w-md-4px{min-width:4px!important}.min-w-md-5px{min-width:5px!important}.min-w-md-6px{min-width:6px!important}.min-w-md-7px{min-width:7px!important}.min-w-md-8px{min-width:8px!important}.min-w-md-9px{min-width:9px!important}.min-w-md-10px{min-width:10px!important}.min-w-md-15px{min-width:15px!important}.min-w-md-20px{min-width:20px!important}.min-w-md-25px{min-width:25px!important}.min-w-md-30px{min-width:30px!important}.min-w-md-35px{min-width:35px!important}.min-w-md-40px{min-width:40px!important}.min-w-md-45px{min-width:45px!important}.min-w-md-50px{min-width:50px!important}.min-w-md-55px{min-width:55px!important}.min-w-md-60px{min-width:60px!important}.min-w-md-65px{min-width:65px!important}.min-w-md-70px{min-width:70px!important}.min-w-md-75px{min-width:75px!important}.min-w-md-80px{min-width:80px!important}.min-w-md-85px{min-width:85px!important}.min-w-md-90px{min-width:90px!important}.min-w-md-95px{min-width:95px!important}.min-w-md-100px{min-width:100px!important}.min-w-md-125px{min-width:125px!important}.min-w-md-150px{min-width:150px!important}.min-w-md-175px{min-width:175px!important}.min-w-md-200px{min-width:200px!important}.min-w-md-225px{min-width:225px!important}.min-w-md-250px{min-width:250px!important}.min-w-md-275px{min-width:275px!important}.min-w-md-300px{min-width:300px!important}.min-w-md-325px{min-width:325px!important}.min-w-md-350px{min-width:350px!important}.min-w-md-375px{min-width:375px!important}.min-w-md-400px{min-width:400px!important}.min-w-md-425px{min-width:425px!important}.min-w-md-450px{min-width:450px!important}.min-w-md-475px{min-width:475px!important}.min-w-md-500px{min-width:500px!important}.min-w-md-550px{min-width:550px!important}.min-w-md-600px{min-width:600px!important}.min-w-md-650px{min-width:650px!important}.min-w-md-700px{min-width:700px!important}.min-w-md-750px{min-width:750px!important}.min-w-md-800px{min-width:800px!important}.min-w-md-850px{min-width:850px!important}.min-w-md-900px{min-width:900px!important}.min-w-md-950px{min-width:950px!important}.min-w-md-1000px{min-width:1000px!important}.min-h-md-unset{min-height:unset!important}.min-h-md-25{min-height:25%!important}.min-h-md-50{min-height:50%!important}.min-h-md-75{min-height:75%!important}.min-h-md-100{min-height:100%!important}.min-h-md-auto{min-height:auto!important}.min-h-md-1px{min-height:1px!important}.min-h-md-2px{min-height:2px!important}.min-h-md-3px{min-height:3px!important}.min-h-md-4px{min-height:4px!important}.min-h-md-5px{min-height:5px!important}.min-h-md-6px{min-height:6px!important}.min-h-md-7px{min-height:7px!important}.min-h-md-8px{min-height:8px!important}.min-h-md-9px{min-height:9px!important}.min-h-md-10px{min-height:10px!important}.min-h-md-15px{min-height:15px!important}.min-h-md-20px{min-height:20px!important}.min-h-md-25px{min-height:25px!important}.min-h-md-30px{min-height:30px!important}.min-h-md-35px{min-height:35px!important}.min-h-md-40px{min-height:40px!important}.min-h-md-45px{min-height:45px!important}.min-h-md-50px{min-height:50px!important}.min-h-md-55px{min-height:55px!important}.min-h-md-60px{min-height:60px!important}.min-h-md-65px{min-height:65px!important}.min-h-md-70px{min-height:70px!important}.min-h-md-75px{min-height:75px!important}.min-h-md-80px{min-height:80px!important}.min-h-md-85px{min-height:85px!important}.min-h-md-90px{min-height:90px!important}.min-h-md-95px{min-height:95px!important}.min-h-md-100px{min-height:100px!important}.min-h-md-125px{min-height:125px!important}.min-h-md-150px{min-height:150px!important}.min-h-md-175px{min-height:175px!important}.min-h-md-200px{min-height:200px!important}.min-h-md-225px{min-height:225px!important}.min-h-md-250px{min-height:250px!important}.min-h-md-275px{min-height:275px!important}.min-h-md-300px{min-height:300px!important}.min-h-md-325px{min-height:325px!important}.min-h-md-350px{min-height:350px!important}.min-h-md-375px{min-height:375px!important}.min-h-md-400px{min-height:400px!important}.min-h-md-425px{min-height:425px!important}.min-h-md-450px{min-height:450px!important}.min-h-md-475px{min-height:475px!important}.min-h-md-500px{min-height:500px!important}.min-h-md-550px{min-height:550px!important}.min-h-md-600px{min-height:600px!important}.min-h-md-650px{min-height:650px!important}.min-h-md-700px{min-height:700px!important}.min-h-md-750px{min-height:750px!important}.min-h-md-800px{min-height:800px!important}.min-h-md-850px{min-height:850px!important}.min-h-md-900px{min-height:900px!important}.min-h-md-950px{min-height:950px!important}.min-h-md-1000px{min-height:1000px!important}}@media (min-width:992px){.float-lg-start{float:right!important}.float-lg-end{float:left!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!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}.d-lg-none{display:none!important}.position-lg-static{position:static!important}.position-lg-relative{position:relative!important}.position-lg-absolute{position:absolute!important}.position-lg-fixed{position:fixed!important}.position-lg-sticky{position:sticky!important}.w-lg-unset{width:unset!important}.w-lg-25{width:25%!important}.w-lg-50{width:50%!important}.w-lg-75{width:75%!important}.w-lg-100{width:100%!important}.w-lg-auto{width:auto!important}.w-lg-1px{width:1px!important}.w-lg-2px{width:2px!important}.w-lg-3px{width:3px!important}.w-lg-4px{width:4px!important}.w-lg-5px{width:5px!important}.w-lg-6px{width:6px!important}.w-lg-7px{width:7px!important}.w-lg-8px{width:8px!important}.w-lg-9px{width:9px!important}.w-lg-10px{width:10px!important}.w-lg-15px{width:15px!important}.w-lg-20px{width:20px!important}.w-lg-25px{width:25px!important}.w-lg-30px{width:30px!important}.w-lg-35px{width:35px!important}.w-lg-40px{width:40px!important}.w-lg-45px{width:45px!important}.w-lg-50px{width:50px!important}.w-lg-55px{width:55px!important}.w-lg-60px{width:60px!important}.w-lg-65px{width:65px!important}.w-lg-70px{width:70px!important}.w-lg-75px{width:75px!important}.w-lg-80px{width:80px!important}.w-lg-85px{width:85px!important}.w-lg-90px{width:90px!important}.w-lg-95px{width:95px!important}.w-lg-100px{width:100px!important}.w-lg-125px{width:125px!important}.w-lg-150px{width:150px!important}.w-lg-175px{width:175px!important}.w-lg-200px{width:200px!important}.w-lg-225px{width:225px!important}.w-lg-250px{width:250px!important}.w-lg-275px{width:275px!important}.w-lg-300px{width:300px!important}.w-lg-325px{width:325px!important}.w-lg-350px{width:350px!important}.w-lg-375px{width:375px!important}.w-lg-400px{width:400px!important}.w-lg-425px{width:425px!important}.w-lg-450px{width:450px!important}.w-lg-475px{width:475px!important}.w-lg-500px{width:500px!important}.w-lg-550px{width:550px!important}.w-lg-600px{width:600px!important}.w-lg-650px{width:650px!important}.w-lg-700px{width:700px!important}.w-lg-750px{width:750px!important}.w-lg-800px{width:800px!important}.w-lg-850px{width:850px!important}.w-lg-900px{width:900px!important}.w-lg-950px{width:950px!important}.w-lg-1000px{width:1000px!important}.mw-lg-unset{max-width:unset!important}.mw-lg-25{max-width:25%!important}.mw-lg-50{max-width:50%!important}.mw-lg-75{max-width:75%!important}.mw-lg-100{max-width:100%!important}.mw-lg-auto{max-width:auto!important}.mw-lg-1px{max-width:1px!important}.mw-lg-2px{max-width:2px!important}.mw-lg-3px{max-width:3px!important}.mw-lg-4px{max-width:4px!important}.mw-lg-5px{max-width:5px!important}.mw-lg-6px{max-width:6px!important}.mw-lg-7px{max-width:7px!important}.mw-lg-8px{max-width:8px!important}.mw-lg-9px{max-width:9px!important}.mw-lg-10px{max-width:10px!important}.mw-lg-15px{max-width:15px!important}.mw-lg-20px{max-width:20px!important}.mw-lg-25px{max-width:25px!important}.mw-lg-30px{max-width:30px!important}.mw-lg-35px{max-width:35px!important}.mw-lg-40px{max-width:40px!important}.mw-lg-45px{max-width:45px!important}.mw-lg-50px{max-width:50px!important}.mw-lg-55px{max-width:55px!important}.mw-lg-60px{max-width:60px!important}.mw-lg-65px{max-width:65px!important}.mw-lg-70px{max-width:70px!important}.mw-lg-75px{max-width:75px!important}.mw-lg-80px{max-width:80px!important}.mw-lg-85px{max-width:85px!important}.mw-lg-90px{max-width:90px!important}.mw-lg-95px{max-width:95px!important}.mw-lg-100px{max-width:100px!important}.mw-lg-125px{max-width:125px!important}.mw-lg-150px{max-width:150px!important}.mw-lg-175px{max-width:175px!important}.mw-lg-200px{max-width:200px!important}.mw-lg-225px{max-width:225px!important}.mw-lg-250px{max-width:250px!important}.mw-lg-275px{max-width:275px!important}.mw-lg-300px{max-width:300px!important}.mw-lg-325px{max-width:325px!important}.mw-lg-350px{max-width:350px!important}.mw-lg-375px{max-width:375px!important}.mw-lg-400px{max-width:400px!important}.mw-lg-425px{max-width:425px!important}.mw-lg-450px{max-width:450px!important}.mw-lg-475px{max-width:475px!important}.mw-lg-500px{max-width:500px!important}.mw-lg-550px{max-width:550px!important}.mw-lg-600px{max-width:600px!important}.mw-lg-650px{max-width:650px!important}.mw-lg-700px{max-width:700px!important}.mw-lg-750px{max-width:750px!important}.mw-lg-800px{max-width:800px!important}.mw-lg-850px{max-width:850px!important}.mw-lg-900px{max-width:900px!important}.mw-lg-950px{max-width:950px!important}.mw-lg-1000px{max-width:1000px!important}.h-lg-unset{height:unset!important}.h-lg-25{height:25%!important}.h-lg-50{height:50%!important}.h-lg-75{height:75%!important}.h-lg-100{height:100%!important}.h-lg-auto{height:auto!important}.h-lg-1px{height:1px!important}.h-lg-2px{height:2px!important}.h-lg-3px{height:3px!important}.h-lg-4px{height:4px!important}.h-lg-5px{height:5px!important}.h-lg-6px{height:6px!important}.h-lg-7px{height:7px!important}.h-lg-8px{height:8px!important}.h-lg-9px{height:9px!important}.h-lg-10px{height:10px!important}.h-lg-15px{height:15px!important}.h-lg-20px{height:20px!important}.h-lg-25px{height:25px!important}.h-lg-30px{height:30px!important}.h-lg-35px{height:35px!important}.h-lg-40px{height:40px!important}.h-lg-45px{height:45px!important}.h-lg-50px{height:50px!important}.h-lg-55px{height:55px!important}.h-lg-60px{height:60px!important}.h-lg-65px{height:65px!important}.h-lg-70px{height:70px!important}.h-lg-75px{height:75px!important}.h-lg-80px{height:80px!important}.h-lg-85px{height:85px!important}.h-lg-90px{height:90px!important}.h-lg-95px{height:95px!important}.h-lg-100px{height:100px!important}.h-lg-125px{height:125px!important}.h-lg-150px{height:150px!important}.h-lg-175px{height:175px!important}.h-lg-200px{height:200px!important}.h-lg-225px{height:225px!important}.h-lg-250px{height:250px!important}.h-lg-275px{height:275px!important}.h-lg-300px{height:300px!important}.h-lg-325px{height:325px!important}.h-lg-350px{height:350px!important}.h-lg-375px{height:375px!important}.h-lg-400px{height:400px!important}.h-lg-425px{height:425px!important}.h-lg-450px{height:450px!important}.h-lg-475px{height:475px!important}.h-lg-500px{height:500px!important}.h-lg-550px{height:550px!important}.h-lg-600px{height:600px!important}.h-lg-650px{height:650px!important}.h-lg-700px{height:700px!important}.h-lg-750px{height:750px!important}.h-lg-800px{height:800px!important}.h-lg-850px{height:850px!important}.h-lg-900px{height:900px!important}.h-lg-950px{height:950px!important}.h-lg-1000px{height:1000px!important}.mh-lg-unset{max-height:unset!important}.mh-lg-25{max-height:25%!important}.mh-lg-50{max-height:50%!important}.mh-lg-75{max-height:75%!important}.mh-lg-100{max-height:100%!important}.mh-lg-auto{max-height:auto!important}.mh-lg-1px{max-height:1px!important}.mh-lg-2px{max-height:2px!important}.mh-lg-3px{max-height:3px!important}.mh-lg-4px{max-height:4px!important}.mh-lg-5px{max-height:5px!important}.mh-lg-6px{max-height:6px!important}.mh-lg-7px{max-height:7px!important}.mh-lg-8px{max-height:8px!important}.mh-lg-9px{max-height:9px!important}.mh-lg-10px{max-height:10px!important}.mh-lg-15px{max-height:15px!important}.mh-lg-20px{max-height:20px!important}.mh-lg-25px{max-height:25px!important}.mh-lg-30px{max-height:30px!important}.mh-lg-35px{max-height:35px!important}.mh-lg-40px{max-height:40px!important}.mh-lg-45px{max-height:45px!important}.mh-lg-50px{max-height:50px!important}.mh-lg-55px{max-height:55px!important}.mh-lg-60px{max-height:60px!important}.mh-lg-65px{max-height:65px!important}.mh-lg-70px{max-height:70px!important}.mh-lg-75px{max-height:75px!important}.mh-lg-80px{max-height:80px!important}.mh-lg-85px{max-height:85px!important}.mh-lg-90px{max-height:90px!important}.mh-lg-95px{max-height:95px!important}.mh-lg-100px{max-height:100px!important}.mh-lg-125px{max-height:125px!important}.mh-lg-150px{max-height:150px!important}.mh-lg-175px{max-height:175px!important}.mh-lg-200px{max-height:200px!important}.mh-lg-225px{max-height:225px!important}.mh-lg-250px{max-height:250px!important}.mh-lg-275px{max-height:275px!important}.mh-lg-300px{max-height:300px!important}.mh-lg-325px{max-height:325px!important}.mh-lg-350px{max-height:350px!important}.mh-lg-375px{max-height:375px!important}.mh-lg-400px{max-height:400px!important}.mh-lg-425px{max-height:425px!important}.mh-lg-450px{max-height:450px!important}.mh-lg-475px{max-height:475px!important}.mh-lg-500px{max-height:500px!important}.mh-lg-550px{max-height:550px!important}.mh-lg-600px{max-height:600px!important}.mh-lg-650px{max-height:650px!important}.mh-lg-700px{max-height:700px!important}.mh-lg-750px{max-height:750px!important}.mh-lg-800px{max-height:800px!important}.mh-lg-850px{max-height:850px!important}.mh-lg-900px{max-height:900px!important}.mh-lg-950px{max-height:950px!important}.mh-lg-1000px{max-height:1000px!important}.flex-lg-fill{flex:1 1 auto!important}.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-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}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:.75rem!important}.gap-lg-4{gap:1rem!important}.gap-lg-5{gap:1.25rem!important}.gap-lg-6{gap:1.5rem!important}.gap-lg-7{gap:1.75rem!important}.gap-lg-8{gap:2rem!important}.gap-lg-9{gap:2.25rem!important}.gap-lg-10{gap:2.5rem!important}.gap-lg-11{gap:2.75rem!important}.gap-lg-12{gap:3rem!important}.gap-lg-13{gap:3.25rem!important}.gap-lg-14{gap:3.5rem!important}.gap-lg-15{gap:3.75rem!important}.gap-lg-16{gap:4rem!important}.gap-lg-17{gap:4.25rem!important}.gap-lg-18{gap:4.5rem!important}.gap-lg-19{gap:4.75rem!important}.gap-lg-20{gap:5rem!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}.justify-content-lg-evenly{justify-content:space-evenly!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}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:.75rem!important}.m-lg-4{margin:1rem!important}.m-lg-5{margin:1.25rem!important}.m-lg-6{margin:1.5rem!important}.m-lg-7{margin:1.75rem!important}.m-lg-8{margin:2rem!important}.m-lg-9{margin:2.25rem!important}.m-lg-10{margin:2.5rem!important}.m-lg-11{margin:2.75rem!important}.m-lg-12{margin:3rem!important}.m-lg-13{margin:3.25rem!important}.m-lg-14{margin:3.5rem!important}.m-lg-15{margin:3.75rem!important}.m-lg-16{margin:4rem!important}.m-lg-17{margin:4.25rem!important}.m-lg-18{margin:4.5rem!important}.m-lg-19{margin:4.75rem!important}.m-lg-20{margin:5rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:.75rem!important;margin-right:.75rem!important}.mx-lg-4{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.mx-lg-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.mx-lg-8{margin-left:2rem!important;margin-right:2rem!important}.mx-lg-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.mx-lg-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.mx-lg-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.mx-lg-12{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.mx-lg-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.mx-lg-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.mx-lg-16{margin-left:4rem!important;margin-right:4rem!important}.mx-lg-17{margin-left:4.25rem!important;margin-right:4.25rem!important}.mx-lg-18{margin-left:4.5rem!important;margin-right:4.5rem!important}.mx-lg-19{margin-left:4.75rem!important;margin-right:4.75rem!important}.mx-lg-20{margin-left:5rem!important;margin-right:5rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-lg-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-lg-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-lg-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-lg-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-lg-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-lg-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-lg-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-lg-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-lg-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-lg-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-lg-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-lg-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-lg-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-lg-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:.75rem!important}.mt-lg-4{margin-top:1rem!important}.mt-lg-5{margin-top:1.25rem!important}.mt-lg-6{margin-top:1.5rem!important}.mt-lg-7{margin-top:1.75rem!important}.mt-lg-8{margin-top:2rem!important}.mt-lg-9{margin-top:2.25rem!important}.mt-lg-10{margin-top:2.5rem!important}.mt-lg-11{margin-top:2.75rem!important}.mt-lg-12{margin-top:3rem!important}.mt-lg-13{margin-top:3.25rem!important}.mt-lg-14{margin-top:3.5rem!important}.mt-lg-15{margin-top:3.75rem!important}.mt-lg-16{margin-top:4rem!important}.mt-lg-17{margin-top:4.25rem!important}.mt-lg-18{margin-top:4.5rem!important}.mt-lg-19{margin-top:4.75rem!important}.mt-lg-20{margin-top:5rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-left:0!important}.me-lg-1{margin-left:.25rem!important}.me-lg-2{margin-left:.5rem!important}.me-lg-3{margin-left:.75rem!important}.me-lg-4{margin-left:1rem!important}.me-lg-5{margin-left:1.25rem!important}.me-lg-6{margin-left:1.5rem!important}.me-lg-7{margin-left:1.75rem!important}.me-lg-8{margin-left:2rem!important}.me-lg-9{margin-left:2.25rem!important}.me-lg-10{margin-left:2.5rem!important}.me-lg-11{margin-left:2.75rem!important}.me-lg-12{margin-left:3rem!important}.me-lg-13{margin-left:3.25rem!important}.me-lg-14{margin-left:3.5rem!important}.me-lg-15{margin-left:3.75rem!important}.me-lg-16{margin-left:4rem!important}.me-lg-17{margin-left:4.25rem!important}.me-lg-18{margin-left:4.5rem!important}.me-lg-19{margin-left:4.75rem!important}.me-lg-20{margin-left:5rem!important}.me-lg-auto{margin-left:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:.75rem!important}.mb-lg-4{margin-bottom:1rem!important}.mb-lg-5{margin-bottom:1.25rem!important}.mb-lg-6{margin-bottom:1.5rem!important}.mb-lg-7{margin-bottom:1.75rem!important}.mb-lg-8{margin-bottom:2rem!important}.mb-lg-9{margin-bottom:2.25rem!important}.mb-lg-10{margin-bottom:2.5rem!important}.mb-lg-11{margin-bottom:2.75rem!important}.mb-lg-12{margin-bottom:3rem!important}.mb-lg-13{margin-bottom:3.25rem!important}.mb-lg-14{margin-bottom:3.5rem!important}.mb-lg-15{margin-bottom:3.75rem!important}.mb-lg-16{margin-bottom:4rem!important}.mb-lg-17{margin-bottom:4.25rem!important}.mb-lg-18{margin-bottom:4.5rem!important}.mb-lg-19{margin-bottom:4.75rem!important}.mb-lg-20{margin-bottom:5rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-right:0!important}.ms-lg-1{margin-right:.25rem!important}.ms-lg-2{margin-right:.5rem!important}.ms-lg-3{margin-right:.75rem!important}.ms-lg-4{margin-right:1rem!important}.ms-lg-5{margin-right:1.25rem!important}.ms-lg-6{margin-right:1.5rem!important}.ms-lg-7{margin-right:1.75rem!important}.ms-lg-8{margin-right:2rem!important}.ms-lg-9{margin-right:2.25rem!important}.ms-lg-10{margin-right:2.5rem!important}.ms-lg-11{margin-right:2.75rem!important}.ms-lg-12{margin-right:3rem!important}.ms-lg-13{margin-right:3.25rem!important}.ms-lg-14{margin-right:3.5rem!important}.ms-lg-15{margin-right:3.75rem!important}.ms-lg-16{margin-right:4rem!important}.ms-lg-17{margin-right:4.25rem!important}.ms-lg-18{margin-right:4.5rem!important}.ms-lg-19{margin-right:4.75rem!important}.ms-lg-20{margin-right:5rem!important}.ms-lg-auto{margin-right:auto!important}.m-lg-n1{margin:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.m-lg-n3{margin:-.75rem!important}.m-lg-n4{margin:-1rem!important}.m-lg-n5{margin:-1.25rem!important}.m-lg-n6{margin:-1.5rem!important}.m-lg-n7{margin:-1.75rem!important}.m-lg-n8{margin:-2rem!important}.m-lg-n9{margin:-2.25rem!important}.m-lg-n10{margin:-2.5rem!important}.m-lg-n11{margin:-2.75rem!important}.m-lg-n12{margin:-3rem!important}.m-lg-n13{margin:-3.25rem!important}.m-lg-n14{margin:-3.5rem!important}.m-lg-n15{margin:-3.75rem!important}.m-lg-n16{margin:-4rem!important}.m-lg-n17{margin:-4.25rem!important}.m-lg-n18{margin:-4.5rem!important}.m-lg-n19{margin:-4.75rem!important}.m-lg-n20{margin:-5rem!important}.mx-lg-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-lg-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-lg-n3{margin-left:-.75rem!important;margin-right:-.75rem!important}.mx-lg-n4{margin-left:-1rem!important;margin-right:-1rem!important}.mx-lg-n5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.mx-lg-n6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-lg-n7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.mx-lg-n8{margin-left:-2rem!important;margin-right:-2rem!important}.mx-lg-n9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.mx-lg-n10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.mx-lg-n11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.mx-lg-n12{margin-left:-3rem!important;margin-right:-3rem!important}.mx-lg-n13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.mx-lg-n14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.mx-lg-n15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.mx-lg-n16{margin-left:-4rem!important;margin-right:-4rem!important}.mx-lg-n17{margin-left:-4.25rem!important;margin-right:-4.25rem!important}.mx-lg-n18{margin-left:-4.5rem!important;margin-right:-4.5rem!important}.mx-lg-n19{margin-left:-4.75rem!important;margin-right:-4.75rem!important}.mx-lg-n20{margin-left:-5rem!important;margin-right:-5rem!important}.my-lg-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-lg-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-lg-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-lg-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-lg-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-lg-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-lg-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-lg-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-lg-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-lg-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-lg-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-lg-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-lg-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-lg-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-lg-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-lg-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-lg-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-lg-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-lg-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-lg-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-lg-n1{margin-top:-.25rem!important}.mt-lg-n2{margin-top:-.5rem!important}.mt-lg-n3{margin-top:-.75rem!important}.mt-lg-n4{margin-top:-1rem!important}.mt-lg-n5{margin-top:-1.25rem!important}.mt-lg-n6{margin-top:-1.5rem!important}.mt-lg-n7{margin-top:-1.75rem!important}.mt-lg-n8{margin-top:-2rem!important}.mt-lg-n9{margin-top:-2.25rem!important}.mt-lg-n10{margin-top:-2.5rem!important}.mt-lg-n11{margin-top:-2.75rem!important}.mt-lg-n12{margin-top:-3rem!important}.mt-lg-n13{margin-top:-3.25rem!important}.mt-lg-n14{margin-top:-3.5rem!important}.mt-lg-n15{margin-top:-3.75rem!important}.mt-lg-n16{margin-top:-4rem!important}.mt-lg-n17{margin-top:-4.25rem!important}.mt-lg-n18{margin-top:-4.5rem!important}.mt-lg-n19{margin-top:-4.75rem!important}.mt-lg-n20{margin-top:-5rem!important}.me-lg-n1{margin-left:-.25rem!important}.me-lg-n2{margin-left:-.5rem!important}.me-lg-n3{margin-left:-.75rem!important}.me-lg-n4{margin-left:-1rem!important}.me-lg-n5{margin-left:-1.25rem!important}.me-lg-n6{margin-left:-1.5rem!important}.me-lg-n7{margin-left:-1.75rem!important}.me-lg-n8{margin-left:-2rem!important}.me-lg-n9{margin-left:-2.25rem!important}.me-lg-n10{margin-left:-2.5rem!important}.me-lg-n11{margin-left:-2.75rem!important}.me-lg-n12{margin-left:-3rem!important}.me-lg-n13{margin-left:-3.25rem!important}.me-lg-n14{margin-left:-3.5rem!important}.me-lg-n15{margin-left:-3.75rem!important}.me-lg-n16{margin-left:-4rem!important}.me-lg-n17{margin-left:-4.25rem!important}.me-lg-n18{margin-left:-4.5rem!important}.me-lg-n19{margin-left:-4.75rem!important}.me-lg-n20{margin-left:-5rem!important}.mb-lg-n1{margin-bottom:-.25rem!important}.mb-lg-n2{margin-bottom:-.5rem!important}.mb-lg-n3{margin-bottom:-.75rem!important}.mb-lg-n4{margin-bottom:-1rem!important}.mb-lg-n5{margin-bottom:-1.25rem!important}.mb-lg-n6{margin-bottom:-1.5rem!important}.mb-lg-n7{margin-bottom:-1.75rem!important}.mb-lg-n8{margin-bottom:-2rem!important}.mb-lg-n9{margin-bottom:-2.25rem!important}.mb-lg-n10{margin-bottom:-2.5rem!important}.mb-lg-n11{margin-bottom:-2.75rem!important}.mb-lg-n12{margin-bottom:-3rem!important}.mb-lg-n13{margin-bottom:-3.25rem!important}.mb-lg-n14{margin-bottom:-3.5rem!important}.mb-lg-n15{margin-bottom:-3.75rem!important}.mb-lg-n16{margin-bottom:-4rem!important}.mb-lg-n17{margin-bottom:-4.25rem!important}.mb-lg-n18{margin-bottom:-4.5rem!important}.mb-lg-n19{margin-bottom:-4.75rem!important}.mb-lg-n20{margin-bottom:-5rem!important}.ms-lg-n1{margin-right:-.25rem!important}.ms-lg-n2{margin-right:-.5rem!important}.ms-lg-n3{margin-right:-.75rem!important}.ms-lg-n4{margin-right:-1rem!important}.ms-lg-n5{margin-right:-1.25rem!important}.ms-lg-n6{margin-right:-1.5rem!important}.ms-lg-n7{margin-right:-1.75rem!important}.ms-lg-n8{margin-right:-2rem!important}.ms-lg-n9{margin-right:-2.25rem!important}.ms-lg-n10{margin-right:-2.5rem!important}.ms-lg-n11{margin-right:-2.75rem!important}.ms-lg-n12{margin-right:-3rem!important}.ms-lg-n13{margin-right:-3.25rem!important}.ms-lg-n14{margin-right:-3.5rem!important}.ms-lg-n15{margin-right:-3.75rem!important}.ms-lg-n16{margin-right:-4rem!important}.ms-lg-n17{margin-right:-4.25rem!important}.ms-lg-n18{margin-right:-4.5rem!important}.ms-lg-n19{margin-right:-4.75rem!important}.ms-lg-n20{margin-right:-5rem!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:.75rem!important}.p-lg-4{padding:1rem!important}.p-lg-5{padding:1.25rem!important}.p-lg-6{padding:1.5rem!important}.p-lg-7{padding:1.75rem!important}.p-lg-8{padding:2rem!important}.p-lg-9{padding:2.25rem!important}.p-lg-10{padding:2.5rem!important}.p-lg-11{padding:2.75rem!important}.p-lg-12{padding:3rem!important}.p-lg-13{padding:3.25rem!important}.p-lg-14{padding:3.5rem!important}.p-lg-15{padding:3.75rem!important}.p-lg-16{padding:4rem!important}.p-lg-17{padding:4.25rem!important}.p-lg-18{padding:4.5rem!important}.p-lg-19{padding:4.75rem!important}.p-lg-20{padding:5rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-lg-4{padding-left:1rem!important;padding-right:1rem!important}.px-lg-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-lg-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.px-lg-8{padding-left:2rem!important;padding-right:2rem!important}.px-lg-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.px-lg-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.px-lg-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.px-lg-12{padding-left:3rem!important;padding-right:3rem!important}.px-lg-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.px-lg-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.px-lg-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.px-lg-16{padding-left:4rem!important;padding-right:4rem!important}.px-lg-17{padding-left:4.25rem!important;padding-right:4.25rem!important}.px-lg-18{padding-left:4.5rem!important;padding-right:4.5rem!important}.px-lg-19{padding-left:4.75rem!important;padding-right:4.75rem!important}.px-lg-20{padding-left:5rem!important;padding-right:5rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-lg-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-lg-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-lg-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-lg-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-lg-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-lg-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-lg-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-lg-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-lg-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-lg-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-lg-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-lg-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-lg-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-lg-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-lg-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:.75rem!important}.pt-lg-4{padding-top:1rem!important}.pt-lg-5{padding-top:1.25rem!important}.pt-lg-6{padding-top:1.5rem!important}.pt-lg-7{padding-top:1.75rem!important}.pt-lg-8{padding-top:2rem!important}.pt-lg-9{padding-top:2.25rem!important}.pt-lg-10{padding-top:2.5rem!important}.pt-lg-11{padding-top:2.75rem!important}.pt-lg-12{padding-top:3rem!important}.pt-lg-13{padding-top:3.25rem!important}.pt-lg-14{padding-top:3.5rem!important}.pt-lg-15{padding-top:3.75rem!important}.pt-lg-16{padding-top:4rem!important}.pt-lg-17{padding-top:4.25rem!important}.pt-lg-18{padding-top:4.5rem!important}.pt-lg-19{padding-top:4.75rem!important}.pt-lg-20{padding-top:5rem!important}.pe-lg-0{padding-left:0!important}.pe-lg-1{padding-left:.25rem!important}.pe-lg-2{padding-left:.5rem!important}.pe-lg-3{padding-left:.75rem!important}.pe-lg-4{padding-left:1rem!important}.pe-lg-5{padding-left:1.25rem!important}.pe-lg-6{padding-left:1.5rem!important}.pe-lg-7{padding-left:1.75rem!important}.pe-lg-8{padding-left:2rem!important}.pe-lg-9{padding-left:2.25rem!important}.pe-lg-10{padding-left:2.5rem!important}.pe-lg-11{padding-left:2.75rem!important}.pe-lg-12{padding-left:3rem!important}.pe-lg-13{padding-left:3.25rem!important}.pe-lg-14{padding-left:3.5rem!important}.pe-lg-15{padding-left:3.75rem!important}.pe-lg-16{padding-left:4rem!important}.pe-lg-17{padding-left:4.25rem!important}.pe-lg-18{padding-left:4.5rem!important}.pe-lg-19{padding-left:4.75rem!important}.pe-lg-20{padding-left:5rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:.75rem!important}.pb-lg-4{padding-bottom:1rem!important}.pb-lg-5{padding-bottom:1.25rem!important}.pb-lg-6{padding-bottom:1.5rem!important}.pb-lg-7{padding-bottom:1.75rem!important}.pb-lg-8{padding-bottom:2rem!important}.pb-lg-9{padding-bottom:2.25rem!important}.pb-lg-10{padding-bottom:2.5rem!important}.pb-lg-11{padding-bottom:2.75rem!important}.pb-lg-12{padding-bottom:3rem!important}.pb-lg-13{padding-bottom:3.25rem!important}.pb-lg-14{padding-bottom:3.5rem!important}.pb-lg-15{padding-bottom:3.75rem!important}.pb-lg-16{padding-bottom:4rem!important}.pb-lg-17{padding-bottom:4.25rem!important}.pb-lg-18{padding-bottom:4.5rem!important}.pb-lg-19{padding-bottom:4.75rem!important}.pb-lg-20{padding-bottom:5rem!important}.ps-lg-0{padding-right:0!important}.ps-lg-1{padding-right:.25rem!important}.ps-lg-2{padding-right:.5rem!important}.ps-lg-3{padding-right:.75rem!important}.ps-lg-4{padding-right:1rem!important}.ps-lg-5{padding-right:1.25rem!important}.ps-lg-6{padding-right:1.5rem!important}.ps-lg-7{padding-right:1.75rem!important}.ps-lg-8{padding-right:2rem!important}.ps-lg-9{padding-right:2.25rem!important}.ps-lg-10{padding-right:2.5rem!important}.ps-lg-11{padding-right:2.75rem!important}.ps-lg-12{padding-right:3rem!important}.ps-lg-13{padding-right:3.25rem!important}.ps-lg-14{padding-right:3.5rem!important}.ps-lg-15{padding-right:3.75rem!important}.ps-lg-16{padding-right:4rem!important}.ps-lg-17{padding-right:4.25rem!important}.ps-lg-18{padding-right:4.5rem!important}.ps-lg-19{padding-right:4.75rem!important}.ps-lg-20{padding-right:5rem!important}.fs-lg-1{font-size:calc(1.3rem + .6vw)!important}.fs-lg-2{font-size:calc(1.275rem + .3vw)!important}.fs-lg-3{font-size:calc(1.26rem + .12vw)!important}.fs-lg-4{font-size:1.25rem!important}.fs-lg-5{font-size:1.15rem!important}.fs-lg-6{font-size:1.075rem!important}.fs-lg-7{font-size:.95rem!important}.fs-lg-8{font-size:.85rem!important}.fs-lg-9{font-size:.75rem!important}.fs-lg-10{font-size:.5rem!important}.fs-lg-base{font-size:1rem!important}.fs-lg-fluid{font-size:100%!important}.fs-lg-2x{font-size:calc(1.325rem + .9vw)!important}.fs-lg-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-lg-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-lg-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-lg-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-lg-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-lg-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-lg-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-lg-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-lg-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-lg-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-lg-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-lg-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-lg-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-lg-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-lg-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-lg-start{text-align:right!important}.text-lg-end{text-align:left!important}.text-lg-center{text-align:center!important}.min-w-lg-unset{min-width:unset!important}.min-w-lg-25{min-width:25%!important}.min-w-lg-50{min-width:50%!important}.min-w-lg-75{min-width:75%!important}.min-w-lg-100{min-width:100%!important}.min-w-lg-auto{min-width:auto!important}.min-w-lg-1px{min-width:1px!important}.min-w-lg-2px{min-width:2px!important}.min-w-lg-3px{min-width:3px!important}.min-w-lg-4px{min-width:4px!important}.min-w-lg-5px{min-width:5px!important}.min-w-lg-6px{min-width:6px!important}.min-w-lg-7px{min-width:7px!important}.min-w-lg-8px{min-width:8px!important}.min-w-lg-9px{min-width:9px!important}.min-w-lg-10px{min-width:10px!important}.min-w-lg-15px{min-width:15px!important}.min-w-lg-20px{min-width:20px!important}.min-w-lg-25px{min-width:25px!important}.min-w-lg-30px{min-width:30px!important}.min-w-lg-35px{min-width:35px!important}.min-w-lg-40px{min-width:40px!important}.min-w-lg-45px{min-width:45px!important}.min-w-lg-50px{min-width:50px!important}.min-w-lg-55px{min-width:55px!important}.min-w-lg-60px{min-width:60px!important}.min-w-lg-65px{min-width:65px!important}.min-w-lg-70px{min-width:70px!important}.min-w-lg-75px{min-width:75px!important}.min-w-lg-80px{min-width:80px!important}.min-w-lg-85px{min-width:85px!important}.min-w-lg-90px{min-width:90px!important}.min-w-lg-95px{min-width:95px!important}.min-w-lg-100px{min-width:100px!important}.min-w-lg-125px{min-width:125px!important}.min-w-lg-150px{min-width:150px!important}.min-w-lg-175px{min-width:175px!important}.min-w-lg-200px{min-width:200px!important}.min-w-lg-225px{min-width:225px!important}.min-w-lg-250px{min-width:250px!important}.min-w-lg-275px{min-width:275px!important}.min-w-lg-300px{min-width:300px!important}.min-w-lg-325px{min-width:325px!important}.min-w-lg-350px{min-width:350px!important}.min-w-lg-375px{min-width:375px!important}.min-w-lg-400px{min-width:400px!important}.min-w-lg-425px{min-width:425px!important}.min-w-lg-450px{min-width:450px!important}.min-w-lg-475px{min-width:475px!important}.min-w-lg-500px{min-width:500px!important}.min-w-lg-550px{min-width:550px!important}.min-w-lg-600px{min-width:600px!important}.min-w-lg-650px{min-width:650px!important}.min-w-lg-700px{min-width:700px!important}.min-w-lg-750px{min-width:750px!important}.min-w-lg-800px{min-width:800px!important}.min-w-lg-850px{min-width:850px!important}.min-w-lg-900px{min-width:900px!important}.min-w-lg-950px{min-width:950px!important}.min-w-lg-1000px{min-width:1000px!important}.min-h-lg-unset{min-height:unset!important}.min-h-lg-25{min-height:25%!important}.min-h-lg-50{min-height:50%!important}.min-h-lg-75{min-height:75%!important}.min-h-lg-100{min-height:100%!important}.min-h-lg-auto{min-height:auto!important}.min-h-lg-1px{min-height:1px!important}.min-h-lg-2px{min-height:2px!important}.min-h-lg-3px{min-height:3px!important}.min-h-lg-4px{min-height:4px!important}.min-h-lg-5px{min-height:5px!important}.min-h-lg-6px{min-height:6px!important}.min-h-lg-7px{min-height:7px!important}.min-h-lg-8px{min-height:8px!important}.min-h-lg-9px{min-height:9px!important}.min-h-lg-10px{min-height:10px!important}.min-h-lg-15px{min-height:15px!important}.min-h-lg-20px{min-height:20px!important}.min-h-lg-25px{min-height:25px!important}.min-h-lg-30px{min-height:30px!important}.min-h-lg-35px{min-height:35px!important}.min-h-lg-40px{min-height:40px!important}.min-h-lg-45px{min-height:45px!important}.min-h-lg-50px{min-height:50px!important}.min-h-lg-55px{min-height:55px!important}.min-h-lg-60px{min-height:60px!important}.min-h-lg-65px{min-height:65px!important}.min-h-lg-70px{min-height:70px!important}.min-h-lg-75px{min-height:75px!important}.min-h-lg-80px{min-height:80px!important}.min-h-lg-85px{min-height:85px!important}.min-h-lg-90px{min-height:90px!important}.min-h-lg-95px{min-height:95px!important}.min-h-lg-100px{min-height:100px!important}.min-h-lg-125px{min-height:125px!important}.min-h-lg-150px{min-height:150px!important}.min-h-lg-175px{min-height:175px!important}.min-h-lg-200px{min-height:200px!important}.min-h-lg-225px{min-height:225px!important}.min-h-lg-250px{min-height:250px!important}.min-h-lg-275px{min-height:275px!important}.min-h-lg-300px{min-height:300px!important}.min-h-lg-325px{min-height:325px!important}.min-h-lg-350px{min-height:350px!important}.min-h-lg-375px{min-height:375px!important}.min-h-lg-400px{min-height:400px!important}.min-h-lg-425px{min-height:425px!important}.min-h-lg-450px{min-height:450px!important}.min-h-lg-475px{min-height:475px!important}.min-h-lg-500px{min-height:500px!important}.min-h-lg-550px{min-height:550px!important}.min-h-lg-600px{min-height:600px!important}.min-h-lg-650px{min-height:650px!important}.min-h-lg-700px{min-height:700px!important}.min-h-lg-750px{min-height:750px!important}.min-h-lg-800px{min-height:800px!important}.min-h-lg-850px{min-height:850px!important}.min-h-lg-900px{min-height:900px!important}.min-h-lg-950px{min-height:950px!important}.min-h-lg-1000px{min-height:1000px!important}}@media (min-width:1200px){.float-xl-start{float:right!important}.float-xl-end{float:left!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!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}.d-xl-none{display:none!important}.position-xl-static{position:static!important}.position-xl-relative{position:relative!important}.position-xl-absolute{position:absolute!important}.position-xl-fixed{position:fixed!important}.position-xl-sticky{position:sticky!important}.w-xl-unset{width:unset!important}.w-xl-25{width:25%!important}.w-xl-50{width:50%!important}.w-xl-75{width:75%!important}.w-xl-100{width:100%!important}.w-xl-auto{width:auto!important}.w-xl-1px{width:1px!important}.w-xl-2px{width:2px!important}.w-xl-3px{width:3px!important}.w-xl-4px{width:4px!important}.w-xl-5px{width:5px!important}.w-xl-6px{width:6px!important}.w-xl-7px{width:7px!important}.w-xl-8px{width:8px!important}.w-xl-9px{width:9px!important}.w-xl-10px{width:10px!important}.w-xl-15px{width:15px!important}.w-xl-20px{width:20px!important}.w-xl-25px{width:25px!important}.w-xl-30px{width:30px!important}.w-xl-35px{width:35px!important}.w-xl-40px{width:40px!important}.w-xl-45px{width:45px!important}.w-xl-50px{width:50px!important}.w-xl-55px{width:55px!important}.w-xl-60px{width:60px!important}.w-xl-65px{width:65px!important}.w-xl-70px{width:70px!important}.w-xl-75px{width:75px!important}.w-xl-80px{width:80px!important}.w-xl-85px{width:85px!important}.w-xl-90px{width:90px!important}.w-xl-95px{width:95px!important}.w-xl-100px{width:100px!important}.w-xl-125px{width:125px!important}.w-xl-150px{width:150px!important}.w-xl-175px{width:175px!important}.w-xl-200px{width:200px!important}.w-xl-225px{width:225px!important}.w-xl-250px{width:250px!important}.w-xl-275px{width:275px!important}.w-xl-300px{width:300px!important}.w-xl-325px{width:325px!important}.w-xl-350px{width:350px!important}.w-xl-375px{width:375px!important}.w-xl-400px{width:400px!important}.w-xl-425px{width:425px!important}.w-xl-450px{width:450px!important}.w-xl-475px{width:475px!important}.w-xl-500px{width:500px!important}.w-xl-550px{width:550px!important}.w-xl-600px{width:600px!important}.w-xl-650px{width:650px!important}.w-xl-700px{width:700px!important}.w-xl-750px{width:750px!important}.w-xl-800px{width:800px!important}.w-xl-850px{width:850px!important}.w-xl-900px{width:900px!important}.w-xl-950px{width:950px!important}.w-xl-1000px{width:1000px!important}.mw-xl-unset{max-width:unset!important}.mw-xl-25{max-width:25%!important}.mw-xl-50{max-width:50%!important}.mw-xl-75{max-width:75%!important}.mw-xl-100{max-width:100%!important}.mw-xl-auto{max-width:auto!important}.mw-xl-1px{max-width:1px!important}.mw-xl-2px{max-width:2px!important}.mw-xl-3px{max-width:3px!important}.mw-xl-4px{max-width:4px!important}.mw-xl-5px{max-width:5px!important}.mw-xl-6px{max-width:6px!important}.mw-xl-7px{max-width:7px!important}.mw-xl-8px{max-width:8px!important}.mw-xl-9px{max-width:9px!important}.mw-xl-10px{max-width:10px!important}.mw-xl-15px{max-width:15px!important}.mw-xl-20px{max-width:20px!important}.mw-xl-25px{max-width:25px!important}.mw-xl-30px{max-width:30px!important}.mw-xl-35px{max-width:35px!important}.mw-xl-40px{max-width:40px!important}.mw-xl-45px{max-width:45px!important}.mw-xl-50px{max-width:50px!important}.mw-xl-55px{max-width:55px!important}.mw-xl-60px{max-width:60px!important}.mw-xl-65px{max-width:65px!important}.mw-xl-70px{max-width:70px!important}.mw-xl-75px{max-width:75px!important}.mw-xl-80px{max-width:80px!important}.mw-xl-85px{max-width:85px!important}.mw-xl-90px{max-width:90px!important}.mw-xl-95px{max-width:95px!important}.mw-xl-100px{max-width:100px!important}.mw-xl-125px{max-width:125px!important}.mw-xl-150px{max-width:150px!important}.mw-xl-175px{max-width:175px!important}.mw-xl-200px{max-width:200px!important}.mw-xl-225px{max-width:225px!important}.mw-xl-250px{max-width:250px!important}.mw-xl-275px{max-width:275px!important}.mw-xl-300px{max-width:300px!important}.mw-xl-325px{max-width:325px!important}.mw-xl-350px{max-width:350px!important}.mw-xl-375px{max-width:375px!important}.mw-xl-400px{max-width:400px!important}.mw-xl-425px{max-width:425px!important}.mw-xl-450px{max-width:450px!important}.mw-xl-475px{max-width:475px!important}.mw-xl-500px{max-width:500px!important}.mw-xl-550px{max-width:550px!important}.mw-xl-600px{max-width:600px!important}.mw-xl-650px{max-width:650px!important}.mw-xl-700px{max-width:700px!important}.mw-xl-750px{max-width:750px!important}.mw-xl-800px{max-width:800px!important}.mw-xl-850px{max-width:850px!important}.mw-xl-900px{max-width:900px!important}.mw-xl-950px{max-width:950px!important}.mw-xl-1000px{max-width:1000px!important}.h-xl-unset{height:unset!important}.h-xl-25{height:25%!important}.h-xl-50{height:50%!important}.h-xl-75{height:75%!important}.h-xl-100{height:100%!important}.h-xl-auto{height:auto!important}.h-xl-1px{height:1px!important}.h-xl-2px{height:2px!important}.h-xl-3px{height:3px!important}.h-xl-4px{height:4px!important}.h-xl-5px{height:5px!important}.h-xl-6px{height:6px!important}.h-xl-7px{height:7px!important}.h-xl-8px{height:8px!important}.h-xl-9px{height:9px!important}.h-xl-10px{height:10px!important}.h-xl-15px{height:15px!important}.h-xl-20px{height:20px!important}.h-xl-25px{height:25px!important}.h-xl-30px{height:30px!important}.h-xl-35px{height:35px!important}.h-xl-40px{height:40px!important}.h-xl-45px{height:45px!important}.h-xl-50px{height:50px!important}.h-xl-55px{height:55px!important}.h-xl-60px{height:60px!important}.h-xl-65px{height:65px!important}.h-xl-70px{height:70px!important}.h-xl-75px{height:75px!important}.h-xl-80px{height:80px!important}.h-xl-85px{height:85px!important}.h-xl-90px{height:90px!important}.h-xl-95px{height:95px!important}.h-xl-100px{height:100px!important}.h-xl-125px{height:125px!important}.h-xl-150px{height:150px!important}.h-xl-175px{height:175px!important}.h-xl-200px{height:200px!important}.h-xl-225px{height:225px!important}.h-xl-250px{height:250px!important}.h-xl-275px{height:275px!important}.h-xl-300px{height:300px!important}.h-xl-325px{height:325px!important}.h-xl-350px{height:350px!important}.h-xl-375px{height:375px!important}.h-xl-400px{height:400px!important}.h-xl-425px{height:425px!important}.h-xl-450px{height:450px!important}.h-xl-475px{height:475px!important}.h-xl-500px{height:500px!important}.h-xl-550px{height:550px!important}.h-xl-600px{height:600px!important}.h-xl-650px{height:650px!important}.h-xl-700px{height:700px!important}.h-xl-750px{height:750px!important}.h-xl-800px{height:800px!important}.h-xl-850px{height:850px!important}.h-xl-900px{height:900px!important}.h-xl-950px{height:950px!important}.h-xl-1000px{height:1000px!important}.mh-xl-unset{max-height:unset!important}.mh-xl-25{max-height:25%!important}.mh-xl-50{max-height:50%!important}.mh-xl-75{max-height:75%!important}.mh-xl-100{max-height:100%!important}.mh-xl-auto{max-height:auto!important}.mh-xl-1px{max-height:1px!important}.mh-xl-2px{max-height:2px!important}.mh-xl-3px{max-height:3px!important}.mh-xl-4px{max-height:4px!important}.mh-xl-5px{max-height:5px!important}.mh-xl-6px{max-height:6px!important}.mh-xl-7px{max-height:7px!important}.mh-xl-8px{max-height:8px!important}.mh-xl-9px{max-height:9px!important}.mh-xl-10px{max-height:10px!important}.mh-xl-15px{max-height:15px!important}.mh-xl-20px{max-height:20px!important}.mh-xl-25px{max-height:25px!important}.mh-xl-30px{max-height:30px!important}.mh-xl-35px{max-height:35px!important}.mh-xl-40px{max-height:40px!important}.mh-xl-45px{max-height:45px!important}.mh-xl-50px{max-height:50px!important}.mh-xl-55px{max-height:55px!important}.mh-xl-60px{max-height:60px!important}.mh-xl-65px{max-height:65px!important}.mh-xl-70px{max-height:70px!important}.mh-xl-75px{max-height:75px!important}.mh-xl-80px{max-height:80px!important}.mh-xl-85px{max-height:85px!important}.mh-xl-90px{max-height:90px!important}.mh-xl-95px{max-height:95px!important}.mh-xl-100px{max-height:100px!important}.mh-xl-125px{max-height:125px!important}.mh-xl-150px{max-height:150px!important}.mh-xl-175px{max-height:175px!important}.mh-xl-200px{max-height:200px!important}.mh-xl-225px{max-height:225px!important}.mh-xl-250px{max-height:250px!important}.mh-xl-275px{max-height:275px!important}.mh-xl-300px{max-height:300px!important}.mh-xl-325px{max-height:325px!important}.mh-xl-350px{max-height:350px!important}.mh-xl-375px{max-height:375px!important}.mh-xl-400px{max-height:400px!important}.mh-xl-425px{max-height:425px!important}.mh-xl-450px{max-height:450px!important}.mh-xl-475px{max-height:475px!important}.mh-xl-500px{max-height:500px!important}.mh-xl-550px{max-height:550px!important}.mh-xl-600px{max-height:600px!important}.mh-xl-650px{max-height:650px!important}.mh-xl-700px{max-height:700px!important}.mh-xl-750px{max-height:750px!important}.mh-xl-800px{max-height:800px!important}.mh-xl-850px{max-height:850px!important}.mh-xl-900px{max-height:900px!important}.mh-xl-950px{max-height:950px!important}.mh-xl-1000px{max-height:1000px!important}.flex-xl-fill{flex:1 1 auto!important}.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-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}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:.75rem!important}.gap-xl-4{gap:1rem!important}.gap-xl-5{gap:1.25rem!important}.gap-xl-6{gap:1.5rem!important}.gap-xl-7{gap:1.75rem!important}.gap-xl-8{gap:2rem!important}.gap-xl-9{gap:2.25rem!important}.gap-xl-10{gap:2.5rem!important}.gap-xl-11{gap:2.75rem!important}.gap-xl-12{gap:3rem!important}.gap-xl-13{gap:3.25rem!important}.gap-xl-14{gap:3.5rem!important}.gap-xl-15{gap:3.75rem!important}.gap-xl-16{gap:4rem!important}.gap-xl-17{gap:4.25rem!important}.gap-xl-18{gap:4.5rem!important}.gap-xl-19{gap:4.75rem!important}.gap-xl-20{gap:5rem!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}.justify-content-xl-evenly{justify-content:space-evenly!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}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:.75rem!important}.m-xl-4{margin:1rem!important}.m-xl-5{margin:1.25rem!important}.m-xl-6{margin:1.5rem!important}.m-xl-7{margin:1.75rem!important}.m-xl-8{margin:2rem!important}.m-xl-9{margin:2.25rem!important}.m-xl-10{margin:2.5rem!important}.m-xl-11{margin:2.75rem!important}.m-xl-12{margin:3rem!important}.m-xl-13{margin:3.25rem!important}.m-xl-14{margin:3.5rem!important}.m-xl-15{margin:3.75rem!important}.m-xl-16{margin:4rem!important}.m-xl-17{margin:4.25rem!important}.m-xl-18{margin:4.5rem!important}.m-xl-19{margin:4.75rem!important}.m-xl-20{margin:5rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:.75rem!important;margin-right:.75rem!important}.mx-xl-4{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.mx-xl-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.mx-xl-8{margin-left:2rem!important;margin-right:2rem!important}.mx-xl-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.mx-xl-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.mx-xl-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.mx-xl-12{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.mx-xl-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.mx-xl-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.mx-xl-16{margin-left:4rem!important;margin-right:4rem!important}.mx-xl-17{margin-left:4.25rem!important;margin-right:4.25rem!important}.mx-xl-18{margin-left:4.5rem!important;margin-right:4.5rem!important}.mx-xl-19{margin-left:4.75rem!important;margin-right:4.75rem!important}.mx-xl-20{margin-left:5rem!important;margin-right:5rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-xl-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-xl-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-xl-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-xl-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-xl-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-xl-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-xl-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-xl-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-xl-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-xl-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-xl-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-xl-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-xl-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-xl-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:.75rem!important}.mt-xl-4{margin-top:1rem!important}.mt-xl-5{margin-top:1.25rem!important}.mt-xl-6{margin-top:1.5rem!important}.mt-xl-7{margin-top:1.75rem!important}.mt-xl-8{margin-top:2rem!important}.mt-xl-9{margin-top:2.25rem!important}.mt-xl-10{margin-top:2.5rem!important}.mt-xl-11{margin-top:2.75rem!important}.mt-xl-12{margin-top:3rem!important}.mt-xl-13{margin-top:3.25rem!important}.mt-xl-14{margin-top:3.5rem!important}.mt-xl-15{margin-top:3.75rem!important}.mt-xl-16{margin-top:4rem!important}.mt-xl-17{margin-top:4.25rem!important}.mt-xl-18{margin-top:4.5rem!important}.mt-xl-19{margin-top:4.75rem!important}.mt-xl-20{margin-top:5rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-left:0!important}.me-xl-1{margin-left:.25rem!important}.me-xl-2{margin-left:.5rem!important}.me-xl-3{margin-left:.75rem!important}.me-xl-4{margin-left:1rem!important}.me-xl-5{margin-left:1.25rem!important}.me-xl-6{margin-left:1.5rem!important}.me-xl-7{margin-left:1.75rem!important}.me-xl-8{margin-left:2rem!important}.me-xl-9{margin-left:2.25rem!important}.me-xl-10{margin-left:2.5rem!important}.me-xl-11{margin-left:2.75rem!important}.me-xl-12{margin-left:3rem!important}.me-xl-13{margin-left:3.25rem!important}.me-xl-14{margin-left:3.5rem!important}.me-xl-15{margin-left:3.75rem!important}.me-xl-16{margin-left:4rem!important}.me-xl-17{margin-left:4.25rem!important}.me-xl-18{margin-left:4.5rem!important}.me-xl-19{margin-left:4.75rem!important}.me-xl-20{margin-left:5rem!important}.me-xl-auto{margin-left:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:.75rem!important}.mb-xl-4{margin-bottom:1rem!important}.mb-xl-5{margin-bottom:1.25rem!important}.mb-xl-6{margin-bottom:1.5rem!important}.mb-xl-7{margin-bottom:1.75rem!important}.mb-xl-8{margin-bottom:2rem!important}.mb-xl-9{margin-bottom:2.25rem!important}.mb-xl-10{margin-bottom:2.5rem!important}.mb-xl-11{margin-bottom:2.75rem!important}.mb-xl-12{margin-bottom:3rem!important}.mb-xl-13{margin-bottom:3.25rem!important}.mb-xl-14{margin-bottom:3.5rem!important}.mb-xl-15{margin-bottom:3.75rem!important}.mb-xl-16{margin-bottom:4rem!important}.mb-xl-17{margin-bottom:4.25rem!important}.mb-xl-18{margin-bottom:4.5rem!important}.mb-xl-19{margin-bottom:4.75rem!important}.mb-xl-20{margin-bottom:5rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-right:0!important}.ms-xl-1{margin-right:.25rem!important}.ms-xl-2{margin-right:.5rem!important}.ms-xl-3{margin-right:.75rem!important}.ms-xl-4{margin-right:1rem!important}.ms-xl-5{margin-right:1.25rem!important}.ms-xl-6{margin-right:1.5rem!important}.ms-xl-7{margin-right:1.75rem!important}.ms-xl-8{margin-right:2rem!important}.ms-xl-9{margin-right:2.25rem!important}.ms-xl-10{margin-right:2.5rem!important}.ms-xl-11{margin-right:2.75rem!important}.ms-xl-12{margin-right:3rem!important}.ms-xl-13{margin-right:3.25rem!important}.ms-xl-14{margin-right:3.5rem!important}.ms-xl-15{margin-right:3.75rem!important}.ms-xl-16{margin-right:4rem!important}.ms-xl-17{margin-right:4.25rem!important}.ms-xl-18{margin-right:4.5rem!important}.ms-xl-19{margin-right:4.75rem!important}.ms-xl-20{margin-right:5rem!important}.ms-xl-auto{margin-right:auto!important}.m-xl-n1{margin:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.m-xl-n3{margin:-.75rem!important}.m-xl-n4{margin:-1rem!important}.m-xl-n5{margin:-1.25rem!important}.m-xl-n6{margin:-1.5rem!important}.m-xl-n7{margin:-1.75rem!important}.m-xl-n8{margin:-2rem!important}.m-xl-n9{margin:-2.25rem!important}.m-xl-n10{margin:-2.5rem!important}.m-xl-n11{margin:-2.75rem!important}.m-xl-n12{margin:-3rem!important}.m-xl-n13{margin:-3.25rem!important}.m-xl-n14{margin:-3.5rem!important}.m-xl-n15{margin:-3.75rem!important}.m-xl-n16{margin:-4rem!important}.m-xl-n17{margin:-4.25rem!important}.m-xl-n18{margin:-4.5rem!important}.m-xl-n19{margin:-4.75rem!important}.m-xl-n20{margin:-5rem!important}.mx-xl-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-xl-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-xl-n3{margin-left:-.75rem!important;margin-right:-.75rem!important}.mx-xl-n4{margin-left:-1rem!important;margin-right:-1rem!important}.mx-xl-n5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.mx-xl-n6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-xl-n7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.mx-xl-n8{margin-left:-2rem!important;margin-right:-2rem!important}.mx-xl-n9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.mx-xl-n10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.mx-xl-n11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.mx-xl-n12{margin-left:-3rem!important;margin-right:-3rem!important}.mx-xl-n13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.mx-xl-n14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.mx-xl-n15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.mx-xl-n16{margin-left:-4rem!important;margin-right:-4rem!important}.mx-xl-n17{margin-left:-4.25rem!important;margin-right:-4.25rem!important}.mx-xl-n18{margin-left:-4.5rem!important;margin-right:-4.5rem!important}.mx-xl-n19{margin-left:-4.75rem!important;margin-right:-4.75rem!important}.mx-xl-n20{margin-left:-5rem!important;margin-right:-5rem!important}.my-xl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xl-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-xl-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xl-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-xl-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xl-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-xl-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-xl-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-xl-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-xl-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-xl-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-xl-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-xl-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-xl-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-xl-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-xl-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-xl-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-xl-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-xl-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-xl-n1{margin-top:-.25rem!important}.mt-xl-n2{margin-top:-.5rem!important}.mt-xl-n3{margin-top:-.75rem!important}.mt-xl-n4{margin-top:-1rem!important}.mt-xl-n5{margin-top:-1.25rem!important}.mt-xl-n6{margin-top:-1.5rem!important}.mt-xl-n7{margin-top:-1.75rem!important}.mt-xl-n8{margin-top:-2rem!important}.mt-xl-n9{margin-top:-2.25rem!important}.mt-xl-n10{margin-top:-2.5rem!important}.mt-xl-n11{margin-top:-2.75rem!important}.mt-xl-n12{margin-top:-3rem!important}.mt-xl-n13{margin-top:-3.25rem!important}.mt-xl-n14{margin-top:-3.5rem!important}.mt-xl-n15{margin-top:-3.75rem!important}.mt-xl-n16{margin-top:-4rem!important}.mt-xl-n17{margin-top:-4.25rem!important}.mt-xl-n18{margin-top:-4.5rem!important}.mt-xl-n19{margin-top:-4.75rem!important}.mt-xl-n20{margin-top:-5rem!important}.me-xl-n1{margin-left:-.25rem!important}.me-xl-n2{margin-left:-.5rem!important}.me-xl-n3{margin-left:-.75rem!important}.me-xl-n4{margin-left:-1rem!important}.me-xl-n5{margin-left:-1.25rem!important}.me-xl-n6{margin-left:-1.5rem!important}.me-xl-n7{margin-left:-1.75rem!important}.me-xl-n8{margin-left:-2rem!important}.me-xl-n9{margin-left:-2.25rem!important}.me-xl-n10{margin-left:-2.5rem!important}.me-xl-n11{margin-left:-2.75rem!important}.me-xl-n12{margin-left:-3rem!important}.me-xl-n13{margin-left:-3.25rem!important}.me-xl-n14{margin-left:-3.5rem!important}.me-xl-n15{margin-left:-3.75rem!important}.me-xl-n16{margin-left:-4rem!important}.me-xl-n17{margin-left:-4.25rem!important}.me-xl-n18{margin-left:-4.5rem!important}.me-xl-n19{margin-left:-4.75rem!important}.me-xl-n20{margin-left:-5rem!important}.mb-xl-n1{margin-bottom:-.25rem!important}.mb-xl-n2{margin-bottom:-.5rem!important}.mb-xl-n3{margin-bottom:-.75rem!important}.mb-xl-n4{margin-bottom:-1rem!important}.mb-xl-n5{margin-bottom:-1.25rem!important}.mb-xl-n6{margin-bottom:-1.5rem!important}.mb-xl-n7{margin-bottom:-1.75rem!important}.mb-xl-n8{margin-bottom:-2rem!important}.mb-xl-n9{margin-bottom:-2.25rem!important}.mb-xl-n10{margin-bottom:-2.5rem!important}.mb-xl-n11{margin-bottom:-2.75rem!important}.mb-xl-n12{margin-bottom:-3rem!important}.mb-xl-n13{margin-bottom:-3.25rem!important}.mb-xl-n14{margin-bottom:-3.5rem!important}.mb-xl-n15{margin-bottom:-3.75rem!important}.mb-xl-n16{margin-bottom:-4rem!important}.mb-xl-n17{margin-bottom:-4.25rem!important}.mb-xl-n18{margin-bottom:-4.5rem!important}.mb-xl-n19{margin-bottom:-4.75rem!important}.mb-xl-n20{margin-bottom:-5rem!important}.ms-xl-n1{margin-right:-.25rem!important}.ms-xl-n2{margin-right:-.5rem!important}.ms-xl-n3{margin-right:-.75rem!important}.ms-xl-n4{margin-right:-1rem!important}.ms-xl-n5{margin-right:-1.25rem!important}.ms-xl-n6{margin-right:-1.5rem!important}.ms-xl-n7{margin-right:-1.75rem!important}.ms-xl-n8{margin-right:-2rem!important}.ms-xl-n9{margin-right:-2.25rem!important}.ms-xl-n10{margin-right:-2.5rem!important}.ms-xl-n11{margin-right:-2.75rem!important}.ms-xl-n12{margin-right:-3rem!important}.ms-xl-n13{margin-right:-3.25rem!important}.ms-xl-n14{margin-right:-3.5rem!important}.ms-xl-n15{margin-right:-3.75rem!important}.ms-xl-n16{margin-right:-4rem!important}.ms-xl-n17{margin-right:-4.25rem!important}.ms-xl-n18{margin-right:-4.5rem!important}.ms-xl-n19{margin-right:-4.75rem!important}.ms-xl-n20{margin-right:-5rem!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:.75rem!important}.p-xl-4{padding:1rem!important}.p-xl-5{padding:1.25rem!important}.p-xl-6{padding:1.5rem!important}.p-xl-7{padding:1.75rem!important}.p-xl-8{padding:2rem!important}.p-xl-9{padding:2.25rem!important}.p-xl-10{padding:2.5rem!important}.p-xl-11{padding:2.75rem!important}.p-xl-12{padding:3rem!important}.p-xl-13{padding:3.25rem!important}.p-xl-14{padding:3.5rem!important}.p-xl-15{padding:3.75rem!important}.p-xl-16{padding:4rem!important}.p-xl-17{padding:4.25rem!important}.p-xl-18{padding:4.5rem!important}.p-xl-19{padding:4.75rem!important}.p-xl-20{padding:5rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-xl-4{padding-left:1rem!important;padding-right:1rem!important}.px-xl-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-xl-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.px-xl-8{padding-left:2rem!important;padding-right:2rem!important}.px-xl-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.px-xl-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.px-xl-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.px-xl-12{padding-left:3rem!important;padding-right:3rem!important}.px-xl-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.px-xl-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.px-xl-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.px-xl-16{padding-left:4rem!important;padding-right:4rem!important}.px-xl-17{padding-left:4.25rem!important;padding-right:4.25rem!important}.px-xl-18{padding-left:4.5rem!important;padding-right:4.5rem!important}.px-xl-19{padding-left:4.75rem!important;padding-right:4.75rem!important}.px-xl-20{padding-left:5rem!important;padding-right:5rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-xl-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-xl-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-xl-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-xl-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-xl-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-xl-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-xl-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-xl-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-xl-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-xl-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-xl-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-xl-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-xl-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-xl-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-xl-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:.75rem!important}.pt-xl-4{padding-top:1rem!important}.pt-xl-5{padding-top:1.25rem!important}.pt-xl-6{padding-top:1.5rem!important}.pt-xl-7{padding-top:1.75rem!important}.pt-xl-8{padding-top:2rem!important}.pt-xl-9{padding-top:2.25rem!important}.pt-xl-10{padding-top:2.5rem!important}.pt-xl-11{padding-top:2.75rem!important}.pt-xl-12{padding-top:3rem!important}.pt-xl-13{padding-top:3.25rem!important}.pt-xl-14{padding-top:3.5rem!important}.pt-xl-15{padding-top:3.75rem!important}.pt-xl-16{padding-top:4rem!important}.pt-xl-17{padding-top:4.25rem!important}.pt-xl-18{padding-top:4.5rem!important}.pt-xl-19{padding-top:4.75rem!important}.pt-xl-20{padding-top:5rem!important}.pe-xl-0{padding-left:0!important}.pe-xl-1{padding-left:.25rem!important}.pe-xl-2{padding-left:.5rem!important}.pe-xl-3{padding-left:.75rem!important}.pe-xl-4{padding-left:1rem!important}.pe-xl-5{padding-left:1.25rem!important}.pe-xl-6{padding-left:1.5rem!important}.pe-xl-7{padding-left:1.75rem!important}.pe-xl-8{padding-left:2rem!important}.pe-xl-9{padding-left:2.25rem!important}.pe-xl-10{padding-left:2.5rem!important}.pe-xl-11{padding-left:2.75rem!important}.pe-xl-12{padding-left:3rem!important}.pe-xl-13{padding-left:3.25rem!important}.pe-xl-14{padding-left:3.5rem!important}.pe-xl-15{padding-left:3.75rem!important}.pe-xl-16{padding-left:4rem!important}.pe-xl-17{padding-left:4.25rem!important}.pe-xl-18{padding-left:4.5rem!important}.pe-xl-19{padding-left:4.75rem!important}.pe-xl-20{padding-left:5rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:.75rem!important}.pb-xl-4{padding-bottom:1rem!important}.pb-xl-5{padding-bottom:1.25rem!important}.pb-xl-6{padding-bottom:1.5rem!important}.pb-xl-7{padding-bottom:1.75rem!important}.pb-xl-8{padding-bottom:2rem!important}.pb-xl-9{padding-bottom:2.25rem!important}.pb-xl-10{padding-bottom:2.5rem!important}.pb-xl-11{padding-bottom:2.75rem!important}.pb-xl-12{padding-bottom:3rem!important}.pb-xl-13{padding-bottom:3.25rem!important}.pb-xl-14{padding-bottom:3.5rem!important}.pb-xl-15{padding-bottom:3.75rem!important}.pb-xl-16{padding-bottom:4rem!important}.pb-xl-17{padding-bottom:4.25rem!important}.pb-xl-18{padding-bottom:4.5rem!important}.pb-xl-19{padding-bottom:4.75rem!important}.pb-xl-20{padding-bottom:5rem!important}.ps-xl-0{padding-right:0!important}.ps-xl-1{padding-right:.25rem!important}.ps-xl-2{padding-right:.5rem!important}.ps-xl-3{padding-right:.75rem!important}.ps-xl-4{padding-right:1rem!important}.ps-xl-5{padding-right:1.25rem!important}.ps-xl-6{padding-right:1.5rem!important}.ps-xl-7{padding-right:1.75rem!important}.ps-xl-8{padding-right:2rem!important}.ps-xl-9{padding-right:2.25rem!important}.ps-xl-10{padding-right:2.5rem!important}.ps-xl-11{padding-right:2.75rem!important}.ps-xl-12{padding-right:3rem!important}.ps-xl-13{padding-right:3.25rem!important}.ps-xl-14{padding-right:3.5rem!important}.ps-xl-15{padding-right:3.75rem!important}.ps-xl-16{padding-right:4rem!important}.ps-xl-17{padding-right:4.25rem!important}.ps-xl-18{padding-right:4.5rem!important}.ps-xl-19{padding-right:4.75rem!important}.ps-xl-20{padding-right:5rem!important}.fs-xl-1{font-size:calc(1.3rem + .6vw)!important}.fs-xl-2{font-size:calc(1.275rem + .3vw)!important}.fs-xl-3{font-size:calc(1.26rem + .12vw)!important}.fs-xl-4{font-size:1.25rem!important}.fs-xl-5{font-size:1.15rem!important}.fs-xl-6{font-size:1.075rem!important}.fs-xl-7{font-size:.95rem!important}.fs-xl-8{font-size:.85rem!important}.fs-xl-9{font-size:.75rem!important}.fs-xl-10{font-size:.5rem!important}.fs-xl-base{font-size:1rem!important}.fs-xl-fluid{font-size:100%!important}.fs-xl-2x{font-size:calc(1.325rem + .9vw)!important}.fs-xl-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-xl-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-xl-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-xl-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-xl-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-xl-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-xl-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-xl-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-xl-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-xl-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-xl-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-xl-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-xl-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-xl-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-xl-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-xl-start{text-align:right!important}.text-xl-end{text-align:left!important}.text-xl-center{text-align:center!important}.min-w-xl-unset{min-width:unset!important}.min-w-xl-25{min-width:25%!important}.min-w-xl-50{min-width:50%!important}.min-w-xl-75{min-width:75%!important}.min-w-xl-100{min-width:100%!important}.min-w-xl-auto{min-width:auto!important}.min-w-xl-1px{min-width:1px!important}.min-w-xl-2px{min-width:2px!important}.min-w-xl-3px{min-width:3px!important}.min-w-xl-4px{min-width:4px!important}.min-w-xl-5px{min-width:5px!important}.min-w-xl-6px{min-width:6px!important}.min-w-xl-7px{min-width:7px!important}.min-w-xl-8px{min-width:8px!important}.min-w-xl-9px{min-width:9px!important}.min-w-xl-10px{min-width:10px!important}.min-w-xl-15px{min-width:15px!important}.min-w-xl-20px{min-width:20px!important}.min-w-xl-25px{min-width:25px!important}.min-w-xl-30px{min-width:30px!important}.min-w-xl-35px{min-width:35px!important}.min-w-xl-40px{min-width:40px!important}.min-w-xl-45px{min-width:45px!important}.min-w-xl-50px{min-width:50px!important}.min-w-xl-55px{min-width:55px!important}.min-w-xl-60px{min-width:60px!important}.min-w-xl-65px{min-width:65px!important}.min-w-xl-70px{min-width:70px!important}.min-w-xl-75px{min-width:75px!important}.min-w-xl-80px{min-width:80px!important}.min-w-xl-85px{min-width:85px!important}.min-w-xl-90px{min-width:90px!important}.min-w-xl-95px{min-width:95px!important}.min-w-xl-100px{min-width:100px!important}.min-w-xl-125px{min-width:125px!important}.min-w-xl-150px{min-width:150px!important}.min-w-xl-175px{min-width:175px!important}.min-w-xl-200px{min-width:200px!important}.min-w-xl-225px{min-width:225px!important}.min-w-xl-250px{min-width:250px!important}.min-w-xl-275px{min-width:275px!important}.min-w-xl-300px{min-width:300px!important}.min-w-xl-325px{min-width:325px!important}.min-w-xl-350px{min-width:350px!important}.min-w-xl-375px{min-width:375px!important}.min-w-xl-400px{min-width:400px!important}.min-w-xl-425px{min-width:425px!important}.min-w-xl-450px{min-width:450px!important}.min-w-xl-475px{min-width:475px!important}.min-w-xl-500px{min-width:500px!important}.min-w-xl-550px{min-width:550px!important}.min-w-xl-600px{min-width:600px!important}.min-w-xl-650px{min-width:650px!important}.min-w-xl-700px{min-width:700px!important}.min-w-xl-750px{min-width:750px!important}.min-w-xl-800px{min-width:800px!important}.min-w-xl-850px{min-width:850px!important}.min-w-xl-900px{min-width:900px!important}.min-w-xl-950px{min-width:950px!important}.min-w-xl-1000px{min-width:1000px!important}.min-h-xl-unset{min-height:unset!important}.min-h-xl-25{min-height:25%!important}.min-h-xl-50{min-height:50%!important}.min-h-xl-75{min-height:75%!important}.min-h-xl-100{min-height:100%!important}.min-h-xl-auto{min-height:auto!important}.min-h-xl-1px{min-height:1px!important}.min-h-xl-2px{min-height:2px!important}.min-h-xl-3px{min-height:3px!important}.min-h-xl-4px{min-height:4px!important}.min-h-xl-5px{min-height:5px!important}.min-h-xl-6px{min-height:6px!important}.min-h-xl-7px{min-height:7px!important}.min-h-xl-8px{min-height:8px!important}.min-h-xl-9px{min-height:9px!important}.min-h-xl-10px{min-height:10px!important}.min-h-xl-15px{min-height:15px!important}.min-h-xl-20px{min-height:20px!important}.min-h-xl-25px{min-height:25px!important}.min-h-xl-30px{min-height:30px!important}.min-h-xl-35px{min-height:35px!important}.min-h-xl-40px{min-height:40px!important}.min-h-xl-45px{min-height:45px!important}.min-h-xl-50px{min-height:50px!important}.min-h-xl-55px{min-height:55px!important}.min-h-xl-60px{min-height:60px!important}.min-h-xl-65px{min-height:65px!important}.min-h-xl-70px{min-height:70px!important}.min-h-xl-75px{min-height:75px!important}.min-h-xl-80px{min-height:80px!important}.min-h-xl-85px{min-height:85px!important}.min-h-xl-90px{min-height:90px!important}.min-h-xl-95px{min-height:95px!important}.min-h-xl-100px{min-height:100px!important}.min-h-xl-125px{min-height:125px!important}.min-h-xl-150px{min-height:150px!important}.min-h-xl-175px{min-height:175px!important}.min-h-xl-200px{min-height:200px!important}.min-h-xl-225px{min-height:225px!important}.min-h-xl-250px{min-height:250px!important}.min-h-xl-275px{min-height:275px!important}.min-h-xl-300px{min-height:300px!important}.min-h-xl-325px{min-height:325px!important}.min-h-xl-350px{min-height:350px!important}.min-h-xl-375px{min-height:375px!important}.min-h-xl-400px{min-height:400px!important}.min-h-xl-425px{min-height:425px!important}.min-h-xl-450px{min-height:450px!important}.min-h-xl-475px{min-height:475px!important}.min-h-xl-500px{min-height:500px!important}.min-h-xl-550px{min-height:550px!important}.min-h-xl-600px{min-height:600px!important}.min-h-xl-650px{min-height:650px!important}.min-h-xl-700px{min-height:700px!important}.min-h-xl-750px{min-height:750px!important}.min-h-xl-800px{min-height:800px!important}.min-h-xl-850px{min-height:850px!important}.min-h-xl-900px{min-height:900px!important}.min-h-xl-950px{min-height:950px!important}.min-h-xl-1000px{min-height:1000px!important}}@media (min-width:1400px){.float-xxl-start{float:right!important}.float-xxl-end{float:left!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.position-xxl-static{position:static!important}.position-xxl-relative{position:relative!important}.position-xxl-absolute{position:absolute!important}.position-xxl-fixed{position:fixed!important}.position-xxl-sticky{position:sticky!important}.w-xxl-unset{width:unset!important}.w-xxl-25{width:25%!important}.w-xxl-50{width:50%!important}.w-xxl-75{width:75%!important}.w-xxl-100{width:100%!important}.w-xxl-auto{width:auto!important}.w-xxl-1px{width:1px!important}.w-xxl-2px{width:2px!important}.w-xxl-3px{width:3px!important}.w-xxl-4px{width:4px!important}.w-xxl-5px{width:5px!important}.w-xxl-6px{width:6px!important}.w-xxl-7px{width:7px!important}.w-xxl-8px{width:8px!important}.w-xxl-9px{width:9px!important}.w-xxl-10px{width:10px!important}.w-xxl-15px{width:15px!important}.w-xxl-20px{width:20px!important}.w-xxl-25px{width:25px!important}.w-xxl-30px{width:30px!important}.w-xxl-35px{width:35px!important}.w-xxl-40px{width:40px!important}.w-xxl-45px{width:45px!important}.w-xxl-50px{width:50px!important}.w-xxl-55px{width:55px!important}.w-xxl-60px{width:60px!important}.w-xxl-65px{width:65px!important}.w-xxl-70px{width:70px!important}.w-xxl-75px{width:75px!important}.w-xxl-80px{width:80px!important}.w-xxl-85px{width:85px!important}.w-xxl-90px{width:90px!important}.w-xxl-95px{width:95px!important}.w-xxl-100px{width:100px!important}.w-xxl-125px{width:125px!important}.w-xxl-150px{width:150px!important}.w-xxl-175px{width:175px!important}.w-xxl-200px{width:200px!important}.w-xxl-225px{width:225px!important}.w-xxl-250px{width:250px!important}.w-xxl-275px{width:275px!important}.w-xxl-300px{width:300px!important}.w-xxl-325px{width:325px!important}.w-xxl-350px{width:350px!important}.w-xxl-375px{width:375px!important}.w-xxl-400px{width:400px!important}.w-xxl-425px{width:425px!important}.w-xxl-450px{width:450px!important}.w-xxl-475px{width:475px!important}.w-xxl-500px{width:500px!important}.w-xxl-550px{width:550px!important}.w-xxl-600px{width:600px!important}.w-xxl-650px{width:650px!important}.w-xxl-700px{width:700px!important}.w-xxl-750px{width:750px!important}.w-xxl-800px{width:800px!important}.w-xxl-850px{width:850px!important}.w-xxl-900px{width:900px!important}.w-xxl-950px{width:950px!important}.w-xxl-1000px{width:1000px!important}.mw-xxl-unset{max-width:unset!important}.mw-xxl-25{max-width:25%!important}.mw-xxl-50{max-width:50%!important}.mw-xxl-75{max-width:75%!important}.mw-xxl-100{max-width:100%!important}.mw-xxl-auto{max-width:auto!important}.mw-xxl-1px{max-width:1px!important}.mw-xxl-2px{max-width:2px!important}.mw-xxl-3px{max-width:3px!important}.mw-xxl-4px{max-width:4px!important}.mw-xxl-5px{max-width:5px!important}.mw-xxl-6px{max-width:6px!important}.mw-xxl-7px{max-width:7px!important}.mw-xxl-8px{max-width:8px!important}.mw-xxl-9px{max-width:9px!important}.mw-xxl-10px{max-width:10px!important}.mw-xxl-15px{max-width:15px!important}.mw-xxl-20px{max-width:20px!important}.mw-xxl-25px{max-width:25px!important}.mw-xxl-30px{max-width:30px!important}.mw-xxl-35px{max-width:35px!important}.mw-xxl-40px{max-width:40px!important}.mw-xxl-45px{max-width:45px!important}.mw-xxl-50px{max-width:50px!important}.mw-xxl-55px{max-width:55px!important}.mw-xxl-60px{max-width:60px!important}.mw-xxl-65px{max-width:65px!important}.mw-xxl-70px{max-width:70px!important}.mw-xxl-75px{max-width:75px!important}.mw-xxl-80px{max-width:80px!important}.mw-xxl-85px{max-width:85px!important}.mw-xxl-90px{max-width:90px!important}.mw-xxl-95px{max-width:95px!important}.mw-xxl-100px{max-width:100px!important}.mw-xxl-125px{max-width:125px!important}.mw-xxl-150px{max-width:150px!important}.mw-xxl-175px{max-width:175px!important}.mw-xxl-200px{max-width:200px!important}.mw-xxl-225px{max-width:225px!important}.mw-xxl-250px{max-width:250px!important}.mw-xxl-275px{max-width:275px!important}.mw-xxl-300px{max-width:300px!important}.mw-xxl-325px{max-width:325px!important}.mw-xxl-350px{max-width:350px!important}.mw-xxl-375px{max-width:375px!important}.mw-xxl-400px{max-width:400px!important}.mw-xxl-425px{max-width:425px!important}.mw-xxl-450px{max-width:450px!important}.mw-xxl-475px{max-width:475px!important}.mw-xxl-500px{max-width:500px!important}.mw-xxl-550px{max-width:550px!important}.mw-xxl-600px{max-width:600px!important}.mw-xxl-650px{max-width:650px!important}.mw-xxl-700px{max-width:700px!important}.mw-xxl-750px{max-width:750px!important}.mw-xxl-800px{max-width:800px!important}.mw-xxl-850px{max-width:850px!important}.mw-xxl-900px{max-width:900px!important}.mw-xxl-950px{max-width:950px!important}.mw-xxl-1000px{max-width:1000px!important}.h-xxl-unset{height:unset!important}.h-xxl-25{height:25%!important}.h-xxl-50{height:50%!important}.h-xxl-75{height:75%!important}.h-xxl-100{height:100%!important}.h-xxl-auto{height:auto!important}.h-xxl-1px{height:1px!important}.h-xxl-2px{height:2px!important}.h-xxl-3px{height:3px!important}.h-xxl-4px{height:4px!important}.h-xxl-5px{height:5px!important}.h-xxl-6px{height:6px!important}.h-xxl-7px{height:7px!important}.h-xxl-8px{height:8px!important}.h-xxl-9px{height:9px!important}.h-xxl-10px{height:10px!important}.h-xxl-15px{height:15px!important}.h-xxl-20px{height:20px!important}.h-xxl-25px{height:25px!important}.h-xxl-30px{height:30px!important}.h-xxl-35px{height:35px!important}.h-xxl-40px{height:40px!important}.h-xxl-45px{height:45px!important}.h-xxl-50px{height:50px!important}.h-xxl-55px{height:55px!important}.h-xxl-60px{height:60px!important}.h-xxl-65px{height:65px!important}.h-xxl-70px{height:70px!important}.h-xxl-75px{height:75px!important}.h-xxl-80px{height:80px!important}.h-xxl-85px{height:85px!important}.h-xxl-90px{height:90px!important}.h-xxl-95px{height:95px!important}.h-xxl-100px{height:100px!important}.h-xxl-125px{height:125px!important}.h-xxl-150px{height:150px!important}.h-xxl-175px{height:175px!important}.h-xxl-200px{height:200px!important}.h-xxl-225px{height:225px!important}.h-xxl-250px{height:250px!important}.h-xxl-275px{height:275px!important}.h-xxl-300px{height:300px!important}.h-xxl-325px{height:325px!important}.h-xxl-350px{height:350px!important}.h-xxl-375px{height:375px!important}.h-xxl-400px{height:400px!important}.h-xxl-425px{height:425px!important}.h-xxl-450px{height:450px!important}.h-xxl-475px{height:475px!important}.h-xxl-500px{height:500px!important}.h-xxl-550px{height:550px!important}.h-xxl-600px{height:600px!important}.h-xxl-650px{height:650px!important}.h-xxl-700px{height:700px!important}.h-xxl-750px{height:750px!important}.h-xxl-800px{height:800px!important}.h-xxl-850px{height:850px!important}.h-xxl-900px{height:900px!important}.h-xxl-950px{height:950px!important}.h-xxl-1000px{height:1000px!important}.mh-xxl-unset{max-height:unset!important}.mh-xxl-25{max-height:25%!important}.mh-xxl-50{max-height:50%!important}.mh-xxl-75{max-height:75%!important}.mh-xxl-100{max-height:100%!important}.mh-xxl-auto{max-height:auto!important}.mh-xxl-1px{max-height:1px!important}.mh-xxl-2px{max-height:2px!important}.mh-xxl-3px{max-height:3px!important}.mh-xxl-4px{max-height:4px!important}.mh-xxl-5px{max-height:5px!important}.mh-xxl-6px{max-height:6px!important}.mh-xxl-7px{max-height:7px!important}.mh-xxl-8px{max-height:8px!important}.mh-xxl-9px{max-height:9px!important}.mh-xxl-10px{max-height:10px!important}.mh-xxl-15px{max-height:15px!important}.mh-xxl-20px{max-height:20px!important}.mh-xxl-25px{max-height:25px!important}.mh-xxl-30px{max-height:30px!important}.mh-xxl-35px{max-height:35px!important}.mh-xxl-40px{max-height:40px!important}.mh-xxl-45px{max-height:45px!important}.mh-xxl-50px{max-height:50px!important}.mh-xxl-55px{max-height:55px!important}.mh-xxl-60px{max-height:60px!important}.mh-xxl-65px{max-height:65px!important}.mh-xxl-70px{max-height:70px!important}.mh-xxl-75px{max-height:75px!important}.mh-xxl-80px{max-height:80px!important}.mh-xxl-85px{max-height:85px!important}.mh-xxl-90px{max-height:90px!important}.mh-xxl-95px{max-height:95px!important}.mh-xxl-100px{max-height:100px!important}.mh-xxl-125px{max-height:125px!important}.mh-xxl-150px{max-height:150px!important}.mh-xxl-175px{max-height:175px!important}.mh-xxl-200px{max-height:200px!important}.mh-xxl-225px{max-height:225px!important}.mh-xxl-250px{max-height:250px!important}.mh-xxl-275px{max-height:275px!important}.mh-xxl-300px{max-height:300px!important}.mh-xxl-325px{max-height:325px!important}.mh-xxl-350px{max-height:350px!important}.mh-xxl-375px{max-height:375px!important}.mh-xxl-400px{max-height:400px!important}.mh-xxl-425px{max-height:425px!important}.mh-xxl-450px{max-height:450px!important}.mh-xxl-475px{max-height:475px!important}.mh-xxl-500px{max-height:500px!important}.mh-xxl-550px{max-height:550px!important}.mh-xxl-600px{max-height:600px!important}.mh-xxl-650px{max-height:650px!important}.mh-xxl-700px{max-height:700px!important}.mh-xxl-750px{max-height:750px!important}.mh-xxl-800px{max-height:800px!important}.mh-xxl-850px{max-height:850px!important}.mh-xxl-900px{max-height:900px!important}.mh-xxl-950px{max-height:950px!important}.mh-xxl-1000px{max-height:1000px!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:.75rem!important}.gap-xxl-4{gap:1rem!important}.gap-xxl-5{gap:1.25rem!important}.gap-xxl-6{gap:1.5rem!important}.gap-xxl-7{gap:1.75rem!important}.gap-xxl-8{gap:2rem!important}.gap-xxl-9{gap:2.25rem!important}.gap-xxl-10{gap:2.5rem!important}.gap-xxl-11{gap:2.75rem!important}.gap-xxl-12{gap:3rem!important}.gap-xxl-13{gap:3.25rem!important}.gap-xxl-14{gap:3.5rem!important}.gap-xxl-15{gap:3.75rem!important}.gap-xxl-16{gap:4rem!important}.gap-xxl-17{gap:4.25rem!important}.gap-xxl-18{gap:4.5rem!important}.gap-xxl-19{gap:4.75rem!important}.gap-xxl-20{gap:5rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:.75rem!important}.m-xxl-4{margin:1rem!important}.m-xxl-5{margin:1.25rem!important}.m-xxl-6{margin:1.5rem!important}.m-xxl-7{margin:1.75rem!important}.m-xxl-8{margin:2rem!important}.m-xxl-9{margin:2.25rem!important}.m-xxl-10{margin:2.5rem!important}.m-xxl-11{margin:2.75rem!important}.m-xxl-12{margin:3rem!important}.m-xxl-13{margin:3.25rem!important}.m-xxl-14{margin:3.5rem!important}.m-xxl-15{margin:3.75rem!important}.m-xxl-16{margin:4rem!important}.m-xxl-17{margin:4.25rem!important}.m-xxl-18{margin:4.5rem!important}.m-xxl-19{margin:4.75rem!important}.m-xxl-20{margin:5rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:.75rem!important;margin-right:.75rem!important}.mx-xxl-4{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.mx-xxl-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.mx-xxl-8{margin-left:2rem!important;margin-right:2rem!important}.mx-xxl-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.mx-xxl-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.mx-xxl-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.mx-xxl-12{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.mx-xxl-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.mx-xxl-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.mx-xxl-16{margin-left:4rem!important;margin-right:4rem!important}.mx-xxl-17{margin-left:4.25rem!important;margin-right:4.25rem!important}.mx-xxl-18{margin-left:4.5rem!important;margin-right:4.5rem!important}.mx-xxl-19{margin-left:4.75rem!important;margin-right:4.75rem!important}.mx-xxl-20{margin-left:5rem!important;margin-right:5rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-xxl-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.my-xxl-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.my-xxl-8{margin-top:2rem!important;margin-bottom:2rem!important}.my-xxl-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-xxl-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.my-xxl-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.my-xxl-12{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-13{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.my-xxl-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.my-xxl-15{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.my-xxl-16{margin-top:4rem!important;margin-bottom:4rem!important}.my-xxl-17{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.my-xxl-18{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-xxl-19{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.my-xxl-20{margin-top:5rem!important;margin-bottom:5rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:.75rem!important}.mt-xxl-4{margin-top:1rem!important}.mt-xxl-5{margin-top:1.25rem!important}.mt-xxl-6{margin-top:1.5rem!important}.mt-xxl-7{margin-top:1.75rem!important}.mt-xxl-8{margin-top:2rem!important}.mt-xxl-9{margin-top:2.25rem!important}.mt-xxl-10{margin-top:2.5rem!important}.mt-xxl-11{margin-top:2.75rem!important}.mt-xxl-12{margin-top:3rem!important}.mt-xxl-13{margin-top:3.25rem!important}.mt-xxl-14{margin-top:3.5rem!important}.mt-xxl-15{margin-top:3.75rem!important}.mt-xxl-16{margin-top:4rem!important}.mt-xxl-17{margin-top:4.25rem!important}.mt-xxl-18{margin-top:4.5rem!important}.mt-xxl-19{margin-top:4.75rem!important}.mt-xxl-20{margin-top:5rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-left:0!important}.me-xxl-1{margin-left:.25rem!important}.me-xxl-2{margin-left:.5rem!important}.me-xxl-3{margin-left:.75rem!important}.me-xxl-4{margin-left:1rem!important}.me-xxl-5{margin-left:1.25rem!important}.me-xxl-6{margin-left:1.5rem!important}.me-xxl-7{margin-left:1.75rem!important}.me-xxl-8{margin-left:2rem!important}.me-xxl-9{margin-left:2.25rem!important}.me-xxl-10{margin-left:2.5rem!important}.me-xxl-11{margin-left:2.75rem!important}.me-xxl-12{margin-left:3rem!important}.me-xxl-13{margin-left:3.25rem!important}.me-xxl-14{margin-left:3.5rem!important}.me-xxl-15{margin-left:3.75rem!important}.me-xxl-16{margin-left:4rem!important}.me-xxl-17{margin-left:4.25rem!important}.me-xxl-18{margin-left:4.5rem!important}.me-xxl-19{margin-left:4.75rem!important}.me-xxl-20{margin-left:5rem!important}.me-xxl-auto{margin-left:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:.75rem!important}.mb-xxl-4{margin-bottom:1rem!important}.mb-xxl-5{margin-bottom:1.25rem!important}.mb-xxl-6{margin-bottom:1.5rem!important}.mb-xxl-7{margin-bottom:1.75rem!important}.mb-xxl-8{margin-bottom:2rem!important}.mb-xxl-9{margin-bottom:2.25rem!important}.mb-xxl-10{margin-bottom:2.5rem!important}.mb-xxl-11{margin-bottom:2.75rem!important}.mb-xxl-12{margin-bottom:3rem!important}.mb-xxl-13{margin-bottom:3.25rem!important}.mb-xxl-14{margin-bottom:3.5rem!important}.mb-xxl-15{margin-bottom:3.75rem!important}.mb-xxl-16{margin-bottom:4rem!important}.mb-xxl-17{margin-bottom:4.25rem!important}.mb-xxl-18{margin-bottom:4.5rem!important}.mb-xxl-19{margin-bottom:4.75rem!important}.mb-xxl-20{margin-bottom:5rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-right:0!important}.ms-xxl-1{margin-right:.25rem!important}.ms-xxl-2{margin-right:.5rem!important}.ms-xxl-3{margin-right:.75rem!important}.ms-xxl-4{margin-right:1rem!important}.ms-xxl-5{margin-right:1.25rem!important}.ms-xxl-6{margin-right:1.5rem!important}.ms-xxl-7{margin-right:1.75rem!important}.ms-xxl-8{margin-right:2rem!important}.ms-xxl-9{margin-right:2.25rem!important}.ms-xxl-10{margin-right:2.5rem!important}.ms-xxl-11{margin-right:2.75rem!important}.ms-xxl-12{margin-right:3rem!important}.ms-xxl-13{margin-right:3.25rem!important}.ms-xxl-14{margin-right:3.5rem!important}.ms-xxl-15{margin-right:3.75rem!important}.ms-xxl-16{margin-right:4rem!important}.ms-xxl-17{margin-right:4.25rem!important}.ms-xxl-18{margin-right:4.5rem!important}.ms-xxl-19{margin-right:4.75rem!important}.ms-xxl-20{margin-right:5rem!important}.ms-xxl-auto{margin-right:auto!important}.m-xxl-n1{margin:-.25rem!important}.m-xxl-n2{margin:-.5rem!important}.m-xxl-n3{margin:-.75rem!important}.m-xxl-n4{margin:-1rem!important}.m-xxl-n5{margin:-1.25rem!important}.m-xxl-n6{margin:-1.5rem!important}.m-xxl-n7{margin:-1.75rem!important}.m-xxl-n8{margin:-2rem!important}.m-xxl-n9{margin:-2.25rem!important}.m-xxl-n10{margin:-2.5rem!important}.m-xxl-n11{margin:-2.75rem!important}.m-xxl-n12{margin:-3rem!important}.m-xxl-n13{margin:-3.25rem!important}.m-xxl-n14{margin:-3.5rem!important}.m-xxl-n15{margin:-3.75rem!important}.m-xxl-n16{margin:-4rem!important}.m-xxl-n17{margin:-4.25rem!important}.m-xxl-n18{margin:-4.5rem!important}.m-xxl-n19{margin:-4.75rem!important}.m-xxl-n20{margin:-5rem!important}.mx-xxl-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-xxl-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-xxl-n3{margin-left:-.75rem!important;margin-right:-.75rem!important}.mx-xxl-n4{margin-left:-1rem!important;margin-right:-1rem!important}.mx-xxl-n5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.mx-xxl-n6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.mx-xxl-n7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.mx-xxl-n8{margin-left:-2rem!important;margin-right:-2rem!important}.mx-xxl-n9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.mx-xxl-n10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.mx-xxl-n11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.mx-xxl-n12{margin-left:-3rem!important;margin-right:-3rem!important}.mx-xxl-n13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.mx-xxl-n14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.mx-xxl-n15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.mx-xxl-n16{margin-left:-4rem!important;margin-right:-4rem!important}.mx-xxl-n17{margin-left:-4.25rem!important;margin-right:-4.25rem!important}.mx-xxl-n18{margin-left:-4.5rem!important;margin-right:-4.5rem!important}.mx-xxl-n19{margin-left:-4.75rem!important;margin-right:-4.75rem!important}.mx-xxl-n20{margin-left:-5rem!important;margin-right:-5rem!important}.my-xxl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.my-xxl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.my-xxl-n3{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-xxl-n4{margin-top:-1rem!important;margin-bottom:-1rem!important}.my-xxl-n5{margin-top:-1.25rem!important;margin-bottom:-1.25rem!important}.my-xxl-n6{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-xxl-n7{margin-top:-1.75rem!important;margin-bottom:-1.75rem!important}.my-xxl-n8{margin-top:-2rem!important;margin-bottom:-2rem!important}.my-xxl-n9{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-xxl-n10{margin-top:-2.5rem!important;margin-bottom:-2.5rem!important}.my-xxl-n11{margin-top:-2.75rem!important;margin-bottom:-2.75rem!important}.my-xxl-n12{margin-top:-3rem!important;margin-bottom:-3rem!important}.my-xxl-n13{margin-top:-3.25rem!important;margin-bottom:-3.25rem!important}.my-xxl-n14{margin-top:-3.5rem!important;margin-bottom:-3.5rem!important}.my-xxl-n15{margin-top:-3.75rem!important;margin-bottom:-3.75rem!important}.my-xxl-n16{margin-top:-4rem!important;margin-bottom:-4rem!important}.my-xxl-n17{margin-top:-4.25rem!important;margin-bottom:-4.25rem!important}.my-xxl-n18{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.my-xxl-n19{margin-top:-4.75rem!important;margin-bottom:-4.75rem!important}.my-xxl-n20{margin-top:-5rem!important;margin-bottom:-5rem!important}.mt-xxl-n1{margin-top:-.25rem!important}.mt-xxl-n2{margin-top:-.5rem!important}.mt-xxl-n3{margin-top:-.75rem!important}.mt-xxl-n4{margin-top:-1rem!important}.mt-xxl-n5{margin-top:-1.25rem!important}.mt-xxl-n6{margin-top:-1.5rem!important}.mt-xxl-n7{margin-top:-1.75rem!important}.mt-xxl-n8{margin-top:-2rem!important}.mt-xxl-n9{margin-top:-2.25rem!important}.mt-xxl-n10{margin-top:-2.5rem!important}.mt-xxl-n11{margin-top:-2.75rem!important}.mt-xxl-n12{margin-top:-3rem!important}.mt-xxl-n13{margin-top:-3.25rem!important}.mt-xxl-n14{margin-top:-3.5rem!important}.mt-xxl-n15{margin-top:-3.75rem!important}.mt-xxl-n16{margin-top:-4rem!important}.mt-xxl-n17{margin-top:-4.25rem!important}.mt-xxl-n18{margin-top:-4.5rem!important}.mt-xxl-n19{margin-top:-4.75rem!important}.mt-xxl-n20{margin-top:-5rem!important}.me-xxl-n1{margin-left:-.25rem!important}.me-xxl-n2{margin-left:-.5rem!important}.me-xxl-n3{margin-left:-.75rem!important}.me-xxl-n4{margin-left:-1rem!important}.me-xxl-n5{margin-left:-1.25rem!important}.me-xxl-n6{margin-left:-1.5rem!important}.me-xxl-n7{margin-left:-1.75rem!important}.me-xxl-n8{margin-left:-2rem!important}.me-xxl-n9{margin-left:-2.25rem!important}.me-xxl-n10{margin-left:-2.5rem!important}.me-xxl-n11{margin-left:-2.75rem!important}.me-xxl-n12{margin-left:-3rem!important}.me-xxl-n13{margin-left:-3.25rem!important}.me-xxl-n14{margin-left:-3.5rem!important}.me-xxl-n15{margin-left:-3.75rem!important}.me-xxl-n16{margin-left:-4rem!important}.me-xxl-n17{margin-left:-4.25rem!important}.me-xxl-n18{margin-left:-4.5rem!important}.me-xxl-n19{margin-left:-4.75rem!important}.me-xxl-n20{margin-left:-5rem!important}.mb-xxl-n1{margin-bottom:-.25rem!important}.mb-xxl-n2{margin-bottom:-.5rem!important}.mb-xxl-n3{margin-bottom:-.75rem!important}.mb-xxl-n4{margin-bottom:-1rem!important}.mb-xxl-n5{margin-bottom:-1.25rem!important}.mb-xxl-n6{margin-bottom:-1.5rem!important}.mb-xxl-n7{margin-bottom:-1.75rem!important}.mb-xxl-n8{margin-bottom:-2rem!important}.mb-xxl-n9{margin-bottom:-2.25rem!important}.mb-xxl-n10{margin-bottom:-2.5rem!important}.mb-xxl-n11{margin-bottom:-2.75rem!important}.mb-xxl-n12{margin-bottom:-3rem!important}.mb-xxl-n13{margin-bottom:-3.25rem!important}.mb-xxl-n14{margin-bottom:-3.5rem!important}.mb-xxl-n15{margin-bottom:-3.75rem!important}.mb-xxl-n16{margin-bottom:-4rem!important}.mb-xxl-n17{margin-bottom:-4.25rem!important}.mb-xxl-n18{margin-bottom:-4.5rem!important}.mb-xxl-n19{margin-bottom:-4.75rem!important}.mb-xxl-n20{margin-bottom:-5rem!important}.ms-xxl-n1{margin-right:-.25rem!important}.ms-xxl-n2{margin-right:-.5rem!important}.ms-xxl-n3{margin-right:-.75rem!important}.ms-xxl-n4{margin-right:-1rem!important}.ms-xxl-n5{margin-right:-1.25rem!important}.ms-xxl-n6{margin-right:-1.5rem!important}.ms-xxl-n7{margin-right:-1.75rem!important}.ms-xxl-n8{margin-right:-2rem!important}.ms-xxl-n9{margin-right:-2.25rem!important}.ms-xxl-n10{margin-right:-2.5rem!important}.ms-xxl-n11{margin-right:-2.75rem!important}.ms-xxl-n12{margin-right:-3rem!important}.ms-xxl-n13{margin-right:-3.25rem!important}.ms-xxl-n14{margin-right:-3.5rem!important}.ms-xxl-n15{margin-right:-3.75rem!important}.ms-xxl-n16{margin-right:-4rem!important}.ms-xxl-n17{margin-right:-4.25rem!important}.ms-xxl-n18{margin-right:-4.5rem!important}.ms-xxl-n19{margin-right:-4.75rem!important}.ms-xxl-n20{margin-right:-5rem!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:.75rem!important}.p-xxl-4{padding:1rem!important}.p-xxl-5{padding:1.25rem!important}.p-xxl-6{padding:1.5rem!important}.p-xxl-7{padding:1.75rem!important}.p-xxl-8{padding:2rem!important}.p-xxl-9{padding:2.25rem!important}.p-xxl-10{padding:2.5rem!important}.p-xxl-11{padding:2.75rem!important}.p-xxl-12{padding:3rem!important}.p-xxl-13{padding:3.25rem!important}.p-xxl-14{padding:3.5rem!important}.p-xxl-15{padding:3.75rem!important}.p-xxl-16{padding:4rem!important}.p-xxl-17{padding:4.25rem!important}.p-xxl-18{padding:4.5rem!important}.p-xxl-19{padding:4.75rem!important}.p-xxl-20{padding:5rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:.75rem!important;padding-right:.75rem!important}.px-xxl-4{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-xxl-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.px-xxl-8{padding-left:2rem!important;padding-right:2rem!important}.px-xxl-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.px-xxl-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.px-xxl-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.px-xxl-12{padding-left:3rem!important;padding-right:3rem!important}.px-xxl-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.px-xxl-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.px-xxl-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.px-xxl-16{padding-left:4rem!important;padding-right:4rem!important}.px-xxl-17{padding-left:4.25rem!important;padding-right:4.25rem!important}.px-xxl-18{padding-left:4.5rem!important;padding-right:4.5rem!important}.px-xxl-19{padding-left:4.75rem!important;padding-right:4.75rem!important}.px-xxl-20{padding-left:5rem!important;padding-right:5rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-xxl-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.py-xxl-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.py-xxl-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-xxl-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-xxl-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-xxl-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.py-xxl-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-xxl-13{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.py-xxl-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.py-xxl-15{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.py-xxl-16{padding-top:4rem!important;padding-bottom:4rem!important}.py-xxl-17{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.py-xxl-18{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.py-xxl-19{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.py-xxl-20{padding-top:5rem!important;padding-bottom:5rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:.75rem!important}.pt-xxl-4{padding-top:1rem!important}.pt-xxl-5{padding-top:1.25rem!important}.pt-xxl-6{padding-top:1.5rem!important}.pt-xxl-7{padding-top:1.75rem!important}.pt-xxl-8{padding-top:2rem!important}.pt-xxl-9{padding-top:2.25rem!important}.pt-xxl-10{padding-top:2.5rem!important}.pt-xxl-11{padding-top:2.75rem!important}.pt-xxl-12{padding-top:3rem!important}.pt-xxl-13{padding-top:3.25rem!important}.pt-xxl-14{padding-top:3.5rem!important}.pt-xxl-15{padding-top:3.75rem!important}.pt-xxl-16{padding-top:4rem!important}.pt-xxl-17{padding-top:4.25rem!important}.pt-xxl-18{padding-top:4.5rem!important}.pt-xxl-19{padding-top:4.75rem!important}.pt-xxl-20{padding-top:5rem!important}.pe-xxl-0{padding-left:0!important}.pe-xxl-1{padding-left:.25rem!important}.pe-xxl-2{padding-left:.5rem!important}.pe-xxl-3{padding-left:.75rem!important}.pe-xxl-4{padding-left:1rem!important}.pe-xxl-5{padding-left:1.25rem!important}.pe-xxl-6{padding-left:1.5rem!important}.pe-xxl-7{padding-left:1.75rem!important}.pe-xxl-8{padding-left:2rem!important}.pe-xxl-9{padding-left:2.25rem!important}.pe-xxl-10{padding-left:2.5rem!important}.pe-xxl-11{padding-left:2.75rem!important}.pe-xxl-12{padding-left:3rem!important}.pe-xxl-13{padding-left:3.25rem!important}.pe-xxl-14{padding-left:3.5rem!important}.pe-xxl-15{padding-left:3.75rem!important}.pe-xxl-16{padding-left:4rem!important}.pe-xxl-17{padding-left:4.25rem!important}.pe-xxl-18{padding-left:4.5rem!important}.pe-xxl-19{padding-left:4.75rem!important}.pe-xxl-20{padding-left:5rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:.75rem!important}.pb-xxl-4{padding-bottom:1rem!important}.pb-xxl-5{padding-bottom:1.25rem!important}.pb-xxl-6{padding-bottom:1.5rem!important}.pb-xxl-7{padding-bottom:1.75rem!important}.pb-xxl-8{padding-bottom:2rem!important}.pb-xxl-9{padding-bottom:2.25rem!important}.pb-xxl-10{padding-bottom:2.5rem!important}.pb-xxl-11{padding-bottom:2.75rem!important}.pb-xxl-12{padding-bottom:3rem!important}.pb-xxl-13{padding-bottom:3.25rem!important}.pb-xxl-14{padding-bottom:3.5rem!important}.pb-xxl-15{padding-bottom:3.75rem!important}.pb-xxl-16{padding-bottom:4rem!important}.pb-xxl-17{padding-bottom:4.25rem!important}.pb-xxl-18{padding-bottom:4.5rem!important}.pb-xxl-19{padding-bottom:4.75rem!important}.pb-xxl-20{padding-bottom:5rem!important}.ps-xxl-0{padding-right:0!important}.ps-xxl-1{padding-right:.25rem!important}.ps-xxl-2{padding-right:.5rem!important}.ps-xxl-3{padding-right:.75rem!important}.ps-xxl-4{padding-right:1rem!important}.ps-xxl-5{padding-right:1.25rem!important}.ps-xxl-6{padding-right:1.5rem!important}.ps-xxl-7{padding-right:1.75rem!important}.ps-xxl-8{padding-right:2rem!important}.ps-xxl-9{padding-right:2.25rem!important}.ps-xxl-10{padding-right:2.5rem!important}.ps-xxl-11{padding-right:2.75rem!important}.ps-xxl-12{padding-right:3rem!important}.ps-xxl-13{padding-right:3.25rem!important}.ps-xxl-14{padding-right:3.5rem!important}.ps-xxl-15{padding-right:3.75rem!important}.ps-xxl-16{padding-right:4rem!important}.ps-xxl-17{padding-right:4.25rem!important}.ps-xxl-18{padding-right:4.5rem!important}.ps-xxl-19{padding-right:4.75rem!important}.ps-xxl-20{padding-right:5rem!important}.fs-xxl-1{font-size:calc(1.3rem + .6vw)!important}.fs-xxl-2{font-size:calc(1.275rem + .3vw)!important}.fs-xxl-3{font-size:calc(1.26rem + .12vw)!important}.fs-xxl-4{font-size:1.25rem!important}.fs-xxl-5{font-size:1.15rem!important}.fs-xxl-6{font-size:1.075rem!important}.fs-xxl-7{font-size:.95rem!important}.fs-xxl-8{font-size:.85rem!important}.fs-xxl-9{font-size:.75rem!important}.fs-xxl-10{font-size:.5rem!important}.fs-xxl-base{font-size:1rem!important}.fs-xxl-fluid{font-size:100%!important}.fs-xxl-2x{font-size:calc(1.325rem + .9vw)!important}.fs-xxl-2qx{font-size:calc(1.35rem + 1.2vw)!important}.fs-xxl-2hx{font-size:calc(1.375rem + 1.5vw)!important}.fs-xxl-2tx{font-size:calc(1.4rem + 1.8vw)!important}.fs-xxl-3x{font-size:calc(1.425rem + 2.1vw)!important}.fs-xxl-3qx{font-size:calc(1.45rem + 2.4vw)!important}.fs-xxl-3hx{font-size:calc(1.475rem + 2.7vw)!important}.fs-xxl-3tx{font-size:calc(1.5rem + 3vw)!important}.fs-xxl-4x{font-size:calc(1.525rem + 3.3vw)!important}.fs-xxl-4qx{font-size:calc(1.55rem + 3.6vw)!important}.fs-xxl-4hx{font-size:calc(1.575rem + 3.9vw)!important}.fs-xxl-4tx{font-size:calc(1.6rem + 4.2vw)!important}.fs-xxl-5x{font-size:calc(1.625rem + 4.5vw)!important}.fs-xxl-5qx{font-size:calc(1.65rem + 4.8vw)!important}.fs-xxl-5hx{font-size:calc(1.675rem + 5.1vw)!important}.fs-xxl-5tx{font-size:calc(1.7rem + 5.4vw)!important}.text-xxl-start{text-align:right!important}.text-xxl-end{text-align:left!important}.text-xxl-center{text-align:center!important}.min-w-xxl-unset{min-width:unset!important}.min-w-xxl-25{min-width:25%!important}.min-w-xxl-50{min-width:50%!important}.min-w-xxl-75{min-width:75%!important}.min-w-xxl-100{min-width:100%!important}.min-w-xxl-auto{min-width:auto!important}.min-w-xxl-1px{min-width:1px!important}.min-w-xxl-2px{min-width:2px!important}.min-w-xxl-3px{min-width:3px!important}.min-w-xxl-4px{min-width:4px!important}.min-w-xxl-5px{min-width:5px!important}.min-w-xxl-6px{min-width:6px!important}.min-w-xxl-7px{min-width:7px!important}.min-w-xxl-8px{min-width:8px!important}.min-w-xxl-9px{min-width:9px!important}.min-w-xxl-10px{min-width:10px!important}.min-w-xxl-15px{min-width:15px!important}.min-w-xxl-20px{min-width:20px!important}.min-w-xxl-25px{min-width:25px!important}.min-w-xxl-30px{min-width:30px!important}.min-w-xxl-35px{min-width:35px!important}.min-w-xxl-40px{min-width:40px!important}.min-w-xxl-45px{min-width:45px!important}.min-w-xxl-50px{min-width:50px!important}.min-w-xxl-55px{min-width:55px!important}.min-w-xxl-60px{min-width:60px!important}.min-w-xxl-65px{min-width:65px!important}.min-w-xxl-70px{min-width:70px!important}.min-w-xxl-75px{min-width:75px!important}.min-w-xxl-80px{min-width:80px!important}.min-w-xxl-85px{min-width:85px!important}.min-w-xxl-90px{min-width:90px!important}.min-w-xxl-95px{min-width:95px!important}.min-w-xxl-100px{min-width:100px!important}.min-w-xxl-125px{min-width:125px!important}.min-w-xxl-150px{min-width:150px!important}.min-w-xxl-175px{min-width:175px!important}.min-w-xxl-200px{min-width:200px!important}.min-w-xxl-225px{min-width:225px!important}.min-w-xxl-250px{min-width:250px!important}.min-w-xxl-275px{min-width:275px!important}.min-w-xxl-300px{min-width:300px!important}.min-w-xxl-325px{min-width:325px!important}.min-w-xxl-350px{min-width:350px!important}.min-w-xxl-375px{min-width:375px!important}.min-w-xxl-400px{min-width:400px!important}.min-w-xxl-425px{min-width:425px!important}.min-w-xxl-450px{min-width:450px!important}.min-w-xxl-475px{min-width:475px!important}.min-w-xxl-500px{min-width:500px!important}.min-w-xxl-550px{min-width:550px!important}.min-w-xxl-600px{min-width:600px!important}.min-w-xxl-650px{min-width:650px!important}.min-w-xxl-700px{min-width:700px!important}.min-w-xxl-750px{min-width:750px!important}.min-w-xxl-800px{min-width:800px!important}.min-w-xxl-850px{min-width:850px!important}.min-w-xxl-900px{min-width:900px!important}.min-w-xxl-950px{min-width:950px!important}.min-w-xxl-1000px{min-width:1000px!important}.min-h-xxl-unset{min-height:unset!important}.min-h-xxl-25{min-height:25%!important}.min-h-xxl-50{min-height:50%!important}.min-h-xxl-75{min-height:75%!important}.min-h-xxl-100{min-height:100%!important}.min-h-xxl-auto{min-height:auto!important}.min-h-xxl-1px{min-height:1px!important}.min-h-xxl-2px{min-height:2px!important}.min-h-xxl-3px{min-height:3px!important}.min-h-xxl-4px{min-height:4px!important}.min-h-xxl-5px{min-height:5px!important}.min-h-xxl-6px{min-height:6px!important}.min-h-xxl-7px{min-height:7px!important}.min-h-xxl-8px{min-height:8px!important}.min-h-xxl-9px{min-height:9px!important}.min-h-xxl-10px{min-height:10px!important}.min-h-xxl-15px{min-height:15px!important}.min-h-xxl-20px{min-height:20px!important}.min-h-xxl-25px{min-height:25px!important}.min-h-xxl-30px{min-height:30px!important}.min-h-xxl-35px{min-height:35px!important}.min-h-xxl-40px{min-height:40px!important}.min-h-xxl-45px{min-height:45px!important}.min-h-xxl-50px{min-height:50px!important}.min-h-xxl-55px{min-height:55px!important}.min-h-xxl-60px{min-height:60px!important}.min-h-xxl-65px{min-height:65px!important}.min-h-xxl-70px{min-height:70px!important}.min-h-xxl-75px{min-height:75px!important}.min-h-xxl-80px{min-height:80px!important}.min-h-xxl-85px{min-height:85px!important}.min-h-xxl-90px{min-height:90px!important}.min-h-xxl-95px{min-height:95px!important}.min-h-xxl-100px{min-height:100px!important}.min-h-xxl-125px{min-height:125px!important}.min-h-xxl-150px{min-height:150px!important}.min-h-xxl-175px{min-height:175px!important}.min-h-xxl-200px{min-height:200px!important}.min-h-xxl-225px{min-height:225px!important}.min-h-xxl-250px{min-height:250px!important}.min-h-xxl-275px{min-height:275px!important}.min-h-xxl-300px{min-height:300px!important}.min-h-xxl-325px{min-height:325px!important}.min-h-xxl-350px{min-height:350px!important}.min-h-xxl-375px{min-height:375px!important}.min-h-xxl-400px{min-height:400px!important}.min-h-xxl-425px{min-height:425px!important}.min-h-xxl-450px{min-height:450px!important}.min-h-xxl-475px{min-height:475px!important}.min-h-xxl-500px{min-height:500px!important}.min-h-xxl-550px{min-height:550px!important}.min-h-xxl-600px{min-height:600px!important}.min-h-xxl-650px{min-height:650px!important}.min-h-xxl-700px{min-height:700px!important}.min-h-xxl-750px{min-height:750px!important}.min-h-xxl-800px{min-height:800px!important}.min-h-xxl-850px{min-height:850px!important}.min-h-xxl-900px{min-height:900px!important}.min-h-xxl-950px{min-height:950px!important}.min-h-xxl-1000px{min-height:1000px!important}}@media (min-width:1200px){.fs-1{font-size:1.75rem!important}.fs-2{font-size:1.5rem!important}.fs-3{font-size:1.35rem!important}.fs-2x{font-size:2rem!important}.fs-2qx{font-size:2.25rem!important}.fs-2hx{font-size:2.5rem!important}.fs-2tx{font-size:2.75rem!important}.fs-3x{font-size:3rem!important}.fs-3qx{font-size:3.25rem!important}.fs-3hx{font-size:3.5rem!important}.fs-3tx{font-size:3.75rem!important}.fs-4x{font-size:4rem!important}.fs-4qx{font-size:4.25rem!important}.fs-4hx{font-size:4.5rem!important}.fs-4tx{font-size:4.75rem!important}.fs-5x{font-size:5rem!important}.fs-5qx{font-size:5.25rem!important}.fs-5hx{font-size:5.5rem!important}.fs-5tx{font-size:5.75rem!important}.fs-sm-1{font-size:1.75rem!important}.fs-sm-2{font-size:1.5rem!important}.fs-sm-3{font-size:1.35rem!important}.fs-sm-2x{font-size:2rem!important}.fs-sm-2qx{font-size:2.25rem!important}.fs-sm-2hx{font-size:2.5rem!important}.fs-sm-2tx{font-size:2.75rem!important}.fs-sm-3x{font-size:3rem!important}.fs-sm-3qx{font-size:3.25rem!important}.fs-sm-3hx{font-size:3.5rem!important}.fs-sm-3tx{font-size:3.75rem!important}.fs-sm-4x{font-size:4rem!important}.fs-sm-4qx{font-size:4.25rem!important}.fs-sm-4hx{font-size:4.5rem!important}.fs-sm-4tx{font-size:4.75rem!important}.fs-sm-5x{font-size:5rem!important}.fs-sm-5qx{font-size:5.25rem!important}.fs-sm-5hx{font-size:5.5rem!important}.fs-sm-5tx{font-size:5.75rem!important}.fs-md-1{font-size:1.75rem!important}.fs-md-2{font-size:1.5rem!important}.fs-md-3{font-size:1.35rem!important}.fs-md-2x{font-size:2rem!important}.fs-md-2qx{font-size:2.25rem!important}.fs-md-2hx{font-size:2.5rem!important}.fs-md-2tx{font-size:2.75rem!important}.fs-md-3x{font-size:3rem!important}.fs-md-3qx{font-size:3.25rem!important}.fs-md-3hx{font-size:3.5rem!important}.fs-md-3tx{font-size:3.75rem!important}.fs-md-4x{font-size:4rem!important}.fs-md-4qx{font-size:4.25rem!important}.fs-md-4hx{font-size:4.5rem!important}.fs-md-4tx{font-size:4.75rem!important}.fs-md-5x{font-size:5rem!important}.fs-md-5qx{font-size:5.25rem!important}.fs-md-5hx{font-size:5.5rem!important}.fs-md-5tx{font-size:5.75rem!important}.fs-lg-1{font-size:1.75rem!important}.fs-lg-2{font-size:1.5rem!important}.fs-lg-3{font-size:1.35rem!important}.fs-lg-2x{font-size:2rem!important}.fs-lg-2qx{font-size:2.25rem!important}.fs-lg-2hx{font-size:2.5rem!important}.fs-lg-2tx{font-size:2.75rem!important}.fs-lg-3x{font-size:3rem!important}.fs-lg-3qx{font-size:3.25rem!important}.fs-lg-3hx{font-size:3.5rem!important}.fs-lg-3tx{font-size:3.75rem!important}.fs-lg-4x{font-size:4rem!important}.fs-lg-4qx{font-size:4.25rem!important}.fs-lg-4hx{font-size:4.5rem!important}.fs-lg-4tx{font-size:4.75rem!important}.fs-lg-5x{font-size:5rem!important}.fs-lg-5qx{font-size:5.25rem!important}.fs-lg-5hx{font-size:5.5rem!important}.fs-lg-5tx{font-size:5.75rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!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}.d-print-none{display:none!important}}:root{--bs-light-primary:#212E48;--bs-active-primary:#187DE4;--bs-light-success:#1C3238;--bs-active-success:#04AA77;--bs-light-info:#2F264F;--bs-active-info:#7337EE;--bs-light-warning:#392F28;--bs-active-warning:#EE9D01;--bs-light-danger:#3A2434;--bs-active-danger:#EE2D41;--bs-light-dark:#2B2B40;--bs-active-dark:#e8e8e8;--bs-gray-100:#1b1b29;--bs-gray-200:#2B2B40;--bs-gray-300:#323248;--bs-gray-400:#474761;--bs-gray-500:#565674;--bs-gray-600:#6D6D80;--bs-gray-700:#92929F;--bs-gray-800:#CDCDDE;--bs-gray-900:#FFFFFF;--bs-xs:0;--bs-sm:576px;--bs-md:768px;--bs-lg:992px;--bs-xl:1200px;--bs-xxl:1400px;--bs-border-color:#2B2B40;--bs-border-dashed-color:#323248}.bg-white{background-color:#fff!important;--bg-color:255,255,255!important}.bg-white.hoverable:hover{background-color:#1b1b29!important}.bg-hover-white{cursor:pointer}.bg-hover-white:hover{--bg-color:255,255,255;background-color:#fff!important}.bg-active-white.active{--bg-color:255,255,255;background-color:#fff!important}.bg-state-white{cursor:pointer}.bg-state-white.active,.bg-state-white:hover{--bg-color:255,255,255;background-color:#fff!important}.bg-light{background-color:#323248!important;--bg-color:50,50,72!important}.bg-light.hoverable:hover{background-color:#474761!important}.bg-hover-light{cursor:pointer}.bg-hover-light:hover{--bg-color:50,50,72;background-color:#323248!important}.bg-active-light.active{--bg-color:50,50,72;background-color:#323248!important}.bg-state-light{cursor:pointer}.bg-state-light.active,.bg-state-light:hover{--bg-color:50,50,72;background-color:#323248!important}.bg-light-primary{background-color:#212e48!important}.bg-light-primary.hoverable:hover{background-color:#172133!important}.bg-primary{background-color:#3699ff!important;--bg-color:54,153,255!important}.bg-primary.hoverable:hover{background-color:#187de4!important}.bg-hover-light-primary{cursor:pointer}.bg-hover-light-primary:hover{background-color:#212e48!important}.bg-state-light-primary{cursor:pointer}.bg-state-light-primary.active,.bg-state-light-primary:hover{background-color:#212e48!important}.bg-hover-primary{cursor:pointer}.bg-hover-primary:hover{--bg-color:54,153,255;background-color:#3699ff!important}.bg-active-primary.active{--bg-color:54,153,255;background-color:#3699ff!important}.bg-state-primary{cursor:pointer}.bg-state-primary.active,.bg-state-primary:hover{--bg-color:54,153,255;background-color:#3699ff!important}.bg-secondary{background-color:#323248!important;--bg-color:50,50,72!important}.bg-secondary.hoverable:hover{background-color:#474761!important}.bg-hover-secondary{cursor:pointer}.bg-hover-secondary:hover{--bg-color:50,50,72;background-color:#323248!important}.bg-active-secondary.active{--bg-color:50,50,72;background-color:#323248!important}.bg-state-secondary{cursor:pointer}.bg-state-secondary.active,.bg-state-secondary:hover{--bg-color:50,50,72;background-color:#323248!important}.bg-light-success{background-color:#1c3238!important}.bg-light-success.hoverable:hover{background-color:#122024!important}.bg-success{background-color:#0bb783!important;--bg-color:11,183,131!important}.bg-success.hoverable:hover{background-color:#04aa77!important}.bg-hover-light-success{cursor:pointer}.bg-hover-light-success:hover{background-color:#1c3238!important}.bg-state-light-success{cursor:pointer}.bg-state-light-success.active,.bg-state-light-success:hover{background-color:#1c3238!important}.bg-hover-success{cursor:pointer}.bg-hover-success:hover{--bg-color:11,183,131;background-color:#0bb783!important}.bg-active-success.active{--bg-color:11,183,131;background-color:#0bb783!important}.bg-state-success{cursor:pointer}.bg-state-success.active,.bg-state-success:hover{--bg-color:11,183,131;background-color:#0bb783!important}.bg-light-info{background-color:#2f264f!important}.bg-light-info.hoverable:hover{background-color:#231c3a!important}.bg-info{background-color:#8950fc!important;--bg-color:137,80,252!important}.bg-info.hoverable:hover{background-color:#7337ee!important}.bg-hover-light-info{cursor:pointer}.bg-hover-light-info:hover{background-color:#2f264f!important}.bg-state-light-info{cursor:pointer}.bg-state-light-info.active,.bg-state-light-info:hover{background-color:#2f264f!important}.bg-hover-info{cursor:pointer}.bg-hover-info:hover{--bg-color:137,80,252;background-color:#8950fc!important}.bg-active-info.active{--bg-color:137,80,252;background-color:#8950fc!important}.bg-state-info{cursor:pointer}.bg-state-info.active,.bg-state-info:hover{--bg-color:137,80,252;background-color:#8950fc!important}.bg-light-warning{background-color:#392f28!important}.bg-light-warning.hoverable:hover{background-color:#27201b!important}.bg-warning{background-color:#ffa800!important;--bg-color:255,168,0!important}.bg-warning.hoverable:hover{background-color:#ee9d01!important}.bg-hover-light-warning{cursor:pointer}.bg-hover-light-warning:hover{background-color:#392f28!important}.bg-state-light-warning{cursor:pointer}.bg-state-light-warning.active,.bg-state-light-warning:hover{background-color:#392f28!important}.bg-hover-warning{cursor:pointer}.bg-hover-warning:hover{--bg-color:255,168,0;background-color:#ffa800!important}.bg-active-warning.active{--bg-color:255,168,0;background-color:#ffa800!important}.bg-state-warning{cursor:pointer}.bg-state-warning.active,.bg-state-warning:hover{--bg-color:255,168,0;background-color:#ffa800!important}.bg-light-danger{background-color:#3a2434!important}.bg-light-danger.hoverable:hover{background-color:#271823!important}.bg-danger{background-color:#f64e60!important;--bg-color:246,78,96!important}.bg-danger.hoverable:hover{background-color:#ee2d41!important}.bg-hover-light-danger{cursor:pointer}.bg-hover-light-danger:hover{background-color:#3a2434!important}.bg-state-light-danger{cursor:pointer}.bg-state-light-danger.active,.bg-state-light-danger:hover{background-color:#3a2434!important}.bg-hover-danger{cursor:pointer}.bg-hover-danger:hover{--bg-color:246,78,96;background-color:#f64e60!important}.bg-active-danger.active{--bg-color:246,78,96;background-color:#f64e60!important}.bg-state-danger{cursor:pointer}.bg-state-danger.active,.bg-state-danger:hover{--bg-color:246,78,96;background-color:#f64e60!important}.bg-light-dark{background-color:#2b2b40!important}.bg-light-dark.hoverable:hover{background-color:#1f1f2e!important}.bg-dark{background-color:#fff!important;--bg-color:255,255,255!important}.bg-dark.hoverable:hover{background-color:#e8e8e8!important}.bg-hover-light-dark{cursor:pointer}.bg-hover-light-dark:hover{background-color:#2b2b40!important}.bg-state-light-dark{cursor:pointer}.bg-state-light-dark.active,.bg-state-light-dark:hover{background-color:#2b2b40!important}.bg-hover-dark{cursor:pointer}.bg-hover-dark:hover{--bg-color:255,255,255;background-color:#fff!important}.bg-active-dark.active{--bg-color:255,255,255;background-color:#fff!important}.bg-state-dark{cursor:pointer}.bg-state-dark.active,.bg-state-dark:hover{--bg-color:255,255,255;background-color:#fff!important}.bg-gray-100{background-color:#1b1b29}.bg-gray-200{background-color:#2b2b40}.bg-gray-300{background-color:#323248}.bg-gray-400{background-color:#474761}.bg-gray-500{background-color:#565674}.bg-gray-600{background-color:#6d6d80}.bg-gray-700{background-color:#92929f}.bg-gray-800{background-color:#cdcdde}.bg-gray-900{background-color:#fff}.bg-opacity-0{background-color:rgba(var(--bg-color),0)!important}.bg-hover-opacity-0:hover{background-color:rgba(var(--bg-color),0)!important}.bg-active-opacity-0.active{background-color:rgba(var(--bg-color),0)!important}.bg-state-opacity-0 .active,.bg-state-opacity-0:hover{background-color:rgba(var(--bg-color),0)!important}.bg-opacity-5{background-color:rgba(var(--bg-color),.05)!important}.bg-hover-opacity-5:hover{background-color:rgba(var(--bg-color),.05)!important}.bg-active-opacity-5.active{background-color:rgba(var(--bg-color),.05)!important}.bg-state-opacity-5 .active,.bg-state-opacity-5:hover{background-color:rgba(var(--bg-color),.05)!important}.bg-opacity-10{background-color:rgba(var(--bg-color),.1)!important}.bg-hover-opacity-10:hover{background-color:rgba(var(--bg-color),.1)!important}.bg-active-opacity-10.active{background-color:rgba(var(--bg-color),.1)!important}.bg-state-opacity-10 .active,.bg-state-opacity-10:hover{background-color:rgba(var(--bg-color),.1)!important}.bg-opacity-15{background-color:rgba(var(--bg-color),.15)!important}.bg-hover-opacity-15:hover{background-color:rgba(var(--bg-color),.15)!important}.bg-active-opacity-15.active{background-color:rgba(var(--bg-color),.15)!important}.bg-state-opacity-15 .active,.bg-state-opacity-15:hover{background-color:rgba(var(--bg-color),.15)!important}.bg-opacity-20{background-color:rgba(var(--bg-color),.2)!important}.bg-hover-opacity-20:hover{background-color:rgba(var(--bg-color),.2)!important}.bg-active-opacity-20.active{background-color:rgba(var(--bg-color),.2)!important}.bg-state-opacity-20 .active,.bg-state-opacity-20:hover{background-color:rgba(var(--bg-color),.2)!important}.bg-opacity-25{background-color:rgba(var(--bg-color),.25)!important}.bg-hover-opacity-25:hover{background-color:rgba(var(--bg-color),.25)!important}.bg-active-opacity-25.active{background-color:rgba(var(--bg-color),.25)!important}.bg-state-opacity-25 .active,.bg-state-opacity-25:hover{background-color:rgba(var(--bg-color),.25)!important}.bg-opacity-50{background-color:rgba(var(--bg-color),.5)!important}.bg-hover-opacity-50:hover{background-color:rgba(var(--bg-color),.5)!important}.bg-active-opacity-50.active{background-color:rgba(var(--bg-color),.5)!important}.bg-state-opacity-50 .active,.bg-state-opacity-50:hover{background-color:rgba(var(--bg-color),.5)!important}.bg-opacity-75{background-color:rgba(var(--bg-color),.75)!important}.bg-hover-opacity-75:hover{background-color:rgba(var(--bg-color),.75)!important}.bg-active-opacity-75.active{background-color:rgba(var(--bg-color),.75)!important}.bg-state-opacity-75 .active,.bg-state-opacity-75:hover{background-color:rgba(var(--bg-color),.75)!important}.bg-opacity-100{background-color:rgba(var(--bg-color),1)!important}.bg-hover-opacity-100:hover{background-color:rgba(var(--bg-color),1)!important}.bg-active-opacity-100.active{background-color:rgba(var(--bg-color),1)!important}.bg-state-opacity-100 .active,.bg-state-opacity-100:hover{background-color:rgba(var(--bg-color),1)!important}.bg-black{background-color:#000}.bg-body{--bg-color:30,30,45;background-color:#1e1e2d}.bg-lighten{background-color:rgba(50,50,72,.5)}.bg-hover-lighten{cursor:pointer}.bg-hover-lighten:hover{background-color:rgba(50,50,72,.5)}.bg-active-lighten.active{background-color:rgba(50,50,72,.5)}.bg-state-lighten{cursor:pointer}.bg-state-lighten.active,.bg-state-lighten:hover{background-color:rgba(50,50,72,.5)}.hoverable{cursor:pointer;transition:all .2s ease}.hoverable:hover{transition:all .2s ease}.bgi-no-repeat{background-repeat:no-repeat}.bgi-position-y-top{background-position-y:top}.bgi-position-y-bottom{background-position-y:bottom}.bgi-position-y-center{background-position-y:center}.bgi-position-x-start{background-position-x:right}.bgi-position-x-end{background-position-x:left}.bgi-position-x-center{background-position-x:center}.bgi-position-top{background-position:100% top}.bgi-position-bottom{background-position:100% bottom}.bgi-position-center{background-position:center}.bgi-size-auto{background-size:auto}.bgi-size-cover{background-size:cover}.bgi-size-contain{background-size:contain}.bgi-attachment-fixed{background-attachment:fixed}.bgi-attachment-scroll{background-attachment:scroll}@media (min-width:576px){.bgi-size-sm-auto{background-size:auto}.bgi-size-sm-cover{background-size:cover}.bgi-size-sm-contain{background-size:contain}.bgi-attachment-sm-fixed{background-attachment:fixed}.bgi-attachment-sm-scroll{background-attachment:scroll}}@media (min-width:768px){.bgi-size-md-auto{background-size:auto}.bgi-size-md-cover{background-size:cover}.bgi-size-md-contain{background-size:contain}.bgi-attachment-md-fixed{background-attachment:fixed}.bgi-attachment-md-scroll{background-attachment:scroll}}@media (min-width:992px){.bgi-size-lg-auto{background-size:auto}.bgi-size-lg-cover{background-size:cover}.bgi-size-lg-contain{background-size:contain}.bgi-attachment-lg-fixed{background-attachment:fixed}.bgi-attachment-lg-scroll{background-attachment:scroll}}@media (min-width:1200px){.bgi-size-xl-auto{background-size:auto}.bgi-size-xl-cover{background-size:cover}.bgi-size-xl-contain{background-size:contain}.bgi-attachment-xl-fixed{background-attachment:fixed}.bgi-attachment-xl-scroll{background-attachment:scroll}}@media (min-width:1400px){.bgi-size-xxl-auto{background-size:auto}.bgi-size-xxl-cover{background-size:cover}.bgi-size-xxl-contain{background-size:contain}.bgi-attachment-xxl-fixed{background-attachment:fixed}.bgi-attachment-xxl-scroll{background-attachment:scroll}}.border-active:not(.active):not(:active):not(:hover):not(:focus){border-color:transparent!important}.border-hover:not(:hover):not(:focus):not(.active):not(:active){cursor:pointer;border-color:transparent!important}.border-gray-100{border-color:#1b1b29!important}.border-gray-200{border-color:#2b2b40!important}.border-gray-300{border-color:#323248!important}.border-gray-400{border-color:#474761!important}.border-gray-500{border-color:#565674!important}.border-gray-600{border-color:#6d6d80!important}.border-gray-700{border-color:#92929f!important}.border-gray-800{border-color:#cdcdde!important}.border-gray-900{border-color:#fff!important}.border-hover-white:hover{border-color:#fff!important}.border-active-white.active{border-color:#fff!important}.border-hover-light:hover{border-color:#323248!important}.border-active-light.active{border-color:#323248!important}.border-hover-primary:hover{border-color:#3699ff!important}.border-active-primary.active{border-color:#3699ff!important}.border-hover-secondary:hover{border-color:#323248!important}.border-active-secondary.active{border-color:#323248!important}.border-hover-success:hover{border-color:#0bb783!important}.border-active-success.active{border-color:#0bb783!important}.border-hover-info:hover{border-color:#8950fc!important}.border-active-info.active{border-color:#8950fc!important}.border-hover-warning:hover{border-color:#ffa800!important}.border-active-warning.active{border-color:#ffa800!important}.border-hover-danger:hover{border-color:#f64e60!important}.border-active-danger.active{border-color:#f64e60!important}.border-hover-dark:hover{border-color:#fff!important}.border-active-dark.active{border-color:#fff!important}.border-hover-transparent:hover{border-color:transparent!important}.border-dashed{border-style:dashed!important;border-color:#323248}.border-top-dashed{border-top-style:dashed!important}.border-bottom-dashed{border-bottom-style:dashed!important}.border-start-dashed{border-right-style:dashed!important}.border-end-dashed{border-left-style:dashed!important}.border-dotted{border-style:dotted!important}.border-top-dotted{border-top-style:dotted!important}.border-bottom-dotted{border-bottom-style:dotted!important}.border-start-dotted{border-right-style:dotted!important}.border-end-dotted{border-left-style:dotted!important}.border-transparent{border-color:transparent!important}.border-body{border-color:#1e1e2d!important}.rounded-top-0{border-top-right-radius:0!important;border-top-left-radius:0!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-start-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-0{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.rounded-circle{border-radius:50%!important}.flex-root{flex:1}.flex-column-auto{flex:none}.flex-column-fluid{flex:1 0 auto}.flex-row-auto{flex:0 0 auto}.flex-row-fluid{flex:1 auto;min-width:0}.flex-center{justify-content:center;align-items:center}.flex-stack{justify-content:space-between;align-items:center}@media (min-width:576px){.flex-sm-root{flex:1}.flex-sm-column-auto{flex:none}.flex-sm-column-fluid{flex:1 0 auto}.flex-sm-row-auto{flex:0 0 auto}.flex-sm-row-fluid{flex:1 auto;min-width:0}.flex-sm-center{justify-content:center;align-items:center}.flex-sm-stack{justify-content:space-between;align-items:center}}@media (min-width:768px){.flex-md-root{flex:1}.flex-md-column-auto{flex:none}.flex-md-column-fluid{flex:1 0 auto}.flex-md-row-auto{flex:0 0 auto}.flex-md-row-fluid{flex:1 auto;min-width:0}.flex-md-center{justify-content:center;align-items:center}.flex-md-stack{justify-content:space-between;align-items:center}}@media (min-width:992px){.flex-lg-root{flex:1}.flex-lg-column-auto{flex:none}.flex-lg-column-fluid{flex:1 0 auto}.flex-lg-row-auto{flex:0 0 auto}.flex-lg-row-fluid{flex:1 auto;min-width:0}.flex-lg-center{justify-content:center;align-items:center}.flex-lg-stack{justify-content:space-between;align-items:center}}@media (min-width:1200px){.flex-xl-root{flex:1}.flex-xl-column-auto{flex:none}.flex-xl-column-fluid{flex:1 0 auto}.flex-xl-row-auto{flex:0 0 auto}.flex-xl-row-fluid{flex:1 auto;min-width:0}.flex-xl-center{justify-content:center;align-items:center}.flex-xl-stack{justify-content:space-between;align-items:center}}@media (min-width:1400px){.flex-xxl-root{flex:1}.flex-xxl-column-auto{flex:none}.flex-xxl-column-fluid{flex:1 0 auto}.flex-xxl-row-auto{flex:0 0 auto}.flex-xxl-row-fluid{flex:1 auto;min-width:0}.flex-xxl-center{justify-content:center;align-items:center}.flex-xxl-stack{justify-content:space-between;align-items:center}}.flex-equal{flex-grow:1;flex-basis:0;flex-shrink:0}.shadow-xs{box-shadow:0 .1rem .75rem .25rem rgba(0,0,0,.05)}.text-white{color:#fff!important}.text-inverse-white{color:#6d6d80!important}.text-hover-white{transition:color .2s ease,background-color .2s ease}.text-hover-white i{transition:color .2s ease,background-color .2s ease}.text-hover-white:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-white:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-white:hover .svg-icon{color:#fff!important}.text-hover-inverse-white{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-white i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-white:hover{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-hover-inverse-white:hover i{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-hover-inverse-white:hover .svg-icon{color:#6d6d80!important}.text-active-white{transition:color .2s ease,background-color .2s ease}.text-active-white i{transition:color .2s ease,background-color .2s ease}.text-active-white.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-white.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-white.active .svg-icon{color:#fff!important}.text-active-inverse-white{transition:color .2s ease,background-color .2s ease}.text-active-inverse-white i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-white.active{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-active-inverse-white.active i{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-active-inverse-white.active .svg-icon{color:#6d6d80!important}.text-primary{color:#3699ff!important}.text-inverse-primary{color:#fff!important}.text-light-primary{color:#212e48!important}.text-hover-primary{transition:color .2s ease,background-color .2s ease}.text-hover-primary i{transition:color .2s ease,background-color .2s ease}.text-hover-primary:hover{transition:color .2s ease,background-color .2s ease;color:#3699ff!important}.text-hover-primary:hover i{transition:color .2s ease,background-color .2s ease;color:#3699ff!important}.text-hover-primary:hover .svg-icon{color:#3699ff!important}.text-hover-inverse-primary{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-primary i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-primary:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-primary:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-primary:hover .svg-icon{color:#fff!important}.text-active-primary{transition:color .2s ease,background-color .2s ease}.text-active-primary i{transition:color .2s ease,background-color .2s ease}.text-active-primary.active{transition:color .2s ease,background-color .2s ease;color:#3699ff!important}.text-active-primary.active i{transition:color .2s ease,background-color .2s ease;color:#3699ff!important}.text-active-primary.active .svg-icon{color:#3699ff!important}.text-active-inverse-primary{transition:color .2s ease,background-color .2s ease}.text-active-inverse-primary i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-primary.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-primary.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-primary.active .svg-icon{color:#fff!important}.text-secondary{color:#323248!important}.text-inverse-secondary{color:#cdcdde!important}.text-hover-secondary{transition:color .2s ease,background-color .2s ease}.text-hover-secondary i{transition:color .2s ease,background-color .2s ease}.text-hover-secondary:hover{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-hover-secondary:hover i{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-hover-secondary:hover .svg-icon{color:#323248!important}.text-hover-inverse-secondary{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-secondary i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-secondary:hover{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-hover-inverse-secondary:hover i{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-hover-inverse-secondary:hover .svg-icon{color:#cdcdde!important}.text-active-secondary{transition:color .2s ease,background-color .2s ease}.text-active-secondary i{transition:color .2s ease,background-color .2s ease}.text-active-secondary.active{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-active-secondary.active i{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-active-secondary.active .svg-icon{color:#323248!important}.text-active-inverse-secondary{transition:color .2s ease,background-color .2s ease}.text-active-inverse-secondary i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-secondary.active{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-active-inverse-secondary.active i{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-active-inverse-secondary.active .svg-icon{color:#cdcdde!important}.text-light{color:#323248!important}.text-inverse-light{color:#cdcdde!important}.text-hover-light{transition:color .2s ease,background-color .2s ease}.text-hover-light i{transition:color .2s ease,background-color .2s ease}.text-hover-light:hover{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-hover-light:hover i{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-hover-light:hover .svg-icon{color:#323248!important}.text-hover-inverse-light{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-light i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-light:hover{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-hover-inverse-light:hover i{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-hover-inverse-light:hover .svg-icon{color:#cdcdde!important}.text-active-light{transition:color .2s ease,background-color .2s ease}.text-active-light i{transition:color .2s ease,background-color .2s ease}.text-active-light.active{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-active-light.active i{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-active-light.active .svg-icon{color:#323248!important}.text-active-inverse-light{transition:color .2s ease,background-color .2s ease}.text-active-inverse-light i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-light.active{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-active-inverse-light.active i{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-active-inverse-light.active .svg-icon{color:#cdcdde!important}.text-success{color:#0bb783!important}.text-inverse-success{color:#fff!important}.text-light-success{color:#1c3238!important}.text-hover-success{transition:color .2s ease,background-color .2s ease}.text-hover-success i{transition:color .2s ease,background-color .2s ease}.text-hover-success:hover{transition:color .2s ease,background-color .2s ease;color:#0bb783!important}.text-hover-success:hover i{transition:color .2s ease,background-color .2s ease;color:#0bb783!important}.text-hover-success:hover .svg-icon{color:#0bb783!important}.text-hover-inverse-success{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-success i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-success:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-success:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-success:hover .svg-icon{color:#fff!important}.text-active-success{transition:color .2s ease,background-color .2s ease}.text-active-success i{transition:color .2s ease,background-color .2s ease}.text-active-success.active{transition:color .2s ease,background-color .2s ease;color:#0bb783!important}.text-active-success.active i{transition:color .2s ease,background-color .2s ease;color:#0bb783!important}.text-active-success.active .svg-icon{color:#0bb783!important}.text-active-inverse-success{transition:color .2s ease,background-color .2s ease}.text-active-inverse-success i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-success.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-success.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-success.active .svg-icon{color:#fff!important}.text-info{color:#8950fc!important}.text-inverse-info{color:#fff!important}.text-light-info{color:#2f264f!important}.text-hover-info{transition:color .2s ease,background-color .2s ease}.text-hover-info i{transition:color .2s ease,background-color .2s ease}.text-hover-info:hover{transition:color .2s ease,background-color .2s ease;color:#8950fc!important}.text-hover-info:hover i{transition:color .2s ease,background-color .2s ease;color:#8950fc!important}.text-hover-info:hover .svg-icon{color:#8950fc!important}.text-hover-inverse-info{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-info i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-info:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-info:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-info:hover .svg-icon{color:#fff!important}.text-active-info{transition:color .2s ease,background-color .2s ease}.text-active-info i{transition:color .2s ease,background-color .2s ease}.text-active-info.active{transition:color .2s ease,background-color .2s ease;color:#8950fc!important}.text-active-info.active i{transition:color .2s ease,background-color .2s ease;color:#8950fc!important}.text-active-info.active .svg-icon{color:#8950fc!important}.text-active-inverse-info{transition:color .2s ease,background-color .2s ease}.text-active-inverse-info i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-info.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-info.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-info.active .svg-icon{color:#fff!important}.text-warning{color:#ffa800!important}.text-inverse-warning{color:#fff!important}.text-light-warning{color:#392f28!important}.text-hover-warning{transition:color .2s ease,background-color .2s ease}.text-hover-warning i{transition:color .2s ease,background-color .2s ease}.text-hover-warning:hover{transition:color .2s ease,background-color .2s ease;color:#ffa800!important}.text-hover-warning:hover i{transition:color .2s ease,background-color .2s ease;color:#ffa800!important}.text-hover-warning:hover .svg-icon{color:#ffa800!important}.text-hover-inverse-warning{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-warning i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-warning:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-warning:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-warning:hover .svg-icon{color:#fff!important}.text-active-warning{transition:color .2s ease,background-color .2s ease}.text-active-warning i{transition:color .2s ease,background-color .2s ease}.text-active-warning.active{transition:color .2s ease,background-color .2s ease;color:#ffa800!important}.text-active-warning.active i{transition:color .2s ease,background-color .2s ease;color:#ffa800!important}.text-active-warning.active .svg-icon{color:#ffa800!important}.text-active-inverse-warning{transition:color .2s ease,background-color .2s ease}.text-active-inverse-warning i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-warning.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-warning.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-warning.active .svg-icon{color:#fff!important}.text-danger{color:#f64e60!important}.text-inverse-danger{color:#fff!important}.text-light-danger{color:#3a2434!important}.text-hover-danger{transition:color .2s ease,background-color .2s ease}.text-hover-danger i{transition:color .2s ease,background-color .2s ease}.text-hover-danger:hover{transition:color .2s ease,background-color .2s ease;color:#f64e60!important}.text-hover-danger:hover i{transition:color .2s ease,background-color .2s ease;color:#f64e60!important}.text-hover-danger:hover .svg-icon{color:#f64e60!important}.text-hover-inverse-danger{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-danger i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-danger:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-danger:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-inverse-danger:hover .svg-icon{color:#fff!important}.text-active-danger{transition:color .2s ease,background-color .2s ease}.text-active-danger i{transition:color .2s ease,background-color .2s ease}.text-active-danger.active{transition:color .2s ease,background-color .2s ease;color:#f64e60!important}.text-active-danger.active i{transition:color .2s ease,background-color .2s ease;color:#f64e60!important}.text-active-danger.active .svg-icon{color:#f64e60!important}.text-active-inverse-danger{transition:color .2s ease,background-color .2s ease}.text-active-inverse-danger i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-danger.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-danger.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-inverse-danger.active .svg-icon{color:#fff!important}.text-dark{color:#fff!important}.text-inverse-dark{color:#1b1b29!important}.text-light-dark{color:#2b2b40!important}.text-hover-dark{transition:color .2s ease,background-color .2s ease}.text-hover-dark i{transition:color .2s ease,background-color .2s ease}.text-hover-dark:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-dark:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-dark:hover .svg-icon{color:#fff!important}.text-hover-inverse-dark{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-dark i{transition:color .2s ease,background-color .2s ease}.text-hover-inverse-dark:hover{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-hover-inverse-dark:hover i{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-hover-inverse-dark:hover .svg-icon{color:#1b1b29!important}.text-active-dark{transition:color .2s ease,background-color .2s ease}.text-active-dark i{transition:color .2s ease,background-color .2s ease}.text-active-dark.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-dark.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-dark.active .svg-icon{color:#fff!important}.text-active-inverse-dark{transition:color .2s ease,background-color .2s ease}.text-active-inverse-dark i{transition:color .2s ease,background-color .2s ease}.text-active-inverse-dark.active{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-active-inverse-dark.active i{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-active-inverse-dark.active .svg-icon{color:#1b1b29!important}.text-muted{color:#565674!important}.text-hover-muted{transition:color .2s ease,background-color .2s ease}.text-hover-muted i{transition:color .2s ease,background-color .2s ease}.text-hover-muted:hover{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-hover-muted:hover i{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-hover-muted:hover .svg-icon{color:#565674!important}.text-active-muted{transition:color .2s ease,background-color .2s ease}.text-active-muted i{transition:color .2s ease,background-color .2s ease}.text-active-muted.active{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-active-muted.active i{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-active-muted.active .svg-icon{color:#565674!important}.text-gray-100{color:#1b1b29!important}.text-hover-gray-100{transition:color .2s ease,background-color .2s ease}.text-hover-gray-100 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-100:hover{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-hover-gray-100:hover i{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-hover-gray-100:hover .svg-icon{color:#1b1b29!important}.text-active-gray-100{transition:color .2s ease,background-color .2s ease}.text-active-gray-100 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-100.active{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-active-gray-100.active i{transition:color .2s ease,background-color .2s ease;color:#1b1b29!important}.text-active-gray-100.active .svg-icon{color:#1b1b29!important}.text-gray-200{color:#2b2b40!important}.text-hover-gray-200{transition:color .2s ease,background-color .2s ease}.text-hover-gray-200 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-200:hover{transition:color .2s ease,background-color .2s ease;color:#2b2b40!important}.text-hover-gray-200:hover i{transition:color .2s ease,background-color .2s ease;color:#2b2b40!important}.text-hover-gray-200:hover .svg-icon{color:#2b2b40!important}.text-active-gray-200{transition:color .2s ease,background-color .2s ease}.text-active-gray-200 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-200.active{transition:color .2s ease,background-color .2s ease;color:#2b2b40!important}.text-active-gray-200.active i{transition:color .2s ease,background-color .2s ease;color:#2b2b40!important}.text-active-gray-200.active .svg-icon{color:#2b2b40!important}.text-gray-300{color:#323248!important}.text-hover-gray-300{transition:color .2s ease,background-color .2s ease}.text-hover-gray-300 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-300:hover{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-hover-gray-300:hover i{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-hover-gray-300:hover .svg-icon{color:#323248!important}.text-active-gray-300{transition:color .2s ease,background-color .2s ease}.text-active-gray-300 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-300.active{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-active-gray-300.active i{transition:color .2s ease,background-color .2s ease;color:#323248!important}.text-active-gray-300.active .svg-icon{color:#323248!important}.text-gray-400{color:#474761!important}.text-hover-gray-400{transition:color .2s ease,background-color .2s ease}.text-hover-gray-400 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-400:hover{transition:color .2s ease,background-color .2s ease;color:#474761!important}.text-hover-gray-400:hover i{transition:color .2s ease,background-color .2s ease;color:#474761!important}.text-hover-gray-400:hover .svg-icon{color:#474761!important}.text-active-gray-400{transition:color .2s ease,background-color .2s ease}.text-active-gray-400 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-400.active{transition:color .2s ease,background-color .2s ease;color:#474761!important}.text-active-gray-400.active i{transition:color .2s ease,background-color .2s ease;color:#474761!important}.text-active-gray-400.active .svg-icon{color:#474761!important}.text-gray-500{color:#565674!important}.text-hover-gray-500{transition:color .2s ease,background-color .2s ease}.text-hover-gray-500 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-500:hover{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-hover-gray-500:hover i{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-hover-gray-500:hover .svg-icon{color:#565674!important}.text-active-gray-500{transition:color .2s ease,background-color .2s ease}.text-active-gray-500 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-500.active{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-active-gray-500.active i{transition:color .2s ease,background-color .2s ease;color:#565674!important}.text-active-gray-500.active .svg-icon{color:#565674!important}.text-gray-600{color:#6d6d80!important}.text-hover-gray-600{transition:color .2s ease,background-color .2s ease}.text-hover-gray-600 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-600:hover{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-hover-gray-600:hover i{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-hover-gray-600:hover .svg-icon{color:#6d6d80!important}.text-active-gray-600{transition:color .2s ease,background-color .2s ease}.text-active-gray-600 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-600.active{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-active-gray-600.active i{transition:color .2s ease,background-color .2s ease;color:#6d6d80!important}.text-active-gray-600.active .svg-icon{color:#6d6d80!important}.text-gray-700{color:#92929f!important}.text-hover-gray-700{transition:color .2s ease,background-color .2s ease}.text-hover-gray-700 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-700:hover{transition:color .2s ease,background-color .2s ease;color:#92929f!important}.text-hover-gray-700:hover i{transition:color .2s ease,background-color .2s ease;color:#92929f!important}.text-hover-gray-700:hover .svg-icon{color:#92929f!important}.text-active-gray-700{transition:color .2s ease,background-color .2s ease}.text-active-gray-700 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-700.active{transition:color .2s ease,background-color .2s ease;color:#92929f!important}.text-active-gray-700.active i{transition:color .2s ease,background-color .2s ease;color:#92929f!important}.text-active-gray-700.active .svg-icon{color:#92929f!important}.text-gray-800{color:#cdcdde!important}.text-hover-gray-800{transition:color .2s ease,background-color .2s ease}.text-hover-gray-800 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-800:hover{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-hover-gray-800:hover i{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-hover-gray-800:hover .svg-icon{color:#cdcdde!important}.text-active-gray-800{transition:color .2s ease,background-color .2s ease}.text-active-gray-800 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-800.active{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-active-gray-800.active i{transition:color .2s ease,background-color .2s ease;color:#cdcdde!important}.text-active-gray-800.active .svg-icon{color:#cdcdde!important}.text-gray-900{color:#fff!important}.text-hover-gray-900{transition:color .2s ease,background-color .2s ease}.text-hover-gray-900 i{transition:color .2s ease,background-color .2s ease}.text-hover-gray-900:hover{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-gray-900:hover i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-hover-gray-900:hover .svg-icon{color:#fff!important}.text-active-gray-900{transition:color .2s ease,background-color .2s ease}.text-active-gray-900 i{transition:color .2s ease,background-color .2s ease}.text-active-gray-900.active{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-gray-900.active i{transition:color .2s ease,background-color .2s ease;color:#fff!important}.text-active-gray-900.active .svg-icon{color:#fff!important}.fw-boldest{font-weight:700!important}.text-transparent{color:transparent}.cursor-pointer{cursor:pointer}.cursor-default{cursor:default}.cursor-move{cursor:move}i{line-height:1;font-size:1rem;color:#565674}a{transition:color .2s ease,background-color .2s ease}a:hover{transition:color .2s ease,background-color .2s ease}.opacity-active-0.active{opacity:0!important}.opacity-state-0.active,.opacity-state-0:hover{opacity:0!important}.opacity-active-5.active{opacity:.05!important}.opacity-state-5.active,.opacity-state-5:hover{opacity:.05!important}.opacity-active-10.active{opacity:.1!important}.opacity-state-10.active,.opacity-state-10:hover{opacity:.1!important}.opacity-active-15.active{opacity:.15!important}.opacity-state-15.active,.opacity-state-15:hover{opacity:.15!important}.opacity-active-20.active{opacity:.2!important}.opacity-state-20.active,.opacity-state-20:hover{opacity:.2!important}.opacity-active-25.active{opacity:.25!important}.opacity-state-25.active,.opacity-state-25:hover{opacity:.25!important}.opacity-active-50.active{opacity:.5!important}.opacity-state-50.active,.opacity-state-50:hover{opacity:.5!important}.opacity-active-75.active{opacity:.75!important}.opacity-state-75.active,.opacity-state-75:hover{opacity:.75!important}.opacity-active-100.active{opacity:1!important}.opacity-state-100.active,.opacity-state-100:hover{opacity:1!important}.transform-90{transform:rotate(-90deg);transform-origin:left top}.animation{animation-duration:1s;animation-fill-mode:both}@keyframes animationSlideInDown{from{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translate3d(0,0,0)}}.animation-slide-in-down{animation-name:animationSlideInDown}@keyframes animationSlideInUp{from{transform:translate3d(0,100%,0);visibility:visible}to{transform:translate3d(0,0,0)}}.animation-slide-in-up{animation-name:animationSlideInUp}@keyframes animationFadeIn{from{opacity:0}to{opacity:1}}.animation-fade-in{animation-name:animationFadeIn}@keyframes animationFadeOut{from{opacity:1}to{opacity:0}}.animation-fade-out{animation-name:animationFadeOut}.animation-blink{animation:animationBlink 1s steps(5,start) infinite}@keyframes animationBlink{to{visibility:hidden}}.nav-line-tabs{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#2b2b40}.nav-line-tabs .nav-item{margin-bottom:-1px}.nav-line-tabs .nav-item .nav-link{color:#565674;border:0;border-bottom:1px solid transparent;transition:color .2s ease,background-color .2s ease;padding:.5rem 0;margin:0 1rem}.nav-line-tabs .nav-item:first-child .nav-link{margin-right:0}.nav-line-tabs .nav-item:last-child .nav-link{margin-left:0}.nav-line-tabs .nav-item .nav-link.active,.nav-line-tabs .nav-item .nav-link:hover:not(.disabled),.nav-line-tabs .nav-item.show .nav-link{background-color:transparent;border:0;border-bottom:1px solid #3699ff;transition:color .2s ease,background-color .2s ease}.nav-line-tabs.nav-line-tabs-2x{border-bottom-width:2px}.nav-line-tabs.nav-line-tabs-2x .nav-item{margin-bottom:-2px}.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link{border-bottom-width:2px}.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link.active,.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link:hover:not(.disabled),.nav-line-tabs.nav-line-tabs-2x .nav-item.show .nav-link{border-bottom-width:2px}.nav-pills .nav-item{margin-left:.5rem}.nav-pills .nav-item:last-child{margin-left:0}.nav-stretch{align-items:stretch;padding-top:0!important;padding-bottom:0!important}.nav-stretch .nav-item{display:flex;align-items:stretch;padding-top:0!important;padding-bottom:0!important}.nav-stretch .nav-link{display:flex;align-items:center}.nav-group{padding:.35rem;border-radius:.475rem;background-color:#1b1b29}.nav-group.nav-group-outline{background-color:transparent;border:1px solid #2b2b40}.nav-group.nav-group-fluid{display:flex}.nav-group.nav-group-fluid>.btn,.nav-group.nav-group-fluid>label{position:relative;flex-shrink:0;flex-grow:1;flex-basis:0}.nav-group.nav-group-fluid>label{margin-left:.1rem}.nav-group.nav-group-fluid>label>.btn{width:100%}.nav-group.nav-group-fluid>label:last-child{margin-left:0}.nav.nav-pills.nav-pills-custom .nav-link,.nav.nav-pills.nav-pills-custom .show>.nav-link{border:1px dashed #323248;border-radius:12px}.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img,.nav.nav-pills.nav-pills-custom .show>.nav-link .nav-icon img{width:30px;transition:color .2s ease,background-color .2s ease}.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img.default,.nav.nav-pills.nav-pills-custom .show>.nav-link .nav-icon img.default{display:inline-block}.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img.active,.nav.nav-pills.nav-pills-custom .show>.nav-link .nav-icon img.active{display:none}.nav.nav-pills.nav-pills-custom .nav-link.active,.nav.nav-pills.nav-pills-custom .show>.nav-link.active{background-color:transparent;border:1px solid #323248;transition-duration:1ms;position:relative}.nav.nav-pills.nav-pills-custom .nav-link.active .nav-text,.nav.nav-pills.nav-pills-custom .show>.nav-link.active .nav-text{color:#cdcdde!important;transition:color .2s ease,background-color .2s ease}.nav.nav-pills.nav-pills-custom .nav-link.active .bullet-custom,.nav.nav-pills.nav-pills-custom .show>.nav-link.active .bullet-custom{display:block}.nav.nav-pills.nav-pills-custom .nav-link .bullet-custom,.nav.nav-pills.nav-pills-custom .show>.nav-link .bullet-custom{display:none}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:not(:active) span:nth-child(1){color:#b5b5c3}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:not(:active) span:nth-child(2){color:#3f4254}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:hover span:nth-child(1){color:#fff!important}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:hover span:nth-child(2){color:#fff!important}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link.active span:nth-child(1){color:#fff!important}.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link.active span:nth-child(2){color:#fff!important}.pagination{display:flex;flex-wrap:wrap;justify-content:center;margin:0}.pagination.pagination-circle .page-link{border-radius:50%}.pagination.pagination-outline .page-link{border:1px solid #2b2b40}.pagination.pagination-outline .page-item.active .page-link,.pagination.pagination-outline .page-item:hover .page-link{border-color:#212e48}.page-item{margin-left:.5rem}.page-item:last-child{margin-left:0}.page-item .page-link{display:flex;justify-content:center;align-items:center;border-radius:.475rem;height:2.5rem;min-width:2.5rem;font-weight:500;font-size:1.075rem}.page-item .page-link i{font-size:.85rem}.page-item .page-link .next,.page-item .page-link .previous{display:block;height:.875rem;width:.875rem;transform:rotateZ(-180deg)}.page-item .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2392929F'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2392929F'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.page-item.next .page-link,.page-item.previous .page-link{background-color:#1e1e2d;color:#92929f}.page-item.next .page-link i,.page-item.previous .page-link i{color:#92929f}.page-item:focus .page-link{color:#3699ff}.page-item:focus .page-link i{color:#3699ff}.page-item:focus .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item:focus .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.page-item:hover:not(.offset) .page-link{color:#3699ff}.page-item:hover:not(.offset) .page-link i{color:#3699ff}.page-item:hover:not(.offset) .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item:hover:not(.offset) .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.page-item.active .page-link{color:#fff}.page-item.active .page-link i{color:#fff}.page-item.active .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item.active .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}.page-item.disabled .page-link{color:#474761}.page-item.disabled .page-link i{color:#474761}.page-item.disabled .page-link .previous{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23474761'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.page-item.disabled .page-link .next{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23474761'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e")}@media (max-width:991.98px){.page-item{margin-left:.25rem}.page-item:last-child{margin-left:0}}.separator{display:block;height:0;border-bottom:1px solid #2b2b40}.separator.separator-dotted{border-bottom-style:dotted;border-bottom-color:#323248}.separator.separator-dashed{border-bottom-style:dashed;border-bottom-color:#323248}.separator.separator-content{display:flex;align-items:center;border-bottom:0;text-align:center}.separator.separator-content::after,.separator.separator-content::before{content:" ";width:50%;border-bottom:1px solid #2b2b40}.separator.separator-content::before{margin-left:1.25rem}.separator.separator-content::after{margin-right:1.25rem}.separator.separator-content.separator-dotted::after,.separator.separator-content.separator-dotted::before{border-bottom-style:dotted;border-bottom-color:#323248}.separator.separator-content.separator-dashed::after,.separator.separator-content.separator-dashed::before{border-bottom-style:dashed;border-bottom-color:#323248}.separator.separator-content.border-white::after,.separator.separator-content.border-white::before{border-color:#fff!important}.separator.separator-content.border-light::after,.separator.separator-content.border-light::before{border-color:#323248!important}.separator.separator-content.border-primary::after,.separator.separator-content.border-primary::before{border-color:#3699ff!important}.separator.separator-content.border-secondary::after,.separator.separator-content.border-secondary::before{border-color:#323248!important}.separator.separator-content.border-success::after,.separator.separator-content.border-success::before{border-color:#0bb783!important}.separator.separator-content.border-info::after,.separator.separator-content.border-info::before{border-color:#8950fc!important}.separator.separator-content.border-warning::after,.separator.separator-content.border-warning::before{border-color:#ffa800!important}.separator.separator-content.border-danger::after,.separator.separator-content.border-danger::before{border-color:#f64e60!important}.separator.separator-content.border-dark::after,.separator.separator-content.border-dark::before{border-color:#fff!important}.carousel.carousel-custom .carousel-indicators{align-items:center;position:static;z-index:auto;margin:0;padding:0;list-style:none}.carousel.carousel-custom .carousel-indicators li{transform:none;opacity:1}.carousel.carousel-custom .carousel-indicators li.active{transform:none;opacity:1}.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li{border-radius:0;background-color:transparent;height:13px;width:13px;display:flex;align-items:center;justify-content:center;text-align:center}.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li:after{display:inline-block;content:" ";border-radius:50%;transition:all .3s ease;background-color:#2b2b40;height:9px;width:9px}.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li.active{background-color:transparent}.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li.active:after{transition:all .3s ease;height:13px;width:13px;background-color:#474761}.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li{transition:all .3s ease;background-color:transparent;border-radius:6px;height:6px;width:6px;display:flex;align-items:center;justify-content:center;text-align:center}.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li:after{display:inline-block;content:" ";transition:all .3s ease;background-color:#474761;border-radius:6px;height:6px;width:6px}.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li.active{transition:all .3s ease;background-color:transparent;height:6px;width:16px}.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li.active:after{transition:all .3s ease;height:6px;width:16px;background-color:#6d6d80}.carousel.carousel-custom .carousel-indicators-active-white li.active:after{background-color:#fff!important}.carousel.carousel-custom .carousel-indicators-active-light li.active:after{background-color:#323248!important}.carousel.carousel-custom .carousel-indicators-active-primary li.active:after{background-color:#3699ff!important}.carousel.carousel-custom .carousel-indicators-active-secondary li.active:after{background-color:#323248!important}.carousel.carousel-custom .carousel-indicators-active-success li.active:after{background-color:#0bb783!important}.carousel.carousel-custom .carousel-indicators-active-info li.active:after{background-color:#8950fc!important}.carousel.carousel-custom .carousel-indicators-active-warning li.active:after{background-color:#ffa800!important}.carousel.carousel-custom .carousel-indicators-active-danger li.active:after{background-color:#f64e60!important}.carousel.carousel-custom .carousel-indicators-active-dark li.active:after{background-color:#fff!important}.carousel.carousel-custom.carousel-stretch{height:100%;display:flex;flex-direction:column}.carousel.carousel-custom.carousel-stretch .carousel-inner{flex-grow:1}.carousel.carousel-custom.carousel-stretch .carousel-item{height:100%}.carousel.carousel-custom.carousel-stretch .carousel-wrapper{display:flex;flex-direction:column;height:100%}.menu-group{display:flex}.menu,.menu-wrapper{display:flex;padding:0;margin:0;list-style:none}.menu-inner{padding:0;margin:0;list-style:none}.menu-sub{display:none;padding:0;margin:0;list-style:none;flex-direction:column}.menu-item{display:block;padding:0}.menu-item .menu-link{cursor:pointer;display:flex;align-items:center;padding:0;flex:0 0 100%;padding:.65rem 1rem;transition:none;outline:0!important}.menu-item .menu-link .menu-icon{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:2rem;margin-left:.5rem}.menu-item .menu-link .menu-icon .svg-icon{line-height:1}.menu-item .menu-link .menu-bullet{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:1.25rem;margin-left:.5rem}.menu-item .menu-link .menu-title{display:flex;align-items:center;flex-grow:1}.menu-item .menu-link .menu-badge{display:flex;align-items:center;flex-shrink:0;margin-right:.5rem}.menu-item .menu-link .menu-arrow{display:flex;align-items:stretch;position:relative;overflow:hidden;flex-shrink:0;margin-right:.5rem;width:.8rem;height:.8rem}.menu-item .menu-link .menu-arrow:after{display:block;width:100%;content:" ";background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-item .menu-content{padding:.65rem 1rem}.menu-item.show .menu-link .menu-arrow:after{backface-visibility:hidden;transition:transform .3s ease}.menu-center{justify-content:center}.menu-item.menu-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-dropdown.menu.show,.menu-sub-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-dropdown.menu.show[data-popper-placement=top],.menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-accordion{display:none}.menu-sub-accordion.show,.show:not(.menu-dropdown)>.menu-sub-accordion{display:flex}.menu-inline{display:flex}.menu-fit>.menu-item>.menu-content,.menu-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-column{flex-direction:column;width:100%}.menu-row{flex-direction:row}.menu-row>.menu-item{display:flex;align-items:center}.menu-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-rounded .menu-link{border-radius:.475rem}.menu-pill .menu-link{border-radius:50px}.menu-rounded-0 .menu-link{border-radius:0!important}@media (min-width:576px){.menu-item.menu-sm-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-sm-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-sm-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-sm-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-sm-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-sm-dropdown.menu.show,.menu-sub-sm-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-sm-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-sm-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-sm-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-sm-dropdown.menu.show[data-popper-placement=top],.menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-sm-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-sm-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-sm-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-sm-accordion{display:none}.menu-sub-sm-accordion.show,.show:not(.menu-dropdown)>.menu-sub-sm-accordion{display:flex}.menu-sm-inline{display:flex}.menu-sm-fit>.menu-item>.menu-content,.menu-sm-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-sm-column{flex-direction:column;width:100%}.menu-sm-row{flex-direction:row}.menu-sm-row>.menu-item{display:flex;align-items:center}.menu-sm-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-sm-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sm-rounded .menu-link{border-radius:.475rem}.menu-sm-pill .menu-link{border-radius:50px}.menu-sm-rounded-0 .menu-link{border-radius:0!important}}@media (min-width:768px){.menu-item.menu-md-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-md-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-md-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-md-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-md-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-md-dropdown.menu.show,.menu-sub-md-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-md-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-md-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-md-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-md-dropdown.menu.show[data-popper-placement=top],.menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-md-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-md-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-md-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-md-accordion{display:none}.menu-sub-md-accordion.show,.show:not(.menu-dropdown)>.menu-sub-md-accordion{display:flex}.menu-md-inline{display:flex}.menu-md-fit>.menu-item>.menu-content,.menu-md-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-md-column{flex-direction:column;width:100%}.menu-md-row{flex-direction:row}.menu-md-row>.menu-item{display:flex;align-items:center}.menu-md-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-md-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-md-rounded .menu-link{border-radius:.475rem}.menu-md-pill .menu-link{border-radius:50px}.menu-md-rounded-0 .menu-link{border-radius:0!important}}@media (min-width:992px){.menu-item.menu-lg-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-lg-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-lg-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-lg-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-lg-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-lg-dropdown.menu.show,.menu-sub-lg-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-lg-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-lg-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-lg-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-lg-dropdown.menu.show[data-popper-placement=top],.menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-lg-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-lg-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-lg-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-lg-accordion{display:none}.menu-sub-lg-accordion.show,.show:not(.menu-dropdown)>.menu-sub-lg-accordion{display:flex}.menu-lg-inline{display:flex}.menu-lg-fit>.menu-item>.menu-content,.menu-lg-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-lg-column{flex-direction:column;width:100%}.menu-lg-row{flex-direction:row}.menu-lg-row>.menu-item{display:flex;align-items:center}.menu-lg-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-lg-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-lg-rounded .menu-link{border-radius:.475rem}.menu-lg-pill .menu-link{border-radius:50px}.menu-lg-rounded-0 .menu-link{border-radius:0!important}}@media (min-width:1200px){.menu-item.menu-xl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-xl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-xl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-xl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-xl-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-xl-dropdown.menu.show,.menu-sub-xl-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-xl-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-xl-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-xl-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-xl-dropdown.menu.show[data-popper-placement=top],.menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-xl-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-xl-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-xl-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-xl-accordion{display:none}.menu-sub-xl-accordion.show,.show:not(.menu-dropdown)>.menu-sub-xl-accordion{display:flex}.menu-xl-inline{display:flex}.menu-xl-fit>.menu-item>.menu-content,.menu-xl-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-xl-column{flex-direction:column;width:100%}.menu-xl-row{flex-direction:row}.menu-xl-row>.menu-item{display:flex;align-items:center}.menu-xl-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-xl-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-xl-rounded .menu-link{border-radius:.475rem}.menu-xl-pill .menu-link{border-radius:50px}.menu-xl-rounded-0 .menu-link{border-radius:0!important}}@media (min-width:1400px){.menu-item.menu-xxl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-xxl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-xxl-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-xxl-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-xxl-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-xxl-dropdown.menu.show,.menu-sub-xxl-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-xxl-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-xxl-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-xxl-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-xxl-dropdown.menu.show[data-popper-placement=top],.menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-xxl-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-xxl-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-xxl-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-xxl-accordion{display:none}.menu-sub-xxl-accordion.show,.show:not(.menu-dropdown)>.menu-sub-xxl-accordion{display:flex}.menu-xxl-inline{display:flex}.menu-xxl-fit>.menu-item>.menu-content,.menu-xxl-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-xxl-column{flex-direction:column;width:100%}.menu-xxl-row{flex-direction:row}.menu-xxl-row>.menu-item{display:flex;align-items:center}.menu-xxl-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-xxl-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-xxl-rounded .menu-link{border-radius:.475rem}.menu-xxl-pill .menu-link{border-radius:50px}.menu-xxl-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:575.98px){.menu-item.menu-sm-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-sm-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-sm-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-sm-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-sm-down-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-sm-down-dropdown.menu.show,.menu-sub-sm-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-sm-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-sm-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-sm-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-sm-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-sm-down-accordion{display:none}.menu-sub-sm-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-sm-down-accordion{display:flex}.menu-sm-down-inline{display:flex}.menu-sm-down-fit>.menu-item>.menu-content,.menu-sm-down-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-sm-down-column{flex-direction:column;width:100%}.menu-sm-down-row{flex-direction:row}.menu-sm-down-row>.menu-item{display:flex;align-items:center}.menu-sm-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-sm-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sm-down-rounded .menu-link{border-radius:.475rem}.menu-sm-down-pill .menu-link{border-radius:50px}.menu-sm-down-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:767.98px){.menu-item.menu-md-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-md-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-md-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-md-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-md-down-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-md-down-dropdown.menu.show,.menu-sub-md-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-md-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-md-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-md-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-md-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-md-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-md-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-md-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-md-down-accordion{display:none}.menu-sub-md-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-md-down-accordion{display:flex}.menu-md-down-inline{display:flex}.menu-md-down-fit>.menu-item>.menu-content,.menu-md-down-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-md-down-column{flex-direction:column;width:100%}.menu-md-down-row{flex-direction:row}.menu-md-down-row>.menu-item{display:flex;align-items:center}.menu-md-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-md-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-md-down-rounded .menu-link{border-radius:.475rem}.menu-md-down-pill .menu-link{border-radius:50px}.menu-md-down-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:991.98px){.menu-item.menu-lg-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-lg-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-lg-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-lg-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-lg-down-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-lg-down-dropdown.menu.show,.menu-sub-lg-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-lg-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-lg-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-lg-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-lg-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-lg-down-accordion{display:none}.menu-sub-lg-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-lg-down-accordion{display:flex}.menu-lg-down-inline{display:flex}.menu-lg-down-fit>.menu-item>.menu-content,.menu-lg-down-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-lg-down-column{flex-direction:column;width:100%}.menu-lg-down-row{flex-direction:row}.menu-lg-down-row>.menu-item{display:flex;align-items:center}.menu-lg-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-lg-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-lg-down-rounded .menu-link{border-radius:.475rem}.menu-lg-down-pill .menu-link{border-radius:50px}.menu-lg-down-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:1199.98px){.menu-item.menu-xl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-xl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-xl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-xl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-xl-down-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-xl-down-dropdown.menu.show,.menu-sub-xl-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-xl-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-xl-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-xl-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-xl-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-xl-down-accordion{display:none}.menu-sub-xl-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-xl-down-accordion{display:flex}.menu-xl-down-inline{display:flex}.menu-xl-down-fit>.menu-item>.menu-content,.menu-xl-down-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-xl-down-column{flex-direction:column;width:100%}.menu-xl-down-row{flex-direction:row}.menu-xl-down-row>.menu-item{display:flex;align-items:center}.menu-xl-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-xl-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-xl-down-rounded .menu-link{border-radius:.475rem}.menu-xl-down-pill .menu-link{border-radius:50px}.menu-xl-down-rounded-0 .menu-link{border-radius:0!important}}@media (max-width:1399.98px){.menu-item.menu-xxl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,.menu-item.menu-xxl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-item.menu-xxl-down-accordion.show:not(.hiding):not(.menu-dropdown)>.menu-link .menu-arrow:after,[direction=rtl] .menu-item.menu-xxl-down-accordion.showing:not(.menu-dropdown)>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-sub-xxl-down-dropdown{display:none;border-radius:.475rem;background-color:#1e1e2d;box-shadow:0 0 30px rgba(0,0,0,.3);z-index:107}.menu-sub-xxl-down-dropdown.menu.show,.menu-sub-xxl-down-dropdown.show[data-popper-placement],.show.menu-dropdown>.menu-sub-xxl-down-dropdown{display:flex;animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-up .3s ease 1}.menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top-end],.menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top-start],.menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top],.menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top-end],.menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top-start],.menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top],.show.menu-dropdown>.menu-sub-xxl-down-dropdown[data-popper-placement=top-end],.show.menu-dropdown>.menu-sub-xxl-down-dropdown[data-popper-placement=top-start],.show.menu-dropdown>.menu-sub-xxl-down-dropdown[data-popper-placement=top]{animation:menu-sub-dropdown-animation-fade-in .3s ease 1,menu-sub-dropdown-animation-move-down .3s ease 1}.menu-sub-xxl-down-accordion{display:none}.menu-sub-xxl-down-accordion.show,.show:not(.menu-dropdown)>.menu-sub-xxl-down-accordion{display:flex}.menu-xxl-down-inline{display:flex}.menu-xxl-down-fit>.menu-item>.menu-content,.menu-xxl-down-fit>.menu-item>.menu-link{padding-right:0!important;padding-left:0!important}.menu-xxl-down-column{flex-direction:column;width:100%}.menu-xxl-down-row{flex-direction:row}.menu-xxl-down-row>.menu-item{display:flex;align-items:center}.menu-xxl-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .menu-xxl-down-row>.menu-item>.menu-link .menu-arrow:after{transform:rotateZ(-90deg)}.menu-xxl-down-rounded .menu-link{border-radius:.475rem}.menu-xxl-down-pill .menu-link{border-radius:50px}.menu-xxl-down-rounded-0 .menu-link{border-radius:0!important}}.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(1rem + 1rem)}.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(2rem + 1rem)}.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(3rem + 1rem)}.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(4rem + 1rem)}.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:1rem;padding-left:0}.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(2rem);padding-left:0}.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(3rem);padding-left:0}.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(4rem);padding-left:0}@keyframes menu-sub-dropdown-animation-fade-in{from{opacity:0}to{opacity:1}}@keyframes menu-sub-dropdown-animation-move-up{from{margin-top:.75rem}to{margin-top:0}}@keyframes menu-sub-dropdown-animation-move-down{from{margin-bottom:.75rem}to{margin-bottom:0}}.menu-white .menu-item .menu-link{color:#fff}.menu-white .menu-item .menu-link .menu-title{color:#fff}.menu-white .menu-item .menu-link .menu-icon,.menu-white .menu-item .menu-link .menu-icon .svg-icon,.menu-white .menu-item .menu-link .menu-icon i{color:#fff}.menu-white .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-white .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-white .menu-item .menu-link{color:#fff}.menu-title-white .menu-item .menu-link .menu-title{color:#fff}.menu-icon-white .menu-item .menu-link .menu-icon,.menu-icon-white .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-white .menu-item .menu-link .menu-icon i{color:#fff}.menu-bullet-white .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-arrow-white .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-primary .menu-item .menu-link{color:#3699ff}.menu-primary .menu-item .menu-link .menu-title{color:#3699ff}.menu-primary .menu-item .menu-link .menu-icon,.menu-primary .menu-item .menu-link .menu-icon .svg-icon,.menu-primary .menu-item .menu-link .menu-icon i{color:#3699ff}.menu-primary .menu-item .menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-primary .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-primary .menu-item .menu-link{color:#3699ff}.menu-title-primary .menu-item .menu-link .menu-title{color:#3699ff}.menu-icon-primary .menu-item .menu-link .menu-icon,.menu-icon-primary .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-primary .menu-item .menu-link .menu-icon i{color:#3699ff}.menu-bullet-primary .menu-item .menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-arrow-primary .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-secondary .menu-item .menu-link{color:#323248}.menu-secondary .menu-item .menu-link .menu-title{color:#323248}.menu-secondary .menu-item .menu-link .menu-icon,.menu-secondary .menu-item .menu-link .menu-icon .svg-icon,.menu-secondary .menu-item .menu-link .menu-icon i{color:#323248}.menu-secondary .menu-item .menu-link .menu-bullet .bullet{background-color:#323248}.menu-secondary .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-secondary .menu-item .menu-link{color:#323248}.menu-title-secondary .menu-item .menu-link .menu-title{color:#323248}.menu-icon-secondary .menu-item .menu-link .menu-icon,.menu-icon-secondary .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-secondary .menu-item .menu-link .menu-icon i{color:#323248}.menu-bullet-secondary .menu-item .menu-link .menu-bullet .bullet{background-color:#323248}.menu-arrow-secondary .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-light .menu-item .menu-link{color:#323248}.menu-light .menu-item .menu-link .menu-title{color:#323248}.menu-light .menu-item .menu-link .menu-icon,.menu-light .menu-item .menu-link .menu-icon .svg-icon,.menu-light .menu-item .menu-link .menu-icon i{color:#323248}.menu-light .menu-item .menu-link .menu-bullet .bullet{background-color:#323248}.menu-light .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-light .menu-item .menu-link{color:#323248}.menu-title-light .menu-item .menu-link .menu-title{color:#323248}.menu-icon-light .menu-item .menu-link .menu-icon,.menu-icon-light .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-light .menu-item .menu-link .menu-icon i{color:#323248}.menu-bullet-light .menu-item .menu-link .menu-bullet .bullet{background-color:#323248}.menu-arrow-light .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-success .menu-item .menu-link{color:#0bb783}.menu-success .menu-item .menu-link .menu-title{color:#0bb783}.menu-success .menu-item .menu-link .menu-icon,.menu-success .menu-item .menu-link .menu-icon .svg-icon,.menu-success .menu-item .menu-link .menu-icon i{color:#0bb783}.menu-success .menu-item .menu-link .menu-bullet .bullet{background-color:#0bb783}.menu-success .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%230BB783'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-success .menu-item .menu-link{color:#0bb783}.menu-title-success .menu-item .menu-link .menu-title{color:#0bb783}.menu-icon-success .menu-item .menu-link .menu-icon,.menu-icon-success .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-success .menu-item .menu-link .menu-icon i{color:#0bb783}.menu-bullet-success .menu-item .menu-link .menu-bullet .bullet{background-color:#0bb783}.menu-arrow-success .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%230BB783'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-info .menu-item .menu-link{color:#8950fc}.menu-info .menu-item .menu-link .menu-title{color:#8950fc}.menu-info .menu-item .menu-link .menu-icon,.menu-info .menu-item .menu-link .menu-icon .svg-icon,.menu-info .menu-item .menu-link .menu-icon i{color:#8950fc}.menu-info .menu-item .menu-link .menu-bullet .bullet{background-color:#8950fc}.menu-info .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%238950FC'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-info .menu-item .menu-link{color:#8950fc}.menu-title-info .menu-item .menu-link .menu-title{color:#8950fc}.menu-icon-info .menu-item .menu-link .menu-icon,.menu-icon-info .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-info .menu-item .menu-link .menu-icon i{color:#8950fc}.menu-bullet-info .menu-item .menu-link .menu-bullet .bullet{background-color:#8950fc}.menu-arrow-info .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%238950FC'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-warning .menu-item .menu-link{color:#ffa800}.menu-warning .menu-item .menu-link .menu-title{color:#ffa800}.menu-warning .menu-item .menu-link .menu-icon,.menu-warning .menu-item .menu-link .menu-icon .svg-icon,.menu-warning .menu-item .menu-link .menu-icon i{color:#ffa800}.menu-warning .menu-item .menu-link .menu-bullet .bullet{background-color:#ffa800}.menu-warning .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFA800'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-warning .menu-item .menu-link{color:#ffa800}.menu-title-warning .menu-item .menu-link .menu-title{color:#ffa800}.menu-icon-warning .menu-item .menu-link .menu-icon,.menu-icon-warning .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-warning .menu-item .menu-link .menu-icon i{color:#ffa800}.menu-bullet-warning .menu-item .menu-link .menu-bullet .bullet{background-color:#ffa800}.menu-arrow-warning .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFA800'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-danger .menu-item .menu-link{color:#f64e60}.menu-danger .menu-item .menu-link .menu-title{color:#f64e60}.menu-danger .menu-item .menu-link .menu-icon,.menu-danger .menu-item .menu-link .menu-icon .svg-icon,.menu-danger .menu-item .menu-link .menu-icon i{color:#f64e60}.menu-danger .menu-item .menu-link .menu-bullet .bullet{background-color:#f64e60}.menu-danger .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F64E60'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-danger .menu-item .menu-link{color:#f64e60}.menu-title-danger .menu-item .menu-link .menu-title{color:#f64e60}.menu-icon-danger .menu-item .menu-link .menu-icon,.menu-icon-danger .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-danger .menu-item .menu-link .menu-icon i{color:#f64e60}.menu-bullet-danger .menu-item .menu-link .menu-bullet .bullet{background-color:#f64e60}.menu-arrow-danger .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F64E60'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-dark .menu-item .menu-link{color:#fff}.menu-dark .menu-item .menu-link .menu-title{color:#fff}.menu-dark .menu-item .menu-link .menu-icon,.menu-dark .menu-item .menu-link .menu-icon .svg-icon,.menu-dark .menu-item .menu-link .menu-icon i{color:#fff}.menu-dark .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-dark .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-dark .menu-item .menu-link{color:#fff}.menu-title-dark .menu-item .menu-link .menu-title{color:#fff}.menu-icon-dark .menu-item .menu-link .menu-icon,.menu-icon-dark .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-dark .menu-item .menu-link .menu-icon i{color:#fff}.menu-bullet-dark .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-arrow-dark .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-muted .menu-item .menu-link{color:#565674}.menu-muted .menu-item .menu-link .menu-title{color:#565674}.menu-muted .menu-item .menu-link .menu-icon,.menu-muted .menu-item .menu-link .menu-icon .svg-icon,.menu-muted .menu-item .menu-link .menu-icon i{color:#565674}.menu-muted .menu-item .menu-link .menu-bullet .bullet{background-color:#565674}.menu-muted .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-muted .menu-item .menu-link{color:#565674}.menu-title-muted .menu-item .menu-link .menu-title{color:#565674}.menu-icon-muted .menu-item .menu-link .menu-icon,.menu-icon-muted .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-muted .menu-item .menu-link .menu-icon i{color:#565674}.menu-bullet-muted .menu-item .menu-link .menu-bullet .bullet{background-color:#565674}.menu-arrow-muted .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-100 .menu-item .menu-link{color:#1b1b29}.menu-gray-100 .menu-item .menu-link .menu-title{color:#1b1b29}.menu-gray-100 .menu-item .menu-link .menu-icon,.menu-gray-100 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-100 .menu-item .menu-link .menu-icon i{color:#1b1b29}.menu-gray-100 .menu-item .menu-link .menu-bullet .bullet{background-color:#1b1b29}.menu-gray-100 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%231b1b29'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-100 .menu-item .menu-link{color:#1b1b29}.menu-title-gray-100 .menu-item .menu-link .menu-title{color:#1b1b29}.menu-icon-gray-100 .menu-item .menu-link .menu-icon,.menu-icon-gray-100 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-100 .menu-item .menu-link .menu-icon i{color:#1b1b29}.menu-bullet-gray-100 .menu-item .menu-link .menu-bullet .bullet{background-color:#1b1b29}.menu-arrow-gray-100 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%231b1b29'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-200 .menu-item .menu-link{color:#2b2b40}.menu-gray-200 .menu-item .menu-link .menu-title{color:#2b2b40}.menu-gray-200 .menu-item .menu-link .menu-icon,.menu-gray-200 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-200 .menu-item .menu-link .menu-icon i{color:#2b2b40}.menu-gray-200 .menu-item .menu-link .menu-bullet .bullet{background-color:#2b2b40}.menu-gray-200 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%232B2B40'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-200 .menu-item .menu-link{color:#2b2b40}.menu-title-gray-200 .menu-item .menu-link .menu-title{color:#2b2b40}.menu-icon-gray-200 .menu-item .menu-link .menu-icon,.menu-icon-gray-200 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-200 .menu-item .menu-link .menu-icon i{color:#2b2b40}.menu-bullet-gray-200 .menu-item .menu-link .menu-bullet .bullet{background-color:#2b2b40}.menu-arrow-gray-200 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%232B2B40'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-300 .menu-item .menu-link{color:#323248}.menu-gray-300 .menu-item .menu-link .menu-title{color:#323248}.menu-gray-300 .menu-item .menu-link .menu-icon,.menu-gray-300 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-300 .menu-item .menu-link .menu-icon i{color:#323248}.menu-gray-300 .menu-item .menu-link .menu-bullet .bullet{background-color:#323248}.menu-gray-300 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-300 .menu-item .menu-link{color:#323248}.menu-title-gray-300 .menu-item .menu-link .menu-title{color:#323248}.menu-icon-gray-300 .menu-item .menu-link .menu-icon,.menu-icon-gray-300 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-300 .menu-item .menu-link .menu-icon i{color:#323248}.menu-bullet-gray-300 .menu-item .menu-link .menu-bullet .bullet{background-color:#323248}.menu-arrow-gray-300 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23323248'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-400 .menu-item .menu-link{color:#474761}.menu-gray-400 .menu-item .menu-link .menu-title{color:#474761}.menu-gray-400 .menu-item .menu-link .menu-icon,.menu-gray-400 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-400 .menu-item .menu-link .menu-icon i{color:#474761}.menu-gray-400 .menu-item .menu-link .menu-bullet .bullet{background-color:#474761}.menu-gray-400 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23474761'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-400 .menu-item .menu-link{color:#474761}.menu-title-gray-400 .menu-item .menu-link .menu-title{color:#474761}.menu-icon-gray-400 .menu-item .menu-link .menu-icon,.menu-icon-gray-400 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-400 .menu-item .menu-link .menu-icon i{color:#474761}.menu-bullet-gray-400 .menu-item .menu-link .menu-bullet .bullet{background-color:#474761}.menu-arrow-gray-400 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23474761'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-500 .menu-item .menu-link{color:#565674}.menu-gray-500 .menu-item .menu-link .menu-title{color:#565674}.menu-gray-500 .menu-item .menu-link .menu-icon,.menu-gray-500 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-500 .menu-item .menu-link .menu-icon i{color:#565674}.menu-gray-500 .menu-item .menu-link .menu-bullet .bullet{background-color:#565674}.menu-gray-500 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-500 .menu-item .menu-link{color:#565674}.menu-title-gray-500 .menu-item .menu-link .menu-title{color:#565674}.menu-icon-gray-500 .menu-item .menu-link .menu-icon,.menu-icon-gray-500 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-500 .menu-item .menu-link .menu-icon i{color:#565674}.menu-bullet-gray-500 .menu-item .menu-link .menu-bullet .bullet{background-color:#565674}.menu-arrow-gray-500 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-600 .menu-item .menu-link{color:#6d6d80}.menu-gray-600 .menu-item .menu-link .menu-title{color:#6d6d80}.menu-gray-600 .menu-item .menu-link .menu-icon,.menu-gray-600 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-600 .menu-item .menu-link .menu-icon i{color:#6d6d80}.menu-gray-600 .menu-item .menu-link .menu-bullet .bullet{background-color:#6d6d80}.menu-gray-600 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%236D6D80'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-600 .menu-item .menu-link{color:#6d6d80}.menu-title-gray-600 .menu-item .menu-link .menu-title{color:#6d6d80}.menu-icon-gray-600 .menu-item .menu-link .menu-icon,.menu-icon-gray-600 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-600 .menu-item .menu-link .menu-icon i{color:#6d6d80}.menu-bullet-gray-600 .menu-item .menu-link .menu-bullet .bullet{background-color:#6d6d80}.menu-arrow-gray-600 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%236D6D80'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-700 .menu-item .menu-link{color:#92929f}.menu-gray-700 .menu-item .menu-link .menu-title{color:#92929f}.menu-gray-700 .menu-item .menu-link .menu-icon,.menu-gray-700 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-700 .menu-item .menu-link .menu-icon i{color:#92929f}.menu-gray-700 .menu-item .menu-link .menu-bullet .bullet{background-color:#92929f}.menu-gray-700 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2392929F'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-700 .menu-item .menu-link{color:#92929f}.menu-title-gray-700 .menu-item .menu-link .menu-title{color:#92929f}.menu-icon-gray-700 .menu-item .menu-link .menu-icon,.menu-icon-gray-700 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-700 .menu-item .menu-link .menu-icon i{color:#92929f}.menu-bullet-gray-700 .menu-item .menu-link .menu-bullet .bullet{background-color:#92929f}.menu-arrow-gray-700 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2392929F'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-800 .menu-item .menu-link{color:#cdcdde}.menu-gray-800 .menu-item .menu-link .menu-title{color:#cdcdde}.menu-gray-800 .menu-item .menu-link .menu-icon,.menu-gray-800 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-800 .menu-item .menu-link .menu-icon i{color:#cdcdde}.menu-gray-800 .menu-item .menu-link .menu-bullet .bullet{background-color:#cdcdde}.menu-gray-800 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23CDCDDE'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-800 .menu-item .menu-link{color:#cdcdde}.menu-title-gray-800 .menu-item .menu-link .menu-title{color:#cdcdde}.menu-icon-gray-800 .menu-item .menu-link .menu-icon,.menu-icon-gray-800 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-800 .menu-item .menu-link .menu-icon i{color:#cdcdde}.menu-bullet-gray-800 .menu-item .menu-link .menu-bullet .bullet{background-color:#cdcdde}.menu-arrow-gray-800 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23CDCDDE'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-gray-900 .menu-item .menu-link{color:#fff}.menu-gray-900 .menu-item .menu-link .menu-title{color:#fff}.menu-gray-900 .menu-item .menu-link .menu-icon,.menu-gray-900 .menu-item .menu-link .menu-icon .svg-icon,.menu-gray-900 .menu-item .menu-link .menu-icon i{color:#fff}.menu-gray-900 .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-gray-900 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-title-gray-900 .menu-item .menu-link{color:#fff}.menu-title-gray-900 .menu-item .menu-link .menu-title{color:#fff}.menu-icon-gray-900 .menu-item .menu-link .menu-icon,.menu-icon-gray-900 .menu-item .menu-link .menu-icon .svg-icon,.menu-icon-gray-900 .menu-item .menu-link .menu-icon i{color:#fff}.menu-bullet-gray-900 .menu-item .menu-link .menu-bullet .bullet{background-color:#fff}.menu-arrow-gray-900 .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-hover-bg .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-bg .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-here-bg .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-show-bg .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-active-bg .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-state-bg .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-bg .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-state-bg .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-state-bg .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-state-bg .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:rgba(27,27,41,.8)}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#fff}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#fff}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#fff}.menu-hover-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-show-bg-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-show-bg-primary .menu-item.show>.menu-link .menu-title{color:#fff}.menu-show-bg-primary .menu-item.show>.menu-link .menu-icon,.menu-show-bg-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-show-bg-primary .menu-item.show>.menu-link .menu-icon i{color:#fff}.menu-show-bg-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#fff}.menu-show-bg-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-here-bg-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-here-bg-primary .menu-item.here>.menu-link .menu-title{color:#fff}.menu-here-bg-primary .menu-item.here>.menu-link .menu-icon,.menu-here-bg-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-here-bg-primary .menu-item.here>.menu-link .menu-icon i{color:#fff}.menu-here-bg-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#fff}.menu-here-bg-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-active-bg-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-active-bg-primary .menu-item .menu-link.active .menu-title{color:#fff}.menu-active-bg-primary .menu-item .menu-link.active .menu-icon,.menu-active-bg-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-active-bg-primary .menu-item .menu-link.active .menu-icon i{color:#fff}.menu-active-bg-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#fff}.menu-active-bg-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#fff}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#fff}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#fff}.menu-state-bg-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-state-bg-primary .menu-item.show>.menu-link .menu-title{color:#fff}.menu-state-bg-primary .menu-item.show>.menu-link .menu-icon,.menu-state-bg-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-state-bg-primary .menu-item.show>.menu-link .menu-icon i{color:#fff}.menu-state-bg-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#fff}.menu-state-bg-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-state-bg-primary .menu-item.here>.menu-link .menu-title{color:#fff}.menu-state-bg-primary .menu-item.here>.menu-link .menu-icon,.menu-state-bg-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-state-bg-primary .menu-item.here>.menu-link .menu-icon i{color:#fff}.menu-state-bg-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#fff}.menu-state-bg-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#3699ff;color:#fff}.menu-state-bg-primary .menu-item .menu-link.active .menu-title{color:#fff}.menu-state-bg-primary .menu-item .menu-link.active .menu-icon,.menu-state-bg-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-state-bg-primary .menu-item .menu-link.active .menu-icon i{color:#fff}.menu-state-bg-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#fff}.menu-state-bg-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-show-bg-light-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-title{color:#3699ff}.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-icon,.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-show-bg-light-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-here-bg-light-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-title{color:#3699ff}.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-icon,.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-icon i{color:#3699ff}.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-here-bg-light-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#3699ff}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.menu-hover-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-active-bg-light-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-active-bg-light-primary .menu-item .menu-link.active .menu-title{color:#3699ff}.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon,.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon i{color:#3699ff}.menu-active-bg-light-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.menu-active-bg-light-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-light-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-title{color:#3699ff}.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-icon,.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-state-bg-light-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-light-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-title{color:#3699ff}.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-icon,.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-icon i{color:#3699ff}.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-state-bg-light-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#3699ff}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.menu-state-bg-light-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-bg-light-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#212e48;color:#3699ff}.menu-state-bg-light-primary .menu-item .menu-link.active .menu-title{color:#3699ff}.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon,.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon i{color:#3699ff}.menu-state-bg-light-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.menu-state-bg-light-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#3699ff}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.menu-hover-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-show-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-show-primary .menu-item.show>.menu-link .menu-title{color:#3699ff}.menu-show-primary .menu-item.show>.menu-link .menu-icon,.menu-show-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-show-primary .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.menu-show-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-show-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-here-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-here-primary .menu-item.here>.menu-link .menu-title{color:#3699ff}.menu-here-primary .menu-item.here>.menu-link .menu-icon,.menu-here-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-here-primary .menu-item.here>.menu-link .menu-icon i{color:#3699ff}.menu-here-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-here-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-active-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-active-primary .menu-item .menu-link.active .menu-title{color:#3699ff}.menu-active-primary .menu-item .menu-link.active .menu-icon,.menu-active-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-active-primary .menu-item .menu-link.active .menu-icon i{color:#3699ff}.menu-active-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.menu-active-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#3699ff}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.menu-state-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-primary .menu-item.show>.menu-link .menu-title{color:#3699ff}.menu-state-primary .menu-item.show>.menu-link .menu-icon,.menu-state-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-state-primary .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.menu-state-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-state-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-primary .menu-item.here>.menu-link .menu-title{color:#3699ff}.menu-state-primary .menu-item.here>.menu-link .menu-icon,.menu-state-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-state-primary .menu-item.here>.menu-link .menu-icon i{color:#3699ff}.menu-state-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-state-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-primary .menu-item .menu-link.active .menu-title{color:#3699ff}.menu-state-primary .menu-item .menu-link.active .menu-icon,.menu-state-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-state-primary .menu-item .menu-link.active .menu-icon i{color:#3699ff}.menu-state-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.menu-state-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-hover-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-hover-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-hover-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#3699ff}.menu-here-title-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-here-title-primary .menu-item.here>.menu-link .menu-title{color:#3699ff}.menu-show-title-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-show-title-primary .menu-item.show>.menu-link .menu-title{color:#3699ff}.menu-active-title-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-active-title-primary .menu-item .menu-link.active .menu-title{color:#3699ff}.menu-state-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-title-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.menu-state-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#3699ff}.menu-state-title-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-title-primary .menu-item.show>.menu-link .menu-title{color:#3699ff}.menu-state-title-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;color:#3699ff}.menu-state-title-primary .menu-item .menu-link.active .menu-title{color:#3699ff}.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.menu-here-icon-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-here-icon-primary .menu-item.here>.menu-link .menu-icon,.menu-here-icon-primary .menu-item.here>.menu-link .menu-icon .svg-icon,.menu-here-icon-primary .menu-item.here>.menu-link .menu-icon i{color:#3699ff}.menu-show-icon-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-show-icon-primary .menu-item.show>.menu-link .menu-icon,.menu-show-icon-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-show-icon-primary .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.menu-active-icon-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-active-icon-primary .menu-item .menu-link.active .menu-icon,.menu-active-icon-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-active-icon-primary .menu-item .menu-link.active .menu-icon i{color:#3699ff}.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-icon-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.menu-state-icon-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-state-icon-primary .menu-item.show>.menu-link .menu-icon,.menu-state-icon-primary .menu-item.show>.menu-link .menu-icon .svg-icon,.menu-state-icon-primary .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.menu-state-icon-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-state-icon-primary .menu-item .menu-link.active .menu-icon,.menu-state-icon-primary .menu-item .menu-link.active .menu-icon .svg-icon,.menu-state-icon-primary .menu-item .menu-link.active .menu-icon i{color:#3699ff}.menu-hover-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-hover-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-hover-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.menu-show-bullet-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-show-bullet-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-here-bullet-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-here-bullet-primary .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-active-bullet-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-active-bullet-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.menu-state-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-state-bullet-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.menu-state-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.menu-state-bullet-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-state-bullet-primary .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.menu-state-bullet-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-state-bullet-primary .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.menu-hover-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-hover-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-hover-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-hover-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-here-arrow-primary .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-here-arrow-primary .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-show-arrow-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-show-arrow-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-active-arrow-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-active-arrow-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.menu-state-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease}.menu-state-arrow-primary .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.menu-state-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-arrow-primary .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease}.menu-state-arrow-primary .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.menu-state-arrow-primary .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease}.menu-state-arrow-primary .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233699FF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.anchor{display:flex;align-items:center}.anchor a{position:relative;display:none;align-items:center;justify-content:flex-start;height:1em;width:1.25em;margin-right:-1.25em;font-weight:500;font-size:.8em;color:#565674;transition:all .2s ease}.anchor a:before{content:"#"}.anchor:hover a{display:flex}.anchor:hover a:hover{color:#3699ff;transition:all .2s ease}.card{border:0;box-shadow:none}.card .card-header{display:flex;justify-content:space-between;align-items:stretch;flex-wrap:wrap;min-height:70px;padding:0 2.25rem;background-color:transparent;border-bottom:1px solid #2b2b40}.card .card-header .card-title{display:flex;align-items:center;margin:.5rem;margin-right:0}.card .card-header .card-title.flex-column{align-items:flex-start;justify-content:center}.card .card-header .card-title .card-icon{margin-left:.75rem;line-height:0}.card .card-header .card-title .card-icon i{font-size:1.25rem;color:#6d6d80;line-height:0}.card .card-header .card-title .card-icon i:after,.card .card-header .card-title .card-icon i:before{line-height:0}.card .card-header .card-title .card-icon .svg-icon{color:#6d6d80}.card .card-header .card-title .card-icon .svg-icon svg{height:24px;width:24px}.card .card-header .card-title,.card .card-header .card-title .card-label{font-weight:500;font-size:1.275rem;color:#fff}.card .card-header .card-title .card-label{margin:0 0 0 .75rem;flex-wrap:wrap}.card .card-header .card-title .small,.card .card-header .card-title small{color:#565674;font-size:1rem}.card .card-header .card-title .h1,.card .card-header .card-title .h2,.card .card-header .card-title .h3,.card .card-header .card-title .h4,.card .card-header .card-title .h5,.card .card-header .card-title .h6,.card .card-header .card-title h1,.card .card-header .card-title h2,.card .card-header .card-title h3,.card .card-header .card-title h4,.card .card-header .card-title h5,.card .card-header .card-title h6{margin-bottom:0}.card .card-header .card-toolbar{display:flex;align-items:center;margin:.5rem 0;flex-wrap:wrap}.card .card-body{padding:2rem 2.25rem}.card .card-footer{padding:2rem 2.25rem;background-color:transparent;border-top:1px solid #2b2b40}.card .card-scroll{position:relative;overflow:auto}.card.card-px-0 .card-body,.card.card-px-0 .card-footer,.card.card-px-0 .card-header{padding-right:0;padding-left:0}.card.card-py-0 .card-body,.card.card-py-0 .card-footer,.card.card-py-0 .card-header{padding-top:0;padding-bottom:0}.card.card-p-0 .card-body,.card.card-p-0 .card-footer,.card.card-p-0 .card-header{padding:0}.card.card-dashed{box-shadow:none;border:1px dashed #323248}.card.card-dashed>.card-header{border-bottom:1px dashed #323248}.card.card-dashed>.card-footer{border-top:1px dashed #323248}.card.card-bordered{box-shadow:none;border:1px solid #2b2b40}.card.card-flush>.card-header{border-bottom:0}.card.card-flush>.card-footer{border-top:0}.card.card-shadow{box-shadow:none;border:0}.card.card-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-stretch .card-toolbar{margin:0;align-items:stretch}@media (min-width:576px){.card.card-sm-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-sm-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-sm-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-sm-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-sm-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-sm-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-sm-stretch .card-toolbar{margin:0;align-items:stretch}}@media (min-width:768px){.card.card-md-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-md-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-md-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-md-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-md-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-md-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-md-stretch .card-toolbar{margin:0;align-items:stretch}}@media (min-width:992px){.card.card-lg-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-lg-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-lg-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-lg-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-lg-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-lg-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-lg-stretch .card-toolbar{margin:0;align-items:stretch}}@media (min-width:1200px){.card.card-xl-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-xl-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-xl-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-xl-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-xl-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-xl-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-xl-stretch .card-toolbar{margin:0;align-items:stretch}}@media (min-width:1400px){.card.card-xxl-stretch{height:calc(100% - var(--bs-gutter-y))}.card.card-xxl-stretch-75{height:calc(75% - var(--bs-gutter-y))}.card.card-xxl-stretch-50{height:calc(50% - var(--bs-gutter-y))}.card.card-xxl-stretch-33{height:calc(33.333% - var(--bs-gutter-y))}.card.card-xxl-stretch-25{height:calc(25% - var(--bs-gutter-y))}.card .card-header-xxl-stretch{padding-top:0!important;padding-bottom:0!important;align-items:stretch}.card .card-header-xxl-stretch .card-toolbar{margin:0;align-items:stretch}}.card-p{padding:2rem 2.25rem!important}.card-px{padding-right:2.25rem!important;padding-left:2.25rem!important}.card-shadow{box-shadow:none}.card-py{padding-top:2rem!important;padding-bottom:2rem!important}.card-rounded{border-radius:.625rem}.card-rounded-start{border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.card-rounded-end{border-top-left-radius:.625rem;border-bottom-left-radius:.625rem}.card-rounded-top{border-top-right-radius:.625rem;border-top-left-radius:.625rem}.card-rounded-bottom{border-bottom-right-radius:.625rem;border-bottom-left-radius:.625rem}@media (max-width:767.98px){.card>.card-header:not(.flex-nowrap){padding-top:.5rem;padding-bottom:.5rem}}.breadcrumb{display:flex;align-items:center;background-color:transparent;padding:0;margin:0}.breadcrumb .breadcrumb-item{display:flex;align-items:center;padding-right:0;padding-left:.5rem}.breadcrumb .breadcrumb-item:last-child{padding-left:0}.breadcrumb .breadcrumb-item:after{content:"/";padding-right:.5rem}.breadcrumb .breadcrumb-item:before{display:none}.breadcrumb .breadcrumb-item:last-child:after{display:none}.breadcrumb-line .breadcrumb-item:after{content:"-"}.breadcrumb-dot .breadcrumb-item:after{content:"•"}.breadcrumb-separatorless .breadcrumb-item:after{display:none}.btn{outline:0!important}.btn:not(.btn-shadow):not(.shadow):not(.shadow-sm):not(.shadow-lg){box-shadow:none!important}.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon){border:0;padding:calc(.75rem + 1px) calc(1.5rem + 1px)}.btn-group-lg>.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon),.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon).btn-lg{padding:calc(.825rem + 1px) calc(1.75rem + 1px)}.btn-group-sm>.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon),.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon).btn-sm{padding:calc(.55rem + 1px) calc(1.25rem + 1px)}.btn.btn-link{border:0;border-radius:0;padding-right:0!important;padding-left:0!important;text-decoration:none;font-weight:500}.btn.btn-outline-dashed{border:1px dashed #323248}.btn.btn-outline-default{border:1px solid #323248}.btn.btn-flush{appearance:none;box-shadow:none;border-radius:0;border:none;cursor:pointer;background-color:transparent;outline:0!important;margin:0;padding:0}.btn.btn-flex{display:inline-flex;align-items:center}.btn.btn-trim-start{justify-content:flex-start!important;padding-right:0!important}.btn.btn-trim-end{justify-content:flex-end!important;padding-left:0!important}.btn i{display:inline-flex;font-size:1rem;padding-left:.35rem;vertical-align:middle;line-height:0}.btn .svg-icon{flex-shrink:0;line-height:0;margin-left:.5rem}.btn.btn-icon{display:inline-flex;align-items:center;justify-content:center;padding:0;height:calc(1.5em + 1.5rem + 2px);width:calc(1.5em + 1.5rem + 2px)}.btn.btn-icon:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush){border:0}.btn-group-sm>.btn.btn-icon,.btn.btn-icon.btn-sm{height:calc(1.5em + 1.1rem + 2px);width:calc(1.5em + 1.1rem + 2px)}.btn-group-lg>.btn.btn-icon,.btn.btn-icon.btn-lg{height:calc(1.5em + 1.65rem + 2px);width:calc(1.5em + 1.65rem + 2px)}.btn.btn-icon.btn-circle{border-radius:50%}.btn.btn-icon .svg-icon,.btn.btn-icon i{padding:0;margin:0;line-height:1}.btn.btn-hover-rise{transition:transform .3s ease}.btn.btn-hover-rise:hover{transform:translateY(-10%);transition:transform .3s ease}.btn.btn-hover-scale{transition:transform .3s ease}.btn.btn-hover-scale:hover{transform:scale(1.1);transition:transform .3s ease}.btn.btn-hover-rotate-end{transition:transform .3s ease}.btn.btn-hover-rotate-end:hover{transform:rotate(-4deg);transition:transform .3s ease}.btn.btn-hover-rotate-start{transition:transform .3s ease}.btn.btn-hover-rotate-start:hover{transform:rotate(4deg);transition:transform .3s ease}.btn.btn-white{color:#6d6d80;border-color:#fff;background-color:#fff}.btn.btn-white .svg-icon,.btn.btn-white i{color:#6d6d80}.btn.btn-white.dropdown-toggle:after{color:#6d6d80}.btn-check:active+.btn.btn-white,.btn-check:checked+.btn.btn-white,.btn.btn-white.active,.btn.btn-white.show,.btn.btn-white:active:not(.btn-active),.btn.btn-white:focus:not(.btn-active),.btn.btn-white:hover:not(.btn-active),.show>.btn.btn-white{color:#6d6d80;border-color:#1b1b29;background-color:#1b1b29!important}.btn-check:active+.btn.btn-white .svg-icon,.btn-check:active+.btn.btn-white i,.btn-check:checked+.btn.btn-white .svg-icon,.btn-check:checked+.btn.btn-white i,.btn.btn-white.active .svg-icon,.btn.btn-white.active i,.btn.btn-white.show .svg-icon,.btn.btn-white.show i,.btn.btn-white:active:not(.btn-active) .svg-icon,.btn.btn-white:active:not(.btn-active) i,.btn.btn-white:focus:not(.btn-active) .svg-icon,.btn.btn-white:focus:not(.btn-active) i,.btn.btn-white:hover:not(.btn-active) .svg-icon,.btn.btn-white:hover:not(.btn-active) i,.show>.btn.btn-white .svg-icon,.show>.btn.btn-white i{color:#6d6d80}.btn-check:active+.btn.btn-white.dropdown-toggle:after,.btn-check:checked+.btn.btn-white.dropdown-toggle:after,.btn.btn-white.active.dropdown-toggle:after,.btn.btn-white.show.dropdown-toggle:after,.btn.btn-white:active:not(.btn-active).dropdown-toggle:after,.btn.btn-white:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-white:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-white.dropdown-toggle:after{color:#6d6d80}.btn.btn-bg-white{border-color:#fff;background-color:#fff}.btn-check:active+.btn.btn-active-white,.btn-check:checked+.btn.btn-active-white,.btn.btn-active-white.active,.btn.btn-active-white.show,.btn.btn-active-white:active:not(.btn-active),.btn.btn-active-white:focus:not(.btn-active),.btn.btn-active-white:hover:not(.btn-active),.show>.btn.btn-active-white{color:#6d6d80;border-color:#fff;background-color:#fff!important}.btn-check:active+.btn.btn-active-white .svg-icon,.btn-check:active+.btn.btn-active-white i,.btn-check:checked+.btn.btn-active-white .svg-icon,.btn-check:checked+.btn.btn-active-white i,.btn.btn-active-white.active .svg-icon,.btn.btn-active-white.active i,.btn.btn-active-white.show .svg-icon,.btn.btn-active-white.show i,.btn.btn-active-white:active:not(.btn-active) .svg-icon,.btn.btn-active-white:active:not(.btn-active) i,.btn.btn-active-white:focus:not(.btn-active) .svg-icon,.btn.btn-active-white:focus:not(.btn-active) i,.btn.btn-active-white:hover:not(.btn-active) .svg-icon,.btn.btn-active-white:hover:not(.btn-active) i,.show>.btn.btn-active-white .svg-icon,.show>.btn.btn-active-white i{color:#6d6d80}.btn-check:active+.btn.btn-active-white.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-white.dropdown-toggle:after,.btn.btn-active-white.active.dropdown-toggle:after,.btn.btn-active-white.show.dropdown-toggle:after,.btn.btn-active-white:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-white:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-white:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-white.dropdown-toggle:after{color:#6d6d80}.btn.btn-light{color:#cdcdde;border-color:#323248;background-color:#323248}.btn.btn-light .svg-icon,.btn.btn-light i{color:#cdcdde}.btn.btn-light.dropdown-toggle:after{color:#cdcdde}.btn-check:active+.btn.btn-light,.btn-check:checked+.btn.btn-light,.btn.btn-light.active,.btn.btn-light.show,.btn.btn-light:active:not(.btn-active),.btn.btn-light:focus:not(.btn-active),.btn.btn-light:hover:not(.btn-active),.show>.btn.btn-light{color:#cdcdde;border-color:#474761;background-color:#474761!important}.btn-check:active+.btn.btn-light .svg-icon,.btn-check:active+.btn.btn-light i,.btn-check:checked+.btn.btn-light .svg-icon,.btn-check:checked+.btn.btn-light i,.btn.btn-light.active .svg-icon,.btn.btn-light.active i,.btn.btn-light.show .svg-icon,.btn.btn-light.show i,.btn.btn-light:active:not(.btn-active) .svg-icon,.btn.btn-light:active:not(.btn-active) i,.btn.btn-light:focus:not(.btn-active) .svg-icon,.btn.btn-light:focus:not(.btn-active) i,.btn.btn-light:hover:not(.btn-active) .svg-icon,.btn.btn-light:hover:not(.btn-active) i,.show>.btn.btn-light .svg-icon,.show>.btn.btn-light i{color:#cdcdde}.btn-check:active+.btn.btn-light.dropdown-toggle:after,.btn-check:checked+.btn.btn-light.dropdown-toggle:after,.btn.btn-light.active.dropdown-toggle:after,.btn.btn-light.show.dropdown-toggle:after,.btn.btn-light:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light.dropdown-toggle:after{color:#cdcdde}.btn.btn-bg-light{border-color:#323248;background-color:#323248}.btn-check:active+.btn.btn-active-light,.btn-check:checked+.btn.btn-active-light,.btn.btn-active-light.active,.btn.btn-active-light.show,.btn.btn-active-light:active:not(.btn-active),.btn.btn-active-light:focus:not(.btn-active),.btn.btn-active-light:hover:not(.btn-active),.show>.btn.btn-active-light{color:#cdcdde;border-color:#323248;background-color:#323248!important}.btn-check:active+.btn.btn-active-light .svg-icon,.btn-check:active+.btn.btn-active-light i,.btn-check:checked+.btn.btn-active-light .svg-icon,.btn-check:checked+.btn.btn-active-light i,.btn.btn-active-light.active .svg-icon,.btn.btn-active-light.active i,.btn.btn-active-light.show .svg-icon,.btn.btn-active-light.show i,.btn.btn-active-light:active:not(.btn-active) .svg-icon,.btn.btn-active-light:active:not(.btn-active) i,.btn.btn-active-light:focus:not(.btn-active) .svg-icon,.btn.btn-active-light:focus:not(.btn-active) i,.btn.btn-active-light:hover:not(.btn-active) .svg-icon,.btn.btn-active-light:hover:not(.btn-active) i,.show>.btn.btn-active-light .svg-icon,.show>.btn.btn-active-light i{color:#cdcdde}.btn-check:active+.btn.btn-active-light.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light.dropdown-toggle:after,.btn.btn-active-light.active.dropdown-toggle:after,.btn.btn-active-light.show.dropdown-toggle:after,.btn.btn-active-light:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light.dropdown-toggle:after{color:#cdcdde}.btn.btn-primary{color:#fff;border-color:#3699ff;background-color:#3699ff}.btn.btn-primary .svg-icon,.btn.btn-primary i{color:#fff}.btn.btn-primary.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-primary,.btn-check:checked+.btn.btn-primary,.btn.btn-primary.active,.btn.btn-primary.show,.btn.btn-primary:active:not(.btn-active),.btn.btn-primary:focus:not(.btn-active),.btn.btn-primary:hover:not(.btn-active),.show>.btn.btn-primary{color:#fff;border-color:#187de4;background-color:#187de4!important}.btn-check:active+.btn.btn-primary .svg-icon,.btn-check:active+.btn.btn-primary i,.btn-check:checked+.btn.btn-primary .svg-icon,.btn-check:checked+.btn.btn-primary i,.btn.btn-primary.active .svg-icon,.btn.btn-primary.active i,.btn.btn-primary.show .svg-icon,.btn.btn-primary.show i,.btn.btn-primary:active:not(.btn-active) .svg-icon,.btn.btn-primary:active:not(.btn-active) i,.btn.btn-primary:focus:not(.btn-active) .svg-icon,.btn.btn-primary:focus:not(.btn-active) i,.btn.btn-primary:hover:not(.btn-active) .svg-icon,.btn.btn-primary:hover:not(.btn-active) i,.show>.btn.btn-primary .svg-icon,.show>.btn.btn-primary i{color:#fff}.btn-check:active+.btn.btn-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-primary.dropdown-toggle:after,.btn.btn-primary.active.dropdown-toggle:after,.btn.btn-primary.show.dropdown-toggle:after,.btn.btn-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-primary.dropdown-toggle:after{color:#fff}.btn.btn-light-primary{color:#3699ff;border-color:#212e48;background-color:#212e48}.btn.btn-light-primary .svg-icon,.btn.btn-light-primary i{color:#3699ff}.btn.btn-light-primary.dropdown-toggle:after{color:#3699ff}.btn-check:active+.btn.btn-light-primary,.btn-check:checked+.btn.btn-light-primary,.btn.btn-light-primary.active,.btn.btn-light-primary.show,.btn.btn-light-primary:active:not(.btn-active),.btn.btn-light-primary:focus:not(.btn-active),.btn.btn-light-primary:hover:not(.btn-active),.show>.btn.btn-light-primary{color:#fff;border-color:#3699ff;background-color:#3699ff!important}.btn-check:active+.btn.btn-light-primary .svg-icon,.btn-check:active+.btn.btn-light-primary i,.btn-check:checked+.btn.btn-light-primary .svg-icon,.btn-check:checked+.btn.btn-light-primary i,.btn.btn-light-primary.active .svg-icon,.btn.btn-light-primary.active i,.btn.btn-light-primary.show .svg-icon,.btn.btn-light-primary.show i,.btn.btn-light-primary:active:not(.btn-active) .svg-icon,.btn.btn-light-primary:active:not(.btn-active) i,.btn.btn-light-primary:focus:not(.btn-active) .svg-icon,.btn.btn-light-primary:focus:not(.btn-active) i,.btn.btn-light-primary:hover:not(.btn-active) .svg-icon,.btn.btn-light-primary:hover:not(.btn-active) i,.show>.btn.btn-light-primary .svg-icon,.show>.btn.btn-light-primary i{color:#fff}.btn-check:active+.btn.btn-light-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-primary.dropdown-toggle:after,.btn.btn-light-primary.active.dropdown-toggle:after,.btn.btn-light-primary.show.dropdown-toggle:after,.btn.btn-light-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-primary.dropdown-toggle:after{color:#fff}.btn.btn-bg-primary{border-color:#3699ff;background-color:#3699ff}.btn-check:active+.btn.btn-active-primary,.btn-check:checked+.btn.btn-active-primary,.btn.btn-active-primary.active,.btn.btn-active-primary.show,.btn.btn-active-primary:active:not(.btn-active),.btn.btn-active-primary:focus:not(.btn-active),.btn.btn-active-primary:hover:not(.btn-active),.show>.btn.btn-active-primary{color:#fff;border-color:#3699ff;background-color:#3699ff!important}.btn-check:active+.btn.btn-active-primary .svg-icon,.btn-check:active+.btn.btn-active-primary i,.btn-check:checked+.btn.btn-active-primary .svg-icon,.btn-check:checked+.btn.btn-active-primary i,.btn.btn-active-primary.active .svg-icon,.btn.btn-active-primary.active i,.btn.btn-active-primary.show .svg-icon,.btn.btn-active-primary.show i,.btn.btn-active-primary:active:not(.btn-active) .svg-icon,.btn.btn-active-primary:active:not(.btn-active) i,.btn.btn-active-primary:focus:not(.btn-active) .svg-icon,.btn.btn-active-primary:focus:not(.btn-active) i,.btn.btn-active-primary:hover:not(.btn-active) .svg-icon,.btn.btn-active-primary:hover:not(.btn-active) i,.show>.btn.btn-active-primary .svg-icon,.show>.btn.btn-active-primary i{color:#fff}.btn-check:active+.btn.btn-active-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-primary.dropdown-toggle:after,.btn.btn-active-primary.active.dropdown-toggle:after,.btn.btn-active-primary.show.dropdown-toggle:after,.btn.btn-active-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-primary.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-primary,.btn-check:checked+.btn.btn-active-light-primary,.btn.btn-active-light-primary.active,.btn.btn-active-light-primary.show,.btn.btn-active-light-primary:active:not(.btn-active),.btn.btn-active-light-primary:focus:not(.btn-active),.btn.btn-active-light-primary:hover:not(.btn-active),.show>.btn.btn-active-light-primary{color:#3699ff;border-color:#212e48;background-color:#212e48!important}.btn-check:active+.btn.btn-active-light-primary .svg-icon,.btn-check:active+.btn.btn-active-light-primary i,.btn-check:checked+.btn.btn-active-light-primary .svg-icon,.btn-check:checked+.btn.btn-active-light-primary i,.btn.btn-active-light-primary.active .svg-icon,.btn.btn-active-light-primary.active i,.btn.btn-active-light-primary.show .svg-icon,.btn.btn-active-light-primary.show i,.btn.btn-active-light-primary:active:not(.btn-active) .svg-icon,.btn.btn-active-light-primary:active:not(.btn-active) i,.btn.btn-active-light-primary:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-primary:focus:not(.btn-active) i,.btn.btn-active-light-primary:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-primary:hover:not(.btn-active) i,.show>.btn.btn-active-light-primary .svg-icon,.show>.btn.btn-active-light-primary i{color:#3699ff}.btn-check:active+.btn.btn-active-light-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-primary.dropdown-toggle:after,.btn.btn-active-light-primary.active.dropdown-toggle:after,.btn.btn-active-light-primary.show.dropdown-toggle:after,.btn.btn-active-light-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-primary.dropdown-toggle:after{color:#3699ff}.btn.btn-active-light-primary.btn-outline:not(.btn-outline-default){border-color:#3699ff!important}.btn.btn-secondary{color:#cdcdde;border-color:#323248;background-color:#323248}.btn.btn-secondary .svg-icon,.btn.btn-secondary i{color:#cdcdde}.btn.btn-secondary.dropdown-toggle:after{color:#cdcdde}.btn-check:active+.btn.btn-secondary,.btn-check:checked+.btn.btn-secondary,.btn.btn-secondary.active,.btn.btn-secondary.show,.btn.btn-secondary:active:not(.btn-active),.btn.btn-secondary:focus:not(.btn-active),.btn.btn-secondary:hover:not(.btn-active),.show>.btn.btn-secondary{color:#cdcdde;border-color:#474761;background-color:#474761!important}.btn-check:active+.btn.btn-secondary .svg-icon,.btn-check:active+.btn.btn-secondary i,.btn-check:checked+.btn.btn-secondary .svg-icon,.btn-check:checked+.btn.btn-secondary i,.btn.btn-secondary.active .svg-icon,.btn.btn-secondary.active i,.btn.btn-secondary.show .svg-icon,.btn.btn-secondary.show i,.btn.btn-secondary:active:not(.btn-active) .svg-icon,.btn.btn-secondary:active:not(.btn-active) i,.btn.btn-secondary:focus:not(.btn-active) .svg-icon,.btn.btn-secondary:focus:not(.btn-active) i,.btn.btn-secondary:hover:not(.btn-active) .svg-icon,.btn.btn-secondary:hover:not(.btn-active) i,.show>.btn.btn-secondary .svg-icon,.show>.btn.btn-secondary i{color:#cdcdde}.btn-check:active+.btn.btn-secondary.dropdown-toggle:after,.btn-check:checked+.btn.btn-secondary.dropdown-toggle:after,.btn.btn-secondary.active.dropdown-toggle:after,.btn.btn-secondary.show.dropdown-toggle:after,.btn.btn-secondary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-secondary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-secondary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-secondary.dropdown-toggle:after{color:#cdcdde}.btn.btn-bg-secondary{border-color:#323248;background-color:#323248}.btn-check:active+.btn.btn-active-secondary,.btn-check:checked+.btn.btn-active-secondary,.btn.btn-active-secondary.active,.btn.btn-active-secondary.show,.btn.btn-active-secondary:active:not(.btn-active),.btn.btn-active-secondary:focus:not(.btn-active),.btn.btn-active-secondary:hover:not(.btn-active),.show>.btn.btn-active-secondary{color:#cdcdde;border-color:#323248;background-color:#323248!important}.btn-check:active+.btn.btn-active-secondary .svg-icon,.btn-check:active+.btn.btn-active-secondary i,.btn-check:checked+.btn.btn-active-secondary .svg-icon,.btn-check:checked+.btn.btn-active-secondary i,.btn.btn-active-secondary.active .svg-icon,.btn.btn-active-secondary.active i,.btn.btn-active-secondary.show .svg-icon,.btn.btn-active-secondary.show i,.btn.btn-active-secondary:active:not(.btn-active) .svg-icon,.btn.btn-active-secondary:active:not(.btn-active) i,.btn.btn-active-secondary:focus:not(.btn-active) .svg-icon,.btn.btn-active-secondary:focus:not(.btn-active) i,.btn.btn-active-secondary:hover:not(.btn-active) .svg-icon,.btn.btn-active-secondary:hover:not(.btn-active) i,.show>.btn.btn-active-secondary .svg-icon,.show>.btn.btn-active-secondary i{color:#cdcdde}.btn-check:active+.btn.btn-active-secondary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-secondary.dropdown-toggle:after,.btn.btn-active-secondary.active.dropdown-toggle:after,.btn.btn-active-secondary.show.dropdown-toggle:after,.btn.btn-active-secondary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-secondary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-secondary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-secondary.dropdown-toggle:after{color:#cdcdde}.btn.btn-success{color:#fff;border-color:#0bb783;background-color:#0bb783}.btn.btn-success .svg-icon,.btn.btn-success i{color:#fff}.btn.btn-success.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-success,.btn-check:checked+.btn.btn-success,.btn.btn-success.active,.btn.btn-success.show,.btn.btn-success:active:not(.btn-active),.btn.btn-success:focus:not(.btn-active),.btn.btn-success:hover:not(.btn-active),.show>.btn.btn-success{color:#fff;border-color:#04aa77;background-color:#04aa77!important}.btn-check:active+.btn.btn-success .svg-icon,.btn-check:active+.btn.btn-success i,.btn-check:checked+.btn.btn-success .svg-icon,.btn-check:checked+.btn.btn-success i,.btn.btn-success.active .svg-icon,.btn.btn-success.active i,.btn.btn-success.show .svg-icon,.btn.btn-success.show i,.btn.btn-success:active:not(.btn-active) .svg-icon,.btn.btn-success:active:not(.btn-active) i,.btn.btn-success:focus:not(.btn-active) .svg-icon,.btn.btn-success:focus:not(.btn-active) i,.btn.btn-success:hover:not(.btn-active) .svg-icon,.btn.btn-success:hover:not(.btn-active) i,.show>.btn.btn-success .svg-icon,.show>.btn.btn-success i{color:#fff}.btn-check:active+.btn.btn-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-success.dropdown-toggle:after,.btn.btn-success.active.dropdown-toggle:after,.btn.btn-success.show.dropdown-toggle:after,.btn.btn-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-success.dropdown-toggle:after{color:#fff}.btn.btn-light-success{color:#0bb783;border-color:#1c3238;background-color:#1c3238}.btn.btn-light-success .svg-icon,.btn.btn-light-success i{color:#0bb783}.btn.btn-light-success.dropdown-toggle:after{color:#0bb783}.btn-check:active+.btn.btn-light-success,.btn-check:checked+.btn.btn-light-success,.btn.btn-light-success.active,.btn.btn-light-success.show,.btn.btn-light-success:active:not(.btn-active),.btn.btn-light-success:focus:not(.btn-active),.btn.btn-light-success:hover:not(.btn-active),.show>.btn.btn-light-success{color:#fff;border-color:#0bb783;background-color:#0bb783!important}.btn-check:active+.btn.btn-light-success .svg-icon,.btn-check:active+.btn.btn-light-success i,.btn-check:checked+.btn.btn-light-success .svg-icon,.btn-check:checked+.btn.btn-light-success i,.btn.btn-light-success.active .svg-icon,.btn.btn-light-success.active i,.btn.btn-light-success.show .svg-icon,.btn.btn-light-success.show i,.btn.btn-light-success:active:not(.btn-active) .svg-icon,.btn.btn-light-success:active:not(.btn-active) i,.btn.btn-light-success:focus:not(.btn-active) .svg-icon,.btn.btn-light-success:focus:not(.btn-active) i,.btn.btn-light-success:hover:not(.btn-active) .svg-icon,.btn.btn-light-success:hover:not(.btn-active) i,.show>.btn.btn-light-success .svg-icon,.show>.btn.btn-light-success i{color:#fff}.btn-check:active+.btn.btn-light-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-success.dropdown-toggle:after,.btn.btn-light-success.active.dropdown-toggle:after,.btn.btn-light-success.show.dropdown-toggle:after,.btn.btn-light-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-success.dropdown-toggle:after{color:#fff}.btn.btn-bg-success{border-color:#0bb783;background-color:#0bb783}.btn-check:active+.btn.btn-active-success,.btn-check:checked+.btn.btn-active-success,.btn.btn-active-success.active,.btn.btn-active-success.show,.btn.btn-active-success:active:not(.btn-active),.btn.btn-active-success:focus:not(.btn-active),.btn.btn-active-success:hover:not(.btn-active),.show>.btn.btn-active-success{color:#fff;border-color:#0bb783;background-color:#0bb783!important}.btn-check:active+.btn.btn-active-success .svg-icon,.btn-check:active+.btn.btn-active-success i,.btn-check:checked+.btn.btn-active-success .svg-icon,.btn-check:checked+.btn.btn-active-success i,.btn.btn-active-success.active .svg-icon,.btn.btn-active-success.active i,.btn.btn-active-success.show .svg-icon,.btn.btn-active-success.show i,.btn.btn-active-success:active:not(.btn-active) .svg-icon,.btn.btn-active-success:active:not(.btn-active) i,.btn.btn-active-success:focus:not(.btn-active) .svg-icon,.btn.btn-active-success:focus:not(.btn-active) i,.btn.btn-active-success:hover:not(.btn-active) .svg-icon,.btn.btn-active-success:hover:not(.btn-active) i,.show>.btn.btn-active-success .svg-icon,.show>.btn.btn-active-success i{color:#fff}.btn-check:active+.btn.btn-active-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-success.dropdown-toggle:after,.btn.btn-active-success.active.dropdown-toggle:after,.btn.btn-active-success.show.dropdown-toggle:after,.btn.btn-active-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-success.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-success,.btn-check:checked+.btn.btn-active-light-success,.btn.btn-active-light-success.active,.btn.btn-active-light-success.show,.btn.btn-active-light-success:active:not(.btn-active),.btn.btn-active-light-success:focus:not(.btn-active),.btn.btn-active-light-success:hover:not(.btn-active),.show>.btn.btn-active-light-success{color:#0bb783;border-color:#1c3238;background-color:#1c3238!important}.btn-check:active+.btn.btn-active-light-success .svg-icon,.btn-check:active+.btn.btn-active-light-success i,.btn-check:checked+.btn.btn-active-light-success .svg-icon,.btn-check:checked+.btn.btn-active-light-success i,.btn.btn-active-light-success.active .svg-icon,.btn.btn-active-light-success.active i,.btn.btn-active-light-success.show .svg-icon,.btn.btn-active-light-success.show i,.btn.btn-active-light-success:active:not(.btn-active) .svg-icon,.btn.btn-active-light-success:active:not(.btn-active) i,.btn.btn-active-light-success:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-success:focus:not(.btn-active) i,.btn.btn-active-light-success:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-success:hover:not(.btn-active) i,.show>.btn.btn-active-light-success .svg-icon,.show>.btn.btn-active-light-success i{color:#0bb783}.btn-check:active+.btn.btn-active-light-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-success.dropdown-toggle:after,.btn.btn-active-light-success.active.dropdown-toggle:after,.btn.btn-active-light-success.show.dropdown-toggle:after,.btn.btn-active-light-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-success.dropdown-toggle:after{color:#0bb783}.btn.btn-active-light-success.btn-outline:not(.btn-outline-default){border-color:#0bb783!important}.btn.btn-info{color:#fff;border-color:#8950fc;background-color:#8950fc}.btn.btn-info .svg-icon,.btn.btn-info i{color:#fff}.btn.btn-info.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-info,.btn-check:checked+.btn.btn-info,.btn.btn-info.active,.btn.btn-info.show,.btn.btn-info:active:not(.btn-active),.btn.btn-info:focus:not(.btn-active),.btn.btn-info:hover:not(.btn-active),.show>.btn.btn-info{color:#fff;border-color:#7337ee;background-color:#7337ee!important}.btn-check:active+.btn.btn-info .svg-icon,.btn-check:active+.btn.btn-info i,.btn-check:checked+.btn.btn-info .svg-icon,.btn-check:checked+.btn.btn-info i,.btn.btn-info.active .svg-icon,.btn.btn-info.active i,.btn.btn-info.show .svg-icon,.btn.btn-info.show i,.btn.btn-info:active:not(.btn-active) .svg-icon,.btn.btn-info:active:not(.btn-active) i,.btn.btn-info:focus:not(.btn-active) .svg-icon,.btn.btn-info:focus:not(.btn-active) i,.btn.btn-info:hover:not(.btn-active) .svg-icon,.btn.btn-info:hover:not(.btn-active) i,.show>.btn.btn-info .svg-icon,.show>.btn.btn-info i{color:#fff}.btn-check:active+.btn.btn-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-info.dropdown-toggle:after,.btn.btn-info.active.dropdown-toggle:after,.btn.btn-info.show.dropdown-toggle:after,.btn.btn-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-info.dropdown-toggle:after{color:#fff}.btn.btn-light-info{color:#8950fc;border-color:#2f264f;background-color:#2f264f}.btn.btn-light-info .svg-icon,.btn.btn-light-info i{color:#8950fc}.btn.btn-light-info.dropdown-toggle:after{color:#8950fc}.btn-check:active+.btn.btn-light-info,.btn-check:checked+.btn.btn-light-info,.btn.btn-light-info.active,.btn.btn-light-info.show,.btn.btn-light-info:active:not(.btn-active),.btn.btn-light-info:focus:not(.btn-active),.btn.btn-light-info:hover:not(.btn-active),.show>.btn.btn-light-info{color:#fff;border-color:#8950fc;background-color:#8950fc!important}.btn-check:active+.btn.btn-light-info .svg-icon,.btn-check:active+.btn.btn-light-info i,.btn-check:checked+.btn.btn-light-info .svg-icon,.btn-check:checked+.btn.btn-light-info i,.btn.btn-light-info.active .svg-icon,.btn.btn-light-info.active i,.btn.btn-light-info.show .svg-icon,.btn.btn-light-info.show i,.btn.btn-light-info:active:not(.btn-active) .svg-icon,.btn.btn-light-info:active:not(.btn-active) i,.btn.btn-light-info:focus:not(.btn-active) .svg-icon,.btn.btn-light-info:focus:not(.btn-active) i,.btn.btn-light-info:hover:not(.btn-active) .svg-icon,.btn.btn-light-info:hover:not(.btn-active) i,.show>.btn.btn-light-info .svg-icon,.show>.btn.btn-light-info i{color:#fff}.btn-check:active+.btn.btn-light-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-info.dropdown-toggle:after,.btn.btn-light-info.active.dropdown-toggle:after,.btn.btn-light-info.show.dropdown-toggle:after,.btn.btn-light-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-info.dropdown-toggle:after{color:#fff}.btn.btn-bg-info{border-color:#8950fc;background-color:#8950fc}.btn-check:active+.btn.btn-active-info,.btn-check:checked+.btn.btn-active-info,.btn.btn-active-info.active,.btn.btn-active-info.show,.btn.btn-active-info:active:not(.btn-active),.btn.btn-active-info:focus:not(.btn-active),.btn.btn-active-info:hover:not(.btn-active),.show>.btn.btn-active-info{color:#fff;border-color:#8950fc;background-color:#8950fc!important}.btn-check:active+.btn.btn-active-info .svg-icon,.btn-check:active+.btn.btn-active-info i,.btn-check:checked+.btn.btn-active-info .svg-icon,.btn-check:checked+.btn.btn-active-info i,.btn.btn-active-info.active .svg-icon,.btn.btn-active-info.active i,.btn.btn-active-info.show .svg-icon,.btn.btn-active-info.show i,.btn.btn-active-info:active:not(.btn-active) .svg-icon,.btn.btn-active-info:active:not(.btn-active) i,.btn.btn-active-info:focus:not(.btn-active) .svg-icon,.btn.btn-active-info:focus:not(.btn-active) i,.btn.btn-active-info:hover:not(.btn-active) .svg-icon,.btn.btn-active-info:hover:not(.btn-active) i,.show>.btn.btn-active-info .svg-icon,.show>.btn.btn-active-info i{color:#fff}.btn-check:active+.btn.btn-active-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-info.dropdown-toggle:after,.btn.btn-active-info.active.dropdown-toggle:after,.btn.btn-active-info.show.dropdown-toggle:after,.btn.btn-active-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-info.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-info,.btn-check:checked+.btn.btn-active-light-info,.btn.btn-active-light-info.active,.btn.btn-active-light-info.show,.btn.btn-active-light-info:active:not(.btn-active),.btn.btn-active-light-info:focus:not(.btn-active),.btn.btn-active-light-info:hover:not(.btn-active),.show>.btn.btn-active-light-info{color:#8950fc;border-color:#2f264f;background-color:#2f264f!important}.btn-check:active+.btn.btn-active-light-info .svg-icon,.btn-check:active+.btn.btn-active-light-info i,.btn-check:checked+.btn.btn-active-light-info .svg-icon,.btn-check:checked+.btn.btn-active-light-info i,.btn.btn-active-light-info.active .svg-icon,.btn.btn-active-light-info.active i,.btn.btn-active-light-info.show .svg-icon,.btn.btn-active-light-info.show i,.btn.btn-active-light-info:active:not(.btn-active) .svg-icon,.btn.btn-active-light-info:active:not(.btn-active) i,.btn.btn-active-light-info:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-info:focus:not(.btn-active) i,.btn.btn-active-light-info:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-info:hover:not(.btn-active) i,.show>.btn.btn-active-light-info .svg-icon,.show>.btn.btn-active-light-info i{color:#8950fc}.btn-check:active+.btn.btn-active-light-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-info.dropdown-toggle:after,.btn.btn-active-light-info.active.dropdown-toggle:after,.btn.btn-active-light-info.show.dropdown-toggle:after,.btn.btn-active-light-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-info.dropdown-toggle:after{color:#8950fc}.btn.btn-active-light-info.btn-outline:not(.btn-outline-default){border-color:#8950fc!important}.btn.btn-warning{color:#fff;border-color:#ffa800;background-color:#ffa800}.btn.btn-warning .svg-icon,.btn.btn-warning i{color:#fff}.btn.btn-warning.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-warning,.btn-check:checked+.btn.btn-warning,.btn.btn-warning.active,.btn.btn-warning.show,.btn.btn-warning:active:not(.btn-active),.btn.btn-warning:focus:not(.btn-active),.btn.btn-warning:hover:not(.btn-active),.show>.btn.btn-warning{color:#fff;border-color:#ee9d01;background-color:#ee9d01!important}.btn-check:active+.btn.btn-warning .svg-icon,.btn-check:active+.btn.btn-warning i,.btn-check:checked+.btn.btn-warning .svg-icon,.btn-check:checked+.btn.btn-warning i,.btn.btn-warning.active .svg-icon,.btn.btn-warning.active i,.btn.btn-warning.show .svg-icon,.btn.btn-warning.show i,.btn.btn-warning:active:not(.btn-active) .svg-icon,.btn.btn-warning:active:not(.btn-active) i,.btn.btn-warning:focus:not(.btn-active) .svg-icon,.btn.btn-warning:focus:not(.btn-active) i,.btn.btn-warning:hover:not(.btn-active) .svg-icon,.btn.btn-warning:hover:not(.btn-active) i,.show>.btn.btn-warning .svg-icon,.show>.btn.btn-warning i{color:#fff}.btn-check:active+.btn.btn-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-warning.dropdown-toggle:after,.btn.btn-warning.active.dropdown-toggle:after,.btn.btn-warning.show.dropdown-toggle:after,.btn.btn-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-warning.dropdown-toggle:after{color:#fff}.btn.btn-light-warning{color:#ffa800;border-color:#392f28;background-color:#392f28}.btn.btn-light-warning .svg-icon,.btn.btn-light-warning i{color:#ffa800}.btn.btn-light-warning.dropdown-toggle:after{color:#ffa800}.btn-check:active+.btn.btn-light-warning,.btn-check:checked+.btn.btn-light-warning,.btn.btn-light-warning.active,.btn.btn-light-warning.show,.btn.btn-light-warning:active:not(.btn-active),.btn.btn-light-warning:focus:not(.btn-active),.btn.btn-light-warning:hover:not(.btn-active),.show>.btn.btn-light-warning{color:#fff;border-color:#ffa800;background-color:#ffa800!important}.btn-check:active+.btn.btn-light-warning .svg-icon,.btn-check:active+.btn.btn-light-warning i,.btn-check:checked+.btn.btn-light-warning .svg-icon,.btn-check:checked+.btn.btn-light-warning i,.btn.btn-light-warning.active .svg-icon,.btn.btn-light-warning.active i,.btn.btn-light-warning.show .svg-icon,.btn.btn-light-warning.show i,.btn.btn-light-warning:active:not(.btn-active) .svg-icon,.btn.btn-light-warning:active:not(.btn-active) i,.btn.btn-light-warning:focus:not(.btn-active) .svg-icon,.btn.btn-light-warning:focus:not(.btn-active) i,.btn.btn-light-warning:hover:not(.btn-active) .svg-icon,.btn.btn-light-warning:hover:not(.btn-active) i,.show>.btn.btn-light-warning .svg-icon,.show>.btn.btn-light-warning i{color:#fff}.btn-check:active+.btn.btn-light-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-warning.dropdown-toggle:after,.btn.btn-light-warning.active.dropdown-toggle:after,.btn.btn-light-warning.show.dropdown-toggle:after,.btn.btn-light-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-warning.dropdown-toggle:after{color:#fff}.btn.btn-bg-warning{border-color:#ffa800;background-color:#ffa800}.btn-check:active+.btn.btn-active-warning,.btn-check:checked+.btn.btn-active-warning,.btn.btn-active-warning.active,.btn.btn-active-warning.show,.btn.btn-active-warning:active:not(.btn-active),.btn.btn-active-warning:focus:not(.btn-active),.btn.btn-active-warning:hover:not(.btn-active),.show>.btn.btn-active-warning{color:#fff;border-color:#ffa800;background-color:#ffa800!important}.btn-check:active+.btn.btn-active-warning .svg-icon,.btn-check:active+.btn.btn-active-warning i,.btn-check:checked+.btn.btn-active-warning .svg-icon,.btn-check:checked+.btn.btn-active-warning i,.btn.btn-active-warning.active .svg-icon,.btn.btn-active-warning.active i,.btn.btn-active-warning.show .svg-icon,.btn.btn-active-warning.show i,.btn.btn-active-warning:active:not(.btn-active) .svg-icon,.btn.btn-active-warning:active:not(.btn-active) i,.btn.btn-active-warning:focus:not(.btn-active) .svg-icon,.btn.btn-active-warning:focus:not(.btn-active) i,.btn.btn-active-warning:hover:not(.btn-active) .svg-icon,.btn.btn-active-warning:hover:not(.btn-active) i,.show>.btn.btn-active-warning .svg-icon,.show>.btn.btn-active-warning i{color:#fff}.btn-check:active+.btn.btn-active-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-warning.dropdown-toggle:after,.btn.btn-active-warning.active.dropdown-toggle:after,.btn.btn-active-warning.show.dropdown-toggle:after,.btn.btn-active-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-warning.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-warning,.btn-check:checked+.btn.btn-active-light-warning,.btn.btn-active-light-warning.active,.btn.btn-active-light-warning.show,.btn.btn-active-light-warning:active:not(.btn-active),.btn.btn-active-light-warning:focus:not(.btn-active),.btn.btn-active-light-warning:hover:not(.btn-active),.show>.btn.btn-active-light-warning{color:#ffa800;border-color:#392f28;background-color:#392f28!important}.btn-check:active+.btn.btn-active-light-warning .svg-icon,.btn-check:active+.btn.btn-active-light-warning i,.btn-check:checked+.btn.btn-active-light-warning .svg-icon,.btn-check:checked+.btn.btn-active-light-warning i,.btn.btn-active-light-warning.active .svg-icon,.btn.btn-active-light-warning.active i,.btn.btn-active-light-warning.show .svg-icon,.btn.btn-active-light-warning.show i,.btn.btn-active-light-warning:active:not(.btn-active) .svg-icon,.btn.btn-active-light-warning:active:not(.btn-active) i,.btn.btn-active-light-warning:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-warning:focus:not(.btn-active) i,.btn.btn-active-light-warning:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-warning:hover:not(.btn-active) i,.show>.btn.btn-active-light-warning .svg-icon,.show>.btn.btn-active-light-warning i{color:#ffa800}.btn-check:active+.btn.btn-active-light-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-warning.dropdown-toggle:after,.btn.btn-active-light-warning.active.dropdown-toggle:after,.btn.btn-active-light-warning.show.dropdown-toggle:after,.btn.btn-active-light-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-warning.dropdown-toggle:after{color:#ffa800}.btn.btn-active-light-warning.btn-outline:not(.btn-outline-default){border-color:#ffa800!important}.btn.btn-danger{color:#fff;border-color:#f64e60;background-color:#f64e60}.btn.btn-danger .svg-icon,.btn.btn-danger i{color:#fff}.btn.btn-danger.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-danger,.btn-check:checked+.btn.btn-danger,.btn.btn-danger.active,.btn.btn-danger.show,.btn.btn-danger:active:not(.btn-active),.btn.btn-danger:focus:not(.btn-active),.btn.btn-danger:hover:not(.btn-active),.show>.btn.btn-danger{color:#fff;border-color:#ee2d41;background-color:#ee2d41!important}.btn-check:active+.btn.btn-danger .svg-icon,.btn-check:active+.btn.btn-danger i,.btn-check:checked+.btn.btn-danger .svg-icon,.btn-check:checked+.btn.btn-danger i,.btn.btn-danger.active .svg-icon,.btn.btn-danger.active i,.btn.btn-danger.show .svg-icon,.btn.btn-danger.show i,.btn.btn-danger:active:not(.btn-active) .svg-icon,.btn.btn-danger:active:not(.btn-active) i,.btn.btn-danger:focus:not(.btn-active) .svg-icon,.btn.btn-danger:focus:not(.btn-active) i,.btn.btn-danger:hover:not(.btn-active) .svg-icon,.btn.btn-danger:hover:not(.btn-active) i,.show>.btn.btn-danger .svg-icon,.show>.btn.btn-danger i{color:#fff}.btn-check:active+.btn.btn-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-danger.dropdown-toggle:after,.btn.btn-danger.active.dropdown-toggle:after,.btn.btn-danger.show.dropdown-toggle:after,.btn.btn-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-danger.dropdown-toggle:after{color:#fff}.btn.btn-light-danger{color:#f64e60;border-color:#3a2434;background-color:#3a2434}.btn.btn-light-danger .svg-icon,.btn.btn-light-danger i{color:#f64e60}.btn.btn-light-danger.dropdown-toggle:after{color:#f64e60}.btn-check:active+.btn.btn-light-danger,.btn-check:checked+.btn.btn-light-danger,.btn.btn-light-danger.active,.btn.btn-light-danger.show,.btn.btn-light-danger:active:not(.btn-active),.btn.btn-light-danger:focus:not(.btn-active),.btn.btn-light-danger:hover:not(.btn-active),.show>.btn.btn-light-danger{color:#fff;border-color:#f64e60;background-color:#f64e60!important}.btn-check:active+.btn.btn-light-danger .svg-icon,.btn-check:active+.btn.btn-light-danger i,.btn-check:checked+.btn.btn-light-danger .svg-icon,.btn-check:checked+.btn.btn-light-danger i,.btn.btn-light-danger.active .svg-icon,.btn.btn-light-danger.active i,.btn.btn-light-danger.show .svg-icon,.btn.btn-light-danger.show i,.btn.btn-light-danger:active:not(.btn-active) .svg-icon,.btn.btn-light-danger:active:not(.btn-active) i,.btn.btn-light-danger:focus:not(.btn-active) .svg-icon,.btn.btn-light-danger:focus:not(.btn-active) i,.btn.btn-light-danger:hover:not(.btn-active) .svg-icon,.btn.btn-light-danger:hover:not(.btn-active) i,.show>.btn.btn-light-danger .svg-icon,.show>.btn.btn-light-danger i{color:#fff}.btn-check:active+.btn.btn-light-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-danger.dropdown-toggle:after,.btn.btn-light-danger.active.dropdown-toggle:after,.btn.btn-light-danger.show.dropdown-toggle:after,.btn.btn-light-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-danger.dropdown-toggle:after{color:#fff}.btn.btn-bg-danger{border-color:#f64e60;background-color:#f64e60}.btn-check:active+.btn.btn-active-danger,.btn-check:checked+.btn.btn-active-danger,.btn.btn-active-danger.active,.btn.btn-active-danger.show,.btn.btn-active-danger:active:not(.btn-active),.btn.btn-active-danger:focus:not(.btn-active),.btn.btn-active-danger:hover:not(.btn-active),.show>.btn.btn-active-danger{color:#fff;border-color:#f64e60;background-color:#f64e60!important}.btn-check:active+.btn.btn-active-danger .svg-icon,.btn-check:active+.btn.btn-active-danger i,.btn-check:checked+.btn.btn-active-danger .svg-icon,.btn-check:checked+.btn.btn-active-danger i,.btn.btn-active-danger.active .svg-icon,.btn.btn-active-danger.active i,.btn.btn-active-danger.show .svg-icon,.btn.btn-active-danger.show i,.btn.btn-active-danger:active:not(.btn-active) .svg-icon,.btn.btn-active-danger:active:not(.btn-active) i,.btn.btn-active-danger:focus:not(.btn-active) .svg-icon,.btn.btn-active-danger:focus:not(.btn-active) i,.btn.btn-active-danger:hover:not(.btn-active) .svg-icon,.btn.btn-active-danger:hover:not(.btn-active) i,.show>.btn.btn-active-danger .svg-icon,.show>.btn.btn-active-danger i{color:#fff}.btn-check:active+.btn.btn-active-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-danger.dropdown-toggle:after,.btn.btn-active-danger.active.dropdown-toggle:after,.btn.btn-active-danger.show.dropdown-toggle:after,.btn.btn-active-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-danger.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-light-danger,.btn-check:checked+.btn.btn-active-light-danger,.btn.btn-active-light-danger.active,.btn.btn-active-light-danger.show,.btn.btn-active-light-danger:active:not(.btn-active),.btn.btn-active-light-danger:focus:not(.btn-active),.btn.btn-active-light-danger:hover:not(.btn-active),.show>.btn.btn-active-light-danger{color:#f64e60;border-color:#3a2434;background-color:#3a2434!important}.btn-check:active+.btn.btn-active-light-danger .svg-icon,.btn-check:active+.btn.btn-active-light-danger i,.btn-check:checked+.btn.btn-active-light-danger .svg-icon,.btn-check:checked+.btn.btn-active-light-danger i,.btn.btn-active-light-danger.active .svg-icon,.btn.btn-active-light-danger.active i,.btn.btn-active-light-danger.show .svg-icon,.btn.btn-active-light-danger.show i,.btn.btn-active-light-danger:active:not(.btn-active) .svg-icon,.btn.btn-active-light-danger:active:not(.btn-active) i,.btn.btn-active-light-danger:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-danger:focus:not(.btn-active) i,.btn.btn-active-light-danger:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-danger:hover:not(.btn-active) i,.show>.btn.btn-active-light-danger .svg-icon,.show>.btn.btn-active-light-danger i{color:#f64e60}.btn-check:active+.btn.btn-active-light-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-danger.dropdown-toggle:after,.btn.btn-active-light-danger.active.dropdown-toggle:after,.btn.btn-active-light-danger.show.dropdown-toggle:after,.btn.btn-active-light-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-danger.dropdown-toggle:after{color:#f64e60}.btn.btn-active-light-danger.btn-outline:not(.btn-outline-default){border-color:#f64e60!important}.btn.btn-dark{color:#1b1b29;border-color:#fff;background-color:#fff}.btn.btn-dark .svg-icon,.btn.btn-dark i{color:#1b1b29}.btn.btn-dark.dropdown-toggle:after{color:#1b1b29}.btn-check:active+.btn.btn-dark,.btn-check:checked+.btn.btn-dark,.btn.btn-dark.active,.btn.btn-dark.show,.btn.btn-dark:active:not(.btn-active),.btn.btn-dark:focus:not(.btn-active),.btn.btn-dark:hover:not(.btn-active),.show>.btn.btn-dark{color:#1b1b29;border-color:#e8e8e8;background-color:#e8e8e8!important}.btn-check:active+.btn.btn-dark .svg-icon,.btn-check:active+.btn.btn-dark i,.btn-check:checked+.btn.btn-dark .svg-icon,.btn-check:checked+.btn.btn-dark i,.btn.btn-dark.active .svg-icon,.btn.btn-dark.active i,.btn.btn-dark.show .svg-icon,.btn.btn-dark.show i,.btn.btn-dark:active:not(.btn-active) .svg-icon,.btn.btn-dark:active:not(.btn-active) i,.btn.btn-dark:focus:not(.btn-active) .svg-icon,.btn.btn-dark:focus:not(.btn-active) i,.btn.btn-dark:hover:not(.btn-active) .svg-icon,.btn.btn-dark:hover:not(.btn-active) i,.show>.btn.btn-dark .svg-icon,.show>.btn.btn-dark i{color:#1b1b29}.btn-check:active+.btn.btn-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-dark.dropdown-toggle:after,.btn.btn-dark.active.dropdown-toggle:after,.btn.btn-dark.show.dropdown-toggle:after,.btn.btn-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-dark.dropdown-toggle:after{color:#1b1b29}.btn.btn-light-dark{color:#fff;border-color:#2b2b40;background-color:#2b2b40}.btn.btn-light-dark .svg-icon,.btn.btn-light-dark i{color:#fff}.btn.btn-light-dark.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-light-dark,.btn-check:checked+.btn.btn-light-dark,.btn.btn-light-dark.active,.btn.btn-light-dark.show,.btn.btn-light-dark:active:not(.btn-active),.btn.btn-light-dark:focus:not(.btn-active),.btn.btn-light-dark:hover:not(.btn-active),.show>.btn.btn-light-dark{color:#1b1b29;border-color:#fff;background-color:#fff!important}.btn-check:active+.btn.btn-light-dark .svg-icon,.btn-check:active+.btn.btn-light-dark i,.btn-check:checked+.btn.btn-light-dark .svg-icon,.btn-check:checked+.btn.btn-light-dark i,.btn.btn-light-dark.active .svg-icon,.btn.btn-light-dark.active i,.btn.btn-light-dark.show .svg-icon,.btn.btn-light-dark.show i,.btn.btn-light-dark:active:not(.btn-active) .svg-icon,.btn.btn-light-dark:active:not(.btn-active) i,.btn.btn-light-dark:focus:not(.btn-active) .svg-icon,.btn.btn-light-dark:focus:not(.btn-active) i,.btn.btn-light-dark:hover:not(.btn-active) .svg-icon,.btn.btn-light-dark:hover:not(.btn-active) i,.show>.btn.btn-light-dark .svg-icon,.show>.btn.btn-light-dark i{color:#1b1b29}.btn-check:active+.btn.btn-light-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-dark.dropdown-toggle:after,.btn.btn-light-dark.active.dropdown-toggle:after,.btn.btn-light-dark.show.dropdown-toggle:after,.btn.btn-light-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-dark.dropdown-toggle:after{color:#1b1b29}.btn.btn-bg-dark{border-color:#fff;background-color:#fff}.btn-check:active+.btn.btn-active-dark,.btn-check:checked+.btn.btn-active-dark,.btn.btn-active-dark.active,.btn.btn-active-dark.show,.btn.btn-active-dark:active:not(.btn-active),.btn.btn-active-dark:focus:not(.btn-active),.btn.btn-active-dark:hover:not(.btn-active),.show>.btn.btn-active-dark{color:#1b1b29;border-color:#fff;background-color:#fff!important}.btn-check:active+.btn.btn-active-dark .svg-icon,.btn-check:active+.btn.btn-active-dark i,.btn-check:checked+.btn.btn-active-dark .svg-icon,.btn-check:checked+.btn.btn-active-dark i,.btn.btn-active-dark.active .svg-icon,.btn.btn-active-dark.active i,.btn.btn-active-dark.show .svg-icon,.btn.btn-active-dark.show i,.btn.btn-active-dark:active:not(.btn-active) .svg-icon,.btn.btn-active-dark:active:not(.btn-active) i,.btn.btn-active-dark:focus:not(.btn-active) .svg-icon,.btn.btn-active-dark:focus:not(.btn-active) i,.btn.btn-active-dark:hover:not(.btn-active) .svg-icon,.btn.btn-active-dark:hover:not(.btn-active) i,.show>.btn.btn-active-dark .svg-icon,.show>.btn.btn-active-dark i{color:#1b1b29}.btn-check:active+.btn.btn-active-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-dark.dropdown-toggle:after,.btn.btn-active-dark.active.dropdown-toggle:after,.btn.btn-active-dark.show.dropdown-toggle:after,.btn.btn-active-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-dark.dropdown-toggle:after{color:#1b1b29}.btn-check:active+.btn.btn-active-light-dark,.btn-check:checked+.btn.btn-active-light-dark,.btn.btn-active-light-dark.active,.btn.btn-active-light-dark.show,.btn.btn-active-light-dark:active:not(.btn-active),.btn.btn-active-light-dark:focus:not(.btn-active),.btn.btn-active-light-dark:hover:not(.btn-active),.show>.btn.btn-active-light-dark{color:#fff;border-color:#2b2b40;background-color:#2b2b40!important}.btn-check:active+.btn.btn-active-light-dark .svg-icon,.btn-check:active+.btn.btn-active-light-dark i,.btn-check:checked+.btn.btn-active-light-dark .svg-icon,.btn-check:checked+.btn.btn-active-light-dark i,.btn.btn-active-light-dark.active .svg-icon,.btn.btn-active-light-dark.active i,.btn.btn-active-light-dark.show .svg-icon,.btn.btn-active-light-dark.show i,.btn.btn-active-light-dark:active:not(.btn-active) .svg-icon,.btn.btn-active-light-dark:active:not(.btn-active) i,.btn.btn-active-light-dark:focus:not(.btn-active) .svg-icon,.btn.btn-active-light-dark:focus:not(.btn-active) i,.btn.btn-active-light-dark:hover:not(.btn-active) .svg-icon,.btn.btn-active-light-dark:hover:not(.btn-active) i,.show>.btn.btn-active-light-dark .svg-icon,.show>.btn.btn-active-light-dark i{color:#fff}.btn-check:active+.btn.btn-active-light-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-light-dark.dropdown-toggle:after,.btn.btn-active-light-dark.active.dropdown-toggle:after,.btn.btn-active-light-dark.show.dropdown-toggle:after,.btn.btn-active-light-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-light-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-light-dark.dropdown-toggle:after{color:#fff}.btn.btn-active-light-dark.btn-outline:not(.btn-outline-default){border-color:#fff!important}.btn.btn-color-white{color:#fff}.btn.btn-color-white .svg-icon,.btn.btn-color-white i{color:#fff}.btn.btn-color-white.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-color-white,.btn-check:checked+.btn.btn-active-color-white,.btn.btn-active-color-white.active,.btn.btn-active-color-white.show,.btn.btn-active-color-white:active:not(.btn-active),.btn.btn-active-color-white:focus:not(.btn-active),.btn.btn-active-color-white:hover:not(.btn-active),.show>.btn.btn-active-color-white{color:#fff}.btn-check:active+.btn.btn-active-color-white .svg-icon,.btn-check:active+.btn.btn-active-color-white i,.btn-check:checked+.btn.btn-active-color-white .svg-icon,.btn-check:checked+.btn.btn-active-color-white i,.btn.btn-active-color-white.active .svg-icon,.btn.btn-active-color-white.active i,.btn.btn-active-color-white.show .svg-icon,.btn.btn-active-color-white.show i,.btn.btn-active-color-white:active:not(.btn-active) .svg-icon,.btn.btn-active-color-white:active:not(.btn-active) i,.btn.btn-active-color-white:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-white:focus:not(.btn-active) i,.btn.btn-active-color-white:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-white:hover:not(.btn-active) i,.show>.btn.btn-active-color-white .svg-icon,.show>.btn.btn-active-color-white i{color:#fff}.btn-check:active+.btn.btn-active-color-white.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-white.dropdown-toggle:after,.btn.btn-active-color-white.active.dropdown-toggle:after,.btn.btn-active-color-white.show.dropdown-toggle:after,.btn.btn-active-color-white:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-white:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-white:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-white.dropdown-toggle:after{color:#fff}.btn.btn-icon-white .svg-icon,.btn.btn-icon-white i{color:#fff}.btn.btn-icon-white.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-icon-white .svg-icon,.btn-check:active+.btn.btn-active-icon-white i,.btn-check:checked+.btn.btn-active-icon-white .svg-icon,.btn-check:checked+.btn.btn-active-icon-white i,.btn.btn-active-icon-white.active .svg-icon,.btn.btn-active-icon-white.active i,.btn.btn-active-icon-white.show .svg-icon,.btn.btn-active-icon-white.show i,.btn.btn-active-icon-white:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-white:active:not(.btn-active) i,.btn.btn-active-icon-white:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-white:focus:not(.btn-active) i,.btn.btn-active-icon-white:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-white:hover:not(.btn-active) i,.show>.btn.btn-active-icon-white .svg-icon,.show>.btn.btn-active-icon-white i{color:#fff}.btn-check:active+.btn.btn-active-icon-white.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-white.dropdown-toggle:after,.btn.btn-active-icon-white.active.dropdown-toggle:after,.btn.btn-active-icon-white.show.dropdown-toggle:after,.btn.btn-active-icon-white:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-white:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-white:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-white.dropdown-toggle:after{color:#fff}.btn.btn-text-white{color:#fff}.btn-check:active+.btn.btn-active-text-white,.btn-check:checked+.btn.btn-active-text-white,.btn.btn-active-text-white.active,.btn.btn-active-text-white.show,.btn.btn-active-text-white:active:not(.btn-active),.btn.btn-active-text-white:focus:not(.btn-active),.btn.btn-active-text-white:hover:not(.btn-active),.show>.btn.btn-active-text-white{color:#fff}.btn.btn-color-primary{color:#3699ff}.btn.btn-color-primary .svg-icon,.btn.btn-color-primary i{color:#3699ff}.btn.btn-color-primary.dropdown-toggle:after{color:#3699ff}.btn-check:active+.btn.btn-active-color-primary,.btn-check:checked+.btn.btn-active-color-primary,.btn.btn-active-color-primary.active,.btn.btn-active-color-primary.show,.btn.btn-active-color-primary:active:not(.btn-active),.btn.btn-active-color-primary:focus:not(.btn-active),.btn.btn-active-color-primary:hover:not(.btn-active),.show>.btn.btn-active-color-primary{color:#3699ff}.btn-check:active+.btn.btn-active-color-primary .svg-icon,.btn-check:active+.btn.btn-active-color-primary i,.btn-check:checked+.btn.btn-active-color-primary .svg-icon,.btn-check:checked+.btn.btn-active-color-primary i,.btn.btn-active-color-primary.active .svg-icon,.btn.btn-active-color-primary.active i,.btn.btn-active-color-primary.show .svg-icon,.btn.btn-active-color-primary.show i,.btn.btn-active-color-primary:active:not(.btn-active) .svg-icon,.btn.btn-active-color-primary:active:not(.btn-active) i,.btn.btn-active-color-primary:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-primary:focus:not(.btn-active) i,.btn.btn-active-color-primary:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-primary:hover:not(.btn-active) i,.show>.btn.btn-active-color-primary .svg-icon,.show>.btn.btn-active-color-primary i{color:#3699ff}.btn-check:active+.btn.btn-active-color-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-primary.dropdown-toggle:after,.btn.btn-active-color-primary.active.dropdown-toggle:after,.btn.btn-active-color-primary.show.dropdown-toggle:after,.btn.btn-active-color-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-primary.dropdown-toggle:after{color:#3699ff}.btn.btn-icon-primary .svg-icon,.btn.btn-icon-primary i{color:#3699ff}.btn.btn-icon-primary.dropdown-toggle:after{color:#3699ff}.btn-check:active+.btn.btn-active-icon-primary .svg-icon,.btn-check:active+.btn.btn-active-icon-primary i,.btn-check:checked+.btn.btn-active-icon-primary .svg-icon,.btn-check:checked+.btn.btn-active-icon-primary i,.btn.btn-active-icon-primary.active .svg-icon,.btn.btn-active-icon-primary.active i,.btn.btn-active-icon-primary.show .svg-icon,.btn.btn-active-icon-primary.show i,.btn.btn-active-icon-primary:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-primary:active:not(.btn-active) i,.btn.btn-active-icon-primary:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-primary:focus:not(.btn-active) i,.btn.btn-active-icon-primary:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-primary:hover:not(.btn-active) i,.show>.btn.btn-active-icon-primary .svg-icon,.show>.btn.btn-active-icon-primary i{color:#3699ff}.btn-check:active+.btn.btn-active-icon-primary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-primary.dropdown-toggle:after,.btn.btn-active-icon-primary.active.dropdown-toggle:after,.btn.btn-active-icon-primary.show.dropdown-toggle:after,.btn.btn-active-icon-primary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-primary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-primary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-primary.dropdown-toggle:after{color:#3699ff}.btn.btn-text-primary{color:#3699ff}.btn-check:active+.btn.btn-active-text-primary,.btn-check:checked+.btn.btn-active-text-primary,.btn.btn-active-text-primary.active,.btn.btn-active-text-primary.show,.btn.btn-active-text-primary:active:not(.btn-active),.btn.btn-active-text-primary:focus:not(.btn-active),.btn.btn-active-text-primary:hover:not(.btn-active),.show>.btn.btn-active-text-primary{color:#3699ff}.btn.btn-color-secondary{color:#323248}.btn.btn-color-secondary .svg-icon,.btn.btn-color-secondary i{color:#323248}.btn.btn-color-secondary.dropdown-toggle:after{color:#323248}.btn-check:active+.btn.btn-active-color-secondary,.btn-check:checked+.btn.btn-active-color-secondary,.btn.btn-active-color-secondary.active,.btn.btn-active-color-secondary.show,.btn.btn-active-color-secondary:active:not(.btn-active),.btn.btn-active-color-secondary:focus:not(.btn-active),.btn.btn-active-color-secondary:hover:not(.btn-active),.show>.btn.btn-active-color-secondary{color:#323248}.btn-check:active+.btn.btn-active-color-secondary .svg-icon,.btn-check:active+.btn.btn-active-color-secondary i,.btn-check:checked+.btn.btn-active-color-secondary .svg-icon,.btn-check:checked+.btn.btn-active-color-secondary i,.btn.btn-active-color-secondary.active .svg-icon,.btn.btn-active-color-secondary.active i,.btn.btn-active-color-secondary.show .svg-icon,.btn.btn-active-color-secondary.show i,.btn.btn-active-color-secondary:active:not(.btn-active) .svg-icon,.btn.btn-active-color-secondary:active:not(.btn-active) i,.btn.btn-active-color-secondary:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-secondary:focus:not(.btn-active) i,.btn.btn-active-color-secondary:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-secondary:hover:not(.btn-active) i,.show>.btn.btn-active-color-secondary .svg-icon,.show>.btn.btn-active-color-secondary i{color:#323248}.btn-check:active+.btn.btn-active-color-secondary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-secondary.dropdown-toggle:after,.btn.btn-active-color-secondary.active.dropdown-toggle:after,.btn.btn-active-color-secondary.show.dropdown-toggle:after,.btn.btn-active-color-secondary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-secondary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-secondary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-secondary.dropdown-toggle:after{color:#323248}.btn.btn-icon-secondary .svg-icon,.btn.btn-icon-secondary i{color:#323248}.btn.btn-icon-secondary.dropdown-toggle:after{color:#323248}.btn-check:active+.btn.btn-active-icon-secondary .svg-icon,.btn-check:active+.btn.btn-active-icon-secondary i,.btn-check:checked+.btn.btn-active-icon-secondary .svg-icon,.btn-check:checked+.btn.btn-active-icon-secondary i,.btn.btn-active-icon-secondary.active .svg-icon,.btn.btn-active-icon-secondary.active i,.btn.btn-active-icon-secondary.show .svg-icon,.btn.btn-active-icon-secondary.show i,.btn.btn-active-icon-secondary:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-secondary:active:not(.btn-active) i,.btn.btn-active-icon-secondary:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-secondary:focus:not(.btn-active) i,.btn.btn-active-icon-secondary:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-secondary:hover:not(.btn-active) i,.show>.btn.btn-active-icon-secondary .svg-icon,.show>.btn.btn-active-icon-secondary i{color:#323248}.btn-check:active+.btn.btn-active-icon-secondary.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-secondary.dropdown-toggle:after,.btn.btn-active-icon-secondary.active.dropdown-toggle:after,.btn.btn-active-icon-secondary.show.dropdown-toggle:after,.btn.btn-active-icon-secondary:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-secondary:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-secondary:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-secondary.dropdown-toggle:after{color:#323248}.btn.btn-text-secondary{color:#323248}.btn-check:active+.btn.btn-active-text-secondary,.btn-check:checked+.btn.btn-active-text-secondary,.btn.btn-active-text-secondary.active,.btn.btn-active-text-secondary.show,.btn.btn-active-text-secondary:active:not(.btn-active),.btn.btn-active-text-secondary:focus:not(.btn-active),.btn.btn-active-text-secondary:hover:not(.btn-active),.show>.btn.btn-active-text-secondary{color:#323248}.btn.btn-color-light{color:#323248}.btn.btn-color-light .svg-icon,.btn.btn-color-light i{color:#323248}.btn.btn-color-light.dropdown-toggle:after{color:#323248}.btn-check:active+.btn.btn-active-color-light,.btn-check:checked+.btn.btn-active-color-light,.btn.btn-active-color-light.active,.btn.btn-active-color-light.show,.btn.btn-active-color-light:active:not(.btn-active),.btn.btn-active-color-light:focus:not(.btn-active),.btn.btn-active-color-light:hover:not(.btn-active),.show>.btn.btn-active-color-light{color:#323248}.btn-check:active+.btn.btn-active-color-light .svg-icon,.btn-check:active+.btn.btn-active-color-light i,.btn-check:checked+.btn.btn-active-color-light .svg-icon,.btn-check:checked+.btn.btn-active-color-light i,.btn.btn-active-color-light.active .svg-icon,.btn.btn-active-color-light.active i,.btn.btn-active-color-light.show .svg-icon,.btn.btn-active-color-light.show i,.btn.btn-active-color-light:active:not(.btn-active) .svg-icon,.btn.btn-active-color-light:active:not(.btn-active) i,.btn.btn-active-color-light:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-light:focus:not(.btn-active) i,.btn.btn-active-color-light:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-light:hover:not(.btn-active) i,.show>.btn.btn-active-color-light .svg-icon,.show>.btn.btn-active-color-light i{color:#323248}.btn-check:active+.btn.btn-active-color-light.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-light.dropdown-toggle:after,.btn.btn-active-color-light.active.dropdown-toggle:after,.btn.btn-active-color-light.show.dropdown-toggle:after,.btn.btn-active-color-light:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-light:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-light:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-light.dropdown-toggle:after{color:#323248}.btn.btn-icon-light .svg-icon,.btn.btn-icon-light i{color:#323248}.btn.btn-icon-light.dropdown-toggle:after{color:#323248}.btn-check:active+.btn.btn-active-icon-light .svg-icon,.btn-check:active+.btn.btn-active-icon-light i,.btn-check:checked+.btn.btn-active-icon-light .svg-icon,.btn-check:checked+.btn.btn-active-icon-light i,.btn.btn-active-icon-light.active .svg-icon,.btn.btn-active-icon-light.active i,.btn.btn-active-icon-light.show .svg-icon,.btn.btn-active-icon-light.show i,.btn.btn-active-icon-light:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-light:active:not(.btn-active) i,.btn.btn-active-icon-light:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-light:focus:not(.btn-active) i,.btn.btn-active-icon-light:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-light:hover:not(.btn-active) i,.show>.btn.btn-active-icon-light .svg-icon,.show>.btn.btn-active-icon-light i{color:#323248}.btn-check:active+.btn.btn-active-icon-light.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-light.dropdown-toggle:after,.btn.btn-active-icon-light.active.dropdown-toggle:after,.btn.btn-active-icon-light.show.dropdown-toggle:after,.btn.btn-active-icon-light:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-light:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-light:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-light.dropdown-toggle:after{color:#323248}.btn.btn-text-light{color:#323248}.btn-check:active+.btn.btn-active-text-light,.btn-check:checked+.btn.btn-active-text-light,.btn.btn-active-text-light.active,.btn.btn-active-text-light.show,.btn.btn-active-text-light:active:not(.btn-active),.btn.btn-active-text-light:focus:not(.btn-active),.btn.btn-active-text-light:hover:not(.btn-active),.show>.btn.btn-active-text-light{color:#323248}.btn.btn-color-success{color:#0bb783}.btn.btn-color-success .svg-icon,.btn.btn-color-success i{color:#0bb783}.btn.btn-color-success.dropdown-toggle:after{color:#0bb783}.btn-check:active+.btn.btn-active-color-success,.btn-check:checked+.btn.btn-active-color-success,.btn.btn-active-color-success.active,.btn.btn-active-color-success.show,.btn.btn-active-color-success:active:not(.btn-active),.btn.btn-active-color-success:focus:not(.btn-active),.btn.btn-active-color-success:hover:not(.btn-active),.show>.btn.btn-active-color-success{color:#0bb783}.btn-check:active+.btn.btn-active-color-success .svg-icon,.btn-check:active+.btn.btn-active-color-success i,.btn-check:checked+.btn.btn-active-color-success .svg-icon,.btn-check:checked+.btn.btn-active-color-success i,.btn.btn-active-color-success.active .svg-icon,.btn.btn-active-color-success.active i,.btn.btn-active-color-success.show .svg-icon,.btn.btn-active-color-success.show i,.btn.btn-active-color-success:active:not(.btn-active) .svg-icon,.btn.btn-active-color-success:active:not(.btn-active) i,.btn.btn-active-color-success:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-success:focus:not(.btn-active) i,.btn.btn-active-color-success:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-success:hover:not(.btn-active) i,.show>.btn.btn-active-color-success .svg-icon,.show>.btn.btn-active-color-success i{color:#0bb783}.btn-check:active+.btn.btn-active-color-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-success.dropdown-toggle:after,.btn.btn-active-color-success.active.dropdown-toggle:after,.btn.btn-active-color-success.show.dropdown-toggle:after,.btn.btn-active-color-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-success.dropdown-toggle:after{color:#0bb783}.btn.btn-icon-success .svg-icon,.btn.btn-icon-success i{color:#0bb783}.btn.btn-icon-success.dropdown-toggle:after{color:#0bb783}.btn-check:active+.btn.btn-active-icon-success .svg-icon,.btn-check:active+.btn.btn-active-icon-success i,.btn-check:checked+.btn.btn-active-icon-success .svg-icon,.btn-check:checked+.btn.btn-active-icon-success i,.btn.btn-active-icon-success.active .svg-icon,.btn.btn-active-icon-success.active i,.btn.btn-active-icon-success.show .svg-icon,.btn.btn-active-icon-success.show i,.btn.btn-active-icon-success:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-success:active:not(.btn-active) i,.btn.btn-active-icon-success:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-success:focus:not(.btn-active) i,.btn.btn-active-icon-success:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-success:hover:not(.btn-active) i,.show>.btn.btn-active-icon-success .svg-icon,.show>.btn.btn-active-icon-success i{color:#0bb783}.btn-check:active+.btn.btn-active-icon-success.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-success.dropdown-toggle:after,.btn.btn-active-icon-success.active.dropdown-toggle:after,.btn.btn-active-icon-success.show.dropdown-toggle:after,.btn.btn-active-icon-success:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-success:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-success:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-success.dropdown-toggle:after{color:#0bb783}.btn.btn-text-success{color:#0bb783}.btn-check:active+.btn.btn-active-text-success,.btn-check:checked+.btn.btn-active-text-success,.btn.btn-active-text-success.active,.btn.btn-active-text-success.show,.btn.btn-active-text-success:active:not(.btn-active),.btn.btn-active-text-success:focus:not(.btn-active),.btn.btn-active-text-success:hover:not(.btn-active),.show>.btn.btn-active-text-success{color:#0bb783}.btn.btn-color-info{color:#8950fc}.btn.btn-color-info .svg-icon,.btn.btn-color-info i{color:#8950fc}.btn.btn-color-info.dropdown-toggle:after{color:#8950fc}.btn-check:active+.btn.btn-active-color-info,.btn-check:checked+.btn.btn-active-color-info,.btn.btn-active-color-info.active,.btn.btn-active-color-info.show,.btn.btn-active-color-info:active:not(.btn-active),.btn.btn-active-color-info:focus:not(.btn-active),.btn.btn-active-color-info:hover:not(.btn-active),.show>.btn.btn-active-color-info{color:#8950fc}.btn-check:active+.btn.btn-active-color-info .svg-icon,.btn-check:active+.btn.btn-active-color-info i,.btn-check:checked+.btn.btn-active-color-info .svg-icon,.btn-check:checked+.btn.btn-active-color-info i,.btn.btn-active-color-info.active .svg-icon,.btn.btn-active-color-info.active i,.btn.btn-active-color-info.show .svg-icon,.btn.btn-active-color-info.show i,.btn.btn-active-color-info:active:not(.btn-active) .svg-icon,.btn.btn-active-color-info:active:not(.btn-active) i,.btn.btn-active-color-info:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-info:focus:not(.btn-active) i,.btn.btn-active-color-info:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-info:hover:not(.btn-active) i,.show>.btn.btn-active-color-info .svg-icon,.show>.btn.btn-active-color-info i{color:#8950fc}.btn-check:active+.btn.btn-active-color-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-info.dropdown-toggle:after,.btn.btn-active-color-info.active.dropdown-toggle:after,.btn.btn-active-color-info.show.dropdown-toggle:after,.btn.btn-active-color-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-info.dropdown-toggle:after{color:#8950fc}.btn.btn-icon-info .svg-icon,.btn.btn-icon-info i{color:#8950fc}.btn.btn-icon-info.dropdown-toggle:after{color:#8950fc}.btn-check:active+.btn.btn-active-icon-info .svg-icon,.btn-check:active+.btn.btn-active-icon-info i,.btn-check:checked+.btn.btn-active-icon-info .svg-icon,.btn-check:checked+.btn.btn-active-icon-info i,.btn.btn-active-icon-info.active .svg-icon,.btn.btn-active-icon-info.active i,.btn.btn-active-icon-info.show .svg-icon,.btn.btn-active-icon-info.show i,.btn.btn-active-icon-info:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-info:active:not(.btn-active) i,.btn.btn-active-icon-info:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-info:focus:not(.btn-active) i,.btn.btn-active-icon-info:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-info:hover:not(.btn-active) i,.show>.btn.btn-active-icon-info .svg-icon,.show>.btn.btn-active-icon-info i{color:#8950fc}.btn-check:active+.btn.btn-active-icon-info.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-info.dropdown-toggle:after,.btn.btn-active-icon-info.active.dropdown-toggle:after,.btn.btn-active-icon-info.show.dropdown-toggle:after,.btn.btn-active-icon-info:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-info:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-info:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-info.dropdown-toggle:after{color:#8950fc}.btn.btn-text-info{color:#8950fc}.btn-check:active+.btn.btn-active-text-info,.btn-check:checked+.btn.btn-active-text-info,.btn.btn-active-text-info.active,.btn.btn-active-text-info.show,.btn.btn-active-text-info:active:not(.btn-active),.btn.btn-active-text-info:focus:not(.btn-active),.btn.btn-active-text-info:hover:not(.btn-active),.show>.btn.btn-active-text-info{color:#8950fc}.btn.btn-color-warning{color:#ffa800}.btn.btn-color-warning .svg-icon,.btn.btn-color-warning i{color:#ffa800}.btn.btn-color-warning.dropdown-toggle:after{color:#ffa800}.btn-check:active+.btn.btn-active-color-warning,.btn-check:checked+.btn.btn-active-color-warning,.btn.btn-active-color-warning.active,.btn.btn-active-color-warning.show,.btn.btn-active-color-warning:active:not(.btn-active),.btn.btn-active-color-warning:focus:not(.btn-active),.btn.btn-active-color-warning:hover:not(.btn-active),.show>.btn.btn-active-color-warning{color:#ffa800}.btn-check:active+.btn.btn-active-color-warning .svg-icon,.btn-check:active+.btn.btn-active-color-warning i,.btn-check:checked+.btn.btn-active-color-warning .svg-icon,.btn-check:checked+.btn.btn-active-color-warning i,.btn.btn-active-color-warning.active .svg-icon,.btn.btn-active-color-warning.active i,.btn.btn-active-color-warning.show .svg-icon,.btn.btn-active-color-warning.show i,.btn.btn-active-color-warning:active:not(.btn-active) .svg-icon,.btn.btn-active-color-warning:active:not(.btn-active) i,.btn.btn-active-color-warning:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-warning:focus:not(.btn-active) i,.btn.btn-active-color-warning:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-warning:hover:not(.btn-active) i,.show>.btn.btn-active-color-warning .svg-icon,.show>.btn.btn-active-color-warning i{color:#ffa800}.btn-check:active+.btn.btn-active-color-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-warning.dropdown-toggle:after,.btn.btn-active-color-warning.active.dropdown-toggle:after,.btn.btn-active-color-warning.show.dropdown-toggle:after,.btn.btn-active-color-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-warning.dropdown-toggle:after{color:#ffa800}.btn.btn-icon-warning .svg-icon,.btn.btn-icon-warning i{color:#ffa800}.btn.btn-icon-warning.dropdown-toggle:after{color:#ffa800}.btn-check:active+.btn.btn-active-icon-warning .svg-icon,.btn-check:active+.btn.btn-active-icon-warning i,.btn-check:checked+.btn.btn-active-icon-warning .svg-icon,.btn-check:checked+.btn.btn-active-icon-warning i,.btn.btn-active-icon-warning.active .svg-icon,.btn.btn-active-icon-warning.active i,.btn.btn-active-icon-warning.show .svg-icon,.btn.btn-active-icon-warning.show i,.btn.btn-active-icon-warning:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-warning:active:not(.btn-active) i,.btn.btn-active-icon-warning:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-warning:focus:not(.btn-active) i,.btn.btn-active-icon-warning:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-warning:hover:not(.btn-active) i,.show>.btn.btn-active-icon-warning .svg-icon,.show>.btn.btn-active-icon-warning i{color:#ffa800}.btn-check:active+.btn.btn-active-icon-warning.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-warning.dropdown-toggle:after,.btn.btn-active-icon-warning.active.dropdown-toggle:after,.btn.btn-active-icon-warning.show.dropdown-toggle:after,.btn.btn-active-icon-warning:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-warning:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-warning:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-warning.dropdown-toggle:after{color:#ffa800}.btn.btn-text-warning{color:#ffa800}.btn-check:active+.btn.btn-active-text-warning,.btn-check:checked+.btn.btn-active-text-warning,.btn.btn-active-text-warning.active,.btn.btn-active-text-warning.show,.btn.btn-active-text-warning:active:not(.btn-active),.btn.btn-active-text-warning:focus:not(.btn-active),.btn.btn-active-text-warning:hover:not(.btn-active),.show>.btn.btn-active-text-warning{color:#ffa800}.btn.btn-color-danger{color:#f64e60}.btn.btn-color-danger .svg-icon,.btn.btn-color-danger i{color:#f64e60}.btn.btn-color-danger.dropdown-toggle:after{color:#f64e60}.btn-check:active+.btn.btn-active-color-danger,.btn-check:checked+.btn.btn-active-color-danger,.btn.btn-active-color-danger.active,.btn.btn-active-color-danger.show,.btn.btn-active-color-danger:active:not(.btn-active),.btn.btn-active-color-danger:focus:not(.btn-active),.btn.btn-active-color-danger:hover:not(.btn-active),.show>.btn.btn-active-color-danger{color:#f64e60}.btn-check:active+.btn.btn-active-color-danger .svg-icon,.btn-check:active+.btn.btn-active-color-danger i,.btn-check:checked+.btn.btn-active-color-danger .svg-icon,.btn-check:checked+.btn.btn-active-color-danger i,.btn.btn-active-color-danger.active .svg-icon,.btn.btn-active-color-danger.active i,.btn.btn-active-color-danger.show .svg-icon,.btn.btn-active-color-danger.show i,.btn.btn-active-color-danger:active:not(.btn-active) .svg-icon,.btn.btn-active-color-danger:active:not(.btn-active) i,.btn.btn-active-color-danger:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-danger:focus:not(.btn-active) i,.btn.btn-active-color-danger:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-danger:hover:not(.btn-active) i,.show>.btn.btn-active-color-danger .svg-icon,.show>.btn.btn-active-color-danger i{color:#f64e60}.btn-check:active+.btn.btn-active-color-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-danger.dropdown-toggle:after,.btn.btn-active-color-danger.active.dropdown-toggle:after,.btn.btn-active-color-danger.show.dropdown-toggle:after,.btn.btn-active-color-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-danger.dropdown-toggle:after{color:#f64e60}.btn.btn-icon-danger .svg-icon,.btn.btn-icon-danger i{color:#f64e60}.btn.btn-icon-danger.dropdown-toggle:after{color:#f64e60}.btn-check:active+.btn.btn-active-icon-danger .svg-icon,.btn-check:active+.btn.btn-active-icon-danger i,.btn-check:checked+.btn.btn-active-icon-danger .svg-icon,.btn-check:checked+.btn.btn-active-icon-danger i,.btn.btn-active-icon-danger.active .svg-icon,.btn.btn-active-icon-danger.active i,.btn.btn-active-icon-danger.show .svg-icon,.btn.btn-active-icon-danger.show i,.btn.btn-active-icon-danger:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-danger:active:not(.btn-active) i,.btn.btn-active-icon-danger:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-danger:focus:not(.btn-active) i,.btn.btn-active-icon-danger:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-danger:hover:not(.btn-active) i,.show>.btn.btn-active-icon-danger .svg-icon,.show>.btn.btn-active-icon-danger i{color:#f64e60}.btn-check:active+.btn.btn-active-icon-danger.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-danger.dropdown-toggle:after,.btn.btn-active-icon-danger.active.dropdown-toggle:after,.btn.btn-active-icon-danger.show.dropdown-toggle:after,.btn.btn-active-icon-danger:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-danger:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-danger:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-danger.dropdown-toggle:after{color:#f64e60}.btn.btn-text-danger{color:#f64e60}.btn-check:active+.btn.btn-active-text-danger,.btn-check:checked+.btn.btn-active-text-danger,.btn.btn-active-text-danger.active,.btn.btn-active-text-danger.show,.btn.btn-active-text-danger:active:not(.btn-active),.btn.btn-active-text-danger:focus:not(.btn-active),.btn.btn-active-text-danger:hover:not(.btn-active),.show>.btn.btn-active-text-danger{color:#f64e60}.btn.btn-color-dark{color:#fff}.btn.btn-color-dark .svg-icon,.btn.btn-color-dark i{color:#fff}.btn.btn-color-dark.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-color-dark,.btn-check:checked+.btn.btn-active-color-dark,.btn.btn-active-color-dark.active,.btn.btn-active-color-dark.show,.btn.btn-active-color-dark:active:not(.btn-active),.btn.btn-active-color-dark:focus:not(.btn-active),.btn.btn-active-color-dark:hover:not(.btn-active),.show>.btn.btn-active-color-dark{color:#fff}.btn-check:active+.btn.btn-active-color-dark .svg-icon,.btn-check:active+.btn.btn-active-color-dark i,.btn-check:checked+.btn.btn-active-color-dark .svg-icon,.btn-check:checked+.btn.btn-active-color-dark i,.btn.btn-active-color-dark.active .svg-icon,.btn.btn-active-color-dark.active i,.btn.btn-active-color-dark.show .svg-icon,.btn.btn-active-color-dark.show i,.btn.btn-active-color-dark:active:not(.btn-active) .svg-icon,.btn.btn-active-color-dark:active:not(.btn-active) i,.btn.btn-active-color-dark:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-dark:focus:not(.btn-active) i,.btn.btn-active-color-dark:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-dark:hover:not(.btn-active) i,.show>.btn.btn-active-color-dark .svg-icon,.show>.btn.btn-active-color-dark i{color:#fff}.btn-check:active+.btn.btn-active-color-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-dark.dropdown-toggle:after,.btn.btn-active-color-dark.active.dropdown-toggle:after,.btn.btn-active-color-dark.show.dropdown-toggle:after,.btn.btn-active-color-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-dark.dropdown-toggle:after{color:#fff}.btn.btn-icon-dark .svg-icon,.btn.btn-icon-dark i{color:#fff}.btn.btn-icon-dark.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-icon-dark .svg-icon,.btn-check:active+.btn.btn-active-icon-dark i,.btn-check:checked+.btn.btn-active-icon-dark .svg-icon,.btn-check:checked+.btn.btn-active-icon-dark i,.btn.btn-active-icon-dark.active .svg-icon,.btn.btn-active-icon-dark.active i,.btn.btn-active-icon-dark.show .svg-icon,.btn.btn-active-icon-dark.show i,.btn.btn-active-icon-dark:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-dark:active:not(.btn-active) i,.btn.btn-active-icon-dark:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-dark:focus:not(.btn-active) i,.btn.btn-active-icon-dark:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-dark:hover:not(.btn-active) i,.show>.btn.btn-active-icon-dark .svg-icon,.show>.btn.btn-active-icon-dark i{color:#fff}.btn-check:active+.btn.btn-active-icon-dark.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-dark.dropdown-toggle:after,.btn.btn-active-icon-dark.active.dropdown-toggle:after,.btn.btn-active-icon-dark.show.dropdown-toggle:after,.btn.btn-active-icon-dark:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-dark:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-dark:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-dark.dropdown-toggle:after{color:#fff}.btn.btn-text-dark{color:#fff}.btn-check:active+.btn.btn-active-text-dark,.btn-check:checked+.btn.btn-active-text-dark,.btn.btn-active-text-dark.active,.btn.btn-active-text-dark.show,.btn.btn-active-text-dark:active:not(.btn-active),.btn.btn-active-text-dark:focus:not(.btn-active),.btn.btn-active-text-dark:hover:not(.btn-active),.show>.btn.btn-active-text-dark{color:#fff}.btn.btn-color-muted{color:#565674}.btn.btn-color-muted .svg-icon,.btn.btn-color-muted i{color:#565674}.btn.btn-color-muted.dropdown-toggle:after{color:#565674}.btn-check:active+.btn.btn-active-color-muted,.btn-check:checked+.btn.btn-active-color-muted,.btn.btn-active-color-muted.active,.btn.btn-active-color-muted.show,.btn.btn-active-color-muted:active:not(.btn-active),.btn.btn-active-color-muted:focus:not(.btn-active),.btn.btn-active-color-muted:hover:not(.btn-active),.show>.btn.btn-active-color-muted{color:#565674}.btn-check:active+.btn.btn-active-color-muted .svg-icon,.btn-check:active+.btn.btn-active-color-muted i,.btn-check:checked+.btn.btn-active-color-muted .svg-icon,.btn-check:checked+.btn.btn-active-color-muted i,.btn.btn-active-color-muted.active .svg-icon,.btn.btn-active-color-muted.active i,.btn.btn-active-color-muted.show .svg-icon,.btn.btn-active-color-muted.show i,.btn.btn-active-color-muted:active:not(.btn-active) .svg-icon,.btn.btn-active-color-muted:active:not(.btn-active) i,.btn.btn-active-color-muted:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-muted:focus:not(.btn-active) i,.btn.btn-active-color-muted:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-muted:hover:not(.btn-active) i,.show>.btn.btn-active-color-muted .svg-icon,.show>.btn.btn-active-color-muted i{color:#565674}.btn-check:active+.btn.btn-active-color-muted.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-muted.dropdown-toggle:after,.btn.btn-active-color-muted.active.dropdown-toggle:after,.btn.btn-active-color-muted.show.dropdown-toggle:after,.btn.btn-active-color-muted:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-muted:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-muted:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-muted.dropdown-toggle:after{color:#565674}.btn.btn-icon-muted .svg-icon,.btn.btn-icon-muted i{color:#565674}.btn.btn-icon-muted.dropdown-toggle:after{color:#565674}.btn-check:active+.btn.btn-active-icon-muted .svg-icon,.btn-check:active+.btn.btn-active-icon-muted i,.btn-check:checked+.btn.btn-active-icon-muted .svg-icon,.btn-check:checked+.btn.btn-active-icon-muted i,.btn.btn-active-icon-muted.active .svg-icon,.btn.btn-active-icon-muted.active i,.btn.btn-active-icon-muted.show .svg-icon,.btn.btn-active-icon-muted.show i,.btn.btn-active-icon-muted:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-muted:active:not(.btn-active) i,.btn.btn-active-icon-muted:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-muted:focus:not(.btn-active) i,.btn.btn-active-icon-muted:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-muted:hover:not(.btn-active) i,.show>.btn.btn-active-icon-muted .svg-icon,.show>.btn.btn-active-icon-muted i{color:#565674}.btn-check:active+.btn.btn-active-icon-muted.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-muted.dropdown-toggle:after,.btn.btn-active-icon-muted.active.dropdown-toggle:after,.btn.btn-active-icon-muted.show.dropdown-toggle:after,.btn.btn-active-icon-muted:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-muted:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-muted:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-muted.dropdown-toggle:after{color:#565674}.btn.btn-text-muted{color:#565674}.btn-check:active+.btn.btn-active-text-muted,.btn-check:checked+.btn.btn-active-text-muted,.btn.btn-active-text-muted.active,.btn.btn-active-text-muted.show,.btn.btn-active-text-muted:active:not(.btn-active),.btn.btn-active-text-muted:focus:not(.btn-active),.btn.btn-active-text-muted:hover:not(.btn-active),.show>.btn.btn-active-text-muted{color:#565674}.btn.btn-color-gray-100{color:#1b1b29}.btn.btn-color-gray-100 .svg-icon,.btn.btn-color-gray-100 i{color:#1b1b29}.btn.btn-color-gray-100.dropdown-toggle:after{color:#1b1b29}.btn-check:active+.btn.btn-active-color-gray-100,.btn-check:checked+.btn.btn-active-color-gray-100,.btn.btn-active-color-gray-100.active,.btn.btn-active-color-gray-100.show,.btn.btn-active-color-gray-100:active:not(.btn-active),.btn.btn-active-color-gray-100:focus:not(.btn-active),.btn.btn-active-color-gray-100:hover:not(.btn-active),.show>.btn.btn-active-color-gray-100{color:#1b1b29}.btn-check:active+.btn.btn-active-color-gray-100 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-100 i,.btn-check:checked+.btn.btn-active-color-gray-100 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-100 i,.btn.btn-active-color-gray-100.active .svg-icon,.btn.btn-active-color-gray-100.active i,.btn.btn-active-color-gray-100.show .svg-icon,.btn.btn-active-color-gray-100.show i,.btn.btn-active-color-gray-100:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-100:active:not(.btn-active) i,.btn.btn-active-color-gray-100:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-100:focus:not(.btn-active) i,.btn.btn-active-color-gray-100:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-100:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-100 .svg-icon,.show>.btn.btn-active-color-gray-100 i{color:#1b1b29}.btn-check:active+.btn.btn-active-color-gray-100.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-100.dropdown-toggle:after,.btn.btn-active-color-gray-100.active.dropdown-toggle:after,.btn.btn-active-color-gray-100.show.dropdown-toggle:after,.btn.btn-active-color-gray-100:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-100:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-100:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-100.dropdown-toggle:after{color:#1b1b29}.btn.btn-icon-gray-100 .svg-icon,.btn.btn-icon-gray-100 i{color:#1b1b29}.btn.btn-icon-gray-100.dropdown-toggle:after{color:#1b1b29}.btn-check:active+.btn.btn-active-icon-gray-100 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-100 i,.btn-check:checked+.btn.btn-active-icon-gray-100 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-100 i,.btn.btn-active-icon-gray-100.active .svg-icon,.btn.btn-active-icon-gray-100.active i,.btn.btn-active-icon-gray-100.show .svg-icon,.btn.btn-active-icon-gray-100.show i,.btn.btn-active-icon-gray-100:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-100:active:not(.btn-active) i,.btn.btn-active-icon-gray-100:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-100:focus:not(.btn-active) i,.btn.btn-active-icon-gray-100:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-100:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-100 .svg-icon,.show>.btn.btn-active-icon-gray-100 i{color:#1b1b29}.btn-check:active+.btn.btn-active-icon-gray-100.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-100.dropdown-toggle:after,.btn.btn-active-icon-gray-100.active.dropdown-toggle:after,.btn.btn-active-icon-gray-100.show.dropdown-toggle:after,.btn.btn-active-icon-gray-100:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-100:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-100:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-100.dropdown-toggle:after{color:#1b1b29}.btn.btn-text-gray-100{color:#1b1b29}.btn-check:active+.btn.btn-active-text-gray-100,.btn-check:checked+.btn.btn-active-text-gray-100,.btn.btn-active-text-gray-100.active,.btn.btn-active-text-gray-100.show,.btn.btn-active-text-gray-100:active:not(.btn-active),.btn.btn-active-text-gray-100:focus:not(.btn-active),.btn.btn-active-text-gray-100:hover:not(.btn-active),.show>.btn.btn-active-text-gray-100{color:#1b1b29}.btn.btn-color-gray-200{color:#2b2b40}.btn.btn-color-gray-200 .svg-icon,.btn.btn-color-gray-200 i{color:#2b2b40}.btn.btn-color-gray-200.dropdown-toggle:after{color:#2b2b40}.btn-check:active+.btn.btn-active-color-gray-200,.btn-check:checked+.btn.btn-active-color-gray-200,.btn.btn-active-color-gray-200.active,.btn.btn-active-color-gray-200.show,.btn.btn-active-color-gray-200:active:not(.btn-active),.btn.btn-active-color-gray-200:focus:not(.btn-active),.btn.btn-active-color-gray-200:hover:not(.btn-active),.show>.btn.btn-active-color-gray-200{color:#2b2b40}.btn-check:active+.btn.btn-active-color-gray-200 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-200 i,.btn-check:checked+.btn.btn-active-color-gray-200 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-200 i,.btn.btn-active-color-gray-200.active .svg-icon,.btn.btn-active-color-gray-200.active i,.btn.btn-active-color-gray-200.show .svg-icon,.btn.btn-active-color-gray-200.show i,.btn.btn-active-color-gray-200:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-200:active:not(.btn-active) i,.btn.btn-active-color-gray-200:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-200:focus:not(.btn-active) i,.btn.btn-active-color-gray-200:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-200:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-200 .svg-icon,.show>.btn.btn-active-color-gray-200 i{color:#2b2b40}.btn-check:active+.btn.btn-active-color-gray-200.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-200.dropdown-toggle:after,.btn.btn-active-color-gray-200.active.dropdown-toggle:after,.btn.btn-active-color-gray-200.show.dropdown-toggle:after,.btn.btn-active-color-gray-200:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-200:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-200:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-200.dropdown-toggle:after{color:#2b2b40}.btn.btn-icon-gray-200 .svg-icon,.btn.btn-icon-gray-200 i{color:#2b2b40}.btn.btn-icon-gray-200.dropdown-toggle:after{color:#2b2b40}.btn-check:active+.btn.btn-active-icon-gray-200 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-200 i,.btn-check:checked+.btn.btn-active-icon-gray-200 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-200 i,.btn.btn-active-icon-gray-200.active .svg-icon,.btn.btn-active-icon-gray-200.active i,.btn.btn-active-icon-gray-200.show .svg-icon,.btn.btn-active-icon-gray-200.show i,.btn.btn-active-icon-gray-200:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-200:active:not(.btn-active) i,.btn.btn-active-icon-gray-200:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-200:focus:not(.btn-active) i,.btn.btn-active-icon-gray-200:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-200:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-200 .svg-icon,.show>.btn.btn-active-icon-gray-200 i{color:#2b2b40}.btn-check:active+.btn.btn-active-icon-gray-200.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-200.dropdown-toggle:after,.btn.btn-active-icon-gray-200.active.dropdown-toggle:after,.btn.btn-active-icon-gray-200.show.dropdown-toggle:after,.btn.btn-active-icon-gray-200:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-200:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-200:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-200.dropdown-toggle:after{color:#2b2b40}.btn.btn-text-gray-200{color:#2b2b40}.btn-check:active+.btn.btn-active-text-gray-200,.btn-check:checked+.btn.btn-active-text-gray-200,.btn.btn-active-text-gray-200.active,.btn.btn-active-text-gray-200.show,.btn.btn-active-text-gray-200:active:not(.btn-active),.btn.btn-active-text-gray-200:focus:not(.btn-active),.btn.btn-active-text-gray-200:hover:not(.btn-active),.show>.btn.btn-active-text-gray-200{color:#2b2b40}.btn.btn-color-gray-300{color:#323248}.btn.btn-color-gray-300 .svg-icon,.btn.btn-color-gray-300 i{color:#323248}.btn.btn-color-gray-300.dropdown-toggle:after{color:#323248}.btn-check:active+.btn.btn-active-color-gray-300,.btn-check:checked+.btn.btn-active-color-gray-300,.btn.btn-active-color-gray-300.active,.btn.btn-active-color-gray-300.show,.btn.btn-active-color-gray-300:active:not(.btn-active),.btn.btn-active-color-gray-300:focus:not(.btn-active),.btn.btn-active-color-gray-300:hover:not(.btn-active),.show>.btn.btn-active-color-gray-300{color:#323248}.btn-check:active+.btn.btn-active-color-gray-300 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-300 i,.btn-check:checked+.btn.btn-active-color-gray-300 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-300 i,.btn.btn-active-color-gray-300.active .svg-icon,.btn.btn-active-color-gray-300.active i,.btn.btn-active-color-gray-300.show .svg-icon,.btn.btn-active-color-gray-300.show i,.btn.btn-active-color-gray-300:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-300:active:not(.btn-active) i,.btn.btn-active-color-gray-300:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-300:focus:not(.btn-active) i,.btn.btn-active-color-gray-300:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-300:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-300 .svg-icon,.show>.btn.btn-active-color-gray-300 i{color:#323248}.btn-check:active+.btn.btn-active-color-gray-300.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-300.dropdown-toggle:after,.btn.btn-active-color-gray-300.active.dropdown-toggle:after,.btn.btn-active-color-gray-300.show.dropdown-toggle:after,.btn.btn-active-color-gray-300:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-300:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-300:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-300.dropdown-toggle:after{color:#323248}.btn.btn-icon-gray-300 .svg-icon,.btn.btn-icon-gray-300 i{color:#323248}.btn.btn-icon-gray-300.dropdown-toggle:after{color:#323248}.btn-check:active+.btn.btn-active-icon-gray-300 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-300 i,.btn-check:checked+.btn.btn-active-icon-gray-300 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-300 i,.btn.btn-active-icon-gray-300.active .svg-icon,.btn.btn-active-icon-gray-300.active i,.btn.btn-active-icon-gray-300.show .svg-icon,.btn.btn-active-icon-gray-300.show i,.btn.btn-active-icon-gray-300:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-300:active:not(.btn-active) i,.btn.btn-active-icon-gray-300:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-300:focus:not(.btn-active) i,.btn.btn-active-icon-gray-300:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-300:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-300 .svg-icon,.show>.btn.btn-active-icon-gray-300 i{color:#323248}.btn-check:active+.btn.btn-active-icon-gray-300.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-300.dropdown-toggle:after,.btn.btn-active-icon-gray-300.active.dropdown-toggle:after,.btn.btn-active-icon-gray-300.show.dropdown-toggle:after,.btn.btn-active-icon-gray-300:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-300:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-300:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-300.dropdown-toggle:after{color:#323248}.btn.btn-text-gray-300{color:#323248}.btn-check:active+.btn.btn-active-text-gray-300,.btn-check:checked+.btn.btn-active-text-gray-300,.btn.btn-active-text-gray-300.active,.btn.btn-active-text-gray-300.show,.btn.btn-active-text-gray-300:active:not(.btn-active),.btn.btn-active-text-gray-300:focus:not(.btn-active),.btn.btn-active-text-gray-300:hover:not(.btn-active),.show>.btn.btn-active-text-gray-300{color:#323248}.btn.btn-color-gray-400{color:#474761}.btn.btn-color-gray-400 .svg-icon,.btn.btn-color-gray-400 i{color:#474761}.btn.btn-color-gray-400.dropdown-toggle:after{color:#474761}.btn-check:active+.btn.btn-active-color-gray-400,.btn-check:checked+.btn.btn-active-color-gray-400,.btn.btn-active-color-gray-400.active,.btn.btn-active-color-gray-400.show,.btn.btn-active-color-gray-400:active:not(.btn-active),.btn.btn-active-color-gray-400:focus:not(.btn-active),.btn.btn-active-color-gray-400:hover:not(.btn-active),.show>.btn.btn-active-color-gray-400{color:#474761}.btn-check:active+.btn.btn-active-color-gray-400 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-400 i,.btn-check:checked+.btn.btn-active-color-gray-400 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-400 i,.btn.btn-active-color-gray-400.active .svg-icon,.btn.btn-active-color-gray-400.active i,.btn.btn-active-color-gray-400.show .svg-icon,.btn.btn-active-color-gray-400.show i,.btn.btn-active-color-gray-400:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-400:active:not(.btn-active) i,.btn.btn-active-color-gray-400:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-400:focus:not(.btn-active) i,.btn.btn-active-color-gray-400:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-400:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-400 .svg-icon,.show>.btn.btn-active-color-gray-400 i{color:#474761}.btn-check:active+.btn.btn-active-color-gray-400.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-400.dropdown-toggle:after,.btn.btn-active-color-gray-400.active.dropdown-toggle:after,.btn.btn-active-color-gray-400.show.dropdown-toggle:after,.btn.btn-active-color-gray-400:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-400:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-400:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-400.dropdown-toggle:after{color:#474761}.btn.btn-icon-gray-400 .svg-icon,.btn.btn-icon-gray-400 i{color:#474761}.btn.btn-icon-gray-400.dropdown-toggle:after{color:#474761}.btn-check:active+.btn.btn-active-icon-gray-400 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-400 i,.btn-check:checked+.btn.btn-active-icon-gray-400 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-400 i,.btn.btn-active-icon-gray-400.active .svg-icon,.btn.btn-active-icon-gray-400.active i,.btn.btn-active-icon-gray-400.show .svg-icon,.btn.btn-active-icon-gray-400.show i,.btn.btn-active-icon-gray-400:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-400:active:not(.btn-active) i,.btn.btn-active-icon-gray-400:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-400:focus:not(.btn-active) i,.btn.btn-active-icon-gray-400:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-400:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-400 .svg-icon,.show>.btn.btn-active-icon-gray-400 i{color:#474761}.btn-check:active+.btn.btn-active-icon-gray-400.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-400.dropdown-toggle:after,.btn.btn-active-icon-gray-400.active.dropdown-toggle:after,.btn.btn-active-icon-gray-400.show.dropdown-toggle:after,.btn.btn-active-icon-gray-400:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-400:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-400:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-400.dropdown-toggle:after{color:#474761}.btn.btn-text-gray-400{color:#474761}.btn-check:active+.btn.btn-active-text-gray-400,.btn-check:checked+.btn.btn-active-text-gray-400,.btn.btn-active-text-gray-400.active,.btn.btn-active-text-gray-400.show,.btn.btn-active-text-gray-400:active:not(.btn-active),.btn.btn-active-text-gray-400:focus:not(.btn-active),.btn.btn-active-text-gray-400:hover:not(.btn-active),.show>.btn.btn-active-text-gray-400{color:#474761}.btn.btn-color-gray-500{color:#565674}.btn.btn-color-gray-500 .svg-icon,.btn.btn-color-gray-500 i{color:#565674}.btn.btn-color-gray-500.dropdown-toggle:after{color:#565674}.btn-check:active+.btn.btn-active-color-gray-500,.btn-check:checked+.btn.btn-active-color-gray-500,.btn.btn-active-color-gray-500.active,.btn.btn-active-color-gray-500.show,.btn.btn-active-color-gray-500:active:not(.btn-active),.btn.btn-active-color-gray-500:focus:not(.btn-active),.btn.btn-active-color-gray-500:hover:not(.btn-active),.show>.btn.btn-active-color-gray-500{color:#565674}.btn-check:active+.btn.btn-active-color-gray-500 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-500 i,.btn-check:checked+.btn.btn-active-color-gray-500 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-500 i,.btn.btn-active-color-gray-500.active .svg-icon,.btn.btn-active-color-gray-500.active i,.btn.btn-active-color-gray-500.show .svg-icon,.btn.btn-active-color-gray-500.show i,.btn.btn-active-color-gray-500:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-500:active:not(.btn-active) i,.btn.btn-active-color-gray-500:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-500:focus:not(.btn-active) i,.btn.btn-active-color-gray-500:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-500:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-500 .svg-icon,.show>.btn.btn-active-color-gray-500 i{color:#565674}.btn-check:active+.btn.btn-active-color-gray-500.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-500.dropdown-toggle:after,.btn.btn-active-color-gray-500.active.dropdown-toggle:after,.btn.btn-active-color-gray-500.show.dropdown-toggle:after,.btn.btn-active-color-gray-500:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-500:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-500:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-500.dropdown-toggle:after{color:#565674}.btn.btn-icon-gray-500 .svg-icon,.btn.btn-icon-gray-500 i{color:#565674}.btn.btn-icon-gray-500.dropdown-toggle:after{color:#565674}.btn-check:active+.btn.btn-active-icon-gray-500 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-500 i,.btn-check:checked+.btn.btn-active-icon-gray-500 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-500 i,.btn.btn-active-icon-gray-500.active .svg-icon,.btn.btn-active-icon-gray-500.active i,.btn.btn-active-icon-gray-500.show .svg-icon,.btn.btn-active-icon-gray-500.show i,.btn.btn-active-icon-gray-500:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-500:active:not(.btn-active) i,.btn.btn-active-icon-gray-500:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-500:focus:not(.btn-active) i,.btn.btn-active-icon-gray-500:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-500:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-500 .svg-icon,.show>.btn.btn-active-icon-gray-500 i{color:#565674}.btn-check:active+.btn.btn-active-icon-gray-500.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-500.dropdown-toggle:after,.btn.btn-active-icon-gray-500.active.dropdown-toggle:after,.btn.btn-active-icon-gray-500.show.dropdown-toggle:after,.btn.btn-active-icon-gray-500:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-500:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-500:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-500.dropdown-toggle:after{color:#565674}.btn.btn-text-gray-500{color:#565674}.btn-check:active+.btn.btn-active-text-gray-500,.btn-check:checked+.btn.btn-active-text-gray-500,.btn.btn-active-text-gray-500.active,.btn.btn-active-text-gray-500.show,.btn.btn-active-text-gray-500:active:not(.btn-active),.btn.btn-active-text-gray-500:focus:not(.btn-active),.btn.btn-active-text-gray-500:hover:not(.btn-active),.show>.btn.btn-active-text-gray-500{color:#565674}.btn.btn-color-gray-600{color:#6d6d80}.btn.btn-color-gray-600 .svg-icon,.btn.btn-color-gray-600 i{color:#6d6d80}.btn.btn-color-gray-600.dropdown-toggle:after{color:#6d6d80}.btn-check:active+.btn.btn-active-color-gray-600,.btn-check:checked+.btn.btn-active-color-gray-600,.btn.btn-active-color-gray-600.active,.btn.btn-active-color-gray-600.show,.btn.btn-active-color-gray-600:active:not(.btn-active),.btn.btn-active-color-gray-600:focus:not(.btn-active),.btn.btn-active-color-gray-600:hover:not(.btn-active),.show>.btn.btn-active-color-gray-600{color:#6d6d80}.btn-check:active+.btn.btn-active-color-gray-600 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-600 i,.btn-check:checked+.btn.btn-active-color-gray-600 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-600 i,.btn.btn-active-color-gray-600.active .svg-icon,.btn.btn-active-color-gray-600.active i,.btn.btn-active-color-gray-600.show .svg-icon,.btn.btn-active-color-gray-600.show i,.btn.btn-active-color-gray-600:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-600:active:not(.btn-active) i,.btn.btn-active-color-gray-600:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-600:focus:not(.btn-active) i,.btn.btn-active-color-gray-600:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-600:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-600 .svg-icon,.show>.btn.btn-active-color-gray-600 i{color:#6d6d80}.btn-check:active+.btn.btn-active-color-gray-600.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-600.dropdown-toggle:after,.btn.btn-active-color-gray-600.active.dropdown-toggle:after,.btn.btn-active-color-gray-600.show.dropdown-toggle:after,.btn.btn-active-color-gray-600:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-600:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-600:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-600.dropdown-toggle:after{color:#6d6d80}.btn.btn-icon-gray-600 .svg-icon,.btn.btn-icon-gray-600 i{color:#6d6d80}.btn.btn-icon-gray-600.dropdown-toggle:after{color:#6d6d80}.btn-check:active+.btn.btn-active-icon-gray-600 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-600 i,.btn-check:checked+.btn.btn-active-icon-gray-600 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-600 i,.btn.btn-active-icon-gray-600.active .svg-icon,.btn.btn-active-icon-gray-600.active i,.btn.btn-active-icon-gray-600.show .svg-icon,.btn.btn-active-icon-gray-600.show i,.btn.btn-active-icon-gray-600:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-600:active:not(.btn-active) i,.btn.btn-active-icon-gray-600:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-600:focus:not(.btn-active) i,.btn.btn-active-icon-gray-600:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-600:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-600 .svg-icon,.show>.btn.btn-active-icon-gray-600 i{color:#6d6d80}.btn-check:active+.btn.btn-active-icon-gray-600.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-600.dropdown-toggle:after,.btn.btn-active-icon-gray-600.active.dropdown-toggle:after,.btn.btn-active-icon-gray-600.show.dropdown-toggle:after,.btn.btn-active-icon-gray-600:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-600:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-600:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-600.dropdown-toggle:after{color:#6d6d80}.btn.btn-text-gray-600{color:#6d6d80}.btn-check:active+.btn.btn-active-text-gray-600,.btn-check:checked+.btn.btn-active-text-gray-600,.btn.btn-active-text-gray-600.active,.btn.btn-active-text-gray-600.show,.btn.btn-active-text-gray-600:active:not(.btn-active),.btn.btn-active-text-gray-600:focus:not(.btn-active),.btn.btn-active-text-gray-600:hover:not(.btn-active),.show>.btn.btn-active-text-gray-600{color:#6d6d80}.btn.btn-color-gray-700{color:#92929f}.btn.btn-color-gray-700 .svg-icon,.btn.btn-color-gray-700 i{color:#92929f}.btn.btn-color-gray-700.dropdown-toggle:after{color:#92929f}.btn-check:active+.btn.btn-active-color-gray-700,.btn-check:checked+.btn.btn-active-color-gray-700,.btn.btn-active-color-gray-700.active,.btn.btn-active-color-gray-700.show,.btn.btn-active-color-gray-700:active:not(.btn-active),.btn.btn-active-color-gray-700:focus:not(.btn-active),.btn.btn-active-color-gray-700:hover:not(.btn-active),.show>.btn.btn-active-color-gray-700{color:#92929f}.btn-check:active+.btn.btn-active-color-gray-700 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-700 i,.btn-check:checked+.btn.btn-active-color-gray-700 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-700 i,.btn.btn-active-color-gray-700.active .svg-icon,.btn.btn-active-color-gray-700.active i,.btn.btn-active-color-gray-700.show .svg-icon,.btn.btn-active-color-gray-700.show i,.btn.btn-active-color-gray-700:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-700:active:not(.btn-active) i,.btn.btn-active-color-gray-700:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-700:focus:not(.btn-active) i,.btn.btn-active-color-gray-700:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-700:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-700 .svg-icon,.show>.btn.btn-active-color-gray-700 i{color:#92929f}.btn-check:active+.btn.btn-active-color-gray-700.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-700.dropdown-toggle:after,.btn.btn-active-color-gray-700.active.dropdown-toggle:after,.btn.btn-active-color-gray-700.show.dropdown-toggle:after,.btn.btn-active-color-gray-700:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-700:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-700:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-700.dropdown-toggle:after{color:#92929f}.btn.btn-icon-gray-700 .svg-icon,.btn.btn-icon-gray-700 i{color:#92929f}.btn.btn-icon-gray-700.dropdown-toggle:after{color:#92929f}.btn-check:active+.btn.btn-active-icon-gray-700 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-700 i,.btn-check:checked+.btn.btn-active-icon-gray-700 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-700 i,.btn.btn-active-icon-gray-700.active .svg-icon,.btn.btn-active-icon-gray-700.active i,.btn.btn-active-icon-gray-700.show .svg-icon,.btn.btn-active-icon-gray-700.show i,.btn.btn-active-icon-gray-700:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-700:active:not(.btn-active) i,.btn.btn-active-icon-gray-700:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-700:focus:not(.btn-active) i,.btn.btn-active-icon-gray-700:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-700:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-700 .svg-icon,.show>.btn.btn-active-icon-gray-700 i{color:#92929f}.btn-check:active+.btn.btn-active-icon-gray-700.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-700.dropdown-toggle:after,.btn.btn-active-icon-gray-700.active.dropdown-toggle:after,.btn.btn-active-icon-gray-700.show.dropdown-toggle:after,.btn.btn-active-icon-gray-700:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-700:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-700:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-700.dropdown-toggle:after{color:#92929f}.btn.btn-text-gray-700{color:#92929f}.btn-check:active+.btn.btn-active-text-gray-700,.btn-check:checked+.btn.btn-active-text-gray-700,.btn.btn-active-text-gray-700.active,.btn.btn-active-text-gray-700.show,.btn.btn-active-text-gray-700:active:not(.btn-active),.btn.btn-active-text-gray-700:focus:not(.btn-active),.btn.btn-active-text-gray-700:hover:not(.btn-active),.show>.btn.btn-active-text-gray-700{color:#92929f}.btn.btn-color-gray-800{color:#cdcdde}.btn.btn-color-gray-800 .svg-icon,.btn.btn-color-gray-800 i{color:#cdcdde}.btn.btn-color-gray-800.dropdown-toggle:after{color:#cdcdde}.btn-check:active+.btn.btn-active-color-gray-800,.btn-check:checked+.btn.btn-active-color-gray-800,.btn.btn-active-color-gray-800.active,.btn.btn-active-color-gray-800.show,.btn.btn-active-color-gray-800:active:not(.btn-active),.btn.btn-active-color-gray-800:focus:not(.btn-active),.btn.btn-active-color-gray-800:hover:not(.btn-active),.show>.btn.btn-active-color-gray-800{color:#cdcdde}.btn-check:active+.btn.btn-active-color-gray-800 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-800 i,.btn-check:checked+.btn.btn-active-color-gray-800 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-800 i,.btn.btn-active-color-gray-800.active .svg-icon,.btn.btn-active-color-gray-800.active i,.btn.btn-active-color-gray-800.show .svg-icon,.btn.btn-active-color-gray-800.show i,.btn.btn-active-color-gray-800:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-800:active:not(.btn-active) i,.btn.btn-active-color-gray-800:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-800:focus:not(.btn-active) i,.btn.btn-active-color-gray-800:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-800:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-800 .svg-icon,.show>.btn.btn-active-color-gray-800 i{color:#cdcdde}.btn-check:active+.btn.btn-active-color-gray-800.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-800.dropdown-toggle:after,.btn.btn-active-color-gray-800.active.dropdown-toggle:after,.btn.btn-active-color-gray-800.show.dropdown-toggle:after,.btn.btn-active-color-gray-800:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-800:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-800:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-800.dropdown-toggle:after{color:#cdcdde}.btn.btn-icon-gray-800 .svg-icon,.btn.btn-icon-gray-800 i{color:#cdcdde}.btn.btn-icon-gray-800.dropdown-toggle:after{color:#cdcdde}.btn-check:active+.btn.btn-active-icon-gray-800 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-800 i,.btn-check:checked+.btn.btn-active-icon-gray-800 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-800 i,.btn.btn-active-icon-gray-800.active .svg-icon,.btn.btn-active-icon-gray-800.active i,.btn.btn-active-icon-gray-800.show .svg-icon,.btn.btn-active-icon-gray-800.show i,.btn.btn-active-icon-gray-800:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-800:active:not(.btn-active) i,.btn.btn-active-icon-gray-800:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-800:focus:not(.btn-active) i,.btn.btn-active-icon-gray-800:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-800:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-800 .svg-icon,.show>.btn.btn-active-icon-gray-800 i{color:#cdcdde}.btn-check:active+.btn.btn-active-icon-gray-800.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-800.dropdown-toggle:after,.btn.btn-active-icon-gray-800.active.dropdown-toggle:after,.btn.btn-active-icon-gray-800.show.dropdown-toggle:after,.btn.btn-active-icon-gray-800:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-800:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-800:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-800.dropdown-toggle:after{color:#cdcdde}.btn.btn-text-gray-800{color:#cdcdde}.btn-check:active+.btn.btn-active-text-gray-800,.btn-check:checked+.btn.btn-active-text-gray-800,.btn.btn-active-text-gray-800.active,.btn.btn-active-text-gray-800.show,.btn.btn-active-text-gray-800:active:not(.btn-active),.btn.btn-active-text-gray-800:focus:not(.btn-active),.btn.btn-active-text-gray-800:hover:not(.btn-active),.show>.btn.btn-active-text-gray-800{color:#cdcdde}.btn.btn-color-gray-900{color:#fff}.btn.btn-color-gray-900 .svg-icon,.btn.btn-color-gray-900 i{color:#fff}.btn.btn-color-gray-900.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-color-gray-900,.btn-check:checked+.btn.btn-active-color-gray-900,.btn.btn-active-color-gray-900.active,.btn.btn-active-color-gray-900.show,.btn.btn-active-color-gray-900:active:not(.btn-active),.btn.btn-active-color-gray-900:focus:not(.btn-active),.btn.btn-active-color-gray-900:hover:not(.btn-active),.show>.btn.btn-active-color-gray-900{color:#fff}.btn-check:active+.btn.btn-active-color-gray-900 .svg-icon,.btn-check:active+.btn.btn-active-color-gray-900 i,.btn-check:checked+.btn.btn-active-color-gray-900 .svg-icon,.btn-check:checked+.btn.btn-active-color-gray-900 i,.btn.btn-active-color-gray-900.active .svg-icon,.btn.btn-active-color-gray-900.active i,.btn.btn-active-color-gray-900.show .svg-icon,.btn.btn-active-color-gray-900.show i,.btn.btn-active-color-gray-900:active:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-900:active:not(.btn-active) i,.btn.btn-active-color-gray-900:focus:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-900:focus:not(.btn-active) i,.btn.btn-active-color-gray-900:hover:not(.btn-active) .svg-icon,.btn.btn-active-color-gray-900:hover:not(.btn-active) i,.show>.btn.btn-active-color-gray-900 .svg-icon,.show>.btn.btn-active-color-gray-900 i{color:#fff}.btn-check:active+.btn.btn-active-color-gray-900.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-color-gray-900.dropdown-toggle:after,.btn.btn-active-color-gray-900.active.dropdown-toggle:after,.btn.btn-active-color-gray-900.show.dropdown-toggle:after,.btn.btn-active-color-gray-900:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-900:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-color-gray-900:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-color-gray-900.dropdown-toggle:after{color:#fff}.btn.btn-icon-gray-900 .svg-icon,.btn.btn-icon-gray-900 i{color:#fff}.btn.btn-icon-gray-900.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-active-icon-gray-900 .svg-icon,.btn-check:active+.btn.btn-active-icon-gray-900 i,.btn-check:checked+.btn.btn-active-icon-gray-900 .svg-icon,.btn-check:checked+.btn.btn-active-icon-gray-900 i,.btn.btn-active-icon-gray-900.active .svg-icon,.btn.btn-active-icon-gray-900.active i,.btn.btn-active-icon-gray-900.show .svg-icon,.btn.btn-active-icon-gray-900.show i,.btn.btn-active-icon-gray-900:active:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-900:active:not(.btn-active) i,.btn.btn-active-icon-gray-900:focus:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-900:focus:not(.btn-active) i,.btn.btn-active-icon-gray-900:hover:not(.btn-active) .svg-icon,.btn.btn-active-icon-gray-900:hover:not(.btn-active) i,.show>.btn.btn-active-icon-gray-900 .svg-icon,.show>.btn.btn-active-icon-gray-900 i{color:#fff}.btn-check:active+.btn.btn-active-icon-gray-900.dropdown-toggle:after,.btn-check:checked+.btn.btn-active-icon-gray-900.dropdown-toggle:after,.btn.btn-active-icon-gray-900.active.dropdown-toggle:after,.btn.btn-active-icon-gray-900.show.dropdown-toggle:after,.btn.btn-active-icon-gray-900:active:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-900:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-active-icon-gray-900:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-active-icon-gray-900.dropdown-toggle:after{color:#fff}.btn.btn-text-gray-900{color:#fff}.btn-check:active+.btn.btn-active-text-gray-900,.btn-check:checked+.btn.btn-active-text-gray-900,.btn.btn-active-text-gray-900.active,.btn.btn-active-text-gray-900.show,.btn.btn-active-text-gray-900:active:not(.btn-active),.btn.btn-active-text-gray-900:focus:not(.btn-active),.btn.btn-active-text-gray-900:hover:not(.btn-active),.show>.btn.btn-active-text-gray-900{color:#fff}.btn.btn-facebook{color:#fff;border-color:#3b5998;background-color:#3b5998}.btn.btn-facebook .svg-icon,.btn.btn-facebook i{color:#fff}.btn.btn-facebook.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-facebook,.btn-check:checked+.btn.btn-facebook,.btn.btn-facebook.active,.btn.btn-facebook.show,.btn.btn-facebook:active:not(.btn-active),.btn.btn-facebook:focus:not(.btn-active),.btn.btn-facebook:hover:not(.btn-active),.show>.btn.btn-facebook{border-color:#30497c;background-color:#30497c!important}.btn.btn-light-facebook{color:#3b5998;border-color:rgba(59,89,152,.1);background-color:rgba(59,89,152,.1)}.btn.btn-light-facebook .svg-icon,.btn.btn-light-facebook i{color:#3b5998}.btn.btn-light-facebook.dropdown-toggle:after{color:#3b5998}.btn-check:active+.btn.btn-light-facebook,.btn-check:checked+.btn.btn-light-facebook,.btn.btn-light-facebook.active,.btn.btn-light-facebook.show,.btn.btn-light-facebook:active:not(.btn-active),.btn.btn-light-facebook:focus:not(.btn-active),.btn.btn-light-facebook:hover:not(.btn-active),.show>.btn.btn-light-facebook{color:#fff;border-color:#3b5998;background-color:#3b5998!important}.btn-check:active+.btn.btn-light-facebook .svg-icon,.btn-check:active+.btn.btn-light-facebook i,.btn-check:checked+.btn.btn-light-facebook .svg-icon,.btn-check:checked+.btn.btn-light-facebook i,.btn.btn-light-facebook.active .svg-icon,.btn.btn-light-facebook.active i,.btn.btn-light-facebook.show .svg-icon,.btn.btn-light-facebook.show i,.btn.btn-light-facebook:active:not(.btn-active) .svg-icon,.btn.btn-light-facebook:active:not(.btn-active) i,.btn.btn-light-facebook:focus:not(.btn-active) .svg-icon,.btn.btn-light-facebook:focus:not(.btn-active) i,.btn.btn-light-facebook:hover:not(.btn-active) .svg-icon,.btn.btn-light-facebook:hover:not(.btn-active) i,.show>.btn.btn-light-facebook .svg-icon,.show>.btn.btn-light-facebook i{color:#fff}.btn-check:active+.btn.btn-light-facebook.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-facebook.dropdown-toggle:after,.btn.btn-light-facebook.active.dropdown-toggle:after,.btn.btn-light-facebook.show.dropdown-toggle:after,.btn.btn-light-facebook:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-facebook:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-facebook:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-facebook.dropdown-toggle:after{color:#fff}.btn.btn-google{color:#fff;border-color:#dd4b39;background-color:#dd4b39}.btn.btn-google .svg-icon,.btn.btn-google i{color:#fff}.btn.btn-google.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-google,.btn-check:checked+.btn.btn-google,.btn.btn-google.active,.btn.btn-google.show,.btn.btn-google:active:not(.btn-active),.btn.btn-google:focus:not(.btn-active),.btn.btn-google:hover:not(.btn-active),.show>.btn.btn-google{border-color:#cd3623;background-color:#cd3623!important}.btn.btn-light-google{color:#dd4b39;border-color:rgba(221,75,57,.1);background-color:rgba(221,75,57,.1)}.btn.btn-light-google .svg-icon,.btn.btn-light-google i{color:#dd4b39}.btn.btn-light-google.dropdown-toggle:after{color:#dd4b39}.btn-check:active+.btn.btn-light-google,.btn-check:checked+.btn.btn-light-google,.btn.btn-light-google.active,.btn.btn-light-google.show,.btn.btn-light-google:active:not(.btn-active),.btn.btn-light-google:focus:not(.btn-active),.btn.btn-light-google:hover:not(.btn-active),.show>.btn.btn-light-google{color:#fff;border-color:#dd4b39;background-color:#dd4b39!important}.btn-check:active+.btn.btn-light-google .svg-icon,.btn-check:active+.btn.btn-light-google i,.btn-check:checked+.btn.btn-light-google .svg-icon,.btn-check:checked+.btn.btn-light-google i,.btn.btn-light-google.active .svg-icon,.btn.btn-light-google.active i,.btn.btn-light-google.show .svg-icon,.btn.btn-light-google.show i,.btn.btn-light-google:active:not(.btn-active) .svg-icon,.btn.btn-light-google:active:not(.btn-active) i,.btn.btn-light-google:focus:not(.btn-active) .svg-icon,.btn.btn-light-google:focus:not(.btn-active) i,.btn.btn-light-google:hover:not(.btn-active) .svg-icon,.btn.btn-light-google:hover:not(.btn-active) i,.show>.btn.btn-light-google .svg-icon,.show>.btn.btn-light-google i{color:#fff}.btn-check:active+.btn.btn-light-google.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-google.dropdown-toggle:after,.btn.btn-light-google.active.dropdown-toggle:after,.btn.btn-light-google.show.dropdown-toggle:after,.btn.btn-light-google:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-google:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-google:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-google.dropdown-toggle:after{color:#fff}.btn.btn-twitter{color:#fff;border-color:#1da1f2;background-color:#1da1f2}.btn.btn-twitter .svg-icon,.btn.btn-twitter i{color:#fff}.btn.btn-twitter.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-twitter,.btn-check:checked+.btn.btn-twitter,.btn.btn-twitter.active,.btn.btn-twitter.show,.btn.btn-twitter:active:not(.btn-active),.btn.btn-twitter:focus:not(.btn-active),.btn.btn-twitter:hover:not(.btn-active),.show>.btn.btn-twitter{border-color:#0d8ddc;background-color:#0d8ddc!important}.btn.btn-light-twitter{color:#1da1f2;border-color:rgba(29,161,242,.1);background-color:rgba(29,161,242,.1)}.btn.btn-light-twitter .svg-icon,.btn.btn-light-twitter i{color:#1da1f2}.btn.btn-light-twitter.dropdown-toggle:after{color:#1da1f2}.btn-check:active+.btn.btn-light-twitter,.btn-check:checked+.btn.btn-light-twitter,.btn.btn-light-twitter.active,.btn.btn-light-twitter.show,.btn.btn-light-twitter:active:not(.btn-active),.btn.btn-light-twitter:focus:not(.btn-active),.btn.btn-light-twitter:hover:not(.btn-active),.show>.btn.btn-light-twitter{color:#fff;border-color:#1da1f2;background-color:#1da1f2!important}.btn-check:active+.btn.btn-light-twitter .svg-icon,.btn-check:active+.btn.btn-light-twitter i,.btn-check:checked+.btn.btn-light-twitter .svg-icon,.btn-check:checked+.btn.btn-light-twitter i,.btn.btn-light-twitter.active .svg-icon,.btn.btn-light-twitter.active i,.btn.btn-light-twitter.show .svg-icon,.btn.btn-light-twitter.show i,.btn.btn-light-twitter:active:not(.btn-active) .svg-icon,.btn.btn-light-twitter:active:not(.btn-active) i,.btn.btn-light-twitter:focus:not(.btn-active) .svg-icon,.btn.btn-light-twitter:focus:not(.btn-active) i,.btn.btn-light-twitter:hover:not(.btn-active) .svg-icon,.btn.btn-light-twitter:hover:not(.btn-active) i,.show>.btn.btn-light-twitter .svg-icon,.show>.btn.btn-light-twitter i{color:#fff}.btn-check:active+.btn.btn-light-twitter.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-twitter.dropdown-toggle:after,.btn.btn-light-twitter.active.dropdown-toggle:after,.btn.btn-light-twitter.show.dropdown-toggle:after,.btn.btn-light-twitter:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-twitter:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-twitter:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-twitter.dropdown-toggle:after{color:#fff}.btn.btn-instagram{color:#fff;border-color:#e1306c;background-color:#e1306c}.btn.btn-instagram .svg-icon,.btn.btn-instagram i{color:#fff}.btn.btn-instagram.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-instagram,.btn-check:checked+.btn.btn-instagram,.btn.btn-instagram.active,.btn.btn-instagram.show,.btn.btn-instagram:active:not(.btn-active),.btn.btn-instagram:focus:not(.btn-active),.btn.btn-instagram:hover:not(.btn-active),.show>.btn.btn-instagram{border-color:#cd1e59;background-color:#cd1e59!important}.btn.btn-light-instagram{color:#e1306c;border-color:rgba(225,48,108,.1);background-color:rgba(225,48,108,.1)}.btn.btn-light-instagram .svg-icon,.btn.btn-light-instagram i{color:#e1306c}.btn.btn-light-instagram.dropdown-toggle:after{color:#e1306c}.btn-check:active+.btn.btn-light-instagram,.btn-check:checked+.btn.btn-light-instagram,.btn.btn-light-instagram.active,.btn.btn-light-instagram.show,.btn.btn-light-instagram:active:not(.btn-active),.btn.btn-light-instagram:focus:not(.btn-active),.btn.btn-light-instagram:hover:not(.btn-active),.show>.btn.btn-light-instagram{color:#fff;border-color:#e1306c;background-color:#e1306c!important}.btn-check:active+.btn.btn-light-instagram .svg-icon,.btn-check:active+.btn.btn-light-instagram i,.btn-check:checked+.btn.btn-light-instagram .svg-icon,.btn-check:checked+.btn.btn-light-instagram i,.btn.btn-light-instagram.active .svg-icon,.btn.btn-light-instagram.active i,.btn.btn-light-instagram.show .svg-icon,.btn.btn-light-instagram.show i,.btn.btn-light-instagram:active:not(.btn-active) .svg-icon,.btn.btn-light-instagram:active:not(.btn-active) i,.btn.btn-light-instagram:focus:not(.btn-active) .svg-icon,.btn.btn-light-instagram:focus:not(.btn-active) i,.btn.btn-light-instagram:hover:not(.btn-active) .svg-icon,.btn.btn-light-instagram:hover:not(.btn-active) i,.show>.btn.btn-light-instagram .svg-icon,.show>.btn.btn-light-instagram i{color:#fff}.btn-check:active+.btn.btn-light-instagram.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-instagram.dropdown-toggle:after,.btn.btn-light-instagram.active.dropdown-toggle:after,.btn.btn-light-instagram.show.dropdown-toggle:after,.btn.btn-light-instagram:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-instagram:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-instagram:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-instagram.dropdown-toggle:after{color:#fff}.btn.btn-youtube{color:#fff;border-color:red;background-color:red}.btn.btn-youtube .svg-icon,.btn.btn-youtube i{color:#fff}.btn.btn-youtube.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-youtube,.btn-check:checked+.btn.btn-youtube,.btn.btn-youtube.active,.btn.btn-youtube.show,.btn.btn-youtube:active:not(.btn-active),.btn.btn-youtube:focus:not(.btn-active),.btn.btn-youtube:hover:not(.btn-active),.show>.btn.btn-youtube{border-color:#d90000;background-color:#d90000!important}.btn.btn-light-youtube{color:red;border-color:rgba(255,0,0,.1);background-color:rgba(255,0,0,.1)}.btn.btn-light-youtube .svg-icon,.btn.btn-light-youtube i{color:red}.btn.btn-light-youtube.dropdown-toggle:after{color:red}.btn-check:active+.btn.btn-light-youtube,.btn-check:checked+.btn.btn-light-youtube,.btn.btn-light-youtube.active,.btn.btn-light-youtube.show,.btn.btn-light-youtube:active:not(.btn-active),.btn.btn-light-youtube:focus:not(.btn-active),.btn.btn-light-youtube:hover:not(.btn-active),.show>.btn.btn-light-youtube{color:#fff;border-color:red;background-color:red!important}.btn-check:active+.btn.btn-light-youtube .svg-icon,.btn-check:active+.btn.btn-light-youtube i,.btn-check:checked+.btn.btn-light-youtube .svg-icon,.btn-check:checked+.btn.btn-light-youtube i,.btn.btn-light-youtube.active .svg-icon,.btn.btn-light-youtube.active i,.btn.btn-light-youtube.show .svg-icon,.btn.btn-light-youtube.show i,.btn.btn-light-youtube:active:not(.btn-active) .svg-icon,.btn.btn-light-youtube:active:not(.btn-active) i,.btn.btn-light-youtube:focus:not(.btn-active) .svg-icon,.btn.btn-light-youtube:focus:not(.btn-active) i,.btn.btn-light-youtube:hover:not(.btn-active) .svg-icon,.btn.btn-light-youtube:hover:not(.btn-active) i,.show>.btn.btn-light-youtube .svg-icon,.show>.btn.btn-light-youtube i{color:#fff}.btn-check:active+.btn.btn-light-youtube.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-youtube.dropdown-toggle:after,.btn.btn-light-youtube.active.dropdown-toggle:after,.btn.btn-light-youtube.show.dropdown-toggle:after,.btn.btn-light-youtube:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-youtube:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-youtube:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-youtube.dropdown-toggle:after{color:#fff}.btn.btn-linkedin{color:#fff;border-color:#0077b5;background-color:#0077b5}.btn.btn-linkedin .svg-icon,.btn.btn-linkedin i{color:#fff}.btn.btn-linkedin.dropdown-toggle:after{color:#fff}.btn-check:active+.btn.btn-linkedin,.btn-check:checked+.btn.btn-linkedin,.btn.btn-linkedin.active,.btn.btn-linkedin.show,.btn.btn-linkedin:active:not(.btn-active),.btn.btn-linkedin:focus:not(.btn-active),.btn.btn-linkedin:hover:not(.btn-active),.show>.btn.btn-linkedin{border-color:#005e8f;background-color:#005e8f!important}.btn.btn-light-linkedin{color:#0077b5;border-color:rgba(0,119,181,.1);background-color:rgba(0,119,181,.1)}.btn.btn-light-linkedin .svg-icon,.btn.btn-light-linkedin i{color:#0077b5}.btn.btn-light-linkedin.dropdown-toggle:after{color:#0077b5}.btn-check:active+.btn.btn-light-linkedin,.btn-check:checked+.btn.btn-light-linkedin,.btn.btn-light-linkedin.active,.btn.btn-light-linkedin.show,.btn.btn-light-linkedin:active:not(.btn-active),.btn.btn-light-linkedin:focus:not(.btn-active),.btn.btn-light-linkedin:hover:not(.btn-active),.show>.btn.btn-light-linkedin{color:#fff;border-color:#0077b5;background-color:#0077b5!important}.btn-check:active+.btn.btn-light-linkedin .svg-icon,.btn-check:active+.btn.btn-light-linkedin i,.btn-check:checked+.btn.btn-light-linkedin .svg-icon,.btn-check:checked+.btn.btn-light-linkedin i,.btn.btn-light-linkedin.active .svg-icon,.btn.btn-light-linkedin.active i,.btn.btn-light-linkedin.show .svg-icon,.btn.btn-light-linkedin.show i,.btn.btn-light-linkedin:active:not(.btn-active) .svg-icon,.btn.btn-light-linkedin:active:not(.btn-active) i,.btn.btn-light-linkedin:focus:not(.btn-active) .svg-icon,.btn.btn-light-linkedin:focus:not(.btn-active) i,.btn.btn-light-linkedin:hover:not(.btn-active) .svg-icon,.btn.btn-light-linkedin:hover:not(.btn-active) i,.show>.btn.btn-light-linkedin .svg-icon,.show>.btn.btn-light-linkedin i{color:#fff}.btn-check:active+.btn.btn-light-linkedin.dropdown-toggle:after,.btn-check:checked+.btn.btn-light-linkedin.dropdown-toggle:after,.btn.btn-light-linkedin.active.dropdown-toggle:after,.btn.btn-light-linkedin.show.dropdown-toggle:after,.btn.btn-light-linkedin:active:not(.btn-active).dropdown-toggle:after,.btn.btn-light-linkedin:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-light-linkedin:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-light-linkedin.dropdown-toggle:after{color:#fff}.btn.btn-outline.btn-outline-dashed{border-width:1px;border-style:dashed}.btn-check:active+.btn.btn-outline.btn-outline-dashed,.btn-check:checked+.btn.btn-outline.btn-outline-dashed,.btn.btn-outline.btn-outline-dashed.active,.btn.btn-outline.btn-outline-dashed.show,.btn.btn-outline.btn-outline-dashed:active:not(.btn-active),.btn.btn-outline.btn-outline-dashed:focus:not(.btn-active),.btn.btn-outline.btn-outline-dashed:hover:not(.btn-active),.show>.btn.btn-outline.btn-outline-dashed{border-color:#3699ff}.btn.btn-outline.btn-outline-dashed.btn-outline-default{border-width:1px;border-style:dashed;color:#cdcdde;border-color:#323248}.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default i{color:#cdcdde}.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after{color:#cdcdde}.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default,.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default,.btn.btn-outline.btn-outline-dashed.btn-outline-default.active,.btn.btn-outline.btn-outline-dashed.btn-outline-default.show,.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active),.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active),.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active),.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default{color:#3699ff;border-color:#3699ff;background-color:#212e48!important}.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon,.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default i,.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon,.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default i,.btn.btn-outline.btn-outline-dashed.btn-outline-default.active .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default.active i,.btn.btn-outline.btn-outline-dashed.btn-outline-default.show .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default.show i,.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active) .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active) i,.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active) .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active) i,.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active) .svg-icon,.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active) i,.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon,.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default i{color:#3699ff}.btn-check:active+.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after,.btn-check:checked+.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default.active.dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default.show.dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active).dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active).dropdown-toggle:after,.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active).dropdown-toggle:after,.show>.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after{color:#3699ff}code:not([class*=language-]){font-weight:400;color:#b93993;line-height:inherit;font-size:inherit;background-color:#2b2b40;padding:.1rem .4rem;margin:0 .5rem;box-shadow:0 3px 9px rgba(0,0,0,.08);border-radius:.3rem}.form-control{box-shadow:none!important}.dropdown.show>.form-control{color:#92929f;background-color:#1e1e2d;border-color:#474761}.form-control[readonly]{background-color:#1e1e2d}.form-control.form-control-solid{background-color:#1b1b29;border-color:#1b1b29;color:#92929f;transition:color .2s ease,background-color .2s ease}.form-control.form-control-solid::placeholder{color:#565674}.form-control.form-control-solid::-moz-placeholder{color:#565674;opacity:1}.dropdown.show>.form-control.form-control-solid,.form-control.form-control-solid.active,.form-control.form-control-solid.focus,.form-control.form-control-solid:active,.form-control.form-control-solid:focus{background-color:#171723;border-color:#171723;color:#92929f;transition:color .2s ease,background-color .2s ease}.form-control.form-control-transparent{background-color:transparent;border-color:transparent}.dropdown.show>.form-control.form-control-transparent,.form-control.form-control-transparent.active,.form-control.form-control-transparent.focus,.form-control.form-control-transparent:active,.form-control.form-control-transparent:focus{background-color:transparent;border-color:transparent}.form-control.form-control-flush{border:0;background-color:transparent;outline:0!important;box-shadow:none;border-radius:0}.placeholder-gray-500::placeholder{color:#565674}.placeholder-gray-500::-moz-placeholder{color:#565674;opacity:1}.placeholder-white::placeholder{color:#fff}.placeholder-white::-moz-placeholder{color:#fff;opacity:1}.resize-none{resize:none}.form-control-solid-bg{background-color:#1b1b29}.form-select{box-shadow:none!important}.form-select.form-select-solid{background-color:#1b1b29;border-color:#1b1b29;color:#92929f;transition:color .2s ease,background-color .2s ease}.form-select.form-select-solid::placeholder{color:#565674}.form-select.form-select-solid::-moz-placeholder{color:#565674;opacity:1}.dropdown.show>.form-select.form-select-solid,.form-select.form-select-solid.active,.form-select.form-select-solid.focus,.form-select.form-select-solid:active,.form-select.form-select-solid:focus{background-color:#171723;border-color:#171723!important;color:#92929f;transition:color .2s ease,background-color .2s ease}.form-select.form-select-transparent{background-color:transparent;border-color:transparent;color:#92929f}.form-select.form-select-transparent::placeholder{color:#565674}.form-select.form-select-transparent::-moz-placeholder{color:#565674;opacity:1}.dropdown.show>.form-select.form-select-transparent,.form-select.form-select-transparent.active,.form-select.form-select-transparent.focus,.form-select.form-select-transparent:active,.form-select.form-select-transparent:focus{background-color:transparent;border-color:transparent!important;color:#92929f}.form-check .form-check-label{cursor:pointer}.form-check .form-check-input{cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-check.form-check-custom{display:flex;align-items:center;padding-right:0;margin:0}.form-check.form-check-custom .form-check-input{margin:0;float:none;flex-shrink:0}.form-check.form-check-custom .form-check-label{margin-right:.55rem}.form-check:not(.form-switch) .form-check-input[type=checkbox]{background-size:60% 60%}.form-check.form-check-solid .form-check-input{border:0;background-color:#2b2b40}.form-check.form-check-solid .form-check-input:active,.form-check.form-check-solid .form-check-input:focus{filter:none;background-color:#2b2b40}.form-check.form-check-solid .form-check-input:checked{background-color:#3699ff}.form-check.form-check-success .form-check-input:checked{background-color:#0bb783}.form-check.form-check-danger .form-check-input:checked{background-color:#f64e60}.form-check.form-check-warning .form-check-input:checked{background-color:#ffa800}.form-check.form-check-custom.form-check-sm .form-check-input{height:1.5rem;width:1.5rem}.form-check.form-check-custom.form-check-lg .form-check-input{height:2.25rem;width:2.25rem}.form-switch.form-check-solid .form-check-input{height:2.25rem;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='%23565674'/%3e%3c/svg%3e");border-radius:3.25rem}.form-switch.form-check-solid .form-check-input:checked{filter:none;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='%23FFFFFF'/%3e%3c/svg%3e")}.form-switch.form-check-solid.form-switch-sm .form-check-input{height:1.5rem;width:2.5rem}.form-switch.form-check-solid.form-switch-lg .form-check-input{height:2.75rem;width:3.75rem}.form-floating .form-control.form-control-solid::placeholder{color:transparent}.input-group.input-group-solid{border-radius:.475rem}.input-group.input-group-solid.input-group-sm{border-radius:.325rem}.input-group.input-group-solid.input-group-lg{border-radius:.625rem}.input-group.input-group-solid .input-group-text{background-color:#1b1b29;border-color:#1b1b29}.input-group.input-group-solid .input-group-text+.form-control{border-right-color:#323248}.input-group.input-group-solid .form-control{background-color:#1b1b29;border-color:#1b1b29}.input-group.input-group-solid .form-control+.input-group-text{border-right-color:#323248}.required:after{content:"*";position:relative;font-size:inherit;color:#f64e60;padding-right:.25rem;font-weight:700}.modal .modal-header{align-items:center;justify-content:space-between;border-top-right-radius:.475rem;border-top-left-radius:.475rem}.modal .modal-header .h1,.modal .modal-header .h2,.modal .modal-header .h3,.modal .modal-header .h4,.modal .modal-header .h5,.modal .modal-header .h6,.modal .modal-header h1,.modal .modal-header h2,.modal .modal-header h3,.modal .modal-header h4,.modal .modal-header h5,.modal .modal-header h6{margin-bottom:0}.modal .modal-dialog{outline:0!important}.modal-rounded{border-radius:.475rem!important}.progress-vertical{display:flex;align-items:stretch;justify-content:space-between}.progress-vertical .progress{height:100%;border-radius:.475rem;display:flex;align-items:flex-end;margin-left:1rem}.progress-vertical .progress:last-child{margin-left:0}.progress-vertical .progress .progress-bar{width:8px;border-radius:.475rem}.table>:not(:first-child){border-color:transparent;border-width:0;border-style:none}.table>:not(:last-child)>:last-child>*{border-bottom-color:inherit}.table td,.table th,.table tr{border-color:inherit;border-width:inherit;border-style:inherit;text-transform:inherit;font-weight:inherit;font-size:inherit;color:inherit;height:inherit;min-height:inherit}.table td:first-child,.table th:first-child,.table tr:first-child{padding-right:0}.table td:last-child,.table th:last-child,.table tr:last-child{padding-left:0}.table tbody tr:last-child,.table tfoot tr:last-child{border-bottom:0!important}.table tbody tr:last-child td,.table tbody tr:last-child th,.table tfoot tr:last-child td,.table tfoot tr:last-child th{border-bottom:0!important}.table tfoot td,.table tfoot th{border-top:inherit}.table.table-rounded{border-radius:.475rem;border-spacing:0;border-collapse:separate}.table.table-flush td,.table.table-flush th,.table.table-flush tr{padding:inherit}.table.table-row-bordered tr{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#2b2b40}.table.table-row-bordered tfoot td,.table.table-row-bordered tfoot th{border-top-width:1px!important}.table.table-row-dashed tr{border-bottom-width:1px;border-bottom-style:dashed;border-bottom-color:#2b2b40}.table.table-row-dashed tfoot td,.table.table-row-dashed tfoot th{border-top-width:1px!important}.table.table-row-gray-100 tr{border-bottom-color:#1b1b29}.table.table-row-gray-200 tr{border-bottom-color:#2b2b40}.table.table-row-gray-300 tr{border-bottom-color:#323248}.table.table-row-gray-400 tr{border-bottom-color:#474761}.table.table-row-gray-500 tr{border-bottom-color:#565674}.table.table-row-gray-600 tr{border-bottom-color:#6d6d80}.table.table-row-gray-700 tr{border-bottom-color:#92929f}.table.table-row-gray-800 tr{border-bottom-color:#cdcdde}.table.table-row-gray-900 tr{border-bottom-color:#fff}.table-sort:after{opacity:0}.table-sort,.table-sort-asc,.table-sort-desc{vertical-align:middle}.table-sort-asc:after,.table-sort-desc:after,.table-sort:after{position:relative;display:inline-block;width:.75rem;height:.75rem;content:" ";bottom:auto;left:auto;right:auto;margin-right:.5rem}.table-sort-asc:after{opacity:1;background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 8' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.42111 2.06463C4.22088 1.96161 3.9637 1.9809 3.78597 2.12863L0.177181 5.12847C-0.046034 5.31402 -0.0602611 5.63049 0.145404 5.83532C0.351069 6.04015 0.698744 6.05578 0.921959 5.87023L4.14137 3.19406L7.06417 5.84414C7.27904 6.03896 7.62686 6.03835 7.84105 5.84278C8.05524 5.64721 8.05469 5.33073 7.83982 5.13591L4.54449 2.14806C4.50704 2.1141 4.46541 2.08629 4.42111 2.06463Z'/%3e%3c/svg%3e")}.table-sort-desc:after{opacity:1;background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 8' fill='%23565674'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.42111 5.93537C4.22088 6.03839 3.9637 6.0191 3.78597 5.87137L0.177181 2.87153C-0.046034 2.68598 -0.060261 2.36951 0.145404 2.16468C0.351069 1.95985 0.698744 1.94422 0.921959 2.12977L4.14137 4.80594L7.06417 2.15586C7.27904 1.96104 7.62686 1.96165 7.84105 2.15722C8.05524 2.35279 8.05469 2.66927 7.83982 2.86409L4.54449 5.85194C4.50704 5.8859 4.46541 5.91371 4.42111 5.93537Z'/%3e%3c/svg%3e")}.table-loading-message{display:none;position:absolute;top:50%;right:50%;border-radius:.475rem;box-shadow:0 0 30px rgba(0,0,0,.3);background-color:#2b2b40;color:#92929f;font-weight:500;margin:0!important;width:auto;padding:1rem 2rem!important;transform:translateX(50%) translateY(-50%)}.table-loading{position:relative}.table-loading .table-loading-message{display:block}.table.g-0 td,.table.g-0 th{padding:0}.table.g-0 td.dtr-control,.table.g-0 th.dtr-control{padding-right:0!important}.table.gy-0 td,.table.gy-0 th{padding-top:0;padding-bottom:0}.table.gx-0 td,.table.gx-0 th{padding-right:0;padding-left:0}.table.gx-0 td.dtr-control,.table.gx-0 th.dtr-control{padding-right:0!important}.table.gs-0 td:first-child,.table.gs-0 th:first-child{padding-right:0}.table.gs-0 td:last-child,.table.gs-0 th:last-child{padding-left:0}.table.gs-0 td.dtr-control:first-child,.table.gs-0 th.dtr-control:first-child{padding-right:0!important}.table.g-1 td,.table.g-1 th{padding:.25rem}.table.g-1 td.dtr-control,.table.g-1 th.dtr-control{padding-right:.25rem!important}.table.gy-1 td,.table.gy-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-1 td,.table.gx-1 th{padding-right:.25rem;padding-left:.25rem}.table.gx-1 td.dtr-control,.table.gx-1 th.dtr-control{padding-right:.25rem!important}.table.gs-1 td:first-child,.table.gs-1 th:first-child{padding-right:.25rem}.table.gs-1 td:last-child,.table.gs-1 th:last-child{padding-left:.25rem}.table.gs-1 td.dtr-control:first-child,.table.gs-1 th.dtr-control:first-child{padding-right:.25rem!important}.table.g-2 td,.table.g-2 th{padding:.5rem}.table.g-2 td.dtr-control,.table.g-2 th.dtr-control{padding-right:.5rem!important}.table.gy-2 td,.table.gy-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-2 td,.table.gx-2 th{padding-right:.5rem;padding-left:.5rem}.table.gx-2 td.dtr-control,.table.gx-2 th.dtr-control{padding-right:.5rem!important}.table.gs-2 td:first-child,.table.gs-2 th:first-child{padding-right:.5rem}.table.gs-2 td:last-child,.table.gs-2 th:last-child{padding-left:.5rem}.table.gs-2 td.dtr-control:first-child,.table.gs-2 th.dtr-control:first-child{padding-right:.5rem!important}.table.g-3 td,.table.g-3 th{padding:.75rem}.table.g-3 td.dtr-control,.table.g-3 th.dtr-control{padding-right:.75rem!important}.table.gy-3 td,.table.gy-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-3 td,.table.gx-3 th{padding-right:.75rem;padding-left:.75rem}.table.gx-3 td.dtr-control,.table.gx-3 th.dtr-control{padding-right:.75rem!important}.table.gs-3 td:first-child,.table.gs-3 th:first-child{padding-right:.75rem}.table.gs-3 td:last-child,.table.gs-3 th:last-child{padding-left:.75rem}.table.gs-3 td.dtr-control:first-child,.table.gs-3 th.dtr-control:first-child{padding-right:.75rem!important}.table.g-4 td,.table.g-4 th{padding:1rem}.table.g-4 td.dtr-control,.table.g-4 th.dtr-control{padding-right:1rem!important}.table.gy-4 td,.table.gy-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-4 td,.table.gx-4 th{padding-right:1rem;padding-left:1rem}.table.gx-4 td.dtr-control,.table.gx-4 th.dtr-control{padding-right:1rem!important}.table.gs-4 td:first-child,.table.gs-4 th:first-child{padding-right:1rem}.table.gs-4 td:last-child,.table.gs-4 th:last-child{padding-left:1rem}.table.gs-4 td.dtr-control:first-child,.table.gs-4 th.dtr-control:first-child{padding-right:1rem!important}.table.g-5 td,.table.g-5 th{padding:1.25rem}.table.g-5 td.dtr-control,.table.g-5 th.dtr-control{padding-right:1.25rem!important}.table.gy-5 td,.table.gy-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-5 td,.table.gx-5 th{padding-right:1.25rem;padding-left:1.25rem}.table.gx-5 td.dtr-control,.table.gx-5 th.dtr-control{padding-right:1.25rem!important}.table.gs-5 td:first-child,.table.gs-5 th:first-child{padding-right:1.25rem}.table.gs-5 td:last-child,.table.gs-5 th:last-child{padding-left:1.25rem}.table.gs-5 td.dtr-control:first-child,.table.gs-5 th.dtr-control:first-child{padding-right:1.25rem!important}.table.g-6 td,.table.g-6 th{padding:1.5rem}.table.g-6 td.dtr-control,.table.g-6 th.dtr-control{padding-right:1.5rem!important}.table.gy-6 td,.table.gy-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-6 td,.table.gx-6 th{padding-right:1.5rem;padding-left:1.5rem}.table.gx-6 td.dtr-control,.table.gx-6 th.dtr-control{padding-right:1.5rem!important}.table.gs-6 td:first-child,.table.gs-6 th:first-child{padding-right:1.5rem}.table.gs-6 td:last-child,.table.gs-6 th:last-child{padding-left:1.5rem}.table.gs-6 td.dtr-control:first-child,.table.gs-6 th.dtr-control:first-child{padding-right:1.5rem!important}.table.g-7 td,.table.g-7 th{padding:1.75rem}.table.g-7 td.dtr-control,.table.g-7 th.dtr-control{padding-right:1.75rem!important}.table.gy-7 td,.table.gy-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-7 td,.table.gx-7 th{padding-right:1.75rem;padding-left:1.75rem}.table.gx-7 td.dtr-control,.table.gx-7 th.dtr-control{padding-right:1.75rem!important}.table.gs-7 td:first-child,.table.gs-7 th:first-child{padding-right:1.75rem}.table.gs-7 td:last-child,.table.gs-7 th:last-child{padding-left:1.75rem}.table.gs-7 td.dtr-control:first-child,.table.gs-7 th.dtr-control:first-child{padding-right:1.75rem!important}.table.g-8 td,.table.g-8 th{padding:2rem}.table.g-8 td.dtr-control,.table.g-8 th.dtr-control{padding-right:2rem!important}.table.gy-8 td,.table.gy-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-8 td,.table.gx-8 th{padding-right:2rem;padding-left:2rem}.table.gx-8 td.dtr-control,.table.gx-8 th.dtr-control{padding-right:2rem!important}.table.gs-8 td:first-child,.table.gs-8 th:first-child{padding-right:2rem}.table.gs-8 td:last-child,.table.gs-8 th:last-child{padding-left:2rem}.table.gs-8 td.dtr-control:first-child,.table.gs-8 th.dtr-control:first-child{padding-right:2rem!important}.table.g-9 td,.table.g-9 th{padding:2.25rem}.table.g-9 td.dtr-control,.table.g-9 th.dtr-control{padding-right:2.25rem!important}.table.gy-9 td,.table.gy-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-9 td,.table.gx-9 th{padding-right:2.25rem;padding-left:2.25rem}.table.gx-9 td.dtr-control,.table.gx-9 th.dtr-control{padding-right:2.25rem!important}.table.gs-9 td:first-child,.table.gs-9 th:first-child{padding-right:2.25rem}.table.gs-9 td:last-child,.table.gs-9 th:last-child{padding-left:2.25rem}.table.gs-9 td.dtr-control:first-child,.table.gs-9 th.dtr-control:first-child{padding-right:2.25rem!important}.table.g-10 td,.table.g-10 th{padding:2.5rem}.table.g-10 td.dtr-control,.table.g-10 th.dtr-control{padding-right:2.5rem!important}.table.gy-10 td,.table.gy-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-10 td,.table.gx-10 th{padding-right:2.5rem;padding-left:2.5rem}.table.gx-10 td.dtr-control,.table.gx-10 th.dtr-control{padding-right:2.5rem!important}.table.gs-10 td:first-child,.table.gs-10 th:first-child{padding-right:2.5rem}.table.gs-10 td:last-child,.table.gs-10 th:last-child{padding-left:2.5rem}.table.gs-10 td.dtr-control:first-child,.table.gs-10 th.dtr-control:first-child{padding-right:2.5rem!important}@media (min-width:576px){.table.g-sm-0 td,.table.g-sm-0 th{padding:0}.table.g-sm-0 td.dtr-control,.table.g-sm-0 th.dtr-control{padding-right:0!important}.table.gy-sm-0 td,.table.gy-sm-0 th{padding-top:0;padding-bottom:0}.table.gx-sm-0 td,.table.gx-sm-0 th{padding-right:0;padding-left:0}.table.gx-sm-0 td.dtr-control,.table.gx-sm-0 th.dtr-control{padding-right:0!important}.table.gs-sm-0 td:first-child,.table.gs-sm-0 th:first-child{padding-right:0}.table.gs-sm-0 td:last-child,.table.gs-sm-0 th:last-child{padding-left:0}.table.gs-sm-0 td.dtr-control:first-child,.table.gs-sm-0 th.dtr-control:first-child{padding-right:0!important}.table.g-sm-1 td,.table.g-sm-1 th{padding:.25rem}.table.g-sm-1 td.dtr-control,.table.g-sm-1 th.dtr-control{padding-right:.25rem!important}.table.gy-sm-1 td,.table.gy-sm-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-sm-1 td,.table.gx-sm-1 th{padding-right:.25rem;padding-left:.25rem}.table.gx-sm-1 td.dtr-control,.table.gx-sm-1 th.dtr-control{padding-right:.25rem!important}.table.gs-sm-1 td:first-child,.table.gs-sm-1 th:first-child{padding-right:.25rem}.table.gs-sm-1 td:last-child,.table.gs-sm-1 th:last-child{padding-left:.25rem}.table.gs-sm-1 td.dtr-control:first-child,.table.gs-sm-1 th.dtr-control:first-child{padding-right:.25rem!important}.table.g-sm-2 td,.table.g-sm-2 th{padding:.5rem}.table.g-sm-2 td.dtr-control,.table.g-sm-2 th.dtr-control{padding-right:.5rem!important}.table.gy-sm-2 td,.table.gy-sm-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-sm-2 td,.table.gx-sm-2 th{padding-right:.5rem;padding-left:.5rem}.table.gx-sm-2 td.dtr-control,.table.gx-sm-2 th.dtr-control{padding-right:.5rem!important}.table.gs-sm-2 td:first-child,.table.gs-sm-2 th:first-child{padding-right:.5rem}.table.gs-sm-2 td:last-child,.table.gs-sm-2 th:last-child{padding-left:.5rem}.table.gs-sm-2 td.dtr-control:first-child,.table.gs-sm-2 th.dtr-control:first-child{padding-right:.5rem!important}.table.g-sm-3 td,.table.g-sm-3 th{padding:.75rem}.table.g-sm-3 td.dtr-control,.table.g-sm-3 th.dtr-control{padding-right:.75rem!important}.table.gy-sm-3 td,.table.gy-sm-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-sm-3 td,.table.gx-sm-3 th{padding-right:.75rem;padding-left:.75rem}.table.gx-sm-3 td.dtr-control,.table.gx-sm-3 th.dtr-control{padding-right:.75rem!important}.table.gs-sm-3 td:first-child,.table.gs-sm-3 th:first-child{padding-right:.75rem}.table.gs-sm-3 td:last-child,.table.gs-sm-3 th:last-child{padding-left:.75rem}.table.gs-sm-3 td.dtr-control:first-child,.table.gs-sm-3 th.dtr-control:first-child{padding-right:.75rem!important}.table.g-sm-4 td,.table.g-sm-4 th{padding:1rem}.table.g-sm-4 td.dtr-control,.table.g-sm-4 th.dtr-control{padding-right:1rem!important}.table.gy-sm-4 td,.table.gy-sm-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-sm-4 td,.table.gx-sm-4 th{padding-right:1rem;padding-left:1rem}.table.gx-sm-4 td.dtr-control,.table.gx-sm-4 th.dtr-control{padding-right:1rem!important}.table.gs-sm-4 td:first-child,.table.gs-sm-4 th:first-child{padding-right:1rem}.table.gs-sm-4 td:last-child,.table.gs-sm-4 th:last-child{padding-left:1rem}.table.gs-sm-4 td.dtr-control:first-child,.table.gs-sm-4 th.dtr-control:first-child{padding-right:1rem!important}.table.g-sm-5 td,.table.g-sm-5 th{padding:1.25rem}.table.g-sm-5 td.dtr-control,.table.g-sm-5 th.dtr-control{padding-right:1.25rem!important}.table.gy-sm-5 td,.table.gy-sm-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-sm-5 td,.table.gx-sm-5 th{padding-right:1.25rem;padding-left:1.25rem}.table.gx-sm-5 td.dtr-control,.table.gx-sm-5 th.dtr-control{padding-right:1.25rem!important}.table.gs-sm-5 td:first-child,.table.gs-sm-5 th:first-child{padding-right:1.25rem}.table.gs-sm-5 td:last-child,.table.gs-sm-5 th:last-child{padding-left:1.25rem}.table.gs-sm-5 td.dtr-control:first-child,.table.gs-sm-5 th.dtr-control:first-child{padding-right:1.25rem!important}.table.g-sm-6 td,.table.g-sm-6 th{padding:1.5rem}.table.g-sm-6 td.dtr-control,.table.g-sm-6 th.dtr-control{padding-right:1.5rem!important}.table.gy-sm-6 td,.table.gy-sm-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-sm-6 td,.table.gx-sm-6 th{padding-right:1.5rem;padding-left:1.5rem}.table.gx-sm-6 td.dtr-control,.table.gx-sm-6 th.dtr-control{padding-right:1.5rem!important}.table.gs-sm-6 td:first-child,.table.gs-sm-6 th:first-child{padding-right:1.5rem}.table.gs-sm-6 td:last-child,.table.gs-sm-6 th:last-child{padding-left:1.5rem}.table.gs-sm-6 td.dtr-control:first-child,.table.gs-sm-6 th.dtr-control:first-child{padding-right:1.5rem!important}.table.g-sm-7 td,.table.g-sm-7 th{padding:1.75rem}.table.g-sm-7 td.dtr-control,.table.g-sm-7 th.dtr-control{padding-right:1.75rem!important}.table.gy-sm-7 td,.table.gy-sm-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-sm-7 td,.table.gx-sm-7 th{padding-right:1.75rem;padding-left:1.75rem}.table.gx-sm-7 td.dtr-control,.table.gx-sm-7 th.dtr-control{padding-right:1.75rem!important}.table.gs-sm-7 td:first-child,.table.gs-sm-7 th:first-child{padding-right:1.75rem}.table.gs-sm-7 td:last-child,.table.gs-sm-7 th:last-child{padding-left:1.75rem}.table.gs-sm-7 td.dtr-control:first-child,.table.gs-sm-7 th.dtr-control:first-child{padding-right:1.75rem!important}.table.g-sm-8 td,.table.g-sm-8 th{padding:2rem}.table.g-sm-8 td.dtr-control,.table.g-sm-8 th.dtr-control{padding-right:2rem!important}.table.gy-sm-8 td,.table.gy-sm-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-sm-8 td,.table.gx-sm-8 th{padding-right:2rem;padding-left:2rem}.table.gx-sm-8 td.dtr-control,.table.gx-sm-8 th.dtr-control{padding-right:2rem!important}.table.gs-sm-8 td:first-child,.table.gs-sm-8 th:first-child{padding-right:2rem}.table.gs-sm-8 td:last-child,.table.gs-sm-8 th:last-child{padding-left:2rem}.table.gs-sm-8 td.dtr-control:first-child,.table.gs-sm-8 th.dtr-control:first-child{padding-right:2rem!important}.table.g-sm-9 td,.table.g-sm-9 th{padding:2.25rem}.table.g-sm-9 td.dtr-control,.table.g-sm-9 th.dtr-control{padding-right:2.25rem!important}.table.gy-sm-9 td,.table.gy-sm-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-sm-9 td,.table.gx-sm-9 th{padding-right:2.25rem;padding-left:2.25rem}.table.gx-sm-9 td.dtr-control,.table.gx-sm-9 th.dtr-control{padding-right:2.25rem!important}.table.gs-sm-9 td:first-child,.table.gs-sm-9 th:first-child{padding-right:2.25rem}.table.gs-sm-9 td:last-child,.table.gs-sm-9 th:last-child{padding-left:2.25rem}.table.gs-sm-9 td.dtr-control:first-child,.table.gs-sm-9 th.dtr-control:first-child{padding-right:2.25rem!important}.table.g-sm-10 td,.table.g-sm-10 th{padding:2.5rem}.table.g-sm-10 td.dtr-control,.table.g-sm-10 th.dtr-control{padding-right:2.5rem!important}.table.gy-sm-10 td,.table.gy-sm-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-sm-10 td,.table.gx-sm-10 th{padding-right:2.5rem;padding-left:2.5rem}.table.gx-sm-10 td.dtr-control,.table.gx-sm-10 th.dtr-control{padding-right:2.5rem!important}.table.gs-sm-10 td:first-child,.table.gs-sm-10 th:first-child{padding-right:2.5rem}.table.gs-sm-10 td:last-child,.table.gs-sm-10 th:last-child{padding-left:2.5rem}.table.gs-sm-10 td.dtr-control:first-child,.table.gs-sm-10 th.dtr-control:first-child{padding-right:2.5rem!important}}@media (min-width:768px){.table.g-md-0 td,.table.g-md-0 th{padding:0}.table.g-md-0 td.dtr-control,.table.g-md-0 th.dtr-control{padding-right:0!important}.table.gy-md-0 td,.table.gy-md-0 th{padding-top:0;padding-bottom:0}.table.gx-md-0 td,.table.gx-md-0 th{padding-right:0;padding-left:0}.table.gx-md-0 td.dtr-control,.table.gx-md-0 th.dtr-control{padding-right:0!important}.table.gs-md-0 td:first-child,.table.gs-md-0 th:first-child{padding-right:0}.table.gs-md-0 td:last-child,.table.gs-md-0 th:last-child{padding-left:0}.table.gs-md-0 td.dtr-control:first-child,.table.gs-md-0 th.dtr-control:first-child{padding-right:0!important}.table.g-md-1 td,.table.g-md-1 th{padding:.25rem}.table.g-md-1 td.dtr-control,.table.g-md-1 th.dtr-control{padding-right:.25rem!important}.table.gy-md-1 td,.table.gy-md-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-md-1 td,.table.gx-md-1 th{padding-right:.25rem;padding-left:.25rem}.table.gx-md-1 td.dtr-control,.table.gx-md-1 th.dtr-control{padding-right:.25rem!important}.table.gs-md-1 td:first-child,.table.gs-md-1 th:first-child{padding-right:.25rem}.table.gs-md-1 td:last-child,.table.gs-md-1 th:last-child{padding-left:.25rem}.table.gs-md-1 td.dtr-control:first-child,.table.gs-md-1 th.dtr-control:first-child{padding-right:.25rem!important}.table.g-md-2 td,.table.g-md-2 th{padding:.5rem}.table.g-md-2 td.dtr-control,.table.g-md-2 th.dtr-control{padding-right:.5rem!important}.table.gy-md-2 td,.table.gy-md-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-md-2 td,.table.gx-md-2 th{padding-right:.5rem;padding-left:.5rem}.table.gx-md-2 td.dtr-control,.table.gx-md-2 th.dtr-control{padding-right:.5rem!important}.table.gs-md-2 td:first-child,.table.gs-md-2 th:first-child{padding-right:.5rem}.table.gs-md-2 td:last-child,.table.gs-md-2 th:last-child{padding-left:.5rem}.table.gs-md-2 td.dtr-control:first-child,.table.gs-md-2 th.dtr-control:first-child{padding-right:.5rem!important}.table.g-md-3 td,.table.g-md-3 th{padding:.75rem}.table.g-md-3 td.dtr-control,.table.g-md-3 th.dtr-control{padding-right:.75rem!important}.table.gy-md-3 td,.table.gy-md-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-md-3 td,.table.gx-md-3 th{padding-right:.75rem;padding-left:.75rem}.table.gx-md-3 td.dtr-control,.table.gx-md-3 th.dtr-control{padding-right:.75rem!important}.table.gs-md-3 td:first-child,.table.gs-md-3 th:first-child{padding-right:.75rem}.table.gs-md-3 td:last-child,.table.gs-md-3 th:last-child{padding-left:.75rem}.table.gs-md-3 td.dtr-control:first-child,.table.gs-md-3 th.dtr-control:first-child{padding-right:.75rem!important}.table.g-md-4 td,.table.g-md-4 th{padding:1rem}.table.g-md-4 td.dtr-control,.table.g-md-4 th.dtr-control{padding-right:1rem!important}.table.gy-md-4 td,.table.gy-md-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-md-4 td,.table.gx-md-4 th{padding-right:1rem;padding-left:1rem}.table.gx-md-4 td.dtr-control,.table.gx-md-4 th.dtr-control{padding-right:1rem!important}.table.gs-md-4 td:first-child,.table.gs-md-4 th:first-child{padding-right:1rem}.table.gs-md-4 td:last-child,.table.gs-md-4 th:last-child{padding-left:1rem}.table.gs-md-4 td.dtr-control:first-child,.table.gs-md-4 th.dtr-control:first-child{padding-right:1rem!important}.table.g-md-5 td,.table.g-md-5 th{padding:1.25rem}.table.g-md-5 td.dtr-control,.table.g-md-5 th.dtr-control{padding-right:1.25rem!important}.table.gy-md-5 td,.table.gy-md-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-md-5 td,.table.gx-md-5 th{padding-right:1.25rem;padding-left:1.25rem}.table.gx-md-5 td.dtr-control,.table.gx-md-5 th.dtr-control{padding-right:1.25rem!important}.table.gs-md-5 td:first-child,.table.gs-md-5 th:first-child{padding-right:1.25rem}.table.gs-md-5 td:last-child,.table.gs-md-5 th:last-child{padding-left:1.25rem}.table.gs-md-5 td.dtr-control:first-child,.table.gs-md-5 th.dtr-control:first-child{padding-right:1.25rem!important}.table.g-md-6 td,.table.g-md-6 th{padding:1.5rem}.table.g-md-6 td.dtr-control,.table.g-md-6 th.dtr-control{padding-right:1.5rem!important}.table.gy-md-6 td,.table.gy-md-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-md-6 td,.table.gx-md-6 th{padding-right:1.5rem;padding-left:1.5rem}.table.gx-md-6 td.dtr-control,.table.gx-md-6 th.dtr-control{padding-right:1.5rem!important}.table.gs-md-6 td:first-child,.table.gs-md-6 th:first-child{padding-right:1.5rem}.table.gs-md-6 td:last-child,.table.gs-md-6 th:last-child{padding-left:1.5rem}.table.gs-md-6 td.dtr-control:first-child,.table.gs-md-6 th.dtr-control:first-child{padding-right:1.5rem!important}.table.g-md-7 td,.table.g-md-7 th{padding:1.75rem}.table.g-md-7 td.dtr-control,.table.g-md-7 th.dtr-control{padding-right:1.75rem!important}.table.gy-md-7 td,.table.gy-md-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-md-7 td,.table.gx-md-7 th{padding-right:1.75rem;padding-left:1.75rem}.table.gx-md-7 td.dtr-control,.table.gx-md-7 th.dtr-control{padding-right:1.75rem!important}.table.gs-md-7 td:first-child,.table.gs-md-7 th:first-child{padding-right:1.75rem}.table.gs-md-7 td:last-child,.table.gs-md-7 th:last-child{padding-left:1.75rem}.table.gs-md-7 td.dtr-control:first-child,.table.gs-md-7 th.dtr-control:first-child{padding-right:1.75rem!important}.table.g-md-8 td,.table.g-md-8 th{padding:2rem}.table.g-md-8 td.dtr-control,.table.g-md-8 th.dtr-control{padding-right:2rem!important}.table.gy-md-8 td,.table.gy-md-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-md-8 td,.table.gx-md-8 th{padding-right:2rem;padding-left:2rem}.table.gx-md-8 td.dtr-control,.table.gx-md-8 th.dtr-control{padding-right:2rem!important}.table.gs-md-8 td:first-child,.table.gs-md-8 th:first-child{padding-right:2rem}.table.gs-md-8 td:last-child,.table.gs-md-8 th:last-child{padding-left:2rem}.table.gs-md-8 td.dtr-control:first-child,.table.gs-md-8 th.dtr-control:first-child{padding-right:2rem!important}.table.g-md-9 td,.table.g-md-9 th{padding:2.25rem}.table.g-md-9 td.dtr-control,.table.g-md-9 th.dtr-control{padding-right:2.25rem!important}.table.gy-md-9 td,.table.gy-md-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-md-9 td,.table.gx-md-9 th{padding-right:2.25rem;padding-left:2.25rem}.table.gx-md-9 td.dtr-control,.table.gx-md-9 th.dtr-control{padding-right:2.25rem!important}.table.gs-md-9 td:first-child,.table.gs-md-9 th:first-child{padding-right:2.25rem}.table.gs-md-9 td:last-child,.table.gs-md-9 th:last-child{padding-left:2.25rem}.table.gs-md-9 td.dtr-control:first-child,.table.gs-md-9 th.dtr-control:first-child{padding-right:2.25rem!important}.table.g-md-10 td,.table.g-md-10 th{padding:2.5rem}.table.g-md-10 td.dtr-control,.table.g-md-10 th.dtr-control{padding-right:2.5rem!important}.table.gy-md-10 td,.table.gy-md-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-md-10 td,.table.gx-md-10 th{padding-right:2.5rem;padding-left:2.5rem}.table.gx-md-10 td.dtr-control,.table.gx-md-10 th.dtr-control{padding-right:2.5rem!important}.table.gs-md-10 td:first-child,.table.gs-md-10 th:first-child{padding-right:2.5rem}.table.gs-md-10 td:last-child,.table.gs-md-10 th:last-child{padding-left:2.5rem}.table.gs-md-10 td.dtr-control:first-child,.table.gs-md-10 th.dtr-control:first-child{padding-right:2.5rem!important}}@media (min-width:992px){.table.g-lg-0 td,.table.g-lg-0 th{padding:0}.table.g-lg-0 td.dtr-control,.table.g-lg-0 th.dtr-control{padding-right:0!important}.table.gy-lg-0 td,.table.gy-lg-0 th{padding-top:0;padding-bottom:0}.table.gx-lg-0 td,.table.gx-lg-0 th{padding-right:0;padding-left:0}.table.gx-lg-0 td.dtr-control,.table.gx-lg-0 th.dtr-control{padding-right:0!important}.table.gs-lg-0 td:first-child,.table.gs-lg-0 th:first-child{padding-right:0}.table.gs-lg-0 td:last-child,.table.gs-lg-0 th:last-child{padding-left:0}.table.gs-lg-0 td.dtr-control:first-child,.table.gs-lg-0 th.dtr-control:first-child{padding-right:0!important}.table.g-lg-1 td,.table.g-lg-1 th{padding:.25rem}.table.g-lg-1 td.dtr-control,.table.g-lg-1 th.dtr-control{padding-right:.25rem!important}.table.gy-lg-1 td,.table.gy-lg-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-lg-1 td,.table.gx-lg-1 th{padding-right:.25rem;padding-left:.25rem}.table.gx-lg-1 td.dtr-control,.table.gx-lg-1 th.dtr-control{padding-right:.25rem!important}.table.gs-lg-1 td:first-child,.table.gs-lg-1 th:first-child{padding-right:.25rem}.table.gs-lg-1 td:last-child,.table.gs-lg-1 th:last-child{padding-left:.25rem}.table.gs-lg-1 td.dtr-control:first-child,.table.gs-lg-1 th.dtr-control:first-child{padding-right:.25rem!important}.table.g-lg-2 td,.table.g-lg-2 th{padding:.5rem}.table.g-lg-2 td.dtr-control,.table.g-lg-2 th.dtr-control{padding-right:.5rem!important}.table.gy-lg-2 td,.table.gy-lg-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-lg-2 td,.table.gx-lg-2 th{padding-right:.5rem;padding-left:.5rem}.table.gx-lg-2 td.dtr-control,.table.gx-lg-2 th.dtr-control{padding-right:.5rem!important}.table.gs-lg-2 td:first-child,.table.gs-lg-2 th:first-child{padding-right:.5rem}.table.gs-lg-2 td:last-child,.table.gs-lg-2 th:last-child{padding-left:.5rem}.table.gs-lg-2 td.dtr-control:first-child,.table.gs-lg-2 th.dtr-control:first-child{padding-right:.5rem!important}.table.g-lg-3 td,.table.g-lg-3 th{padding:.75rem}.table.g-lg-3 td.dtr-control,.table.g-lg-3 th.dtr-control{padding-right:.75rem!important}.table.gy-lg-3 td,.table.gy-lg-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-lg-3 td,.table.gx-lg-3 th{padding-right:.75rem;padding-left:.75rem}.table.gx-lg-3 td.dtr-control,.table.gx-lg-3 th.dtr-control{padding-right:.75rem!important}.table.gs-lg-3 td:first-child,.table.gs-lg-3 th:first-child{padding-right:.75rem}.table.gs-lg-3 td:last-child,.table.gs-lg-3 th:last-child{padding-left:.75rem}.table.gs-lg-3 td.dtr-control:first-child,.table.gs-lg-3 th.dtr-control:first-child{padding-right:.75rem!important}.table.g-lg-4 td,.table.g-lg-4 th{padding:1rem}.table.g-lg-4 td.dtr-control,.table.g-lg-4 th.dtr-control{padding-right:1rem!important}.table.gy-lg-4 td,.table.gy-lg-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-lg-4 td,.table.gx-lg-4 th{padding-right:1rem;padding-left:1rem}.table.gx-lg-4 td.dtr-control,.table.gx-lg-4 th.dtr-control{padding-right:1rem!important}.table.gs-lg-4 td:first-child,.table.gs-lg-4 th:first-child{padding-right:1rem}.table.gs-lg-4 td:last-child,.table.gs-lg-4 th:last-child{padding-left:1rem}.table.gs-lg-4 td.dtr-control:first-child,.table.gs-lg-4 th.dtr-control:first-child{padding-right:1rem!important}.table.g-lg-5 td,.table.g-lg-5 th{padding:1.25rem}.table.g-lg-5 td.dtr-control,.table.g-lg-5 th.dtr-control{padding-right:1.25rem!important}.table.gy-lg-5 td,.table.gy-lg-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-lg-5 td,.table.gx-lg-5 th{padding-right:1.25rem;padding-left:1.25rem}.table.gx-lg-5 td.dtr-control,.table.gx-lg-5 th.dtr-control{padding-right:1.25rem!important}.table.gs-lg-5 td:first-child,.table.gs-lg-5 th:first-child{padding-right:1.25rem}.table.gs-lg-5 td:last-child,.table.gs-lg-5 th:last-child{padding-left:1.25rem}.table.gs-lg-5 td.dtr-control:first-child,.table.gs-lg-5 th.dtr-control:first-child{padding-right:1.25rem!important}.table.g-lg-6 td,.table.g-lg-6 th{padding:1.5rem}.table.g-lg-6 td.dtr-control,.table.g-lg-6 th.dtr-control{padding-right:1.5rem!important}.table.gy-lg-6 td,.table.gy-lg-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-lg-6 td,.table.gx-lg-6 th{padding-right:1.5rem;padding-left:1.5rem}.table.gx-lg-6 td.dtr-control,.table.gx-lg-6 th.dtr-control{padding-right:1.5rem!important}.table.gs-lg-6 td:first-child,.table.gs-lg-6 th:first-child{padding-right:1.5rem}.table.gs-lg-6 td:last-child,.table.gs-lg-6 th:last-child{padding-left:1.5rem}.table.gs-lg-6 td.dtr-control:first-child,.table.gs-lg-6 th.dtr-control:first-child{padding-right:1.5rem!important}.table.g-lg-7 td,.table.g-lg-7 th{padding:1.75rem}.table.g-lg-7 td.dtr-control,.table.g-lg-7 th.dtr-control{padding-right:1.75rem!important}.table.gy-lg-7 td,.table.gy-lg-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-lg-7 td,.table.gx-lg-7 th{padding-right:1.75rem;padding-left:1.75rem}.table.gx-lg-7 td.dtr-control,.table.gx-lg-7 th.dtr-control{padding-right:1.75rem!important}.table.gs-lg-7 td:first-child,.table.gs-lg-7 th:first-child{padding-right:1.75rem}.table.gs-lg-7 td:last-child,.table.gs-lg-7 th:last-child{padding-left:1.75rem}.table.gs-lg-7 td.dtr-control:first-child,.table.gs-lg-7 th.dtr-control:first-child{padding-right:1.75rem!important}.table.g-lg-8 td,.table.g-lg-8 th{padding:2rem}.table.g-lg-8 td.dtr-control,.table.g-lg-8 th.dtr-control{padding-right:2rem!important}.table.gy-lg-8 td,.table.gy-lg-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-lg-8 td,.table.gx-lg-8 th{padding-right:2rem;padding-left:2rem}.table.gx-lg-8 td.dtr-control,.table.gx-lg-8 th.dtr-control{padding-right:2rem!important}.table.gs-lg-8 td:first-child,.table.gs-lg-8 th:first-child{padding-right:2rem}.table.gs-lg-8 td:last-child,.table.gs-lg-8 th:last-child{padding-left:2rem}.table.gs-lg-8 td.dtr-control:first-child,.table.gs-lg-8 th.dtr-control:first-child{padding-right:2rem!important}.table.g-lg-9 td,.table.g-lg-9 th{padding:2.25rem}.table.g-lg-9 td.dtr-control,.table.g-lg-9 th.dtr-control{padding-right:2.25rem!important}.table.gy-lg-9 td,.table.gy-lg-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-lg-9 td,.table.gx-lg-9 th{padding-right:2.25rem;padding-left:2.25rem}.table.gx-lg-9 td.dtr-control,.table.gx-lg-9 th.dtr-control{padding-right:2.25rem!important}.table.gs-lg-9 td:first-child,.table.gs-lg-9 th:first-child{padding-right:2.25rem}.table.gs-lg-9 td:last-child,.table.gs-lg-9 th:last-child{padding-left:2.25rem}.table.gs-lg-9 td.dtr-control:first-child,.table.gs-lg-9 th.dtr-control:first-child{padding-right:2.25rem!important}.table.g-lg-10 td,.table.g-lg-10 th{padding:2.5rem}.table.g-lg-10 td.dtr-control,.table.g-lg-10 th.dtr-control{padding-right:2.5rem!important}.table.gy-lg-10 td,.table.gy-lg-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-lg-10 td,.table.gx-lg-10 th{padding-right:2.5rem;padding-left:2.5rem}.table.gx-lg-10 td.dtr-control,.table.gx-lg-10 th.dtr-control{padding-right:2.5rem!important}.table.gs-lg-10 td:first-child,.table.gs-lg-10 th:first-child{padding-right:2.5rem}.table.gs-lg-10 td:last-child,.table.gs-lg-10 th:last-child{padding-left:2.5rem}.table.gs-lg-10 td.dtr-control:first-child,.table.gs-lg-10 th.dtr-control:first-child{padding-right:2.5rem!important}}@media (min-width:1200px){.table.g-xl-0 td,.table.g-xl-0 th{padding:0}.table.g-xl-0 td.dtr-control,.table.g-xl-0 th.dtr-control{padding-right:0!important}.table.gy-xl-0 td,.table.gy-xl-0 th{padding-top:0;padding-bottom:0}.table.gx-xl-0 td,.table.gx-xl-0 th{padding-right:0;padding-left:0}.table.gx-xl-0 td.dtr-control,.table.gx-xl-0 th.dtr-control{padding-right:0!important}.table.gs-xl-0 td:first-child,.table.gs-xl-0 th:first-child{padding-right:0}.table.gs-xl-0 td:last-child,.table.gs-xl-0 th:last-child{padding-left:0}.table.gs-xl-0 td.dtr-control:first-child,.table.gs-xl-0 th.dtr-control:first-child{padding-right:0!important}.table.g-xl-1 td,.table.g-xl-1 th{padding:.25rem}.table.g-xl-1 td.dtr-control,.table.g-xl-1 th.dtr-control{padding-right:.25rem!important}.table.gy-xl-1 td,.table.gy-xl-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-xl-1 td,.table.gx-xl-1 th{padding-right:.25rem;padding-left:.25rem}.table.gx-xl-1 td.dtr-control,.table.gx-xl-1 th.dtr-control{padding-right:.25rem!important}.table.gs-xl-1 td:first-child,.table.gs-xl-1 th:first-child{padding-right:.25rem}.table.gs-xl-1 td:last-child,.table.gs-xl-1 th:last-child{padding-left:.25rem}.table.gs-xl-1 td.dtr-control:first-child,.table.gs-xl-1 th.dtr-control:first-child{padding-right:.25rem!important}.table.g-xl-2 td,.table.g-xl-2 th{padding:.5rem}.table.g-xl-2 td.dtr-control,.table.g-xl-2 th.dtr-control{padding-right:.5rem!important}.table.gy-xl-2 td,.table.gy-xl-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-xl-2 td,.table.gx-xl-2 th{padding-right:.5rem;padding-left:.5rem}.table.gx-xl-2 td.dtr-control,.table.gx-xl-2 th.dtr-control{padding-right:.5rem!important}.table.gs-xl-2 td:first-child,.table.gs-xl-2 th:first-child{padding-right:.5rem}.table.gs-xl-2 td:last-child,.table.gs-xl-2 th:last-child{padding-left:.5rem}.table.gs-xl-2 td.dtr-control:first-child,.table.gs-xl-2 th.dtr-control:first-child{padding-right:.5rem!important}.table.g-xl-3 td,.table.g-xl-3 th{padding:.75rem}.table.g-xl-3 td.dtr-control,.table.g-xl-3 th.dtr-control{padding-right:.75rem!important}.table.gy-xl-3 td,.table.gy-xl-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-xl-3 td,.table.gx-xl-3 th{padding-right:.75rem;padding-left:.75rem}.table.gx-xl-3 td.dtr-control,.table.gx-xl-3 th.dtr-control{padding-right:.75rem!important}.table.gs-xl-3 td:first-child,.table.gs-xl-3 th:first-child{padding-right:.75rem}.table.gs-xl-3 td:last-child,.table.gs-xl-3 th:last-child{padding-left:.75rem}.table.gs-xl-3 td.dtr-control:first-child,.table.gs-xl-3 th.dtr-control:first-child{padding-right:.75rem!important}.table.g-xl-4 td,.table.g-xl-4 th{padding:1rem}.table.g-xl-4 td.dtr-control,.table.g-xl-4 th.dtr-control{padding-right:1rem!important}.table.gy-xl-4 td,.table.gy-xl-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-xl-4 td,.table.gx-xl-4 th{padding-right:1rem;padding-left:1rem}.table.gx-xl-4 td.dtr-control,.table.gx-xl-4 th.dtr-control{padding-right:1rem!important}.table.gs-xl-4 td:first-child,.table.gs-xl-4 th:first-child{padding-right:1rem}.table.gs-xl-4 td:last-child,.table.gs-xl-4 th:last-child{padding-left:1rem}.table.gs-xl-4 td.dtr-control:first-child,.table.gs-xl-4 th.dtr-control:first-child{padding-right:1rem!important}.table.g-xl-5 td,.table.g-xl-5 th{padding:1.25rem}.table.g-xl-5 td.dtr-control,.table.g-xl-5 th.dtr-control{padding-right:1.25rem!important}.table.gy-xl-5 td,.table.gy-xl-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-xl-5 td,.table.gx-xl-5 th{padding-right:1.25rem;padding-left:1.25rem}.table.gx-xl-5 td.dtr-control,.table.gx-xl-5 th.dtr-control{padding-right:1.25rem!important}.table.gs-xl-5 td:first-child,.table.gs-xl-5 th:first-child{padding-right:1.25rem}.table.gs-xl-5 td:last-child,.table.gs-xl-5 th:last-child{padding-left:1.25rem}.table.gs-xl-5 td.dtr-control:first-child,.table.gs-xl-5 th.dtr-control:first-child{padding-right:1.25rem!important}.table.g-xl-6 td,.table.g-xl-6 th{padding:1.5rem}.table.g-xl-6 td.dtr-control,.table.g-xl-6 th.dtr-control{padding-right:1.5rem!important}.table.gy-xl-6 td,.table.gy-xl-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-xl-6 td,.table.gx-xl-6 th{padding-right:1.5rem;padding-left:1.5rem}.table.gx-xl-6 td.dtr-control,.table.gx-xl-6 th.dtr-control{padding-right:1.5rem!important}.table.gs-xl-6 td:first-child,.table.gs-xl-6 th:first-child{padding-right:1.5rem}.table.gs-xl-6 td:last-child,.table.gs-xl-6 th:last-child{padding-left:1.5rem}.table.gs-xl-6 td.dtr-control:first-child,.table.gs-xl-6 th.dtr-control:first-child{padding-right:1.5rem!important}.table.g-xl-7 td,.table.g-xl-7 th{padding:1.75rem}.table.g-xl-7 td.dtr-control,.table.g-xl-7 th.dtr-control{padding-right:1.75rem!important}.table.gy-xl-7 td,.table.gy-xl-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-xl-7 td,.table.gx-xl-7 th{padding-right:1.75rem;padding-left:1.75rem}.table.gx-xl-7 td.dtr-control,.table.gx-xl-7 th.dtr-control{padding-right:1.75rem!important}.table.gs-xl-7 td:first-child,.table.gs-xl-7 th:first-child{padding-right:1.75rem}.table.gs-xl-7 td:last-child,.table.gs-xl-7 th:last-child{padding-left:1.75rem}.table.gs-xl-7 td.dtr-control:first-child,.table.gs-xl-7 th.dtr-control:first-child{padding-right:1.75rem!important}.table.g-xl-8 td,.table.g-xl-8 th{padding:2rem}.table.g-xl-8 td.dtr-control,.table.g-xl-8 th.dtr-control{padding-right:2rem!important}.table.gy-xl-8 td,.table.gy-xl-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-xl-8 td,.table.gx-xl-8 th{padding-right:2rem;padding-left:2rem}.table.gx-xl-8 td.dtr-control,.table.gx-xl-8 th.dtr-control{padding-right:2rem!important}.table.gs-xl-8 td:first-child,.table.gs-xl-8 th:first-child{padding-right:2rem}.table.gs-xl-8 td:last-child,.table.gs-xl-8 th:last-child{padding-left:2rem}.table.gs-xl-8 td.dtr-control:first-child,.table.gs-xl-8 th.dtr-control:first-child{padding-right:2rem!important}.table.g-xl-9 td,.table.g-xl-9 th{padding:2.25rem}.table.g-xl-9 td.dtr-control,.table.g-xl-9 th.dtr-control{padding-right:2.25rem!important}.table.gy-xl-9 td,.table.gy-xl-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-xl-9 td,.table.gx-xl-9 th{padding-right:2.25rem;padding-left:2.25rem}.table.gx-xl-9 td.dtr-control,.table.gx-xl-9 th.dtr-control{padding-right:2.25rem!important}.table.gs-xl-9 td:first-child,.table.gs-xl-9 th:first-child{padding-right:2.25rem}.table.gs-xl-9 td:last-child,.table.gs-xl-9 th:last-child{padding-left:2.25rem}.table.gs-xl-9 td.dtr-control:first-child,.table.gs-xl-9 th.dtr-control:first-child{padding-right:2.25rem!important}.table.g-xl-10 td,.table.g-xl-10 th{padding:2.5rem}.table.g-xl-10 td.dtr-control,.table.g-xl-10 th.dtr-control{padding-right:2.5rem!important}.table.gy-xl-10 td,.table.gy-xl-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-xl-10 td,.table.gx-xl-10 th{padding-right:2.5rem;padding-left:2.5rem}.table.gx-xl-10 td.dtr-control,.table.gx-xl-10 th.dtr-control{padding-right:2.5rem!important}.table.gs-xl-10 td:first-child,.table.gs-xl-10 th:first-child{padding-right:2.5rem}.table.gs-xl-10 td:last-child,.table.gs-xl-10 th:last-child{padding-left:2.5rem}.table.gs-xl-10 td.dtr-control:first-child,.table.gs-xl-10 th.dtr-control:first-child{padding-right:2.5rem!important}}@media (min-width:1400px){.table.g-xxl-0 td,.table.g-xxl-0 th{padding:0}.table.g-xxl-0 td.dtr-control,.table.g-xxl-0 th.dtr-control{padding-right:0!important}.table.gy-xxl-0 td,.table.gy-xxl-0 th{padding-top:0;padding-bottom:0}.table.gx-xxl-0 td,.table.gx-xxl-0 th{padding-right:0;padding-left:0}.table.gx-xxl-0 td.dtr-control,.table.gx-xxl-0 th.dtr-control{padding-right:0!important}.table.gs-xxl-0 td:first-child,.table.gs-xxl-0 th:first-child{padding-right:0}.table.gs-xxl-0 td:last-child,.table.gs-xxl-0 th:last-child{padding-left:0}.table.gs-xxl-0 td.dtr-control:first-child,.table.gs-xxl-0 th.dtr-control:first-child{padding-right:0!important}.table.g-xxl-1 td,.table.g-xxl-1 th{padding:.25rem}.table.g-xxl-1 td.dtr-control,.table.g-xxl-1 th.dtr-control{padding-right:.25rem!important}.table.gy-xxl-1 td,.table.gy-xxl-1 th{padding-top:.25rem;padding-bottom:.25rem}.table.gx-xxl-1 td,.table.gx-xxl-1 th{padding-right:.25rem;padding-left:.25rem}.table.gx-xxl-1 td.dtr-control,.table.gx-xxl-1 th.dtr-control{padding-right:.25rem!important}.table.gs-xxl-1 td:first-child,.table.gs-xxl-1 th:first-child{padding-right:.25rem}.table.gs-xxl-1 td:last-child,.table.gs-xxl-1 th:last-child{padding-left:.25rem}.table.gs-xxl-1 td.dtr-control:first-child,.table.gs-xxl-1 th.dtr-control:first-child{padding-right:.25rem!important}.table.g-xxl-2 td,.table.g-xxl-2 th{padding:.5rem}.table.g-xxl-2 td.dtr-control,.table.g-xxl-2 th.dtr-control{padding-right:.5rem!important}.table.gy-xxl-2 td,.table.gy-xxl-2 th{padding-top:.5rem;padding-bottom:.5rem}.table.gx-xxl-2 td,.table.gx-xxl-2 th{padding-right:.5rem;padding-left:.5rem}.table.gx-xxl-2 td.dtr-control,.table.gx-xxl-2 th.dtr-control{padding-right:.5rem!important}.table.gs-xxl-2 td:first-child,.table.gs-xxl-2 th:first-child{padding-right:.5rem}.table.gs-xxl-2 td:last-child,.table.gs-xxl-2 th:last-child{padding-left:.5rem}.table.gs-xxl-2 td.dtr-control:first-child,.table.gs-xxl-2 th.dtr-control:first-child{padding-right:.5rem!important}.table.g-xxl-3 td,.table.g-xxl-3 th{padding:.75rem}.table.g-xxl-3 td.dtr-control,.table.g-xxl-3 th.dtr-control{padding-right:.75rem!important}.table.gy-xxl-3 td,.table.gy-xxl-3 th{padding-top:.75rem;padding-bottom:.75rem}.table.gx-xxl-3 td,.table.gx-xxl-3 th{padding-right:.75rem;padding-left:.75rem}.table.gx-xxl-3 td.dtr-control,.table.gx-xxl-3 th.dtr-control{padding-right:.75rem!important}.table.gs-xxl-3 td:first-child,.table.gs-xxl-3 th:first-child{padding-right:.75rem}.table.gs-xxl-3 td:last-child,.table.gs-xxl-3 th:last-child{padding-left:.75rem}.table.gs-xxl-3 td.dtr-control:first-child,.table.gs-xxl-3 th.dtr-control:first-child{padding-right:.75rem!important}.table.g-xxl-4 td,.table.g-xxl-4 th{padding:1rem}.table.g-xxl-4 td.dtr-control,.table.g-xxl-4 th.dtr-control{padding-right:1rem!important}.table.gy-xxl-4 td,.table.gy-xxl-4 th{padding-top:1rem;padding-bottom:1rem}.table.gx-xxl-4 td,.table.gx-xxl-4 th{padding-right:1rem;padding-left:1rem}.table.gx-xxl-4 td.dtr-control,.table.gx-xxl-4 th.dtr-control{padding-right:1rem!important}.table.gs-xxl-4 td:first-child,.table.gs-xxl-4 th:first-child{padding-right:1rem}.table.gs-xxl-4 td:last-child,.table.gs-xxl-4 th:last-child{padding-left:1rem}.table.gs-xxl-4 td.dtr-control:first-child,.table.gs-xxl-4 th.dtr-control:first-child{padding-right:1rem!important}.table.g-xxl-5 td,.table.g-xxl-5 th{padding:1.25rem}.table.g-xxl-5 td.dtr-control,.table.g-xxl-5 th.dtr-control{padding-right:1.25rem!important}.table.gy-xxl-5 td,.table.gy-xxl-5 th{padding-top:1.25rem;padding-bottom:1.25rem}.table.gx-xxl-5 td,.table.gx-xxl-5 th{padding-right:1.25rem;padding-left:1.25rem}.table.gx-xxl-5 td.dtr-control,.table.gx-xxl-5 th.dtr-control{padding-right:1.25rem!important}.table.gs-xxl-5 td:first-child,.table.gs-xxl-5 th:first-child{padding-right:1.25rem}.table.gs-xxl-5 td:last-child,.table.gs-xxl-5 th:last-child{padding-left:1.25rem}.table.gs-xxl-5 td.dtr-control:first-child,.table.gs-xxl-5 th.dtr-control:first-child{padding-right:1.25rem!important}.table.g-xxl-6 td,.table.g-xxl-6 th{padding:1.5rem}.table.g-xxl-6 td.dtr-control,.table.g-xxl-6 th.dtr-control{padding-right:1.5rem!important}.table.gy-xxl-6 td,.table.gy-xxl-6 th{padding-top:1.5rem;padding-bottom:1.5rem}.table.gx-xxl-6 td,.table.gx-xxl-6 th{padding-right:1.5rem;padding-left:1.5rem}.table.gx-xxl-6 td.dtr-control,.table.gx-xxl-6 th.dtr-control{padding-right:1.5rem!important}.table.gs-xxl-6 td:first-child,.table.gs-xxl-6 th:first-child{padding-right:1.5rem}.table.gs-xxl-6 td:last-child,.table.gs-xxl-6 th:last-child{padding-left:1.5rem}.table.gs-xxl-6 td.dtr-control:first-child,.table.gs-xxl-6 th.dtr-control:first-child{padding-right:1.5rem!important}.table.g-xxl-7 td,.table.g-xxl-7 th{padding:1.75rem}.table.g-xxl-7 td.dtr-control,.table.g-xxl-7 th.dtr-control{padding-right:1.75rem!important}.table.gy-xxl-7 td,.table.gy-xxl-7 th{padding-top:1.75rem;padding-bottom:1.75rem}.table.gx-xxl-7 td,.table.gx-xxl-7 th{padding-right:1.75rem;padding-left:1.75rem}.table.gx-xxl-7 td.dtr-control,.table.gx-xxl-7 th.dtr-control{padding-right:1.75rem!important}.table.gs-xxl-7 td:first-child,.table.gs-xxl-7 th:first-child{padding-right:1.75rem}.table.gs-xxl-7 td:last-child,.table.gs-xxl-7 th:last-child{padding-left:1.75rem}.table.gs-xxl-7 td.dtr-control:first-child,.table.gs-xxl-7 th.dtr-control:first-child{padding-right:1.75rem!important}.table.g-xxl-8 td,.table.g-xxl-8 th{padding:2rem}.table.g-xxl-8 td.dtr-control,.table.g-xxl-8 th.dtr-control{padding-right:2rem!important}.table.gy-xxl-8 td,.table.gy-xxl-8 th{padding-top:2rem;padding-bottom:2rem}.table.gx-xxl-8 td,.table.gx-xxl-8 th{padding-right:2rem;padding-left:2rem}.table.gx-xxl-8 td.dtr-control,.table.gx-xxl-8 th.dtr-control{padding-right:2rem!important}.table.gs-xxl-8 td:first-child,.table.gs-xxl-8 th:first-child{padding-right:2rem}.table.gs-xxl-8 td:last-child,.table.gs-xxl-8 th:last-child{padding-left:2rem}.table.gs-xxl-8 td.dtr-control:first-child,.table.gs-xxl-8 th.dtr-control:first-child{padding-right:2rem!important}.table.g-xxl-9 td,.table.g-xxl-9 th{padding:2.25rem}.table.g-xxl-9 td.dtr-control,.table.g-xxl-9 th.dtr-control{padding-right:2.25rem!important}.table.gy-xxl-9 td,.table.gy-xxl-9 th{padding-top:2.25rem;padding-bottom:2.25rem}.table.gx-xxl-9 td,.table.gx-xxl-9 th{padding-right:2.25rem;padding-left:2.25rem}.table.gx-xxl-9 td.dtr-control,.table.gx-xxl-9 th.dtr-control{padding-right:2.25rem!important}.table.gs-xxl-9 td:first-child,.table.gs-xxl-9 th:first-child{padding-right:2.25rem}.table.gs-xxl-9 td:last-child,.table.gs-xxl-9 th:last-child{padding-left:2.25rem}.table.gs-xxl-9 td.dtr-control:first-child,.table.gs-xxl-9 th.dtr-control:first-child{padding-right:2.25rem!important}.table.g-xxl-10 td,.table.g-xxl-10 th{padding:2.5rem}.table.g-xxl-10 td.dtr-control,.table.g-xxl-10 th.dtr-control{padding-right:2.5rem!important}.table.gy-xxl-10 td,.table.gy-xxl-10 th{padding-top:2.5rem;padding-bottom:2.5rem}.table.gx-xxl-10 td,.table.gx-xxl-10 th{padding-right:2.5rem;padding-left:2.5rem}.table.gx-xxl-10 td.dtr-control,.table.gx-xxl-10 th.dtr-control{padding-right:2.5rem!important}.table.gs-xxl-10 td:first-child,.table.gs-xxl-10 th:first-child{padding-right:2.5rem}.table.gs-xxl-10 td:last-child,.table.gs-xxl-10 th:last-child{padding-left:2.5rem}.table.gs-xxl-10 td.dtr-control:first-child,.table.gs-xxl-10 th.dtr-control:first-child{padding-right:2.5rem!important}}.popover .popover-header{font-size:1rem;font-weight:500;border-bottom:1px solid #323248}.popover .popover-dismiss{position:absolute;top:.85rem;left:.85rem;height:1.5rem;width:1.5rem;background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23565674'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");background-size:45%}.popover .popover-dismiss:hover{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233699FF'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")}.popover .popover-dismiss+.popover-header{padding-left:2.75rem}.popover-dark{background-color:#fff;border:0}.popover-dark .popover-header{background-color:#fff;color:#2b2b40;border-bottom-color:#cdcdde}.popover-dark .popover-body{color:#474761}.popover-dark.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.popover-dark.bs-popover-top>.popover-arrow::before{border-top-color:#1b1b29}.popover-dark.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.popover-dark.bs-popover-top>.popover-arrow::after{border-top-color:#fff}.popover-dark.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.popover-dark.bs-popover-end>.popover-arrow::before{border-left-color:#1b1b29}.popover-dark.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.popover-dark.bs-popover-end>.popover-arrow::after{border-left-color:#fff}.popover-dark.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.popover-dark.bs-popover-bottom>.popover-arrow::before{border-bottom-color:#1b1b29}.popover-dark.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.popover-dark.bs-popover-bottom>.popover-arrow::after{border-bottom-color:#fff}.popover-dark.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.popover-dark.bs-popover-bottom .popover-header::before{border-bottom-color:#fff}.popover-dark.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.popover-dark.bs-popover-start>.popover-arrow::before{border-right-color:#1b1b29}.popover-dark.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.popover-dark.bs-popover-start>.popover-arrow::after{border-right-color:#fff}.tooltip .tooltip-inner{box-shadow:0 0 30px rgba(0,0,0,.3)}.tooltip.tooltop-auto-width .tooltip-inner{white-space:nowrap;max-width:none}.tooltip.tooltip-dark .tooltip-inner{color:#1b1b29;background-color:#fff}.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.tooltip.tooltip-dark.bs-tooltip-top .tooltip-arrow::before{border-top-color:#fff}.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.tooltip.tooltip-dark.bs-tooltip-end .tooltip-arrow::before{border-left-color:#fff}.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.tooltip.tooltip-dark.bs-tooltip-bottom .tooltip-arrow::before{border-bottom-color:#fff}.tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.tooltip.tooltip-dark.bs-tooltip-start .tooltip-arrow::before{border-right-color:#fff}.accordion .accordion-header{cursor:pointer}.accordion.accordion-icon-toggle .accordion-icon{display:flex;flex-shrink:0;transition:all .2s ease;transform:rotate(-90deg);align-items:center;justify-content:center}.accordion.accordion-icon-toggle .accordion-icon .svg-icon,.accordion.accordion-icon-toggle .accordion-icon i{color:#3699ff}.accordion.accordion-icon-toggle .collapsed .accordion-icon{transition:all .2s ease;transform:rotate(0)}.accordion.accordion-icon-toggle .collapsed .accordion-icon .svg-icon,.accordion.accordion-icon-toggle .collapsed .accordion-icon i{color:#565674}.accordion.accordion-borderless .accordion-item{border:0}.accordion.accordion-flush .accordion-item{background-color:transparent;border:0;border-radius:0;padding-right:0;padding-left:0}.feedback{display:none}.feedback-popup{display:flex;justify-content:center;margin:0 auto;position:fixed;z-index:1000;box-shadow:0 0 30px rgba(0,0,0,.3);background-color:#1e1e2d;border-radius:.475rem;padding:1rem 1.25rem}.feedback-top-center{display:flex;transition:top .6s ease;right:50%;transform:translateX(50%);border-top-right-radius:0;border-top-left-radius:0}.feedback-top-center.feedback-shown{top:0;transition:top .6s ease}.image-input{position:relative;display:inline-block;border-radius:.475rem;background-repeat:no-repeat;background-size:cover}.image-input:not(.image-input-empty){background-image:none!important}.image-input .image-input-wrapper{width:120px;height:120px;border-radius:.475rem;background-repeat:no-repeat;background-size:cover}.image-input [data-kt-image-input-action]{cursor:pointer;position:absolute;transform:translate(50%,-50%)}.image-input [data-kt-image-input-action=change]{right:100%;top:0}.image-input [data-kt-image-input-action=change] input{width:0!important;height:0!important;overflow:hidden;opacity:0}.image-input [data-kt-image-input-action=cancel],.image-input [data-kt-image-input-action=remove]{position:absolute;right:100%;top:100%}.image-input [data-kt-image-input-action=cancel]{display:none}.image-input.image-input-changed [data-kt-image-input-action=cancel]{display:flex}.image-input.image-input-changed [data-kt-image-input-action=remove]{display:none}.image-input.image-input-empty [data-kt-image-input-action=cancel],.image-input.image-input-empty [data-kt-image-input-action=remove]{display:none}.image-input.image-input-circle{border-radius:50%}.image-input.image-input-circle .image-input-wrapper{border-radius:50%}.image-input.image-input-circle [data-kt-image-input-action=change]{right:100%;top:0;transform:translate(100%,0)}.image-input.image-input-circle [data-kt-image-input-action=cancel],.image-input.image-input-circle [data-kt-image-input-action=remove]{right:100%;top:100%;transform:translate(100%,-100%)}.image-input.image-input-outline .image-input-wrapper{border:3px solid #1e1e2d;box-shadow:0 .5rem 1.5rem .5rem rgba(0,0,0,.075)}.symbol{display:inline-block;flex-shrink:0;position:relative;border-radius:.475rem}.symbol .symbol-label{display:flex;align-items:center;justify-content:center;font-weight:500;color:#cdcdde;background-color:#1b1b29;background-repeat:no-repeat;background-position:center center;background-size:cover;border-radius:.475rem}.symbol .symbol-badge{position:absolute;border:2px solid #1e1e2d;border-radius:100%;top:0;right:50%;transform:translateX(50%) translateY(-50%)!important}.symbol>img{width:100%;flex-shrink:0;display:inline-block;border-radius:.475rem}.symbol.symbol-square,.symbol.symbol-square .symbol-label,.symbol.symbol-square>img{border-radius:0!important}.symbol.symbol-circle,.symbol.symbol-circle .symbol-label,.symbol.symbol-circle>img{border-radius:50%}.symbol>img{width:50px;height:50px}.symbol .symbol-label{width:50px;height:50px}.symbol.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-20px>img{width:20px;height:20px}.symbol.symbol-20px .symbol-label{width:20px;height:20px}.symbol.symbol-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-25px>img{width:25px;height:25px}.symbol.symbol-25px .symbol-label{width:25px;height:25px}.symbol.symbol-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-30px>img{width:30px;height:30px}.symbol.symbol-30px .symbol-label{width:30px;height:30px}.symbol.symbol-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-35px>img{width:35px;height:35px}.symbol.symbol-35px .symbol-label{width:35px;height:35px}.symbol.symbol-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-40px>img{width:40px;height:40px}.symbol.symbol-40px .symbol-label{width:40px;height:40px}.symbol.symbol-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-45px>img{width:45px;height:45px}.symbol.symbol-45px .symbol-label{width:45px;height:45px}.symbol.symbol-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-50px>img{width:50px;height:50px}.symbol.symbol-50px .symbol-label{width:50px;height:50px}.symbol.symbol-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-55px>img{width:55px;height:55px}.symbol.symbol-55px .symbol-label{width:55px;height:55px}.symbol.symbol-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-60px>img{width:60px;height:60px}.symbol.symbol-60px .symbol-label{width:60px;height:60px}.symbol.symbol-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-65px>img{width:65px;height:65px}.symbol.symbol-65px .symbol-label{width:65px;height:65px}.symbol.symbol-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-70px>img{width:70px;height:70px}.symbol.symbol-70px .symbol-label{width:70px;height:70px}.symbol.symbol-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-75px>img{width:75px;height:75px}.symbol.symbol-75px .symbol-label{width:75px;height:75px}.symbol.symbol-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-100px>img{width:100px;height:100px}.symbol.symbol-100px .symbol-label{width:100px;height:100px}.symbol.symbol-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-125px>img{width:125px;height:125px}.symbol.symbol-125px .symbol-label{width:125px;height:125px}.symbol.symbol-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-150px>img{width:150px;height:150px}.symbol.symbol-150px .symbol-label{width:150px;height:150px}.symbol.symbol-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-160px>img{width:160px;height:160px}.symbol.symbol-160px .symbol-label{width:160px;height:160px}.symbol.symbol-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-175px>img{width:175px;height:175px}.symbol.symbol-175px .symbol-label{width:175px;height:175px}.symbol.symbol-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-200px>img{width:200px;height:200px}.symbol.symbol-200px .symbol-label{width:200px;height:200px}.symbol.symbol-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}@media (min-width:576px){.symbol.symbol-sm-20px>img{width:20px;height:20px}.symbol.symbol-sm-20px .symbol-label{width:20px;height:20px}.symbol.symbol-sm-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-sm-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-sm-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-sm-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-sm-25px>img{width:25px;height:25px}.symbol.symbol-sm-25px .symbol-label{width:25px;height:25px}.symbol.symbol-sm-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-sm-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-sm-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-sm-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-sm-30px>img{width:30px;height:30px}.symbol.symbol-sm-30px .symbol-label{width:30px;height:30px}.symbol.symbol-sm-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-sm-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-sm-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-sm-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-sm-35px>img{width:35px;height:35px}.symbol.symbol-sm-35px .symbol-label{width:35px;height:35px}.symbol.symbol-sm-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-sm-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-sm-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-sm-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-sm-40px>img{width:40px;height:40px}.symbol.symbol-sm-40px .symbol-label{width:40px;height:40px}.symbol.symbol-sm-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-sm-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-sm-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-sm-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-sm-45px>img{width:45px;height:45px}.symbol.symbol-sm-45px .symbol-label{width:45px;height:45px}.symbol.symbol-sm-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-sm-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-sm-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-sm-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-sm-50px>img{width:50px;height:50px}.symbol.symbol-sm-50px .symbol-label{width:50px;height:50px}.symbol.symbol-sm-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-sm-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-sm-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-sm-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-sm-55px>img{width:55px;height:55px}.symbol.symbol-sm-55px .symbol-label{width:55px;height:55px}.symbol.symbol-sm-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-sm-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-sm-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-sm-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-sm-60px>img{width:60px;height:60px}.symbol.symbol-sm-60px .symbol-label{width:60px;height:60px}.symbol.symbol-sm-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-sm-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-sm-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-sm-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-sm-65px>img{width:65px;height:65px}.symbol.symbol-sm-65px .symbol-label{width:65px;height:65px}.symbol.symbol-sm-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-sm-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-sm-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-sm-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-sm-70px>img{width:70px;height:70px}.symbol.symbol-sm-70px .symbol-label{width:70px;height:70px}.symbol.symbol-sm-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-sm-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-sm-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-sm-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-sm-75px>img{width:75px;height:75px}.symbol.symbol-sm-75px .symbol-label{width:75px;height:75px}.symbol.symbol-sm-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-sm-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-sm-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-sm-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-sm-100px>img{width:100px;height:100px}.symbol.symbol-sm-100px .symbol-label{width:100px;height:100px}.symbol.symbol-sm-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-sm-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-sm-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-sm-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-sm-125px>img{width:125px;height:125px}.symbol.symbol-sm-125px .symbol-label{width:125px;height:125px}.symbol.symbol-sm-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-sm-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-sm-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-sm-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-sm-150px>img{width:150px;height:150px}.symbol.symbol-sm-150px .symbol-label{width:150px;height:150px}.symbol.symbol-sm-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-sm-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-sm-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-sm-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-sm-160px>img{width:160px;height:160px}.symbol.symbol-sm-160px .symbol-label{width:160px;height:160px}.symbol.symbol-sm-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-sm-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-sm-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-sm-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-sm-175px>img{width:175px;height:175px}.symbol.symbol-sm-175px .symbol-label{width:175px;height:175px}.symbol.symbol-sm-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-sm-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-sm-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-sm-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-sm-200px>img{width:200px;height:200px}.symbol.symbol-sm-200px .symbol-label{width:200px;height:200px}.symbol.symbol-sm-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-sm-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-sm-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-sm-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}@media (min-width:768px){.symbol.symbol-md-20px>img{width:20px;height:20px}.symbol.symbol-md-20px .symbol-label{width:20px;height:20px}.symbol.symbol-md-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-md-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-md-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-md-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-md-25px>img{width:25px;height:25px}.symbol.symbol-md-25px .symbol-label{width:25px;height:25px}.symbol.symbol-md-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-md-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-md-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-md-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-md-30px>img{width:30px;height:30px}.symbol.symbol-md-30px .symbol-label{width:30px;height:30px}.symbol.symbol-md-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-md-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-md-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-md-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-md-35px>img{width:35px;height:35px}.symbol.symbol-md-35px .symbol-label{width:35px;height:35px}.symbol.symbol-md-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-md-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-md-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-md-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-md-40px>img{width:40px;height:40px}.symbol.symbol-md-40px .symbol-label{width:40px;height:40px}.symbol.symbol-md-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-md-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-md-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-md-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-md-45px>img{width:45px;height:45px}.symbol.symbol-md-45px .symbol-label{width:45px;height:45px}.symbol.symbol-md-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-md-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-md-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-md-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-md-50px>img{width:50px;height:50px}.symbol.symbol-md-50px .symbol-label{width:50px;height:50px}.symbol.symbol-md-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-md-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-md-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-md-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-md-55px>img{width:55px;height:55px}.symbol.symbol-md-55px .symbol-label{width:55px;height:55px}.symbol.symbol-md-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-md-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-md-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-md-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-md-60px>img{width:60px;height:60px}.symbol.symbol-md-60px .symbol-label{width:60px;height:60px}.symbol.symbol-md-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-md-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-md-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-md-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-md-65px>img{width:65px;height:65px}.symbol.symbol-md-65px .symbol-label{width:65px;height:65px}.symbol.symbol-md-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-md-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-md-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-md-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-md-70px>img{width:70px;height:70px}.symbol.symbol-md-70px .symbol-label{width:70px;height:70px}.symbol.symbol-md-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-md-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-md-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-md-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-md-75px>img{width:75px;height:75px}.symbol.symbol-md-75px .symbol-label{width:75px;height:75px}.symbol.symbol-md-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-md-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-md-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-md-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-md-100px>img{width:100px;height:100px}.symbol.symbol-md-100px .symbol-label{width:100px;height:100px}.symbol.symbol-md-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-md-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-md-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-md-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-md-125px>img{width:125px;height:125px}.symbol.symbol-md-125px .symbol-label{width:125px;height:125px}.symbol.symbol-md-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-md-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-md-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-md-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-md-150px>img{width:150px;height:150px}.symbol.symbol-md-150px .symbol-label{width:150px;height:150px}.symbol.symbol-md-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-md-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-md-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-md-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-md-160px>img{width:160px;height:160px}.symbol.symbol-md-160px .symbol-label{width:160px;height:160px}.symbol.symbol-md-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-md-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-md-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-md-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-md-175px>img{width:175px;height:175px}.symbol.symbol-md-175px .symbol-label{width:175px;height:175px}.symbol.symbol-md-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-md-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-md-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-md-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-md-200px>img{width:200px;height:200px}.symbol.symbol-md-200px .symbol-label{width:200px;height:200px}.symbol.symbol-md-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-md-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-md-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-md-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}@media (min-width:992px){.symbol.symbol-lg-20px>img{width:20px;height:20px}.symbol.symbol-lg-20px .symbol-label{width:20px;height:20px}.symbol.symbol-lg-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-lg-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-lg-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-lg-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-lg-25px>img{width:25px;height:25px}.symbol.symbol-lg-25px .symbol-label{width:25px;height:25px}.symbol.symbol-lg-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-lg-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-lg-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-lg-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-lg-30px>img{width:30px;height:30px}.symbol.symbol-lg-30px .symbol-label{width:30px;height:30px}.symbol.symbol-lg-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-lg-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-lg-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-lg-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-lg-35px>img{width:35px;height:35px}.symbol.symbol-lg-35px .symbol-label{width:35px;height:35px}.symbol.symbol-lg-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-lg-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-lg-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-lg-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-lg-40px>img{width:40px;height:40px}.symbol.symbol-lg-40px .symbol-label{width:40px;height:40px}.symbol.symbol-lg-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-lg-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-lg-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-lg-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-lg-45px>img{width:45px;height:45px}.symbol.symbol-lg-45px .symbol-label{width:45px;height:45px}.symbol.symbol-lg-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-lg-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-lg-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-lg-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-lg-50px>img{width:50px;height:50px}.symbol.symbol-lg-50px .symbol-label{width:50px;height:50px}.symbol.symbol-lg-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-lg-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-lg-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-lg-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-lg-55px>img{width:55px;height:55px}.symbol.symbol-lg-55px .symbol-label{width:55px;height:55px}.symbol.symbol-lg-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-lg-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-lg-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-lg-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-lg-60px>img{width:60px;height:60px}.symbol.symbol-lg-60px .symbol-label{width:60px;height:60px}.symbol.symbol-lg-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-lg-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-lg-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-lg-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-lg-65px>img{width:65px;height:65px}.symbol.symbol-lg-65px .symbol-label{width:65px;height:65px}.symbol.symbol-lg-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-lg-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-lg-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-lg-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-lg-70px>img{width:70px;height:70px}.symbol.symbol-lg-70px .symbol-label{width:70px;height:70px}.symbol.symbol-lg-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-lg-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-lg-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-lg-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-lg-75px>img{width:75px;height:75px}.symbol.symbol-lg-75px .symbol-label{width:75px;height:75px}.symbol.symbol-lg-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-lg-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-lg-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-lg-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-lg-100px>img{width:100px;height:100px}.symbol.symbol-lg-100px .symbol-label{width:100px;height:100px}.symbol.symbol-lg-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-lg-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-lg-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-lg-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-lg-125px>img{width:125px;height:125px}.symbol.symbol-lg-125px .symbol-label{width:125px;height:125px}.symbol.symbol-lg-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-lg-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-lg-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-lg-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-lg-150px>img{width:150px;height:150px}.symbol.symbol-lg-150px .symbol-label{width:150px;height:150px}.symbol.symbol-lg-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-lg-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-lg-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-lg-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-lg-160px>img{width:160px;height:160px}.symbol.symbol-lg-160px .symbol-label{width:160px;height:160px}.symbol.symbol-lg-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-lg-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-lg-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-lg-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-lg-175px>img{width:175px;height:175px}.symbol.symbol-lg-175px .symbol-label{width:175px;height:175px}.symbol.symbol-lg-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-lg-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-lg-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-lg-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-lg-200px>img{width:200px;height:200px}.symbol.symbol-lg-200px .symbol-label{width:200px;height:200px}.symbol.symbol-lg-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-lg-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-lg-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-lg-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}@media (min-width:1200px){.symbol.symbol-xl-20px>img{width:20px;height:20px}.symbol.symbol-xl-20px .symbol-label{width:20px;height:20px}.symbol.symbol-xl-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-xl-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-xl-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-xl-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-xl-25px>img{width:25px;height:25px}.symbol.symbol-xl-25px .symbol-label{width:25px;height:25px}.symbol.symbol-xl-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-xl-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-xl-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-xl-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-xl-30px>img{width:30px;height:30px}.symbol.symbol-xl-30px .symbol-label{width:30px;height:30px}.symbol.symbol-xl-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-xl-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-xl-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-xl-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-xl-35px>img{width:35px;height:35px}.symbol.symbol-xl-35px .symbol-label{width:35px;height:35px}.symbol.symbol-xl-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-xl-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-xl-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-xl-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-xl-40px>img{width:40px;height:40px}.symbol.symbol-xl-40px .symbol-label{width:40px;height:40px}.symbol.symbol-xl-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-xl-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-xl-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-xl-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-xl-45px>img{width:45px;height:45px}.symbol.symbol-xl-45px .symbol-label{width:45px;height:45px}.symbol.symbol-xl-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-xl-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-xl-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-xl-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-xl-50px>img{width:50px;height:50px}.symbol.symbol-xl-50px .symbol-label{width:50px;height:50px}.symbol.symbol-xl-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-xl-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-xl-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-xl-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-xl-55px>img{width:55px;height:55px}.symbol.symbol-xl-55px .symbol-label{width:55px;height:55px}.symbol.symbol-xl-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-xl-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-xl-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-xl-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-xl-60px>img{width:60px;height:60px}.symbol.symbol-xl-60px .symbol-label{width:60px;height:60px}.symbol.symbol-xl-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-xl-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-xl-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-xl-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-xl-65px>img{width:65px;height:65px}.symbol.symbol-xl-65px .symbol-label{width:65px;height:65px}.symbol.symbol-xl-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-xl-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-xl-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-xl-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-xl-70px>img{width:70px;height:70px}.symbol.symbol-xl-70px .symbol-label{width:70px;height:70px}.symbol.symbol-xl-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-xl-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-xl-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-xl-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-xl-75px>img{width:75px;height:75px}.symbol.symbol-xl-75px .symbol-label{width:75px;height:75px}.symbol.symbol-xl-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-xl-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-xl-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-xl-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-xl-100px>img{width:100px;height:100px}.symbol.symbol-xl-100px .symbol-label{width:100px;height:100px}.symbol.symbol-xl-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-xl-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-xl-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-xl-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-xl-125px>img{width:125px;height:125px}.symbol.symbol-xl-125px .symbol-label{width:125px;height:125px}.symbol.symbol-xl-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-xl-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-xl-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-xl-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-xl-150px>img{width:150px;height:150px}.symbol.symbol-xl-150px .symbol-label{width:150px;height:150px}.symbol.symbol-xl-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-xl-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-xl-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-xl-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-xl-160px>img{width:160px;height:160px}.symbol.symbol-xl-160px .symbol-label{width:160px;height:160px}.symbol.symbol-xl-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-xl-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-xl-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-xl-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-xl-175px>img{width:175px;height:175px}.symbol.symbol-xl-175px .symbol-label{width:175px;height:175px}.symbol.symbol-xl-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-xl-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-xl-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-xl-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-xl-200px>img{width:200px;height:200px}.symbol.symbol-xl-200px .symbol-label{width:200px;height:200px}.symbol.symbol-xl-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-xl-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-xl-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-xl-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}@media (min-width:1400px){.symbol.symbol-xxl-20px>img{width:20px;height:20px}.symbol.symbol-xxl-20px .symbol-label{width:20px;height:20px}.symbol.symbol-xxl-20px.symbol-fixed .symbol-label{width:20px;height:20px}.symbol.symbol-xxl-20px.symbol-fixed>img{width:20px;height:20px;max-width:none}.symbol.symbol-xxl-20px.symbol-2by3 .symbol-label{height:20px;width:30px}.symbol.symbol-xxl-20px.symbol-2by3>img{height:20px;width:30px;max-width:none}.symbol.symbol-xxl-25px>img{width:25px;height:25px}.symbol.symbol-xxl-25px .symbol-label{width:25px;height:25px}.symbol.symbol-xxl-25px.symbol-fixed .symbol-label{width:25px;height:25px}.symbol.symbol-xxl-25px.symbol-fixed>img{width:25px;height:25px;max-width:none}.symbol.symbol-xxl-25px.symbol-2by3 .symbol-label{height:25px;width:37.5px}.symbol.symbol-xxl-25px.symbol-2by3>img{height:25px;width:37.5px;max-width:none}.symbol.symbol-xxl-30px>img{width:30px;height:30px}.symbol.symbol-xxl-30px .symbol-label{width:30px;height:30px}.symbol.symbol-xxl-30px.symbol-fixed .symbol-label{width:30px;height:30px}.symbol.symbol-xxl-30px.symbol-fixed>img{width:30px;height:30px;max-width:none}.symbol.symbol-xxl-30px.symbol-2by3 .symbol-label{height:30px;width:45px}.symbol.symbol-xxl-30px.symbol-2by3>img{height:30px;width:45px;max-width:none}.symbol.symbol-xxl-35px>img{width:35px;height:35px}.symbol.symbol-xxl-35px .symbol-label{width:35px;height:35px}.symbol.symbol-xxl-35px.symbol-fixed .symbol-label{width:35px;height:35px}.symbol.symbol-xxl-35px.symbol-fixed>img{width:35px;height:35px;max-width:none}.symbol.symbol-xxl-35px.symbol-2by3 .symbol-label{height:35px;width:52.5px}.symbol.symbol-xxl-35px.symbol-2by3>img{height:35px;width:52.5px;max-width:none}.symbol.symbol-xxl-40px>img{width:40px;height:40px}.symbol.symbol-xxl-40px .symbol-label{width:40px;height:40px}.symbol.symbol-xxl-40px.symbol-fixed .symbol-label{width:40px;height:40px}.symbol.symbol-xxl-40px.symbol-fixed>img{width:40px;height:40px;max-width:none}.symbol.symbol-xxl-40px.symbol-2by3 .symbol-label{height:40px;width:60px}.symbol.symbol-xxl-40px.symbol-2by3>img{height:40px;width:60px;max-width:none}.symbol.symbol-xxl-45px>img{width:45px;height:45px}.symbol.symbol-xxl-45px .symbol-label{width:45px;height:45px}.symbol.symbol-xxl-45px.symbol-fixed .symbol-label{width:45px;height:45px}.symbol.symbol-xxl-45px.symbol-fixed>img{width:45px;height:45px;max-width:none}.symbol.symbol-xxl-45px.symbol-2by3 .symbol-label{height:45px;width:67.5px}.symbol.symbol-xxl-45px.symbol-2by3>img{height:45px;width:67.5px;max-width:none}.symbol.symbol-xxl-50px>img{width:50px;height:50px}.symbol.symbol-xxl-50px .symbol-label{width:50px;height:50px}.symbol.symbol-xxl-50px.symbol-fixed .symbol-label{width:50px;height:50px}.symbol.symbol-xxl-50px.symbol-fixed>img{width:50px;height:50px;max-width:none}.symbol.symbol-xxl-50px.symbol-2by3 .symbol-label{height:50px;width:75px}.symbol.symbol-xxl-50px.symbol-2by3>img{height:50px;width:75px;max-width:none}.symbol.symbol-xxl-55px>img{width:55px;height:55px}.symbol.symbol-xxl-55px .symbol-label{width:55px;height:55px}.symbol.symbol-xxl-55px.symbol-fixed .symbol-label{width:55px;height:55px}.symbol.symbol-xxl-55px.symbol-fixed>img{width:55px;height:55px;max-width:none}.symbol.symbol-xxl-55px.symbol-2by3 .symbol-label{height:55px;width:82.5px}.symbol.symbol-xxl-55px.symbol-2by3>img{height:55px;width:82.5px;max-width:none}.symbol.symbol-xxl-60px>img{width:60px;height:60px}.symbol.symbol-xxl-60px .symbol-label{width:60px;height:60px}.symbol.symbol-xxl-60px.symbol-fixed .symbol-label{width:60px;height:60px}.symbol.symbol-xxl-60px.symbol-fixed>img{width:60px;height:60px;max-width:none}.symbol.symbol-xxl-60px.symbol-2by3 .symbol-label{height:60px;width:90px}.symbol.symbol-xxl-60px.symbol-2by3>img{height:60px;width:90px;max-width:none}.symbol.symbol-xxl-65px>img{width:65px;height:65px}.symbol.symbol-xxl-65px .symbol-label{width:65px;height:65px}.symbol.symbol-xxl-65px.symbol-fixed .symbol-label{width:65px;height:65px}.symbol.symbol-xxl-65px.symbol-fixed>img{width:65px;height:65px;max-width:none}.symbol.symbol-xxl-65px.symbol-2by3 .symbol-label{height:65px;width:97.5px}.symbol.symbol-xxl-65px.symbol-2by3>img{height:65px;width:97.5px;max-width:none}.symbol.symbol-xxl-70px>img{width:70px;height:70px}.symbol.symbol-xxl-70px .symbol-label{width:70px;height:70px}.symbol.symbol-xxl-70px.symbol-fixed .symbol-label{width:70px;height:70px}.symbol.symbol-xxl-70px.symbol-fixed>img{width:70px;height:70px;max-width:none}.symbol.symbol-xxl-70px.symbol-2by3 .symbol-label{height:70px;width:105px}.symbol.symbol-xxl-70px.symbol-2by3>img{height:70px;width:105px;max-width:none}.symbol.symbol-xxl-75px>img{width:75px;height:75px}.symbol.symbol-xxl-75px .symbol-label{width:75px;height:75px}.symbol.symbol-xxl-75px.symbol-fixed .symbol-label{width:75px;height:75px}.symbol.symbol-xxl-75px.symbol-fixed>img{width:75px;height:75px;max-width:none}.symbol.symbol-xxl-75px.symbol-2by3 .symbol-label{height:75px;width:112.5px}.symbol.symbol-xxl-75px.symbol-2by3>img{height:75px;width:112.5px;max-width:none}.symbol.symbol-xxl-100px>img{width:100px;height:100px}.symbol.symbol-xxl-100px .symbol-label{width:100px;height:100px}.symbol.symbol-xxl-100px.symbol-fixed .symbol-label{width:100px;height:100px}.symbol.symbol-xxl-100px.symbol-fixed>img{width:100px;height:100px;max-width:none}.symbol.symbol-xxl-100px.symbol-2by3 .symbol-label{height:100px;width:150px}.symbol.symbol-xxl-100px.symbol-2by3>img{height:100px;width:150px;max-width:none}.symbol.symbol-xxl-125px>img{width:125px;height:125px}.symbol.symbol-xxl-125px .symbol-label{width:125px;height:125px}.symbol.symbol-xxl-125px.symbol-fixed .symbol-label{width:125px;height:125px}.symbol.symbol-xxl-125px.symbol-fixed>img{width:125px;height:125px;max-width:none}.symbol.symbol-xxl-125px.symbol-2by3 .symbol-label{height:125px;width:187.5px}.symbol.symbol-xxl-125px.symbol-2by3>img{height:125px;width:187.5px;max-width:none}.symbol.symbol-xxl-150px>img{width:150px;height:150px}.symbol.symbol-xxl-150px .symbol-label{width:150px;height:150px}.symbol.symbol-xxl-150px.symbol-fixed .symbol-label{width:150px;height:150px}.symbol.symbol-xxl-150px.symbol-fixed>img{width:150px;height:150px;max-width:none}.symbol.symbol-xxl-150px.symbol-2by3 .symbol-label{height:150px;width:225px}.symbol.symbol-xxl-150px.symbol-2by3>img{height:150px;width:225px;max-width:none}.symbol.symbol-xxl-160px>img{width:160px;height:160px}.symbol.symbol-xxl-160px .symbol-label{width:160px;height:160px}.symbol.symbol-xxl-160px.symbol-fixed .symbol-label{width:160px;height:160px}.symbol.symbol-xxl-160px.symbol-fixed>img{width:160px;height:160px;max-width:none}.symbol.symbol-xxl-160px.symbol-2by3 .symbol-label{height:160px;width:240px}.symbol.symbol-xxl-160px.symbol-2by3>img{height:160px;width:240px;max-width:none}.symbol.symbol-xxl-175px>img{width:175px;height:175px}.symbol.symbol-xxl-175px .symbol-label{width:175px;height:175px}.symbol.symbol-xxl-175px.symbol-fixed .symbol-label{width:175px;height:175px}.symbol.symbol-xxl-175px.symbol-fixed>img{width:175px;height:175px;max-width:none}.symbol.symbol-xxl-175px.symbol-2by3 .symbol-label{height:175px;width:262.5px}.symbol.symbol-xxl-175px.symbol-2by3>img{height:175px;width:262.5px;max-width:none}.symbol.symbol-xxl-200px>img{width:200px;height:200px}.symbol.symbol-xxl-200px .symbol-label{width:200px;height:200px}.symbol.symbol-xxl-200px.symbol-fixed .symbol-label{width:200px;height:200px}.symbol.symbol-xxl-200px.symbol-fixed>img{width:200px;height:200px;max-width:none}.symbol.symbol-xxl-200px.symbol-2by3 .symbol-label{height:200px;width:300px}.symbol.symbol-xxl-200px.symbol-2by3>img{height:200px;width:300px;max-width:none}}.symbol-group{display:flex;flex-wrap:wrap;align-items:center;margin-right:10px}.symbol-group .symbol{position:relative;z-index:0;margin-right:-10px;border:2px solid #1e1e2d;transition:all .3s ease}.symbol-group .symbol:hover{transition:all .3s ease;z-index:1}.symbol-group.symbol-hover .symbol{cursor:pointer}.pulse{position:relative}.pulse.pulse-white .pulse-ring{border-color:#fff}.pulse.pulse-light .pulse-ring{border-color:#323248}.pulse.pulse-primary .pulse-ring{border-color:#3699ff}.pulse.pulse-secondary .pulse-ring{border-color:#323248}.pulse.pulse-success .pulse-ring{border-color:#0bb783}.pulse.pulse-info .pulse-ring{border-color:#8950fc}.pulse.pulse-warning .pulse-ring{border-color:#ffa800}.pulse.pulse-danger .pulse-ring{border-color:#f64e60}.pulse.pulse-dark .pulse-ring{border-color:#fff}.pulse-ring{display:block;border-radius:40px;height:40px;width:40px;position:absolute;animation:animation-pulse 3.5s ease-out;animation-iteration-count:infinite;opacity:0;border-width:3px;border-style:solid;border-color:#565674}@keyframes animation-pulse{0%{-webkit-transform:scale(.1,.1);opacity:0}60%{-webkit-transform:scale(.1,.1);opacity:0}65%{opacity:1}100%{-webkit-transform:scale(1.2,1.2);opacity:0}}.page-loading *{transition:none!important}.page-loader{background:#1e1e2d;position:fixed;top:0;bottom:0;right:0;left:0;z-index:1000;display:none}.page-loading .page-loader{display:flex;justify-content:center;align-items:center}.scrolltop{position:fixed;display:none;cursor:pointer;z-index:100;justify-content:center;align-items:center;width:36px;height:36px;bottom:40px;left:20px;background-color:#3699ff;box-shadow:0 .5rem 1.5rem .5rem rgba(0,0,0,.075);opacity:0;transition:color .2s ease,background-color .2s ease;border-radius:.475rem}.scrolltop .svg-icon{color:#fff}.scrolltop .svg-icon svg{height:24px;width:24px}.scrolltop>i{font-size:1.3rem;color:#fff}.scrolltop:hover{background-color:#3699ff}.scrolltop:hover>i{color:#fff}.scrolltop:hover .svg-icon{color:#fff}[data-kt-scrolltop=on] .scrolltop{opacity:.3;animation:animation-scrolltop .4s ease-out 1;display:flex}[data-kt-scrolltop=on] .scrolltop:hover{transition:color .2s ease,background-color .2s ease;opacity:1}@media (max-width:991.98px){.scrolltop{bottom:30px;left:15px;width:30px;height:30px}}@keyframes animation-scrolltop{from{margin-bottom:-15px}to{margin-bottom:0}}.svg-icon{line-height:1;color:#565674}.svg-icon svg{height:1.15rem;width:1.15rem}.svg-icon.svg-icon-white{color:#fff}.svg-icon.svg-icon-primary{color:#3699ff}.svg-icon.svg-icon-secondary{color:#323248}.svg-icon.svg-icon-light{color:#323248}.svg-icon.svg-icon-success{color:#0bb783}.svg-icon.svg-icon-info{color:#8950fc}.svg-icon.svg-icon-warning{color:#ffa800}.svg-icon.svg-icon-danger{color:#f64e60}.svg-icon.svg-icon-dark{color:#fff}.svg-icon.svg-icon-muted{color:#565674}.svg-icon.svg-icon-gray-100{color:#1b1b29}.svg-icon.svg-icon-gray-200{color:#2b2b40}.svg-icon.svg-icon-gray-300{color:#323248}.svg-icon.svg-icon-gray-400{color:#474761}.svg-icon.svg-icon-gray-500{color:#565674}.svg-icon.svg-icon-gray-600{color:#6d6d80}.svg-icon.svg-icon-gray-700{color:#92929f}.svg-icon.svg-icon-gray-800{color:#cdcdde}.svg-icon.svg-icon-gray-900{color:#fff}.svg-icon.svg-icon-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-5tx svg{height:5.75rem!important;width:5.75rem!important}@media (min-width:576px){.svg-icon.svg-icon-sm-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-sm-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-sm-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-sm-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-sm-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-sm-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-sm-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-sm-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-sm-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-sm-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-sm-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-sm-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-sm-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-sm-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-sm-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-sm-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-sm-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-sm-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-sm-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-sm-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-sm-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-sm-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-sm-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-sm-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-sm-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-sm-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-sm-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-sm-5tx svg{height:5.75rem!important;width:5.75rem!important}}@media (min-width:768px){.svg-icon.svg-icon-md-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-md-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-md-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-md-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-md-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-md-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-md-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-md-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-md-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-md-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-md-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-md-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-md-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-md-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-md-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-md-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-md-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-md-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-md-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-md-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-md-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-md-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-md-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-md-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-md-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-md-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-md-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-md-5tx svg{height:5.75rem!important;width:5.75rem!important}}@media (min-width:992px){.svg-icon.svg-icon-lg-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-lg-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-lg-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-lg-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-lg-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-lg-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-lg-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-lg-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-lg-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-lg-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-lg-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-lg-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-lg-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-lg-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-lg-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-lg-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-lg-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-lg-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-lg-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-lg-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-lg-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-lg-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-lg-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-lg-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-lg-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-lg-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-lg-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-lg-5tx svg{height:5.75rem!important;width:5.75rem!important}}@media (min-width:1200px){.svg-icon.svg-icon-xl-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-xl-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-xl-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-xl-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-xl-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-xl-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-xl-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-xl-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-xl-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-xl-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-xl-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-xl-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-xl-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-xl-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-xl-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-xl-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-xl-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-xl-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-xl-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-xl-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-xl-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-xl-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-xl-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-xl-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-xl-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-xl-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-xl-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-xl-5tx svg{height:5.75rem!important;width:5.75rem!important}}@media (min-width:1400px){.svg-icon.svg-icon-xxl-1 svg{height:1.75rem!important;width:1.75rem!important}.svg-icon.svg-icon-xxl-2 svg{height:1.5rem!important;width:1.5rem!important}.svg-icon.svg-icon-xxl-3 svg{height:1.35rem!important;width:1.35rem!important}.svg-icon.svg-icon-xxl-4 svg{height:1.25rem!important;width:1.25rem!important}.svg-icon.svg-icon-xxl-5 svg{height:1.15rem!important;width:1.15rem!important}.svg-icon.svg-icon-xxl-6 svg{height:1.075rem!important;width:1.075rem!important}.svg-icon.svg-icon-xxl-7 svg{height:.95rem!important;width:.95rem!important}.svg-icon.svg-icon-xxl-8 svg{height:.85rem!important;width:.85rem!important}.svg-icon.svg-icon-xxl-9 svg{height:.75rem!important;width:.75rem!important}.svg-icon.svg-icon-xxl-10 svg{height:.5rem!important;width:.5rem!important}.svg-icon.svg-icon-xxl-base svg{height:1rem!important;width:1rem!important}.svg-icon.svg-icon-xxl-fluid svg{height:100%!important;width:100%!important}.svg-icon.svg-icon-xxl-2x svg{height:2rem!important;width:2rem!important}.svg-icon.svg-icon-xxl-2qx svg{height:2.25rem!important;width:2.25rem!important}.svg-icon.svg-icon-xxl-2hx svg{height:2.5rem!important;width:2.5rem!important}.svg-icon.svg-icon-xxl-2tx svg{height:2.75rem!important;width:2.75rem!important}.svg-icon.svg-icon-xxl-3x svg{height:3rem!important;width:3rem!important}.svg-icon.svg-icon-xxl-3qx svg{height:3.25rem!important;width:3.25rem!important}.svg-icon.svg-icon-xxl-3hx svg{height:3.5rem!important;width:3.5rem!important}.svg-icon.svg-icon-xxl-3tx svg{height:3.75rem!important;width:3.75rem!important}.svg-icon.svg-icon-xxl-4x svg{height:4rem!important;width:4rem!important}.svg-icon.svg-icon-xxl-4qx svg{height:4.25rem!important;width:4.25rem!important}.svg-icon.svg-icon-xxl-4hx svg{height:4.5rem!important;width:4.5rem!important}.svg-icon.svg-icon-xxl-4tx svg{height:4.75rem!important;width:4.75rem!important}.svg-icon.svg-icon-xxl-5x svg{height:5rem!important;width:5rem!important}.svg-icon.svg-icon-xxl-5qx svg{height:5.25rem!important;width:5.25rem!important}.svg-icon.svg-icon-xxl-5hx svg{height:5.5rem!important;width:5.5rem!important}.svg-icon.svg-icon-xxl-5tx svg{height:5.75rem!important;width:5.75rem!important}}.fixed-top{position:fixed;z-index:101;top:0;right:0;left:0}@media (min-width:576px){.fixed-top-sm{position:fixed;z-index:101;top:0;right:0;left:0}}@media (min-width:768px){.fixed-top-md{position:fixed;z-index:101;top:0;right:0;left:0}}@media (min-width:992px){.fixed-top-lg{position:fixed;z-index:101;top:0;right:0;left:0}}@media (min-width:1200px){.fixed-top-xl{position:fixed;z-index:101;top:0;right:0;left:0}}@media (min-width:1400px){.fixed-top-xxl{position:fixed;z-index:101;top:0;right:0;left:0}}.timeline .timeline-item{position:relative;padding:0;margin:0;display:flex;align-items:flex-start}.timeline .timeline-item:last-child .timeline-line{bottom:100%}.timeline .timeline-line{display:block;content:" ";justify-content:center;position:absolute;z-index:0;right:0;top:0;bottom:0;transform:translate(-50%);border-right-width:1px;border-right-style:dashed;border-right-color:#323248}.timeline .timeline-icon{z-index:1;flex-shrink:0;margin-left:1rem}.timeline .timeline-content{width:100%;overflow:auto;margin-bottom:1.5rem}.timeline.timeline-center .timeline-item{align-items:center}.timeline.timeline-center .timeline-item:first-child .timeline-line{top:50%}.timeline.timeline-center .timeline-item:last-child .timeline-line{bottom:50%}.timeline-label{position:relative}.timeline-label:before{content:"";position:absolute;right:51px;width:3px;top:0;bottom:0;background-color:#2b2b40}.timeline-label .timeline-item{display:flex;align-items:flex-start;position:relative;margin-bottom:1.7rem}.timeline-label .timeline-item:last-child{margin-bottom:0}.timeline-label .timeline-label{width:50px;flex-shrink:0;position:relative;color:#cdcdde}.timeline-label .timeline-badge{flex-shrink:0;background:#1e1e2d;width:1rem;height:1rem;border-radius:100%;display:flex;justify-content:center;align-items:center;z-index:1;position:relative;margin-top:1px;margin-right:-.5rem;padding:3px!important;border:6px solid #1e1e2d!important}.timeline-label .timeline-badge span{display:block;border-radius:100%;width:6px;height:6px;background-color:#2b2b40}.timeline-label .timeline-content{flex-grow:1}.overlay{position:relative}.overlay .overlay-layer{position:absolute;top:0;bottom:0;right:0;left:0;display:flex;justify-content:center;align-items:center;background-color:rgba(0,0,0,.05);transition:all .3s ease;opacity:0}.overlay.overlay-block .overlay-layer,.overlay.overlay-show .overlay-layer,.overlay:hover .overlay-layer{transition:all .3s ease;opacity:1}.overlay.overlay-block{cursor:wait}.bullet{display:inline-block;background-color:#474761;border-radius:6px;width:8px;height:4px;flex-shrink:0}.bullet-dot{width:4px;height:4px;border-radius:100%!important}.bullet-vertical{width:4px;height:8px}.bullet-line{width:5px;height:1px;border-radius:0}.drawer{display:flex!important;overflow:auto;z-index:110;position:fixed;top:0;bottom:0;background-color:#1e1e2d;transition:transform .3s ease-in-out}.drawer.drawer-start{right:0;transform:translateX(100%)}.drawer.drawer-end{left:0;transform:translateX(-100%)}.drawer.drawer-on{transform:none;box-shadow:0 0 30px rgba(0,0,0,.1);transition:transform .3s ease-in-out}.drawer-overlay{position:fixed;top:0;right:0;bottom:0;left:0;overflow:hidden;z-index:109;background-color:rgba(0,0,0,.4);animation:animation-drawer-fade-in .3s ease-in-out 1}[data-kt-drawer=true]{display:none}@keyframes animation-drawer-fade-in{from{opacity:0}to{opacity:1}}@media (max-width:991.98px){body[data-kt-drawer=on]{overflow:hidden}}.badge{display:inline-flex;align-items:center}.badge.badge-circle,.badge.badge-square{display:inline-flex;align-items:center;justify-content:center;height:1.75rem;min-width:1.75rem;padding:0 .1rem;line-height:0}.badge.badge-circle{border-radius:50%;padding:0;min-width:unset;width:1.75rem}.badge.badge-sm{min-width:1.5rem;font-size:.8rem}.badge.badge-sm.badge-square{height:1.5rem}.badge.badge-sm.badge-circle{width:1.5rem;height:1.5rem}.badge.badge-lg{min-width:2rem;font-size:1rem}.badge.badge-lg.badge-square{height:2rem}.badge.badge-lg.badge-circle{width:2rem;height:2rem}.badge-white{color:#6d6d80;background-color:#fff}.badge-light-white{color:#fff}.badge-light{color:#cdcdde;background-color:#323248}.badge-light-light{color:#323248}.badge-primary{color:#fff;background-color:#3699ff}.badge-light-primary{color:#3699ff;background-color:#212e48}.badge-secondary{color:#cdcdde;background-color:#323248}.badge-light-secondary{color:#323248}.badge-success{color:#fff;background-color:#0bb783}.badge-light-success{color:#0bb783;background-color:#1c3238}.badge-info{color:#fff;background-color:#8950fc}.badge-light-info{color:#8950fc;background-color:#2f264f}.badge-warning{color:#fff;background-color:#ffa800}.badge-light-warning{color:#ffa800;background-color:#392f28}.badge-danger{color:#fff;background-color:#f64e60}.badge-light-danger{color:#f64e60;background-color:#3a2434}.badge-dark{color:#1b1b29;background-color:#fff}.badge-light-dark{color:#fff;background-color:#2b2b40}.indicator-progress{display:none}[data-kt-indicator=on]>.indicator-progress{display:inline-block}[data-kt-indicator=on]>.indicator-label{display:none}.rotate{display:inline-flex;align-items:center}.rotate-90{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-90,.collapsible:not(.collapsed)>.rotate-90,.show>.rotate-90{transform:rotateZ(-90deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-90,[direction=rtl] .collapsible:not(.collapsed)>.rotate-90,[direction=rtl] .show>.rotate-90{transform:rotateZ(90deg)}.rotate-n90{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-n90,.collapsible:not(.collapsed)>.rotate-n90,.show>.rotate-n90{transform:rotateZ(90deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-n90,[direction=rtl] .collapsible:not(.collapsed)>.rotate-n90,[direction=rtl] .show>.rotate-n90{transform:rotateZ(-90deg)}.rotate-180{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-180,.collapsible:not(.collapsed)>.rotate-180,.show>.rotate-180{transform:rotateZ(-180deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-180,[direction=rtl] .collapsible:not(.collapsed)>.rotate-180,[direction=rtl] .show>.rotate-180{transform:rotateZ(180deg)}.rotate-n180{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-n180,.collapsible:not(.collapsed)>.rotate-n180,.show>.rotate-n180{transform:rotateZ(180deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-n180,[direction=rtl] .collapsible:not(.collapsed)>.rotate-n180,[direction=rtl] .show>.rotate-n180{transform:rotateZ(-180deg)}.rotate-270{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-270,.collapsible:not(.collapsed)>.rotate-270,.show>.rotate-270{transform:rotateZ(-270deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-270,[direction=rtl] .collapsible:not(.collapsed)>.rotate-270,[direction=rtl] .show>.rotate-270{transform:rotateZ(270deg)}.rotate-n270{transition:transform .3s ease;backface-visibility:hidden}.active>.rotate-n270,.collapsible:not(.collapsed)>.rotate-n270,.show>.rotate-n270{transform:rotateZ(270deg);transition:transform .3s ease}[direction=rtl] .active>.rotate-n270,[direction=rtl] .collapsible:not(.collapsed)>.rotate-n270,[direction=rtl] .show>.rotate-n270{transform:rotateZ(-270deg)}@media (min-width:992px){div,main,ol,pre,span,ul{scrollbar-width:thin;scrollbar-color:#2b2b40 transparent}div::-webkit-scrollbar,main::-webkit-scrollbar,ol::-webkit-scrollbar,pre::-webkit-scrollbar,span::-webkit-scrollbar,ul::-webkit-scrollbar{width:.4rem;height:.4rem}div::-webkit-scrollbar-thumb,main::-webkit-scrollbar-thumb,ol::-webkit-scrollbar-thumb,pre::-webkit-scrollbar-thumb,span::-webkit-scrollbar-thumb,ul::-webkit-scrollbar-thumb{background-color:#2b2b40}div:hover,main:hover,ol:hover,pre:hover,span:hover,ul:hover{scrollbar-color:#27273a transparent}div:hover::-webkit-scrollbar-thumb,main:hover::-webkit-scrollbar-thumb,ol:hover::-webkit-scrollbar-thumb,pre:hover::-webkit-scrollbar-thumb,span:hover::-webkit-scrollbar-thumb,ul:hover::-webkit-scrollbar-thumb{background-color:#27273a}}.scroll{overflow:scroll;position:relative}@media (max-width:991.98px){.scroll{overflow:auto}}.scroll-x{overflow-x:scroll;position:relative}@media (max-width:991.98px){.scroll-x{overflow-x:auto}}.scroll-y{overflow-y:scroll;position:relative}@media (max-width:991.98px){.scroll-y{overflow-y:auto}}.hover-scroll{position:relative}@media (min-width:992px){.hover-scroll{overflow:hidden;border-left:.4rem solid transparent;border-bottom:.4rem solid transparent;margin-left:-.4rem;margin-bottom:-.4rem}.hover-scroll:hover{overflow:scroll;border-left:0;border-bottom:0}@-moz-document url-prefix(){.hover-scroll{overflow:scroll;position:relative;border-left:0;border-bottom:0}}}@media (max-width:991.98px){.hover-scroll{overflow:auto}}.hover-scroll-y{position:relative}@media (min-width:992px){.hover-scroll-y{overflow-y:hidden;border-left:.4rem solid transparent;margin-left:-.4rem}.hover-scroll-y:hover{overflow-y:scroll;border-left:0}@-moz-document url-prefix(){.hover-scroll-y{overflow-y:scroll;position:relative;border-left:0}}}@media (max-width:991.98px){.hover-scroll-y{overflow-y:auto}}.hover-scroll-x{position:relative}@media (min-width:992px){.hover-scroll-x{overflow-x:hidden;border-bottom:.4rem solid transparent}.hover-scroll-x:hover{overflow-x:scroll;border-bottom:0}@-moz-document url-prefix(){.hover-scroll-x{overflow-x:scroll;position:relative;border-bottom:0}}}@media (max-width:991.98px){.hover-scroll-x{overflow-x:auto}}.hover-scroll-overlay-y{overflow-y:hidden;position:relative;--scrollbar-space:0.5rem}.hover-scroll-overlay-y::-webkit-scrollbar{width:calc(.4rem + var(--scrollbar-space))}.hover-scroll-overlay-y::-webkit-scrollbar-thumb{background-clip:content-box;border-left:var(--scrollbar-space) solid transparent}.hover-scroll-overlay-y:hover{overflow-y:overlay}@-moz-document url-prefix(){.hover-scroll-overlay-y{overflow-y:scroll;position:relative}}.scroll-ps{padding-right:.4rem!important}.scroll-ms{margin-right:.4rem!important}.scroll-pe{padding-left:.4rem!important}.scroll-me{margin-left:.4rem!important}.scroll-px{padding-right:.4rem!important;padding-left:.4rem!important}.scroll-mx{margin-right:.4rem!important;margin-left:.4rem!important}.rating{display:flex;align-items:center}.rating-input{position:absolute!important;right:-9999px!important}.rating-input[disabled]{display:none}.rating-label{padding:0;margin:0}.rating-label>.svg-icon,.rating-label>i{line-height:1;color:#474761}label.rating-label{cursor:pointer}div.rating-label.checked>.svg-icon,div.rating-label.checked>i,label.rating-label>.svg-icon,label.rating-label>i{color:#ffad0f}.rating-input:checked~.rating-label>.svg-icon,.rating-input:checked~.rating-label>i{color:#474761}.rating:hover label.rating-label>.svg-icon,.rating:hover label.rating-label>i{color:#ffad0f}label.rating-label:hover~.rating-label{color:#474761}label.rating-label:hover~.rating-label>.svg-icon,label.rating-label:hover~.rating-label>i{color:#474761}.stepper [data-kt-stepper-element=content],.stepper [data-kt-stepper-element=info]{display:none}.stepper [data-kt-stepper-element=content].current,.stepper [data-kt-stepper-element=info].current{display:flex}.stepper .stepper-item[data-kt-stepper-action=step]{cursor:pointer}.stepper [data-kt-stepper-action=previous]{display:none}.stepper [data-kt-stepper-action=next]{display:inline-block}.stepper [data-kt-stepper-action=submit]{display:none}.stepper.first [data-kt-stepper-action=previous]{display:none}.stepper.first [data-kt-stepper-action=next]{display:inline-block}.stepper.first [data-kt-stepper-action=submit]{display:none}.stepper.between [data-kt-stepper-action=previous]{display:inline-block}.stepper.between [data-kt-stepper-action=next]{display:inline-block}.stepper.between [data-kt-stepper-action=submit]{display:none}.stepper.last [data-kt-stepper-action=previous]{display:inline-block}.stepper.last [data-kt-stepper-action=next]{display:none}.stepper.last [data-kt-stepper-action=submit]{display:inline-block}.stepper.last [data-kt-stepper-action=submit].btn-flex{display:flex}.stepper.stepper-pills .stepper-nav{display:flex}.stepper.stepper-pills .stepper-item{display:flex;align-items:center;transition:color .2s ease,background-color .2s ease}.stepper.stepper-pills .stepper-item .stepper-icon{display:flex;align-items:center;justify-content:center;transition:color .2s ease,background-color .2s ease;width:40px;height:40px;border-radius:.475rem;background-color:#212e48;margin-left:1.5rem}.stepper.stepper-pills .stepper-item .stepper-icon .stepper-check{display:none;font-size:1rem}.stepper.stepper-pills .stepper-item .stepper-icon .stepper-number{font-weight:600;color:#3699ff!important;font-size:1.25rem}.stepper.stepper-pills .stepper-item .stepper-label{display:flex;flex-direction:column;justify-content:center}.stepper.stepper-pills .stepper-item .stepper-label .stepper-title{color:#cdcdde;font-weight:600;font-size:1.25rem;margin-bottom:.3rem}.stepper.stepper-pills .stepper-item .stepper-label .stepper-desc{color:#565674}.stepper.stepper-pills .stepper-item.current{transition:color .2s ease,background-color .2s ease}.stepper.stepper-pills .stepper-item.current .stepper-icon{transition:color .2s ease,background-color .2s ease;background-color:#3699ff}.stepper.stepper-pills .stepper-item.current .stepper-icon .stepper-check{color:#3699ff;display:none}.stepper.stepper-pills .stepper-item.current .stepper-icon .stepper-number{color:#fff!important;font-size:1.35rem}.stepper.stepper-pills .stepper-item.current .stepper-label .stepper-title{color:#6d6d80}.stepper.stepper-pills .stepper-item.current .stepper-label .stepper-desc{color:#474761}.stepper.stepper-pills .stepper-item.completed .stepper-icon,.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon{transition:color .2s ease,background-color .2s ease;background-color:#212e48}.stepper.stepper-pills .stepper-item.completed .stepper-icon .stepper-check,.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon .stepper-check{color:#3699ff!important;display:inline-block}.stepper.stepper-pills .stepper-item.completed .stepper-icon .stepper-number,.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon .stepper-number{display:none}.stepper.stepper-pills .stepper-item.completed .stepper-label .stepper-title,.stepper.stepper-pills .stepper-item.current:last-child .stepper-label .stepper-title{color:#565674}.stepper.stepper-pills .stepper-item.completed .stepper-label .stepper-desc,.stepper.stepper-pills .stepper-item.current:last-child .stepper-label .stepper-desc{color:#474761}.stepper.stepper-pills.stepper-column .stepper-nav{flex-direction:column}.stepper.stepper-pills.stepper-column .stepper-item{position:relative;padding:0;margin:0;padding-bottom:2.5rem}.stepper.stepper-pills.stepper-column .stepper-icon{z-index:1}.stepper.stepper-pills.stepper-column .stepper-line{display:block;content:" ";justify-content:center;position:absolute;z-index:0;right:0;top:0;bottom:0;width:40px;transform:translate(-50%);border-right-width:1px;border-right-style:dashed;border-right-color:#323248}.stepper.stepper-pills.stepper-column .stepper-item:first-child .stepper-line{top:50%}.stepper.stepper-pills.stepper-column .stepper-item:last-child .stepper-line{bottom:50%}.stepper.stepper-links .stepper-nav{display:flex;margin:0 auto;justify-content:center;align-items:center;flex-wrap:wrap}.stepper.stepper-links .stepper-nav .stepper-item{position:relative;flex-shrink:0;margin:1rem 1.5rem}.stepper.stepper-links .stepper-nav .stepper-item:after{content:" ";position:absolute;top:2.3rem;right:0;height:2px;width:100%;background-color:transparent;transition:color .2s ease,background-color .2s ease}.stepper.stepper-links .stepper-nav .stepper-item .stepper-title{color:#fff;font-weight:600;font-size:1.25rem}.stepper.stepper-links .stepper-nav .stepper-item.current{transition:color .2s ease,background-color .2s ease}.stepper.stepper-links .stepper-nav .stepper-item.current .stepper-title{color:#3699ff}.stepper.stepper-links .stepper-nav .stepper-item.current:after{background-color:#3699ff}.stepper.stepper-links .stepper-nav .stepper-item.completed .stepper-title{color:#474761}.toggle.active .toggle-off,.toggle.collapsible:not(.collapsed) .toggle-off{display:none}.toggle.collapsible.collapsed .toggle-on,.toggle:not(.collapsible):not(.active) .toggle-on{display:none}.xehagon{clip-path:polygon(45% 1.3397459622%,46.5797985667% .6030737921%,48.2635182233% .1519224699%,50% 0,51.7364817767% .1519224699%,53.4202014333% .6030737921%,55% 1.3397459622%,89.6410161514% 21.3397459622%,91.0688922482% 22.3395555688%,92.3014605826% 23.5721239031%,93.3012701892% 25%,94.0379423592% 26.5797985667%,94.4890936815% 28.2635182233%,94.6410161514% 30%,94.6410161514% 70%,94.4890936815% 71.7364817767%,94.0379423592% 73.4202014333%,93.3012701892% 75%,92.3014605826% 76.4278760969%,91.0688922482% 77.6604444312%,89.6410161514% 78.6602540378%,55% 98.6602540378%,53.4202014333% 99.3969262079%,51.7364817767% 99.8480775301%,50% 100%,48.2635182233% 99.8480775301%,46.5797985667% 99.3969262079%,45% 98.6602540378%,10.3589838486% 78.6602540378%,8.9311077518% 77.6604444312%,7.6985394174% 76.4278760969%,6.6987298108% 75%,5.9620576408% 73.4202014333%,5.5109063185% 71.7364817767%,5.3589838486% 70%,5.3589838486% 30%,5.5109063185% 28.2635182233%,5.9620576408% 26.5797985667%,6.6987298108% 25%,7.6985394174% 23.5721239031%,8.9311077518% 22.3395555688%,10.3589838486% 21.3397459622%)}.octagon{clip-path:polygon(46.1731656763% .7612046749%,47.411809549% .3407417371%,48.6947380778% .0855513863%,50% 0,51.3052619222% .0855513863%,52.588190451% .3407417371%,53.8268343237% .7612046749%,82.1111055711% 12.4769334274%,83.2842712475% 13.0554747147%,84.3718855375% 13.7821953496%,85.3553390593% 14.6446609407%,86.2178046504% 15.6281144625%,86.9445252853% 16.7157287525%,87.5230665726% 17.8888944289%,99.2387953251% 46.1731656763%,99.6592582629% 47.411809549%,99.9144486137% 48.6947380778%,100% 50%,99.9144486137% 51.3052619222%,99.6592582629% 52.588190451%,99.2387953251% 53.8268343237%,87.5230665726% 82.1111055711%,86.9445252853% 83.2842712475%,86.2178046504% 84.3718855375%,85.3553390593% 85.3553390593%,84.3718855375% 86.2178046504%,83.2842712475% 86.9445252853%,82.1111055711% 87.5230665726%,53.8268343237% 99.2387953251%,52.588190451% 99.6592582629%,51.3052619222% 99.9144486137%,50% 100%,48.6947380778% 99.9144486137%,47.411809549% 99.6592582629%,46.1731656763% 99.2387953251%,17.8888944289% 87.5230665726%,16.7157287525% 86.9445252853%,15.6281144625% 86.2178046504%,14.6446609407% 85.3553390593%,13.7821953496% 84.3718855375%,13.0554747147% 83.2842712475%,12.4769334274% 82.1111055711%,.7612046749% 53.8268343237%,.3407417371% 52.588190451%,.0855513863% 51.3052619222%,0 50%,.0855513863% 48.6947380778%,.3407417371% 47.411809549%,.7612046749% 46.1731656763%,12.4769334274% 17.8888944289%,13.0554747147% 16.7157287525%,13.7821953496% 15.6281144625%,14.6446609407% 14.6446609407%,15.6281144625% 13.7821953496%,16.7157287525% 13.0554747147%,17.8888944289% 12.4769334274%)}.ribbon{position:relative}.ribbon .ribbon-label{display:flex;justify-content:center;align-items:center;padding:5px 10px;position:absolute;z-index:1;background-color:#3699ff;box-shadow:0 -1px 5px 0 rgba(0,0,0,.1);color:#fff;top:50%;left:0;transform:translateX(-5px) translateY(-50%)}.ribbon .ribbon-label>.ribbon-inner{z-index:-1;position:absolute;padding:0;width:100%;height:100%;top:0;right:0}.ribbon .ribbon-label:after{border-color:#004d9c}.ribbon-vertical .ribbon-label{padding:5px 10px;min-width:36px;min-height:46px;text-align:center}.ribbon.ribbon-top .ribbon-label{top:0;transform:translateX(15px) translateY(-4px);border-bottom-left-radius:.475rem;border-bottom-right-radius:.475rem}.ribbon.ribbon-bottom .ribbon-label{border-top-left-radius:.475rem;border-top-right-radius:.475rem}.ribbon.ribbon-start .ribbon-label{top:50%;right:0;left:auto;transform:translateX(5px) translateY(-50%);border-top-left-radius:.475rem;border-bottom-left-radius:.475rem}.ribbon.ribbon-end .ribbon-label{border-top-right-radius:.475rem;border-bottom-right-radius:.475rem}.ribbon.ribbon-clip.ribbon-start .ribbon-label{right:-5px}.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner{border-top-left-radius:.475rem;border-bottom-left-radius:.475rem}.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:after,.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:before{content:"";position:absolute;border-style:solid;border-color:transparent!important;bottom:-10px}.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:before{border-width:0 0 10px 10px;border-left-color:#323248!important;right:0}.ribbon.ribbon-clip.ribbon-end .ribbon-label{left:-5px}.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner{border-top-right-radius:.475rem;border-bottom-right-radius:.475rem}.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:after,.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:before{content:"";position:absolute;border-style:solid;border-color:transparent!important;bottom:-10px}.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:before{border-width:0 10px 10px 0;border-right-color:#323248!important;left:0}.ribbon.ribbon-triangle{position:absolute;z-index:1;display:flex;align-items:flex-start;justify-content:flex-start}.ribbon.ribbon-triangle.ribbon-top-start{top:0;right:0;width:4rem;height:4rem;border-bottom:solid 2rem transparent!important;border-right:solid 2rem red;border-left:solid 2rem transparent!important;border-top:solid 2rem red}.ribbon.ribbon-triangle.ribbon-top-end{top:0;left:0;width:4rem;height:4rem;border-bottom:solid 2rem transparent!important;border-right:solid 2rem transparent!important;border-left:solid 2rem red;border-top:solid 2rem red}.ribbon.ribbon-triangle.ribbon-bottom-start{bottom:0;right:0;width:4rem;height:4rem;border-bottom:solid 2rem red;border-right:solid 2rem red;border-left:solid 2rem transparent!important;border-top:solid 2rem transparent!important}.ribbon.ribbon-triangle.ribbon-bottom-end{bottom:0;left:0;width:4rem;height:4rem;border-bottom:solid 2rem red;border-left:solid 2rem red;border-right:solid 2rem transparent!important;border-top:solid 2rem transparent!important}.blockui{position:relative}.blockui .blockui-overlay{transition:all .3s ease;position:absolute;top:0;bottom:0;right:0;left:0;display:flex;justify-content:center;align-items:center;background-color:rgba(0,0,0,.05)}.blockui .blockui-overlay .spinner-border{height:1.35rem;width:1.35rem}.blockui .blockui-message{display:flex;align-items:center;border-radius:.475rem;box-shadow:0 0 30px rgba(0,0,0,.3);background-color:#2b2b40;color:#92929f;font-weight:500;margin:0!important;width:auto;padding:.85rem 1.75rem!important}.blockui .blockui-message .spinner-border{margin-left:.65rem}.notice.border-white{border-color:rgba(255,255,255,.5)!important}.notice.border-light{border-color:rgba(50,50,72,.5)!important}.notice.border-primary{border-color:rgba(54,153,255,.5)!important}.notice.border-secondary{border-color:rgba(50,50,72,.5)!important}.notice.border-success{border-color:rgba(11,183,131,.5)!important}.notice.border-info{border-color:rgba(137,80,252,.5)!important}.notice.border-warning{border-color:rgba(255,168,0,.5)!important}.notice.border-danger{border-color:rgba(246,78,96,.5)!important}.notice.border-dark{border-color:rgba(255,255,255,.5)!important}.explore-btn-toggle{color:#6d6d80;background-color:#fff}.explore-btn-toggle:active,.explore-btn-toggle:focus,.explore-btn-toggle:hover{color:#fff;background-color:#00b2ff}.explore-btn-dismiss{border:0}.explore-btn-dismiss:hover .svg-icon,.explore-btn-dismiss:hover i{color:#00b2ff}.explore-btn-primary{border:0;color:#fff;background-color:#00b2ff}.explore-btn-primary:hover{color:#fff;background-color:#0098da}.explore-btn-secondary{border:0;color:#6d6d80;background-color:#1b1b29}.explore-btn-secondary:hover{color:#cdcdde;background-color:#2b2b40}.explore-btn-outline{border:1px dashed #323248!important}.explore-btn-outline.active,.explore-btn-outline:hover{border:1px dashed #50cd89!important;background-color:#e8fff3}.explore-link{color:#00b2ff}.explore-link:hover{color:#0098da}.explore-link-hover:hover{color:#00b2ff!important}.explore-icon-success{color:#50cd89}.explore-icon-danger{color:#f1416c}.explore-label-free{color:#fff;background-color:#ffc700}.explore-label-pro{color:#fff;background-color:#50cd89}.cookiealert{background:inherit;color:inherit}@media print{.print-content-only{padding:0!important;background:0 0!important}.print-content-only .container,.print-content-only .container-fluid,.print-content-only .container-lg,.print-content-only .container-md,.print-content-only .container-sm,.print-content-only .container-xl,.print-content-only .container-xxl,.print-content-only .page,.print-content-only .page-title .content,.print-content-only .wrapper{background:0 0!important;padding:0!important;margin:0!important}.print-content-only .aside,.print-content-only .btn,.print-content-only .drawer,.print-content-only .footer,.print-content-only .header,.print-content-only .scrolltop,.print-content-only .sidebar,.print-content-only .toolbar{display:none!important}}@media (min-width:992px){.container-custom{padding-right:2rem!important;padding-left:2rem!important}}@media (max-width:991.98px){.container-custom{max-width:none;padding-right:1.5rem!important;padding-left:1.5rem!important}}.landing-dark-bg{background-color:#13263c}.landing-dark-color{color:#13263c}.landing-dark-border{border:1px dashed #2c3f5b}.landing-dark-separator{border-top:1px dashed #2c3f5b}.landing-curve{position:relative}.landing-curve svg{position:relative;top:0;display:block}.landing-header{display:flex;align-items:center;height:100px}.landing-header .logo-default{display:block}.landing-header .logo-sticky{display:none}.landing-header .menu .menu-link.active{color:#fff}[data-kt-sticky-landing-header=on] .landing-header .menu .menu-link.active{color:#3699ff;background-color:rgba(239,242,245,.4)}[data-kt-sticky-landing-header=on] .landing-header{padding:0;position:fixed;top:0;left:0;right:0;z-index:100;background-color:#fff;box-shadow:0 10px 30px 0 rgba(82,63,105,.05);height:70px}[data-kt-sticky-landing-header=on] .landing-header .logo-sticky{display:block}[data-kt-sticky-landing-header=on] .landing-header .logo-default{display:none}body[data-kt-sticky-landing-header=on]{padding-top:100px}@media (max-width:991.98px){.landing-header{height:70px}.landing-header .landing-menu-wrapper{position:relative;overflow:auto}[data-kt-sticky-landing-header=on] .landing-header{height:70px}.landing-header .menu .menu-link.active{color:#3699ff;background-color:rgba(239,242,245,.4)}body[data-kt-sticky-landing-header=on]{padding-top:70px}}html{font-family:sans-serif;text-size-adjust:100%}body,html{height:100%;margin:0;padding:0;font-size:13px!important;font-weight:400;font-family:Poppins,Helvetica,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (max-width:991.98px){body,html{font-size:13px!important}}@media (max-width:767.98px){body,html{font-size:12px!important}}body a:active,body a:focus,body a:hover,html a:active,html a:focus,html a:hover{text-decoration:none!important}body{display:flex;flex-direction:column;color:#fff}router-outlet{display:none}canvas{user-select:none}@media print{.print-content-only{padding:0!important;background:0 0!important}.print-content-only .container,.print-content-only .container-fluid,.print-content-only .container-lg,.print-content-only .container-md,.print-content-only .container-sm,.print-content-only .container-xl,.print-content-only .container-xxl,.print-content-only .page,.print-content-only .page-title .content,.print-content-only .wrapper{background:0 0!important;padding:0!important;margin:0!important}.print-content-only .aside,.print-content-only .btn,.print-content-only .drawer,.print-content-only .footer,.print-content-only .header,.print-content-only .scrolltop,.print-content-only .sidebar,.print-content-only .toolbar{display:none!important}}body{background-color:#151521}.text-page-bg{color:#151521}@media (min-width:992px){.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{padding:0 30px}.wrapper{transition:padding-right .3s ease,margin-left .3s ease}.aside-enabled.aside-fixed .wrapper{transition:padding-right .3s ease;padding-right:265px}.aside-enabled.aside-fixed[data-kt-aside-minimize=on] .wrapper{transition:padding-right .3s ease;padding-right:75px}.header-fixed .wrapper{padding-top:65px}.header-fixed.toolbar-fixed .wrapper{padding-top:calc(65px + var(--kt-toolbar-height))}}@media (max-width:991.98px){.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:none;padding:0 15px}.header-tablet-and-mobile-fixed .wrapper{padding-top:55px}.header-tablet-and-mobile-fixed.toolbar-tablet-and-mobile-fixed .wrapper{padding-top:calc(55px + var(--kt-toolbar-height-tablet-and-mobile))}}@media (min-width:992px){.header{display:flex;justify-content:space-between;align-items:center;position:relative;z-index:2;height:65px;transition:right .3s ease}.header-fixed .header{position:fixed;top:0;left:0;right:0;z-index:100;background-color:#1e1e2d;height:65px;padding:0;box-shadow:none}.header-fixed.toolbar-fixed .header{box-shadow:none}.aside-enabled.aside-fixed.header-fixed .header{right:265px;transition:right .3s ease}.aside-enabled.aside-fixed.header-fixed[data-kt-aside-minimize=on] .header{right:75px;transition:right .3s ease}.header .header-menu{display:flex}}@media (max-width:991.98px){.header{display:flex;justify-content:space-between;align-items:center;height:55px;position:relative;z-index:3}.header-tablet-and-mobile-fixed .header{position:fixed;top:0;left:0;right:0;z-index:100;height:55px;min-height:55px;background-color:#1e1e2d;box-shadow:none}.header-tablet-and-mobile-fixed.toolbar-tablet-and-mobile-fixed .header{box-shadow:none}.header .header-menu{display:none;z-index:99}.header .page-title{display:none!important}}.toolbar{display:flex;align-items:center;background-color:#1a1a27;padding:.5rem 0}@media (min-width:992px){.toolbar-fixed .toolbar{height:var(--kt-toolbar-height);position:fixed;top:0;left:0;right:0;z-index:99;box-shadow:none}.toolbar-enabled:not(.toolbar-fixed) .toolbar{margin-bottom:30px}.header-fixed.toolbar-fixed .toolbar{padding:0;top:65px;border-top:0}.aside-enabled.aside-fixed.toolbar-fixed .toolbar{right:265px;transition:right .3s ease}.aside-enabled.aside-fixed.toolbar-fixed[data-kt-aside-minimize=on] .toolbar{right:75px;transition:right .3s ease}}@media (max-width:991.98px){.toolbar-tablet-and-mobile-fixed .toolbar{height:var(--kt-toolbar-height-tablet-and-mobile);position:fixed;top:0;left:0;right:0;z-index:99;box-shadow:none}.toolbar-enabled:not(.toolbar-tablet-and-mobile-fixed) .toolbar{margin-bottom:15px}.header-tablet-and-mobile-fixed.toolbar-tablet-and-mobile-fixed .toolbar{padding:0;top:55px;border-top:0}.toolbar .page-title[data-kt-swapper=true]{display:none!important}}.aside{display:flex;flex-direction:column;box-shadow:none;padding:0}.aside .btn-custom{display:flex;align-items:center;justify-content:center;padding-right:0;padding-left:0}.aside .btn-custom .btn-label{transition:opacity .3s ease;display:inline-block;white-space:nowrap;overflow:hidden;opacity:1}.aside .btn-custom .btn-icon{display:inline-block;transition:opacity .3s ease;overflow:hidden;opacity:0;margin:0;width:0}.aside.aside-dark{background-color:#1e1e2d}.aside.aside-dark .aside-logo{background-color:#1a1a27}.aside.aside-dark .aside-toggle{color:#494b74}.aside.aside-dark .separator{border-bottom-color:#282a3d}.aside.aside-dark .btn-custom{color:#b5b5c3;background-color:rgba(63,66,84,.35)}.aside.aside-dark .btn-custom.active,.aside.aside-dark .btn-custom.show,.aside.aside-dark .btn-custom:active:not(.btn-active),.aside.aside-dark .btn-custom:focus:not(.btn-active),.aside.aside-dark .btn-custom:hover:not(.btn-active),.btn-check:active+.aside.aside-dark .btn-custom,.btn-check:checked+.aside.aside-dark .btn-custom,.show>.aside.aside-dark .btn-custom{color:#b5b5c3;background-color:rgba(63,66,84,.35)!important}.aside.aside-dark .btn-custom .btn-icon,.aside.aside-dark .btn-custom .btn-icon .svg-icon,.aside.aside-dark .btn-custom .btn-icon i{color:#b5b5c3}.aside.aside-light{background-color:#fff}@media (min-width:992px){.aside{width:265px;transition:width .3s ease}.aside .aside-logo{display:flex;justify-content:space-between;align-items:center;height:65px;padding:0 25px}.aside .aside-menu{width:265px}.aside-fixed .aside{position:fixed;top:0;bottom:0;right:0;z-index:101;overflow:hidden}.aside-static .aside{position:relative;z-index:1}[data-kt-aside-minimize=on] .aside{width:75px;transition:width .3s ease}[data-kt-aside-minimize=on] .aside .aside-logo .logo-default{display:inline-block}[data-kt-aside-minimize=on] .aside .aside-logo .logo-minimize{display:none}[data-kt-aside-minimize=on] .aside.aside-hoverable:hover:not(.animating){transition:width .3s ease;width:265px;box-shadow:none}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo{justify-content:center}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo .logo,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo .logo{display:none}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo .logo-default,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo .logo-default{display:none}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-logo .logo-minimize,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-logo .logo-minimize{display:inline-block}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-menu .menu-content,[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-menu .menu-title,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-menu .menu-content,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-menu .menu-title{opacity:0;transition:opacity .3s ease}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .aside-menu .menu-item.show>.menu-sub,[data-kt-aside-minimize=on] .aside:not(:hover) .aside-menu .menu-item.show>.menu-sub{height:0;overflow:hidden;transition:height .3s ease}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .btn-custom .btn-label,[data-kt-aside-minimize=on] .aside:not(:hover) .btn-custom .btn-label{width:0;opacity:0;transition:opacity .3s ease}[data-kt-aside-minimize=on] .aside:not(.aside-hoverable) .btn-custom .btn-icon,[data-kt-aside-minimize=on] .aside:not(:hover) .btn-custom .btn-icon{width:auto;opacity:1;transition:opacity .3s ease}}@media (max-width:991.98px){.aside{display:none}.aside .aside-logo{display:none}}.aside-menu .menu .menu-item .menu-content,.aside-menu .menu .menu-item .menu-link{padding-right:25px;padding-left:25px}.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(.75rem + 25px)}.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(1.5rem + 25px)}.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(2.25rem + 25px)}.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(3rem + 25px)}.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:.75rem;padding-left:0}.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(1.5rem);padding-left:0}.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(2.25rem);padding-left:0}.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(3rem);padding-left:0}.aside-menu .menu-item{padding:0}.aside-menu .menu-item .menu-link{padding-top:.75rem;padding-bottom:.75rem}.aside-menu .menu-item .menu-icon{justify-content:flex-start}.aside-dark .hover-scroll-overlay-y{--scrollbar-space:0.4rem;scrollbar-color:#2b2b40 transparent}.aside-dark .hover-scroll-overlay-y::-webkit-scrollbar-thumb{background-color:#2b2b40}.aside-dark .hover-scroll-overlay-y:hover{scrollbar-color:#323248 transparent}.aside-dark .hover-scroll-overlay-y:hover::-webkit-scrollbar-thumb{background-color:#323248}.aside-dark .menu .menu-item .menu-section{color:#4c4e6f!important}.aside-dark .menu .menu-item .menu-link{color:#9899ac}.aside-dark .menu .menu-item .menu-link .menu-title{color:#9899ac}.aside-dark .menu .menu-item .menu-link .menu-icon,.aside-dark .menu .menu-item .menu-link .menu-icon .svg-icon,.aside-dark .menu .menu-item .menu-link .menu-icon i{color:#494b74}.aside-dark .menu .menu-item .menu-link .menu-bullet .bullet{background-color:#9899ac}.aside-dark .menu .menu-item .menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%239899ac'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here),.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here){transition:color .2s ease,background-color .2s ease;background-color:#1b1b28;color:#fff}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title{color:#fff}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon,.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon i,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i{color:#3699ff}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{background-color:#3699ff}.aside-dark .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after,.aside-dark .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.aside-dark .menu .menu-item.here>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#1b1b28;color:#fff}.aside-dark .menu .menu-item.here>.menu-link .menu-title{color:#fff}.aside-dark .menu .menu-item.here>.menu-link .menu-icon,.aside-dark .menu .menu-item.here>.menu-link .menu-icon .svg-icon,.aside-dark .menu .menu-item.here>.menu-link .menu-icon i{color:#3699ff}.aside-dark .menu .menu-item.here>.menu-link .menu-bullet .bullet{background-color:#3699ff}.aside-dark .menu .menu-item.here>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.aside-dark .menu .menu-item.show>.menu-link{transition:color .2s ease,background-color .2s ease;background-color:#1b1b28;color:#fff}.aside-dark .menu .menu-item.show>.menu-link .menu-title{color:#fff}.aside-dark .menu .menu-item.show>.menu-link .menu-icon,.aside-dark .menu .menu-item.show>.menu-link .menu-icon .svg-icon,.aside-dark .menu .menu-item.show>.menu-link .menu-icon i{color:#3699ff}.aside-dark .menu .menu-item.show>.menu-link .menu-bullet .bullet{background-color:#3699ff}.aside-dark .menu .menu-item.show>.menu-link .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.aside-dark .menu .menu-item .menu-link.active{transition:color .2s ease,background-color .2s ease;background-color:#1b1b28;color:#fff}.aside-dark .menu .menu-item .menu-link.active .menu-title{color:#fff}.aside-dark .menu .menu-item .menu-link.active .menu-icon,.aside-dark .menu .menu-item .menu-link.active .menu-icon .svg-icon,.aside-dark .menu .menu-item .menu-link.active .menu-icon i{color:#3699ff}.aside-dark .menu .menu-item .menu-link.active .menu-bullet .bullet{background-color:#3699ff}.aside-dark .menu .menu-item .menu-link.active .menu-arrow:after{background-repeat:no-repeat;background-position:center;background-color:transparent;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e")}.aside-light .menu .menu-title{font-weight:500}@media (min-width:992px){.content{padding:30px 0}.toolbar-enabled:not(.toolbar-fixed) .content{padding-top:0}}@media (max-width:991.98px){.content{padding:15px 0}.toolbar-enabled:not(.toolbar-tablet-and-mobile-fixed) .content{padding-top:0}}.footer{background-color:#1b1b28}@media print{.print-content-only{padding:0!important;background:0 0!important}.print-content-only .container,.print-content-only .container-fluid,.print-content-only .container-lg,.print-content-only .container-md,.print-content-only .container-sm,.print-content-only .container-xl,.print-content-only .container-xxl,.print-content-only .docs-page,.print-content-only .docs-page-title .docs-content,.print-content-only .docs-wrapper{background:0 0!important;padding:0!important;margin:0!important}.print-content-only .btn,.print-content-only .docs-aside,.print-content-only .docs-header,.print-content-only .drawer,.print-content-only docs- .scrolltop{display:none!important}}.docs-wrapper{background-color:#151521}@media (min-width:992px){.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{padding:0 30px}.docs-wrapper{padding-right:265px}}@media (max-width:991.98px){.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:none;padding:0 15px}}@media (min-width:992px){.docs-header{display:flex;justify-content:space-between;align-items:center}}@media (max-width:991.98px){.docs-header{display:flex;justify-content:space-between;align-items:center}.docs-header .docs-page-title[data-kt-swapper=true]{display:none!important}}.docs-aside{display:flex;flex-direction:column;box-shadow:0 0 28px 0 rgba(82,63,105,.025);background-color:#1e1e2d;padding:0}@media (min-width:992px){.docs-aside{position:fixed;top:0;bottom:0;right:0;z-index:101;overflow:hidden;width:265px}.docs-aside .docs-aside-logo{display:flex;justify-content:space-between;align-items:center;padding:0 25px}.docs-aside .docs-aside-menu{width:265px}}@media (max-width:991.98px){.docs-aside{display:none}.docs-aside .docs-aside-logo{display:none}}.docs-aside-menu .menu .menu-item .menu-content,.docs-aside-menu .menu .menu-item .menu-link{padding-right:25px;padding-left:25px}.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(.75rem + 25px)}.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(1.5rem + 25px)}.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(2.25rem + 25px)}.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(3rem + 25px)}.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:.75rem;padding-left:0}.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(1.5rem);padding-left:0}.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(2.25rem);padding-left:0}.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-inner>.menu-item>.menu-link,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-content,.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-sub:not([data-popper-placement])>.menu-item>.menu-link{padding-right:calc(3rem);padding-left:0}.docs-aside-menu .menu-item{padding:0}.docs-aside-menu .menu-item .menu-link{font-weight:500;padding-top:.75rem;padding-bottom:.75rem}.docs-aside-menu .menu-item .menu-icon{justify-content:flex-start}.card.card-docs{background-color:#1e1e2d;border:0} \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/account/api-keys/api-keys.js b/Mid-term/public/assets/js/custom/account/api-keys/api-keys.js new file mode 100644 index 000000000..7de6f0d2d --- /dev/null +++ b/Mid-term/public/assets/js/custom/account/api-keys/api-keys.js @@ -0,0 +1 @@ +"use strict";var KTAccountAPIKeys={init:function(){KTUtil.each(document.querySelectorAll('#kt_api_keys_table [data-action="copy"]'),(function(e){var t=e.closest("tr"),s=KTUtil.find(t,'[data-bs-target="license"]');new ClipboardJS(e,{target:s,text:function(){return s.innerHTML}}).on("success",(function(t){var c=e.querySelector(".svg-icon"),i=e.querySelector(".bi.bi-check");i||((i=document.createElement("i")).classList.add("bi"),i.classList.add("bi-check"),i.classList.add("fs-2x"),e.appendChild(i),s.classList.add("text-success"),c.classList.add("d-none"),setTimeout((function(){c.classList.remove("d-none"),e.removeChild(i),s.classList.remove("text-success")}),3e3))}))}))}};KTUtil.onDOMContentLoaded((function(){KTAccountAPIKeys.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/account/orders/classic.js b/Mid-term/public/assets/js/custom/account/orders/classic.js new file mode 100644 index 000000000..e26b0b45a --- /dev/null +++ b/Mid-term/public/assets/js/custom/account/orders/classic.js @@ -0,0 +1 @@ +"use strict";var KTDatatablesClassic={init:function(){!function(){const t=document.getElementById("kt_orders_classic");t.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),a=moment(e[1].innerHTML,"MMM D, YYYY").format("x");e[1].setAttribute("data-order",a)}));const e=$(t).DataTable({info:!1,order:[]}),a=document.getElementById("kt_filter_orders"),r=document.getElementById("kt_filter_year");var n,o;a.addEventListener("change",(function(t){e.column(3).search(t.target.value).draw()})),r.addEventListener("change",(function(t){switch(t.target.value){case"thisyear":n=moment().startOf("year").format("x"),o=moment().endOf("year").format("x"),e.draw();break;case"thismonth":n=moment().startOf("month").format("x"),o=moment().endOf("month").format("x"),e.draw();break;case"lastmonth":n=moment().subtract(1,"months").startOf("month").format("x"),o=moment().subtract(1,"months").endOf("month").format("x"),e.draw();break;case"last90days":n=moment().subtract(30,"days").format("x"),o=moment().format("x"),e.draw();break;default:n=moment().subtract(100,"years").startOf("month").format("x"),o=moment().add(1,"months").endOf("month").format("x"),e.draw()}})),$.fn.dataTable.ext.search.push((function(t,e,a){var r=n,m=o,s=parseFloat(moment(e[1]).format("x"))||0;return!!(isNaN(r)&&isNaN(m)||isNaN(r)&&s<=m||r<=s&&isNaN(m)||r<=s&&s<=m)})),document.getElementById("kt_filter_search").addEventListener("keyup",(function(t){e.search(t.target.value).draw()}))}()}};KTUtil.onDOMContentLoaded((function(){KTDatatablesClassic.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/account/referrals/referral-program.js b/Mid-term/public/assets/js/custom/account/referrals/referral-program.js new file mode 100644 index 000000000..a03e951fc --- /dev/null +++ b/Mid-term/public/assets/js/custom/account/referrals/referral-program.js @@ -0,0 +1 @@ +"use strict";var KTAccountReferralsReferralProgram={init:function(){var e,r;e=document.querySelector("#kt_referral_program_link_copy_btn"),r=document.querySelector("#kt_referral_link_input"),new ClipboardJS(e).on("success",(function(s){var n=e.innerHTML;r.classList.add("bg-success"),r.classList.add("text-inverse-success"),e.innerHTML="Copied!",setTimeout((function(){e.innerHTML=n,r.classList.remove("bg-success"),r.classList.remove("text-inverse-success")}),3e3),s.clearSelection()}))}};KTUtil.onDOMContentLoaded((function(){KTAccountReferralsReferralProgram.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/account/security/license-usage.js b/Mid-term/public/assets/js/custom/account/security/license-usage.js new file mode 100644 index 000000000..9bf7cf644 --- /dev/null +++ b/Mid-term/public/assets/js/custom/account/security/license-usage.js @@ -0,0 +1 @@ +"use strict";var KTAccountSecurityLicenseUsage={init:function(){KTUtil.each(document.querySelectorAll('#kt_security_license_usage_table [data-action="copy"]'),(function(e){var t=e.closest("tr"),c=KTUtil.find(t,'[data-bs-target="license"]');new ClipboardJS(e,{target:c,text:function(){return c.innerHTML}}).on("success",(function(t){var s=e.querySelector(".svg-icon"),i=e.querySelector(".bi.bi-check");i||((i=document.createElement("i")).classList.add("bi"),i.classList.add("bi-check"),i.classList.add("fs-2x"),e.appendChild(i),c.classList.add("text-success"),s.classList.add("d-none"),setTimeout((function(){s.classList.remove("d-none"),e.removeChild(i),c.classList.remove("text-success")}),3e3))}))}))}};KTUtil.onDOMContentLoaded((function(){KTAccountSecurityLicenseUsage.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/account/security/security-summary.js b/Mid-term/public/assets/js/custom/account/security/security-summary.js new file mode 100644 index 000000000..93324a3b0 --- /dev/null +++ b/Mid-term/public/assets/js/custom/account/security/security-summary.js @@ -0,0 +1 @@ +"use strict";var KTAccountSecuritySummary=function(){var t=function(t,e,a,r,s){var i=document.querySelector(e),n=parseInt(KTUtil.css(i,"height"));if(i){var o={series:[{name:"Net Profit",data:a},{name:"Revenue",data:r}],chart:{fontFamily:"inherit",type:"bar",height:n,toolbar:{show:!1}},plotOptions:{bar:{horizontal:!1,columnWidth:["35%"],borderRadius:6}},legend:{show:!1},dataLabels:{enabled:!1},stroke:{show:!0,width:2,colors:["transparent"]},xaxis:{categories:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],axisBorder:{show:!1},axisTicks:{show:!1},labels:{style:{colors:KTUtil.getCssVariableValue("--bs-gray-400"),fontSize:"12px"}}},yaxis:{labels:{style:{colors:KTUtil.getCssVariableValue("--bs-gray-400"),fontSize:"12px"}}},fill:{opacity:1},states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"none",value:0}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"none",value:0}}},tooltip:{style:{fontSize:"12px"},y:{formatter:function(t){return"$"+t+" thousands"}}},colors:[KTUtil.getCssVariableValue("--bs-primary"),KTUtil.getCssVariableValue("--bs-gray-200")],grid:{borderColor:KTUtil.getCssVariableValue("--bs-gray-200"),strokeDashArray:4,yaxis:{lines:{show:!0}}}},u=new ApexCharts(i,o),l=!1,_=document.querySelector(t);!0===s&&setTimeout((function(){u.render(),l=!0}),500),_.addEventListener("shown.bs.tab",(function(t){0==l&&(u.render(),l=!0)}))}};return{init:function(){t("#kt_security_summary_tab_hours_agents","#kt_security_summary_chart_hours_agents",[50,70,90,117,80,65,80,90,115,95,70,84],[50,70,90,117,80,65,70,90,115,95,70,84],!0),t("#kt_security_summary_tab_hours_clients","#kt_security_summary_chart_hours_clients",[50,70,90,117,80,65,80,90,115,95,70,84],[50,70,90,117,80,65,80,90,115,95,70,84],!1),t("#kt_security_summary_tab_day","#kt_security_summary_chart_day_agents",[50,70,80,100,90,65,80,90,115,95,70,84],[50,70,90,117,60,65,80,90,100,95,70,84],!1),t("#kt_security_summary_tab_day_clients","#kt_security_summary_chart_day_clients",[50,70,100,90,80,65,80,90,115,95,70,84],[50,70,90,115,80,65,80,90,115,95,70,84],!1),t("#kt_security_summary_tab_week","#kt_security_summary_chart_week_agents",[50,70,75,117,80,65,80,90,115,95,50,84],[50,60,90,117,80,65,80,90,115,95,70,84],!1),t("#kt_security_summary_tab_week_clients","#kt_security_summary_chart_week_clients",[50,70,90,117,80,65,80,90,100,80,70,84],[50,70,90,117,80,65,80,90,100,95,70,84],!1)}}}();KTUtil.onDOMContentLoaded((function(){KTAccountSecuritySummary.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/account/settings/deactivate-account.js b/Mid-term/public/assets/js/custom/account/settings/deactivate-account.js new file mode 100644 index 000000000..3f650f989 --- /dev/null +++ b/Mid-term/public/assets/js/custom/account/settings/deactivate-account.js @@ -0,0 +1 @@ +"use strict";var KTAccountSettingsDeactivateAccount=function(){var t,n,e;return{init:function(){t=document.querySelector("#kt_account_deactivate_form"),e=document.querySelector("#kt_account_deactivate_account_submit"),n=FormValidation.formValidation(t,{fields:{deactivate:{validators:{notEmpty:{message:"Please check the box to deactivate your account"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,submitButton:new FormValidation.plugins.SubmitButton,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),e.addEventListener("click",(function(t){t.preventDefault(),n.validate().then((function(t){"Valid"==t?swal.fire({text:"Are you sure you would like to deactivate your account?",icon:"warning",buttonsStyling:!1,showDenyButton:!0,confirmButtonText:"Yes",denyButtonText:"No",customClass:{confirmButton:"btn btn-light-primary",denyButton:"btn btn-danger"}}).then((t=>{t.isConfirmed?Swal.fire({text:"Your account has been deactivated.",icon:"success",confirmButtonText:"Ok",buttonsStyling:!1,customClass:{confirmButton:"btn btn-light-primary"}}):t.isDenied&&Swal.fire({text:"Account not deactivated.",icon:"info",confirmButtonText:"Ok",buttonsStyling:!1,customClass:{confirmButton:"btn btn-light-primary"}})})):swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-light-primary"}})}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTAccountSettingsDeactivateAccount.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/account/settings/overview.js b/Mid-term/public/assets/js/custom/account/settings/overview.js new file mode 100644 index 000000000..127b51fcc --- /dev/null +++ b/Mid-term/public/assets/js/custom/account/settings/overview.js @@ -0,0 +1 @@ +"use strict";var KTAccountSettingsOverview={init:function(){}};KTUtil.onDOMContentLoaded((function(){KTAccountSettingsOverview.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/account/settings/profile-details.js b/Mid-term/public/assets/js/custom/account/settings/profile-details.js new file mode 100644 index 000000000..d77c246c6 --- /dev/null +++ b/Mid-term/public/assets/js/custom/account/settings/profile-details.js @@ -0,0 +1 @@ +"use strict";var KTAccountSettingsProfileDetails=function(){var e,t;return{init:function(){e=document.getElementById("kt_account_profile_details_form"),e.querySelector("#kt_account_profile_details_submit"),t=FormValidation.formValidation(e,{fields:{fname:{validators:{notEmpty:{message:"First name is required"}}},lname:{validators:{notEmpty:{message:"Last name is required"}}},company:{validators:{notEmpty:{message:"Company name is required"}}},phone:{validators:{notEmpty:{message:"Contact phone number is required"}}},country:{validators:{notEmpty:{message:"Please select a country"}}},timezone:{validators:{notEmpty:{message:"Please select a timezone"}}},"communication[]":{validators:{notEmpty:{message:"Please select at least one communication method"}}},language:{validators:{notEmpty:{message:"Please select a language"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,submitButton:new FormValidation.plugins.SubmitButton,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),$(e.querySelector('[name="country"]')).on("change",(function(){t.revalidateField("country")})),$(e.querySelector('[name="language"]')).on("change",(function(){t.revalidateField("language")})),$(e.querySelector('[name="timezone"]')).on("change",(function(){t.revalidateField("timezone")}))}}}();KTUtil.onDOMContentLoaded((function(){KTAccountSettingsProfileDetails.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/account/settings/signin-methods.js b/Mid-term/public/assets/js/custom/account/settings/signin-methods.js new file mode 100644 index 000000000..d8a7c9b26 --- /dev/null +++ b/Mid-term/public/assets/js/custom/account/settings/signin-methods.js @@ -0,0 +1 @@ +"use strict";var KTAccountSettingsSigninMethods={init:function(){var t,e;!function(){var t=document.getElementById("kt_signin_email"),e=document.getElementById("kt_signin_email_edit"),n=document.getElementById("kt_signin_password"),o=document.getElementById("kt_signin_password_edit"),i=document.getElementById("kt_signin_email_button"),s=document.getElementById("kt_signin_cancel"),r=document.getElementById("kt_signin_password_button"),a=document.getElementById("kt_password_cancel");i.querySelector("button").addEventListener("click",(function(){l()})),s.addEventListener("click",(function(){l()})),r.querySelector("button").addEventListener("click",(function(){d()})),a.addEventListener("click",(function(){d()}));var l=function(){t.classList.toggle("d-none"),i.classList.toggle("d-none"),e.classList.toggle("d-none")},d=function(){n.classList.toggle("d-none"),r.classList.toggle("d-none"),o.classList.toggle("d-none")}}(),e=document.getElementById("kt_signin_change_email"),t=FormValidation.formValidation(e,{fields:{emailaddress:{validators:{notEmpty:{message:"Email is required"},emailAddress:{message:"The value is not a valid email address"}}},confirmemailpassword:{validators:{notEmpty:{message:"Password is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row"})}}),e.querySelector("#kt_signin_submit").addEventListener("click",(function(n){n.preventDefault(),console.log("click"),t.validate().then((function(n){"Valid"==n?swal.fire({text:"Sent password reset. Please check your email",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn font-weight-bold btn-light-primary"}}).then((function(){e.reset(),t.resetForm()})):swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn font-weight-bold btn-light-primary"}})}))})),function(t){var e,n=document.getElementById("kt_signin_change_password");e=FormValidation.formValidation(n,{fields:{currentpassword:{validators:{notEmpty:{message:"Current Password is required"}}},newpassword:{validators:{notEmpty:{message:"New Password is required"}}},confirmpassword:{validators:{notEmpty:{message:"Confirm Password is required"},identical:{compare:function(){return n.querySelector('[name="newpassword"]').value},message:"The password and its confirm are not the same"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row"})}}),n.querySelector("#kt_password_submit").addEventListener("click",(function(t){t.preventDefault(),console.log("click"),e.validate().then((function(t){"Valid"==t?swal.fire({text:"Sent password reset. Please check your email",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn font-weight-bold btn-light-primary"}}).then((function(){n.reset(),e.resetForm()})):swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn font-weight-bold btn-light-primary"}})}))}))}()}};KTUtil.onDOMContentLoaded((function(){KTAccountSettingsSigninMethods.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/calendar/calendar.js b/Mid-term/public/assets/js/custom/apps/calendar/calendar.js new file mode 100644 index 000000000..d1820413a --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/calendar/calendar.js @@ -0,0 +1 @@ +"use strict";var KTAppCalendar=function(){var e,t,n,a,o,r,i,l,d,s,c,m,u,v,f,p,y,D,_,b,k,g,S,Y,h,T,M,w,E,L,x={id:"",eventName:"",eventDescription:"",eventLocation:"",startDate:"",endDate:"",allDay:!1},B=!1;const q=e=>{C();const n=x.allDay?moment(x.startDate).format("Do MMM, YYYY"):moment(x.startDate).format("Do MMM, YYYY - h:mm a"),a=x.allDay?moment(x.endDate).format("Do MMM, YYYY"):moment(x.endDate).format("Do MMM, YYYY - h:mm a");var o={container:"body",trigger:"manual",boundary:"window",placement:"auto",dismiss:!0,html:!0,title:"Event Summary",content:'
'+x.eventName+'
Start: '+n+'
End: '+a+'
View More
'};(t=KTApp.initBootstrapPopover(e,o)).show(),B=!0,F()},C=()=>{B&&(t.dispose(),B=!1)},N=()=>{f.innerText="Add a New Event",v.show();const t=p.querySelectorAll('[data-kt-calendar="datepicker"]'),r=p.querySelector("#kt_calendar_datepicker_allday");r.addEventListener("click",(e=>{e.target.checked?t.forEach((e=>{e.classList.add("d-none")})):(d.setDate(x.startDate,!0,"Y-m-d"),t.forEach((e=>{e.classList.remove("d-none")})))})),O(x),_.addEventListener("click",(function(t){t.preventDefault(),y&&y.validate().then((function(t){console.log("validated!"),"Valid"==t?(_.setAttribute("data-kt-indicator","on"),_.disabled=!0,setTimeout((function(){_.removeAttribute("data-kt-indicator"),Swal.fire({text:"New event added to calendar!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){if(t.isConfirmed){v.hide(),_.disabled=!1;let t=!1;r.checked&&(t=!0),0===c.selectedDates.length&&(t=!0);var l=moment(i.selectedDates[0]).format(),s=moment(d.selectedDates[d.selectedDates.length-1]).format();if(!t){const e=moment(i.selectedDates[0]).format("YYYY-MM-DD"),t=e;l=e+"T"+moment(c.selectedDates[0]).format("HH:mm:ss"),s=t+"T"+moment(u.selectedDates[0]).format("HH:mm:ss")}e.addEvent({id:V(),title:n.value,description:a.value,location:o.value,start:l,end:s,allDay:t}),e.render(),p.reset()}}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))},A=()=>{var e,t,n;w.show(),x.allDay?(e="All Day",t=moment(x.startDate).format("Do MMM, YYYY"),n=moment(x.endDate).format("Do MMM, YYYY")):(e="",t=moment(x.startDate).format("Do MMM, YYYY - h:mm a"),n=moment(x.endDate).format("Do MMM, YYYY - h:mm a")),g.innerText=x.eventName,S.innerText=e,Y.innerText=x.eventDescription?x.eventDescription:"--",h.innerText=x.eventLocation?x.eventLocation:"--",T.innerText=t,M.innerText=n},H=()=>{E.addEventListener("click",(t=>{t.preventDefault(),w.hide(),(()=>{f.innerText="Edit an Event",v.show();const t=p.querySelectorAll('[data-kt-calendar="datepicker"]'),r=p.querySelector("#kt_calendar_datepicker_allday");r.addEventListener("click",(e=>{e.target.checked?t.forEach((e=>{e.classList.add("d-none")})):(d.setDate(x.startDate,!0,"Y-m-d"),t.forEach((e=>{e.classList.remove("d-none")})))})),O(x),_.addEventListener("click",(function(t){t.preventDefault(),y&&y.validate().then((function(t){console.log("validated!"),"Valid"==t?(_.setAttribute("data-kt-indicator","on"),_.disabled=!0,setTimeout((function(){_.removeAttribute("data-kt-indicator"),Swal.fire({text:"New event added to calendar!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){if(t.isConfirmed){v.hide(),_.disabled=!1,e.getEventById(x.id).remove();let t=!1;r.checked&&(t=!0),0===c.selectedDates.length&&(t=!0);var l=moment(i.selectedDates[0]).format(),s=moment(d.selectedDates[d.selectedDates.length-1]).format();if(!t){const e=moment(i.selectedDates[0]).format("YYYY-MM-DD"),t=e;l=e+"T"+moment(c.selectedDates[0]).format("HH:mm:ss"),s=t+"T"+moment(u.selectedDates[0]).format("HH:mm:ss")}e.addEvent({id:V(),title:n.value,description:a.value,location:o.value,start:l,end:s,allDay:t}),e.render(),p.reset()}}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})()}))},F=()=>{document.querySelector("#kt_calendar_event_view_button").addEventListener("click",(e=>{e.preventDefault(),C(),A()}))},O=()=>{n.value=x.eventName?x.eventName:"",a.value=x.eventDescription?x.eventDescription:"",o.value=x.eventLocation?x.eventLocation:"",i.setDate(x.startDate,!0,"Y-m-d");const e=x.endDate?x.endDate:moment(x.startDate).format();d.setDate(e,!0,"Y-m-d");const t=p.querySelector("#kt_calendar_datepicker_allday"),r=p.querySelectorAll('[data-kt-calendar="datepicker"]');x.allDay?(t.checked=!0,r.forEach((e=>{e.classList.add("d-none")}))):(c.setDate(x.startDate,!0,"Y-m-d H:i"),u.setDate(x.endDate,!0,"Y-m-d H:i"),d.setDate(x.startDate,!0,"Y-m-d"),t.checked=!1,r.forEach((e=>{e.classList.remove("d-none")})))},P=e=>{x.id=e.id,x.eventName=e.title,x.eventDescription=e.description,x.eventLocation=e.location,x.startDate=e.startStr,x.endDate=e.endStr,x.allDay=e.allDay},V=()=>Date.now().toString()+Math.floor(1e3*Math.random()).toString();return{init:function(){const t=document.getElementById("kt_modal_add_event");p=t.querySelector("#kt_modal_add_event_form"),n=p.querySelector('[name="calendar_event_name"]'),a=p.querySelector('[name="calendar_event_description"]'),o=p.querySelector('[name="calendar_event_location"]'),r=p.querySelector("#kt_calendar_datepicker_start_date"),l=p.querySelector("#kt_calendar_datepicker_end_date"),s=p.querySelector("#kt_calendar_datepicker_start_time"),m=p.querySelector("#kt_calendar_datepicker_end_time"),D=document.querySelector('[data-kt-calendar="add"]'),_=p.querySelector("#kt_modal_add_event_submit"),b=p.querySelector("#kt_modal_add_event_cancel"),k=t.querySelector("#kt_modal_add_event_close"),f=p.querySelector('[data-kt-calendar="title"]'),v=new bootstrap.Modal(t);const B=document.getElementById("kt_modal_view_event");var F,O,I,R,G,K;w=new bootstrap.Modal(B),g=B.querySelector('[data-kt-calendar="event_name"]'),S=B.querySelector('[data-kt-calendar="all_day"]'),Y=B.querySelector('[data-kt-calendar="event_description"]'),h=B.querySelector('[data-kt-calendar="event_location"]'),T=B.querySelector('[data-kt-calendar="event_start_date"]'),M=B.querySelector('[data-kt-calendar="event_end_date"]'),E=B.querySelector("#kt_modal_view_event_edit"),L=B.querySelector("#kt_modal_view_event_delete"),F=document.getElementById("kt_calendar_app"),O=moment().startOf("day"),I=O.format("YYYY-MM"),R=O.clone().subtract(1,"day").format("YYYY-MM-DD"),G=O.format("YYYY-MM-DD"),K=O.clone().add(1,"day").format("YYYY-MM-DD"),(e=new FullCalendar.Calendar(F,{headerToolbar:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay"},initialDate:G,navLinks:!0,selectable:!0,selectMirror:!0,select:function(e){C(),P(e),N()},eventClick:function(e){C(),P({id:e.event.id,title:e.event.title,description:e.event.extendedProps.description,location:e.event.extendedProps.location,startStr:e.event.startStr,endStr:e.event.endStr,allDay:e.event.allDay}),A()},eventMouseEnter:function(e){P({id:e.event.id,title:e.event.title,description:e.event.extendedProps.description,location:e.event.extendedProps.location,startStr:e.event.startStr,endStr:e.event.endStr,allDay:e.event.allDay}),q(e.el)},editable:!0,dayMaxEvents:!0,events:[{id:V(),title:"All Day Event",start:I+"-01",end:I+"-02",description:"Toto lorem ipsum dolor sit incid idunt ut",className:"fc-event-danger fc-event-solid-warning",location:"Federation Square"},{id:V(),title:"Reporting",start:I+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:I+"-14T14:30:00",className:"fc-event-success",location:"Meeting Room 7.03"},{id:V(),title:"Company Trip",start:I+"-02",description:"Lorem ipsum dolor sit tempor incid",end:I+"-03",className:"fc-event-primary",location:"Seoul, Korea"},{id:V(),title:"ICT Expo 2021 - Product Release",start:I+"-03",description:"Lorem ipsum dolor sit tempor inci",end:I+"-05",className:"fc-event-light fc-event-solid-primary",location:"Melbourne Exhibition Hall"},{id:V(),title:"Dinner",start:I+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:I+"-13",location:"Squire's Loft"},{id:V(),title:"Repeating Event",start:I+"-09T16:00:00",end:I+"-09T17:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger",location:"General Area"},{id:V(),title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:I+"-16T16:00:00",end:I+"-16T17:00:00",location:"General Area"},{id:V(),title:"Conference",start:R,end:K,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-primary",location:"Conference Hall A"},{id:V(),title:"Meeting",start:G+"T10:30:00",end:G+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore",location:"Meeting Room 11.06"},{id:V(),title:"Lunch",start:G+"T12:00:00",end:G+"T14:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore",location:"Cafeteria"},{id:V(),title:"Meeting",start:G+"T14:30:00",end:G+"T15:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing",location:"Meeting Room 11.10"},{id:V(),title:"Happy Hour",start:G+"T17:30:00",end:G+"T21:30:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, conse ctetur",location:"The English Pub"},{id:V(),title:"Dinner",start:K+"T18:00:00",end:K+"T21:00:00",className:"fc-event-solid-danger fc-event-light",description:"Lorem ipsum dolor sit ctetur adipi scing",location:"New York Steakhouse"},{id:V(),title:"Birthday Party",start:K+"T12:00:00",end:K+"T14:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing",location:"The English Pub"},{id:V(),title:"Site visit",start:I+"-28",end:I+"-29",className:"fc-event-solid-info fc-event-light",description:"Lorem ipsum dolor sit amet, labore",location:"271, Spring Street"}],datesSet:function(){C()}})).render(),y=FormValidation.formValidation(p,{fields:{calendar_event_name:{validators:{notEmpty:{message:"Event name is required"}}},calendar_event_start_date:{validators:{notEmpty:{message:"Start date is required"}}},calendar_event_end_date:{validators:{notEmpty:{message:"End date is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),i=flatpickr(r,{enableTime:!1,dateFormat:"Y-m-d"}),d=flatpickr(l,{enableTime:!1,dateFormat:"Y-m-d"}),c=flatpickr(s,{enableTime:!0,noCalendar:!0,dateFormat:"H:i"}),u=flatpickr(m,{enableTime:!0,noCalendar:!0,dateFormat:"H:i"}),H(),D.addEventListener("click",(e=>{C(),x={id:"",eventName:"",eventDescription:"",startDate:new Date,endDate:new Date,allDay:!1},N()})),L.addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to delete this event?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.getEventById(x.id).remove(),w.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your event was not deleted!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),b.addEventListener("click",(function(e){e.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(e){e.value?(p.reset(),v.hide()):"cancel"===e.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),k.addEventListener("click",(function(e){e.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(e){e.value?(p.reset(),v.hide()):"cancel"===e.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),(e=>{e.addEventListener("hidden.bs.modal",(e=>{y&&y.resetForm(!0)}))})(t)}}}();KTUtil.onDOMContentLoaded((function(){KTAppCalendar.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/chat/chat.js b/Mid-term/public/assets/js/custom/apps/chat/chat.js new file mode 100644 index 000000000..6d7a17068 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/chat/chat.js @@ -0,0 +1 @@ +"use strict";var KTAppChat=function(){var e=function(e){var t=e.querySelector('[data-kt-element="messages"]'),n=e.querySelector('[data-kt-element="input"]');if(0!==n.value.length){var o,a=t.querySelector('[data-kt-element="template-out"]'),l=t.querySelector('[data-kt-element="template-in"]');(o=a.cloneNode(!0)).classList.remove("d-none"),o.querySelector('[data-kt-element="message-text"]').innerText=n.value,n.value="",t.appendChild(o),t.scrollTop=t.scrollHeight,setTimeout((function(){(o=l.cloneNode(!0)).classList.remove("d-none"),o.querySelector('[data-kt-element="message-text"]').innerText="Thank you for your awesome support!",t.appendChild(o),t.scrollTop=t.scrollHeight}),2e3)}};return{init:function(t){!function(t){t&&(KTUtil.on(t,'[data-kt-element="input"]',"keydown",(function(n){if(13==n.keyCode)return e(t),n.preventDefault(),!1})),KTUtil.on(t,'[data-kt-element="send"]',"click",(function(n){e(t)})))}(t)}}}();KTUtil.onDOMContentLoaded((function(){KTAppChat.init(document.querySelector("#kt_chat_messenger")),KTAppChat.init(document.querySelector("#kt_drawer_chat_messenger"))})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/contacts/edit-contact.js b/Mid-term/public/assets/js/custom/apps/contacts/edit-contact.js new file mode 100644 index 000000000..a94647b55 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/contacts/edit-contact.js @@ -0,0 +1 @@ +"use strict";var KTAppContactEdit={init:function(){var t;(()=>{const t=document.getElementById("kt_ecommerce_settings_general_form");if(!t)return;const e=t.querySelectorAll(".required");var n,o={fields:{},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}};e.forEach((t=>{const e=t.closest(".fv-row").querySelector("input");e&&(n=e);const r=t.closest(".fv-row").querySelector("select");r&&(n=r);const i=n.getAttribute("name");o.fields[i]={validators:{notEmpty:{message:t.innerText+" is required"}}}}));var r=FormValidation.formValidation(t,o);const i=t.querySelector('[data-kt-contacts-type="submit"]');i.addEventListener("click",(function(t){t.preventDefault(),r&&r.validate().then((function(t){console.log("validated!"),"Valid"==t?(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3)):Swal.fire({text:"Oops! There are some error(s) detected.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})(),t=function(t){if(!t.id)return t.text;var e=document.createElement("span"),n="";return n+='image',n+=t.text,e.innerHTML=n,$(e)},$('[data-kt-ecommerce-settings-type="select2_flags"]').select2({placeholder:"Select a country",minimumResultsForSearch:1/0,templateSelection:t,templateResult:t})}};KTUtil.onDOMContentLoaded((function(){KTAppContactEdit.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/contacts/view-contact.js b/Mid-term/public/assets/js/custom/apps/contacts/view-contact.js new file mode 100644 index 000000000..40522e157 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/contacts/view-contact.js @@ -0,0 +1 @@ +"use strict";var KTAppContactView={init:function(){(()=>{const t=document.getElementById("kt_contact_delete");t&&t.addEventListener("click",(n=>{n.preventDefault(),Swal.fire({text:"Delete contact confirmation",icon:"warning",buttonsStyling:!1,showCancelButton:!0,confirmButtonText:"Yes, delete it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-danger",cancelButton:"btn btn-active-light"}}).then((function(n){n.value?Swal.fire({text:"Contact has been deleted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(n){n.value&&(window.location=t.getAttribute("data-kt-redirect"))})):"cancel"===n.dismiss&&Swal.fire({text:"Contact has not been deleted!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})()}};KTUtil.onDOMContentLoaded((function(){KTAppContactView.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/customers/add.js b/Mid-term/public/assets/js/custom/apps/customers/add.js new file mode 100644 index 000000000..99dd1e120 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/customers/add.js @@ -0,0 +1 @@ +"use strict";var KTModalCustomersAdd=function(){var t,e,o,n,r,i;return{init:function(){i=new bootstrap.Modal(document.querySelector("#kt_modal_add_customer")),r=document.querySelector("#kt_modal_add_customer_form"),t=r.querySelector("#kt_modal_add_customer_submit"),e=r.querySelector("#kt_modal_add_customer_cancel"),o=r.querySelector("#kt_modal_add_customer_close"),n=FormValidation.formValidation(r,{fields:{name:{validators:{notEmpty:{message:"Customer name is required"}}},email:{validators:{notEmpty:{message:"Customer email is required"}}},"first-name":{validators:{notEmpty:{message:"First name is required"}}},"last-name":{validators:{notEmpty:{message:"Last name is required"}}},country:{validators:{notEmpty:{message:"Country is required"}}},address1:{validators:{notEmpty:{message:"Address 1 is required"}}},city:{validators:{notEmpty:{message:"City is required"}}},state:{validators:{notEmpty:{message:"State is required"}}},postcode:{validators:{notEmpty:{message:"Postcode is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),$(r.querySelector('[name="country"]')).on("change",(function(){n.revalidateField("country")})),t.addEventListener("click",(function(e){e.preventDefault(),n&&n.validate().then((function(e){console.log("validated!"),"Valid"==e?(t.setAttribute("data-kt-indicator","on"),t.disabled=!0,setTimeout((function(){t.removeAttribute("data-kt-indicator"),Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(e){e.isConfirmed&&(i.hide(),t.disabled=!1,window.location=r.getAttribute("data-kt-redirect"))}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),e.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(r.reset(),i.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),o.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(r.reset(),i.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTModalCustomersAdd.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/customers/list/export.js b/Mid-term/public/assets/js/custom/apps/customers/list/export.js new file mode 100644 index 000000000..b915e53a3 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/customers/list/export.js @@ -0,0 +1 @@ +"use strict";var KTCustomersExport=function(){var t,e,n,o,r,i,a;return{init:function(){t=document.querySelector("#kt_customers_export_modal"),a=new bootstrap.Modal(t),i=document.querySelector("#kt_customers_export_form"),e=i.querySelector("#kt_customers_export_submit"),n=i.querySelector("#kt_customers_export_cancel"),o=t.querySelector("#kt_customers_export_close"),r=FormValidation.formValidation(i,{fields:{date:{validators:{notEmpty:{message:"Date range is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),e.addEventListener("click",(function(t){t.preventDefault(),r&&r.validate().then((function(t){console.log("validated!"),"Valid"==t?(e.setAttribute("data-kt-indicator","on"),e.disabled=!0,setTimeout((function(){e.removeAttribute("data-kt-indicator"),Swal.fire({text:"Customer list has been successfully exported!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&(a.hide(),e.disabled=!1)}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),n.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(i.reset(),a.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),o.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(i.reset(),a.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),function(){const t=i.querySelector("[name=date]");$(t).flatpickr({altInput:!0,altFormat:"F j, Y",dateFormat:"Y-m-d",mode:"range"})}()}}}();KTUtil.onDOMContentLoaded((function(){KTCustomersExport.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/customers/list/list.js b/Mid-term/public/assets/js/custom/apps/customers/list/list.js new file mode 100644 index 000000000..9c0509936 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/customers/list/list.js @@ -0,0 +1 @@ +"use strict";var KTCustomersList=function(){var t,e,o,n,c=()=>{n.querySelectorAll('[data-kt-customer-table-filter="delete_row"]').forEach((e=>{e.addEventListener("click",(function(e){e.preventDefault();const o=e.target.closest("tr"),n=o.querySelectorAll("td")[1].innerText;Swal.fire({text:"Are you sure you want to delete "+n+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(e){e.value?Swal.fire({text:"You have deleted "+n+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){t.row($(o)).remove().draw()})):"cancel"===e.dismiss&&Swal.fire({text:n+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))}))},r=()=>{const e=n.querySelectorAll('[type="checkbox"]'),o=document.querySelector('[data-kt-customer-table-select="delete_selected"]');e.forEach((t=>{t.addEventListener("click",(function(){setTimeout((function(){l()}),50)}))})),o.addEventListener("click",(function(){Swal.fire({text:"Are you sure you want to delete selected customers?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(o){o.value?Swal.fire({text:"You have deleted all selected customers!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){e.forEach((e=>{e.checked&&t.row($(e.closest("tbody tr"))).remove().draw()}));n.querySelectorAll('[type="checkbox"]')[0].checked=!1})):"cancel"===o.dismiss&&Swal.fire({text:"Selected customers was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))};const l=()=>{const t=document.querySelector('[data-kt-customer-table-toolbar="base"]'),e=document.querySelector('[data-kt-customer-table-toolbar="selected"]'),o=document.querySelector('[data-kt-customer-table-select="selected_count"]'),c=n.querySelectorAll('tbody [type="checkbox"]');let r=!1,l=0;c.forEach((t=>{t.checked&&(r=!0,l++)})),r?(o.innerHTML=l,t.classList.add("d-none"),e.classList.remove("d-none")):(t.classList.remove("d-none"),e.classList.add("d-none"))};return{init:function(){(n=document.querySelector("#kt_customers_table"))&&(n.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),o=moment(e[5].innerHTML,"DD MMM YYYY, LT").format();e[5].setAttribute("data-order",o)})),(t=$(n).DataTable({info:!1,order:[],columnDefs:[{orderable:!1,targets:0},{orderable:!1,targets:6}]})).on("draw",(function(){r(),c(),l()})),r(),document.querySelector('[data-kt-customer-table-filter="search"]').addEventListener("keyup",(function(e){t.search(e.target.value).draw()})),e=$('[data-kt-customer-table-filter="month"]'),o=document.querySelectorAll('[data-kt-customer-table-filter="payment_type"] [name="payment_type"]'),document.querySelector('[data-kt-customer-table-filter="filter"]').addEventListener("click",(function(){const n=e.val();let c="";o.forEach((t=>{t.checked&&(c=t.value),"all"===c&&(c="")}));const r=n+" "+c;t.search(r).draw()})),c(),document.querySelector('[data-kt-customer-table-filter="reset"]').addEventListener("click",(function(){e.val(null).trigger("change"),o[0].checked=!0,t.search("").draw()})))}}}();KTUtil.onDOMContentLoaded((function(){KTCustomersList.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/customers/update.js b/Mid-term/public/assets/js/custom/apps/customers/update.js new file mode 100644 index 000000000..b6c5e86dd --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/customers/update.js @@ -0,0 +1 @@ +"use strict";var KTModalUpdateCustomer=function(){var t,e,n,o,c,r;return{init:function(){t=document.querySelector("#kt_modal_update_customer"),r=new bootstrap.Modal(t),c=t.querySelector("#kt_modal_update_customer_form"),e=c.querySelector("#kt_modal_update_customer_submit"),n=c.querySelector("#kt_modal_update_customer_cancel"),o=t.querySelector("#kt_modal_update_customer_close"),e.addEventListener("click",(function(t){t.preventDefault(),e.setAttribute("data-kt-indicator","on"),setTimeout((function(){e.removeAttribute("data-kt-indicator"),Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&r.hide()}))}),2e3)})),n.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(c.reset(),r.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),o.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(c.reset(),r.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTModalUpdateCustomer.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/customers/view/add-payment.js b/Mid-term/public/assets/js/custom/apps/customers/view/add-payment.js new file mode 100644 index 000000000..625383337 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/customers/view/add-payment.js @@ -0,0 +1 @@ +"use strict";var KTModalAddPayment=function(){var t,e,n,o,i,a,r;return{init:function(){t=document.querySelector("#kt_modal_add_payment"),r=new bootstrap.Modal(t),a=t.querySelector("#kt_modal_add_payment_form"),e=a.querySelector("#kt_modal_add_payment_submit"),n=a.querySelector("#kt_modal_add_payment_cancel"),o=t.querySelector("#kt_modal_add_payment_close"),i=FormValidation.formValidation(a,{fields:{invoice:{validators:{notEmpty:{message:"Invoice number is required"}}},status:{validators:{notEmpty:{message:"Invoice status is required"}}},amount:{validators:{notEmpty:{message:"Invoice amount is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),$(a.querySelector('[name="status"]')).on("change",(function(){i.revalidateField("status")})),e.addEventListener("click",(function(t){t.preventDefault(),i&&i.validate().then((function(t){console.log("validated!"),"Valid"==t?(e.setAttribute("data-kt-indicator","on"),e.disabled=!0,setTimeout((function(){e.removeAttribute("data-kt-indicator"),Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&(r.hide(),e.disabled=!1,a.reset())}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),n.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(a.reset(),r.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),o.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(a.reset(),r.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTModalAddPayment.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/customers/view/adjust-balance.js b/Mid-term/public/assets/js/custom/apps/customers/view/adjust-balance.js new file mode 100644 index 000000000..e860eb913 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/customers/view/adjust-balance.js @@ -0,0 +1 @@ +"use strict";var KTModalAdjustBalance=function(){var t,e,n,o,a,i,r,l,c;return{init:function(){t=document.querySelector("#kt_modal_adjust_balance"),c=new bootstrap.Modal(t),l=t.querySelector("#kt_modal_adjust_balance_form"),e=l.querySelector("#kt_modal_adjust_balance_submit"),n=l.querySelector("#kt_modal_adjust_balance_cancel"),o=t.querySelector("#kt_modal_adjust_balance_close"),Inputmask("US$ 9,999,999.99",{numericInput:!0}).mask("#kt_modal_inputmask"),function(){const e=t.querySelector('[kt-modal-adjust-balance="current_balance"]');r=t.querySelector('[kt-modal-adjust-balance="new_balance"]'),i=document.getElementById("kt_modal_inputmask");const n=e.innerHTML.includes("-");let o,a=parseFloat(e.innerHTML.replace(/[^0-9.]/g,"").replace(",",""));a=n?-1*a:a,i.addEventListener("focusout",(function(t){o=parseFloat(t.target.value.replace(/[^0-9.]/g,"").replace(",","")),isNaN(o)&&(o=0),r.innerHTML="US$ "+(o+a).toFixed(2).replace(/\d(?=(\d{3})+\.)/g,"$&,")}))}(),a=FormValidation.formValidation(l,{fields:{adjustment:{validators:{notEmpty:{message:"Adjustment type is required"}}},amount:{validators:{notEmpty:{message:"Amount is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),$(l.querySelector('[name="adjustment"]')).on("change",(function(){a.revalidateField("adjustment")})),e.addEventListener("click",(function(t){t.preventDefault(),a&&a.validate().then((function(t){console.log("validated!"),"Valid"==t?(e.setAttribute("data-kt-indicator","on"),e.disabled=!0,setTimeout((function(){e.removeAttribute("data-kt-indicator"),Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&(c.hide(),e.disabled=!1,l.reset(),r.innerHTML="--")}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),n.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(l.reset(),c.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),o.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(l.reset(),c.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTModalAdjustBalance.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/customers/view/invoices.js b/Mid-term/public/assets/js/custom/apps/customers/view/invoices.js new file mode 100644 index 000000000..8f0931254 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/customers/view/invoices.js @@ -0,0 +1 @@ +"use strict";var KTCustomerViewInvoices={init:function(){!function(){const e="#kt_customer_details_invoices_table_1";document.querySelector(e).querySelectorAll("tbody tr").forEach((e=>{const t=e.querySelectorAll("td"),o=moment(t[0].innerHTML,"DD MMM YYYY, LT").format();t[0].setAttribute("data-order",o)})),$(e).DataTable({info:!1,order:[],pageLength:5,lengthChange:!1,columnDefs:[{orderable:!1,targets:4}]})}(),function(){const e="#kt_customer_details_invoices_table_2";document.querySelector(e).querySelectorAll("tbody tr").forEach((e=>{const t=e.querySelectorAll("td"),o=moment(t[0].innerHTML,"DD MMM YYYY, LT").format();t[0].setAttribute("data-order",o)})),$(e).DataTable({info:!1,order:[],pageLength:5,lengthChange:!1,columnDefs:[{orderable:!1,targets:4}]})}(),function(){const e="#kt_customer_details_invoices_table_3";document.querySelector(e).querySelectorAll("tbody tr").forEach((e=>{const t=e.querySelectorAll("td"),o=moment(t[0].innerHTML,"DD MMM YYYY, LT").format();t[0].setAttribute("data-order",o)})),$(e).DataTable({info:!1,order:[],pageLength:5,lengthChange:!1,columnDefs:[{orderable:!1,targets:4}]})}(),function(){const e="#kt_customer_details_invoices_table_4";document.querySelector(e).querySelectorAll("tbody tr").forEach((e=>{const t=e.querySelectorAll("td"),o=moment(t[0].innerHTML,"DD MMM YYYY, LT").format();t[0].setAttribute("data-order",o)})),$(e).DataTable({info:!1,order:[],pageLength:5,lengthChange:!1,columnDefs:[{orderable:!1,targets:4}]})}()}};KTUtil.onDOMContentLoaded((function(){KTCustomerViewInvoices.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/customers/view/payment-method.js b/Mid-term/public/assets/js/custom/apps/customers/view/payment-method.js new file mode 100644 index 000000000..c0af0c4ba --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/customers/view/payment-method.js @@ -0,0 +1 @@ +"use strict";var KTCustomerViewPaymentMethod={init:function(){document.getElementById("kt_customer_view_payment_method").querySelectorAll('[ data-kt-customer-payment-method="row"]').forEach((t=>{t.querySelector('[data-kt-customer-payment-method="delete"]').addEventListener("click",(e=>{e.preventDefault(),Swal.fire({text:"Are you sure you would like to delete this card?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(e){e.value?(t.remove(),modal.hide()):"cancel"===e.dismiss&&Swal.fire({text:"Your card was not deleted!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})),document.querySelector('[data-kt-payment-mehtod-action="set_as_primary"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to set this card as primary?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, set it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?Swal.fire({text:"Your card was set to primary!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}):"cancel"===t.dismiss&&Swal.fire({text:"Your card was not set to primary!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}};KTUtil.onDOMContentLoaded((function(){KTCustomerViewPaymentMethod.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/customers/view/payment-table.js b/Mid-term/public/assets/js/custom/apps/customers/view/payment-table.js new file mode 100644 index 000000000..88fedf01e --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/customers/view/payment-table.js @@ -0,0 +1 @@ +"use strict";var KTCustomerViewPaymentTable=function(){var t,e=document.querySelector("#kt_table_customers_payment");return{init:function(){e&&(e.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),n=moment(e[3].innerHTML,"DD MMM YYYY, LT").format();e[3].setAttribute("data-order",n)})),t=$(e).DataTable({info:!1,order:[],pageLength:5,lengthChange:!1,columnDefs:[{orderable:!1,targets:4}]}),e.querySelectorAll('[data-kt-customer-table-filter="delete_row"]').forEach((e=>{e.addEventListener("click",(function(e){e.preventDefault();const n=e.target.closest("tr"),o=n.querySelectorAll("td")[0].innerText;Swal.fire({text:"Are you sure you want to delete "+o+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(e){e.value?Swal.fire({text:"You have deleted "+o+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){t.row($(n)).remove().draw()})).then((function(){toggleToolbars()})):"cancel"===e.dismiss&&Swal.fire({text:customerName+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))})))}}}();KTUtil.onDOMContentLoaded((function(){KTCustomerViewPaymentTable.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/customers/view/statement.js b/Mid-term/public/assets/js/custom/apps/customers/view/statement.js new file mode 100644 index 000000000..a34449594 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/customers/view/statement.js @@ -0,0 +1 @@ +"use strict";var KTCustomerViewStatements={init:function(){!function(){const e="#kt_customer_view_statement_table_1";document.querySelector(e).querySelectorAll("tbody tr").forEach((e=>{const t=e.querySelectorAll("td"),r=moment(t[0].innerHTML,"DD MMM YYYY, LT").format();t[0].setAttribute("data-order",r)})),$(e).DataTable({info:!1,order:[],pageLength:10,lengthChange:!1,columnDefs:[{orderable:!1,targets:4}]})}(),function(){const e="#kt_customer_view_statement_table_2";document.querySelector(e).querySelectorAll("tbody tr").forEach((e=>{const t=e.querySelectorAll("td"),r=moment(t[0].innerHTML,"DD MMM YYYY, LT").format();t[0].setAttribute("data-order",r)})),$(e).DataTable({info:!1,order:[],pageLength:10,lengthChange:!1,columnDefs:[{orderable:!1,targets:4}]})}(),function(){const e="#kt_customer_view_statement_table_3";document.querySelector(e).querySelectorAll("tbody tr").forEach((e=>{const t=e.querySelectorAll("td"),r=moment(t[0].innerHTML,"DD MMM YYYY, LT").format();t[0].setAttribute("data-order",r)})),$(e).DataTable({info:!1,order:[],pageLength:10,lengthChange:!1,columnDefs:[{orderable:!1,targets:4}]})}(),function(){const e="#kt_customer_view_statement_table_4";document.querySelector(e).querySelectorAll("tbody tr").forEach((e=>{const t=e.querySelectorAll("td"),r=moment(t[0].innerHTML,"DD MMM YYYY, LT").format();t[0].setAttribute("data-order",r)})),$(e).DataTable({info:!1,order:[],pageLength:10,lengthChange:!1,columnDefs:[{orderable:!1,targets:4}]})}()}};KTUtil.onDOMContentLoaded((function(){KTCustomerViewStatements.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/catalog/categories.js b/Mid-term/public/assets/js/custom/apps/ecommerce/catalog/categories.js new file mode 100644 index 000000000..6b2423f66 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/catalog/categories.js @@ -0,0 +1 @@ +"use strict";var KTAppEcommerceCategories=function(){var t,e,n=()=>{t.querySelectorAll('[data-kt-ecommerce-category-filter="delete_row"]').forEach((t=>{t.addEventListener("click",(function(t){t.preventDefault();const n=t.target.closest("tr"),o=n.querySelector('[data-kt-ecommerce-category-filter="category_name"]').innerText;Swal.fire({text:"Are you sure you want to delete "+o+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(t){t.value?Swal.fire({text:"You have deleted "+o+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){e.row($(n)).remove().draw()})):"cancel"===t.dismiss&&Swal.fire({text:o+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))}))};return{init:function(){(t=document.querySelector("#kt_ecommerce_category_table"))&&((e=$(t).DataTable({info:!1,order:[],pageLength:10,columnDefs:[{orderable:!1,targets:0},{orderable:!1,targets:3}]})).on("draw",(function(){n()})),document.querySelector('[data-kt-ecommerce-category-filter="search"]').addEventListener("keyup",(function(t){e.search(t.target.value).draw()})),n())}}}();KTUtil.onDOMContentLoaded((function(){KTAppEcommerceCategories.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/catalog/products.js b/Mid-term/public/assets/js/custom/apps/ecommerce/catalog/products.js new file mode 100644 index 000000000..fc2fbb71a --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/catalog/products.js @@ -0,0 +1 @@ +"use strict";var KTAppEcommerceProducts=function(){var t,e,o=()=>{t.querySelectorAll('[data-kt-ecommerce-product-filter="delete_row"]').forEach((t=>{t.addEventListener("click",(function(t){t.preventDefault();const o=t.target.closest("tr"),n=o.querySelector('[data-kt-ecommerce-product-filter="product_name"]').innerText;Swal.fire({text:"Are you sure you want to delete "+n+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(t){t.value?Swal.fire({text:"You have deleted "+n+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){e.row($(o)).remove().draw()})):"cancel"===t.dismiss&&Swal.fire({text:n+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))}))};return{init:function(){(t=document.querySelector("#kt_ecommerce_products_table"))&&((e=$(t).DataTable({info:!1,order:[],pageLength:10,columnDefs:[{orderable:!1,targets:0},{orderable:!1,targets:7}]})).on("draw",(function(){o()})),document.querySelector('[data-kt-ecommerce-product-filter="search"]').addEventListener("keyup",(function(t){e.search(t.target.value).draw()})),(()=>{const t=document.querySelector('[data-kt-ecommerce-product-filter="status"]');$(t).on("change",(t=>{let o=t.target.value;"all"===o&&(o=""),e.column(6).search(o).draw()}))})(),o())}}}();KTUtil.onDOMContentLoaded((function(){KTAppEcommerceProducts.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/catalog/save-category.js b/Mid-term/public/assets/js/custom/apps/ecommerce/catalog/save-category.js new file mode 100644 index 000000000..7714fc9ab --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/catalog/save-category.js @@ -0,0 +1 @@ +"use strict";var KTAppEcommerceSaveCategory=function(){const e=()=>{$("#kt_ecommerce_add_category_conditions").repeater({initEmpty:!1,defaultValues:{"text-input":"foo"},show:function(){$(this).slideDown(),t()},hide:function(e){$(this).slideUp(e)}})},t=()=>{document.querySelectorAll('[data-kt-ecommerce-catalog-add-category="condition_type"]').forEach((e=>{$(e).hasClass("select2-hidden-accessible")||$(e).select2({minimumResultsForSearch:-1})}));document.querySelectorAll('[data-kt-ecommerce-catalog-add-category="condition_equals"]').forEach((e=>{$(e).hasClass("select2-hidden-accessible")||$(e).select2({minimumResultsForSearch:-1})}))};return{init:function(){["#kt_ecommerce_add_category_description","#kt_ecommerce_add_category_meta_description"].forEach((e=>{let t=document.querySelector(e);t&&(t=new Quill(e,{modules:{toolbar:[[{header:[1,2,!1]}],["bold","italic","underline"],["image","code-block"]]},placeholder:"Type your text here...",theme:"snow"}))})),["#kt_ecommerce_add_category_meta_keywords"].forEach((e=>{const t=document.querySelector(e);t&&new Tagify(t)})),e(),t(),(()=>{const e=document.getElementById("kt_ecommerce_add_category_status"),t=document.getElementById("kt_ecommerce_add_category_status_select"),o=["bg-success","bg-warning","bg-danger"];$(t).on("change",(function(t){switch(t.target.value){case"published":e.classList.remove(...o),e.classList.add("bg-success"),r();break;case"scheduled":e.classList.remove(...o),e.classList.add("bg-warning"),c();break;case"unpublished":e.classList.remove(...o),e.classList.add("bg-danger"),r()}}));const a=document.getElementById("kt_ecommerce_add_category_status_datepicker");$("#kt_ecommerce_add_category_status_datepicker").flatpickr({enableTime:!0,dateFormat:"Y-m-d H:i"});const c=()=>{a.parentNode.classList.remove("d-none")},r=()=>{a.parentNode.classList.add("d-none")}})(),(()=>{const e=document.querySelectorAll('[name="method"][type="radio"]'),t=document.querySelector('[data-kt-ecommerce-catalog-add-category="auto-options"]');e.forEach((e=>{e.addEventListener("change",(e=>{"1"===e.target.value?t.classList.remove("d-none"):t.classList.add("d-none")}))}))})(),(()=>{let e;const t=document.getElementById("kt_ecommerce_add_category_form"),o=document.getElementById("kt_ecommerce_add_category_submit");e=FormValidation.formValidation(t,{fields:{category_name:{validators:{notEmpty:{message:"Category name is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),o.addEventListener("click",(a=>{a.preventDefault(),e&&e.validate().then((function(e){console.log("validated!"),"Valid"==e?(o.setAttribute("data-kt-indicator","on"),o.disabled=!0,setTimeout((function(){o.removeAttribute("data-kt-indicator"),Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(e){e.isConfirmed&&(o.disabled=!1,window.location=t.getAttribute("data-kt-redirect"))}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTAppEcommerceSaveCategory.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/catalog/save-product.js b/Mid-term/public/assets/js/custom/apps/ecommerce/catalog/save-product.js new file mode 100644 index 000000000..f9d01d190 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/catalog/save-product.js @@ -0,0 +1 @@ +"use strict";var KTAppEcommerceSaveProduct=function(){const e=()=>{$("#kt_ecommerce_add_product_options").repeater({initEmpty:!1,defaultValues:{"text-input":"foo"},show:function(){$(this).slideDown(),t()},hide:function(e){$(this).slideUp(e)}})},t=()=>{document.querySelectorAll('[data-kt-ecommerce-catalog-add-product="product_option"]').forEach((e=>{$(e).hasClass("select2-hidden-accessible")||$(e).select2({minimumResultsForSearch:-1})}))};return{init:function(){var o,a;["#kt_ecommerce_add_product_description","#kt_ecommerce_add_product_meta_description"].forEach((e=>{let t=document.querySelector(e);t&&(t=new Quill(e,{modules:{toolbar:[[{header:[1,2,!1]}],["bold","italic","underline"],["image","code-block"]]},placeholder:"Type your text here...",theme:"snow"}))})),["#kt_ecommerce_add_product_category","#kt_ecommerce_add_product_tags"].forEach((e=>{const t=document.querySelector(e);t&&new Tagify(t,{whitelist:["new","trending","sale","discounted","selling fast","last 10"],dropdown:{maxItems:20,classname:"tagify__inline__suggestions",enabled:0,closeOnSelect:!1}})})),o=document.querySelector("#kt_ecommerce_add_product_discount_slider"),a=document.querySelector("#kt_ecommerce_add_product_discount_label"),noUiSlider.create(o,{start:[10],connect:!0,range:{min:1,max:100}}),o.noUiSlider.on("update",(function(e,t){a.innerHTML=Math.round(e[t]),t&&(a.innerHTML=Math.round(e[t]))})),e(),new Dropzone("#kt_ecommerce_add_product_media",{url:"https://keenthemes.com/scripts/void.php",paramName:"file",maxFiles:10,maxFilesize:10,addRemoveLinks:!0,accept:function(e,t){"wow.jpg"==e.name?t("Naha, you don't."):t()}}),t(),(()=>{const e=document.getElementById("kt_ecommerce_add_product_status"),t=document.getElementById("kt_ecommerce_add_product_status_select"),o=["bg-success","bg-warning","bg-danger"];$(t).on("change",(function(t){switch(t.target.value){case"published":e.classList.remove(...o),e.classList.add("bg-success"),c();break;case"scheduled":e.classList.remove(...o),e.classList.add("bg-warning"),d();break;case"inactive":e.classList.remove(...o),e.classList.add("bg-danger"),c();break;case"draft":e.classList.remove(...o),e.classList.add("bg-primary"),c()}}));const a=document.getElementById("kt_ecommerce_add_product_status_datepicker");$("#kt_ecommerce_add_product_status_datepicker").flatpickr({enableTime:!0,dateFormat:"Y-m-d H:i"});const d=()=>{a.parentNode.classList.remove("d-none")},c=()=>{a.parentNode.classList.add("d-none")}})(),(()=>{const e=document.querySelectorAll('[name="method"][type="radio"]'),t=document.querySelector('[data-kt-ecommerce-catalog-add-category="auto-options"]');e.forEach((e=>{e.addEventListener("change",(e=>{"1"===e.target.value?t.classList.remove("d-none"):t.classList.add("d-none")}))}))})(),(()=>{const e=document.querySelectorAll('input[name="discount_option"]'),t=document.getElementById("kt_ecommerce_add_product_discount_percentage"),o=document.getElementById("kt_ecommerce_add_product_discount_fixed");e.forEach((e=>{e.addEventListener("change",(e=>{switch(e.target.value){case"2":t.classList.remove("d-none"),o.classList.add("d-none");break;case"3":t.classList.add("d-none"),o.classList.remove("d-none");break;default:t.classList.add("d-none"),o.classList.add("d-none")}}))}))})(),(()=>{const e=document.getElementById("kt_ecommerce_add_product_shipping_checkbox"),t=document.getElementById("kt_ecommerce_add_product_shipping");e.addEventListener("change",(e=>{e.target.checked?t.classList.remove("d-none"):t.classList.add("d-none")}))})(),(()=>{let e;const t=document.getElementById("kt_ecommerce_add_product_form"),o=document.getElementById("kt_ecommerce_add_product_submit");e=FormValidation.formValidation(t,{fields:{product_name:{validators:{notEmpty:{message:"Product name is required"}}},sku:{validators:{notEmpty:{message:"SKU is required"}}},sku:{validators:{notEmpty:{message:"Product barcode is required"}}},shelf:{validators:{notEmpty:{message:"Shelf quantity is required"}}},price:{validators:{notEmpty:{message:"Product base price is required"}}},tax:{validators:{notEmpty:{message:"Product tax class is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),o.addEventListener("click",(a=>{a.preventDefault(),e&&e.validate().then((function(e){console.log("validated!"),"Valid"==e?(o.setAttribute("data-kt-indicator","on"),o.disabled=!0,setTimeout((function(){o.removeAttribute("data-kt-indicator"),Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(e){e.isConfirmed&&(o.disabled=!1,window.location=t.getAttribute("data-kt-redirect"))}))}),2e3)):Swal.fire({html:"Sorry, looks like there are some errors detected, please try again.

Please note that there may be errors in the General or Advanced tabs",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTAppEcommerceSaveProduct.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/add-address.js b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/add-address.js new file mode 100644 index 000000000..4d69ee4dc --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/add-address.js @@ -0,0 +1 @@ +"use strict";var KTModalAddAddress=function(){var t,e,n,o,r,i;return{init:function(){i=new bootstrap.Modal(document.querySelector("#kt_modal_add_address")),r=document.querySelector("#kt_modal_add_address_form"),t=r.querySelector("#kt_modal_add_address_submit"),e=r.querySelector("#kt_modal_add_address_cancel"),n=r.querySelector("#kt_modal_add_address_close"),o=FormValidation.formValidation(r,{fields:{name:{validators:{notEmpty:{message:"Address name is required"}}},country:{validators:{notEmpty:{message:"Country is required"}}},address1:{validators:{notEmpty:{message:"Address 1 is required"}}},city:{validators:{notEmpty:{message:"City is required"}}},state:{validators:{notEmpty:{message:"State is required"}}},postcode:{validators:{notEmpty:{message:"Postcode is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),$(r.querySelector('[name="country"]')).on("change",(function(){o.revalidateField("country")})),t.addEventListener("click",(function(e){e.preventDefault(),o&&o.validate().then((function(e){console.log("validated!"),"Valid"==e?(t.setAttribute("data-kt-indicator","on"),t.disabled=!0,setTimeout((function(){t.removeAttribute("data-kt-indicator"),Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(e){e.isConfirmed&&(i.hide(),t.disabled=!1)}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),e.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(r.reset(),i.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),n.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(r.reset(),i.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTModalAddAddress.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/add-auth-app.js b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/add-auth-app.js new file mode 100644 index 000000000..4655a5f07 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/add-auth-app.js @@ -0,0 +1 @@ +"use strict";var KTUsersAddAuthApp=function(){const t=document.getElementById("kt_modal_add_auth_app"),e=new bootstrap.Modal(t);return{init:function(){t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to close?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, close it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value&&e.hide()}))})),(()=>{const e=t.querySelector('[ data-kt-add-auth-action="qr-code"]'),n=t.querySelector('[ data-kt-add-auth-action="text-code"]'),o=t.querySelector('[ data-kt-add-auth-action="qr-code-button"]'),a=t.querySelector('[ data-kt-add-auth-action="text-code-button"]'),c=t.querySelector('[ data-kt-add-auth-action="qr-code-label"]'),d=t.querySelector('[ data-kt-add-auth-action="text-code-label"]'),l=()=>{e.classList.toggle("d-none"),o.classList.toggle("d-none"),c.classList.toggle("d-none"),n.classList.toggle("d-none"),a.classList.toggle("d-none"),d.classList.toggle("d-none")};a.addEventListener("click",(t=>{t.preventDefault(),l()})),o.addEventListener("click",(t=>{t.preventDefault(),l()}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersAddAuthApp.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/add-one-time-password.js b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/add-one-time-password.js new file mode 100644 index 000000000..11e480a28 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/add-one-time-password.js @@ -0,0 +1 @@ +"use strict";var KTUsersAddOneTimePassword=function(){const t=document.getElementById("kt_modal_add_one_time_password"),e=t.querySelector("#kt_modal_add_one_time_password_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{var o=FormValidation.formValidation(e,{fields:{otp_mobile_number:{validators:{notEmpty:{message:"Valid mobile number is required"}}},otp_confirm_password:{validators:{notEmpty:{message:"Password confirmation is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to close?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, close it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value&&n.hide()}))})),t.querySelector('[data-kt-users-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const i=t.querySelector('[data-kt-users-modal-action="submit"]');i.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t?(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersAddOneTimePassword.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/payment-method.js b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/payment-method.js new file mode 100644 index 000000000..c0af0c4ba --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/payment-method.js @@ -0,0 +1 @@ +"use strict";var KTCustomerViewPaymentMethod={init:function(){document.getElementById("kt_customer_view_payment_method").querySelectorAll('[ data-kt-customer-payment-method="row"]').forEach((t=>{t.querySelector('[data-kt-customer-payment-method="delete"]').addEventListener("click",(e=>{e.preventDefault(),Swal.fire({text:"Are you sure you would like to delete this card?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(e){e.value?(t.remove(),modal.hide()):"cancel"===e.dismiss&&Swal.fire({text:"Your card was not deleted!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})),document.querySelector('[data-kt-payment-mehtod-action="set_as_primary"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to set this card as primary?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, set it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?Swal.fire({text:"Your card was set to primary!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}):"cancel"===t.dismiss&&Swal.fire({text:"Your card was not set to primary!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}};KTUtil.onDOMContentLoaded((function(){KTCustomerViewPaymentMethod.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/transaction-history.js b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/transaction-history.js new file mode 100644 index 000000000..88fedf01e --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/transaction-history.js @@ -0,0 +1 @@ +"use strict";var KTCustomerViewPaymentTable=function(){var t,e=document.querySelector("#kt_table_customers_payment");return{init:function(){e&&(e.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),n=moment(e[3].innerHTML,"DD MMM YYYY, LT").format();e[3].setAttribute("data-order",n)})),t=$(e).DataTable({info:!1,order:[],pageLength:5,lengthChange:!1,columnDefs:[{orderable:!1,targets:4}]}),e.querySelectorAll('[data-kt-customer-table-filter="delete_row"]').forEach((e=>{e.addEventListener("click",(function(e){e.preventDefault();const n=e.target.closest("tr"),o=n.querySelectorAll("td")[0].innerText;Swal.fire({text:"Are you sure you want to delete "+o+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(e){e.value?Swal.fire({text:"You have deleted "+o+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){t.row($(n)).remove().draw()})).then((function(){toggleToolbars()})):"cancel"===e.dismiss&&Swal.fire({text:customerName+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))})))}}}();KTUtil.onDOMContentLoaded((function(){KTCustomerViewPaymentTable.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/update-address.js b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/update-address.js new file mode 100644 index 000000000..6924beac8 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/update-address.js @@ -0,0 +1 @@ +"use strict";var KTModalUpdateAddress=function(){var t,e,n,o,r,i,a;return{init:function(){t=document.querySelector("#kt_modal_update_address"),i=new bootstrap.Modal(t),r=t.querySelector("#kt_modal_update_address_form"),e=r.querySelector("#kt_modal_update_address_submit"),n=r.querySelector("#kt_modal_update_address_cancel"),o=t.querySelector("#kt_modal_update_address_close"),a=FormValidation.formValidation(r,{fields:{name:{validators:{notEmpty:{message:"Address name is required"}}},country:{validators:{notEmpty:{message:"Country is required"}}},address1:{validators:{notEmpty:{message:"Address 1 is required"}}},city:{validators:{notEmpty:{message:"City is required"}}},state:{validators:{notEmpty:{message:"State is required"}}},postcode:{validators:{notEmpty:{message:"Postcode is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),$(r.querySelector('[name="country"]')).on("change",(function(){a.revalidateField("country")})),e.addEventListener("click",(function(t){t.preventDefault(),a&&a.validate().then((function(t){console.log("validated!"),"Valid"==t?(e.setAttribute("data-kt-indicator","on"),e.disabled=!0,setTimeout((function(){e.removeAttribute("data-kt-indicator"),Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&(i.hide(),e.disabled=!1)}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),n.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(r.reset(),i.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),o.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(r.reset(),i.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTModalUpdateAddress.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/update-password.js b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/update-password.js new file mode 100644 index 000000000..1c688442a --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/update-password.js @@ -0,0 +1 @@ +"use strict";var KTUsersUpdatePassword=function(){const t=document.getElementById("kt_modal_update_password"),e=t.querySelector("#kt_modal_update_password_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{var o=FormValidation.formValidation(e,{fields:{current_password:{validators:{notEmpty:{message:"Current password is required"}}},new_password:{validators:{notEmpty:{message:"The password is required"},callback:{message:"Please enter valid password",callback:function(t){if(t.value.length>0)return validatePassword()}}}},confirm_password:{validators:{notEmpty:{message:"The password confirmation is required"},identical:{compare:function(){return e.querySelector('[name="new_password"]').value},message:"The password and its confirm are not the same"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),t.querySelector('[data-kt-users-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const a=t.querySelector('[data-kt-users-modal-action="submit"]');a.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t&&(a.setAttribute("data-kt-indicator","on"),a.disabled=!0,setTimeout((function(){a.removeAttribute("data-kt-indicator"),a.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3))}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersUpdatePassword.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/update-phone.js b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/update-phone.js new file mode 100644 index 000000000..66f3c8172 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/update-phone.js @@ -0,0 +1 @@ +"use strict";var KTUsersUpdateEmail=function(){const t=document.getElementById("kt_modal_update_phone"),e=t.querySelector("#kt_modal_update_phone_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{var o=FormValidation.formValidation(e,{fields:{profile_phone:{validators:{notEmpty:{message:"Phone number is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),t.querySelector('[data-kt-users-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const i=t.querySelector('[data-kt-users-modal-action="submit"]');i.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3))}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersUpdateEmail.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/update-profile.js b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/update-profile.js new file mode 100644 index 000000000..6657900b3 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/details/update-profile.js @@ -0,0 +1 @@ +"use strict";var KTEcommerceUpdateProfile=function(){var e,t,i;return{init:function(){i=document.querySelector("#kt_ecommerce_customer_profile"),e=i.querySelector("#kt_ecommerce_customer_profile_submit"),t=FormValidation.formValidation(i,{fields:{name:{validators:{notEmpty:{message:"Name is required"}}},gen_email:{validators:{notEmpty:{message:"General Email is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),e.addEventListener("click",(function(i){i.preventDefault(),t&&t.validate().then((function(t){console.log("validated!"),"Valid"==t?(e.setAttribute("data-kt-indicator","on"),e.disabled=!0,setTimeout((function(){e.removeAttribute("data-kt-indicator"),Swal.fire({text:"Your profile has been saved!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&(e.disabled=!1)}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTEcommerceUpdateProfile.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/customers/listing/add.js b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/listing/add.js new file mode 100644 index 000000000..99dd1e120 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/listing/add.js @@ -0,0 +1 @@ +"use strict";var KTModalCustomersAdd=function(){var t,e,o,n,r,i;return{init:function(){i=new bootstrap.Modal(document.querySelector("#kt_modal_add_customer")),r=document.querySelector("#kt_modal_add_customer_form"),t=r.querySelector("#kt_modal_add_customer_submit"),e=r.querySelector("#kt_modal_add_customer_cancel"),o=r.querySelector("#kt_modal_add_customer_close"),n=FormValidation.formValidation(r,{fields:{name:{validators:{notEmpty:{message:"Customer name is required"}}},email:{validators:{notEmpty:{message:"Customer email is required"}}},"first-name":{validators:{notEmpty:{message:"First name is required"}}},"last-name":{validators:{notEmpty:{message:"Last name is required"}}},country:{validators:{notEmpty:{message:"Country is required"}}},address1:{validators:{notEmpty:{message:"Address 1 is required"}}},city:{validators:{notEmpty:{message:"City is required"}}},state:{validators:{notEmpty:{message:"State is required"}}},postcode:{validators:{notEmpty:{message:"Postcode is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),$(r.querySelector('[name="country"]')).on("change",(function(){n.revalidateField("country")})),t.addEventListener("click",(function(e){e.preventDefault(),n&&n.validate().then((function(e){console.log("validated!"),"Valid"==e?(t.setAttribute("data-kt-indicator","on"),t.disabled=!0,setTimeout((function(){t.removeAttribute("data-kt-indicator"),Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(e){e.isConfirmed&&(i.hide(),t.disabled=!1,window.location=r.getAttribute("data-kt-redirect"))}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),e.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(r.reset(),i.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),o.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(r.reset(),i.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTModalCustomersAdd.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/customers/listing/export.js b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/listing/export.js new file mode 100644 index 000000000..b915e53a3 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/listing/export.js @@ -0,0 +1 @@ +"use strict";var KTCustomersExport=function(){var t,e,n,o,r,i,a;return{init:function(){t=document.querySelector("#kt_customers_export_modal"),a=new bootstrap.Modal(t),i=document.querySelector("#kt_customers_export_form"),e=i.querySelector("#kt_customers_export_submit"),n=i.querySelector("#kt_customers_export_cancel"),o=t.querySelector("#kt_customers_export_close"),r=FormValidation.formValidation(i,{fields:{date:{validators:{notEmpty:{message:"Date range is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),e.addEventListener("click",(function(t){t.preventDefault(),r&&r.validate().then((function(t){console.log("validated!"),"Valid"==t?(e.setAttribute("data-kt-indicator","on"),e.disabled=!0,setTimeout((function(){e.removeAttribute("data-kt-indicator"),Swal.fire({text:"Customer list has been successfully exported!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&(a.hide(),e.disabled=!1)}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),n.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(i.reset(),a.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),o.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(i.reset(),a.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),function(){const t=i.querySelector("[name=date]");$(t).flatpickr({altInput:!0,altFormat:"F j, Y",dateFormat:"Y-m-d",mode:"range"})}()}}}();KTUtil.onDOMContentLoaded((function(){KTCustomersExport.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/customers/listing/listing.js b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/listing/listing.js new file mode 100644 index 000000000..d6a2816d1 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/customers/listing/listing.js @@ -0,0 +1 @@ +"use strict";var KTCustomersList=function(){var t,e,o=()=>{e.querySelectorAll('[data-kt-customer-table-filter="delete_row"]').forEach((e=>{e.addEventListener("click",(function(e){e.preventDefault();const o=e.target.closest("tr"),n=o.querySelectorAll("td")[1].innerText;Swal.fire({text:"Are you sure you want to delete "+n+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(e){e.value?Swal.fire({text:"You have deleted "+n+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){t.row($(o)).remove().draw()})):"cancel"===e.dismiss&&Swal.fire({text:n+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))}))},n=()=>{const o=e.querySelectorAll('[type="checkbox"]'),n=document.querySelector('[data-kt-customer-table-select="delete_selected"]');o.forEach((t=>{t.addEventListener("click",(function(){setTimeout((function(){c()}),50)}))})),n.addEventListener("click",(function(){Swal.fire({text:"Are you sure you want to delete selected customers?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(n){n.value?Swal.fire({text:"You have deleted all selected customers!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){o.forEach((e=>{e.checked&&t.row($(e.closest("tbody tr"))).remove().draw()}));e.querySelectorAll('[type="checkbox"]')[0].checked=!1})):"cancel"===n.dismiss&&Swal.fire({text:"Selected customers was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))};const c=()=>{const t=document.querySelector('[data-kt-customer-table-toolbar="base"]'),o=document.querySelector('[data-kt-customer-table-toolbar="selected"]'),n=document.querySelector('[data-kt-customer-table-select="selected_count"]'),c=e.querySelectorAll('tbody [type="checkbox"]');let r=!1,l=0;c.forEach((t=>{t.checked&&(r=!0,l++)})),r?(n.innerHTML=l,t.classList.add("d-none"),o.classList.remove("d-none")):(t.classList.remove("d-none"),o.classList.add("d-none"))};return{init:function(){(e=document.querySelector("#kt_customers_table"))&&(e.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),o=moment(e[5].innerHTML,"DD MMM YYYY, LT").format();e[5].setAttribute("data-order",o)})),(t=$(e).DataTable({info:!1,order:[],columnDefs:[{orderable:!1,targets:0},{orderable:!1,targets:6}]})).on("draw",(function(){n(),o(),c()})),n(),document.querySelector('[data-kt-customer-table-filter="search"]').addEventListener("keyup",(function(e){t.search(e.target.value).draw()})),o(),(()=>{const e=document.querySelector('[data-kt-ecommerce-order-filter="status"]');$(e).on("change",(e=>{let o=e.target.value;"all"===o&&(o=""),t.column(3).search(o).draw()}))})())}}}();KTUtil.onDOMContentLoaded((function(){KTCustomersList.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/reports/customer-orders/customer-orders.js b/Mid-term/public/assets/js/custom/apps/ecommerce/reports/customer-orders/customer-orders.js new file mode 100644 index 000000000..94be3d487 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/reports/customer-orders/customer-orders.js @@ -0,0 +1 @@ +"use strict";var KTAppEcommerceReportCustomerOrders=function(){var t,e;return{init:function(){(t=document.querySelector("#kt_ecommerce_report_customer_orders_table"))&&(t.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),r=moment(e[3].innerHTML,"DD MMM YYYY, LT").format();e[3].setAttribute("data-order",r)})),e=$(t).DataTable({info:!1,order:[],pageLength:10}),(()=>{var t=moment().subtract(29,"days"),e=moment(),r=$("#kt_ecommerce_report_customer_orders_daterangepicker");function o(t,e){r.html(t.format("MMMM D, YYYY")+" - "+e.format("MMMM D, YYYY"))}r.daterangepicker({startDate:t,endDate:e,ranges:{Today:[moment(),moment()],Yesterday:[moment().subtract(1,"days"),moment().subtract(1,"days")],"Last 7 Days":[moment().subtract(6,"days"),moment()],"Last 30 Days":[moment().subtract(29,"days"),moment()],"This Month":[moment().startOf("month"),moment().endOf("month")],"Last Month":[moment().subtract(1,"month").startOf("month"),moment().subtract(1,"month").endOf("month")]}},o),o(t,e)})(),(()=>{const e="Customer Orders Report";new $.fn.dataTable.Buttons(t,{buttons:[{extend:"copyHtml5",title:e},{extend:"excelHtml5",title:e},{extend:"csvHtml5",title:e},{extend:"pdfHtml5",title:e}]}).container().appendTo($("#kt_ecommerce_report_customer_orders_export")),document.querySelectorAll("#kt_ecommerce_report_customer_orders_export_menu [data-kt-ecommerce-export]").forEach((t=>{t.addEventListener("click",(t=>{t.preventDefault();const e=t.target.getAttribute("data-kt-ecommerce-export");document.querySelector(".dt-buttons .buttons-"+e).click()}))}))})(),document.querySelector('[data-kt-ecommerce-order-filter="search"]').addEventListener("keyup",(function(t){e.search(t.target.value).draw()})),(()=>{const t=document.querySelector('[data-kt-ecommerce-order-filter="status"]');$(t).on("change",(t=>{let r=t.target.value;"all"===r&&(r=""),e.column(2).search(r).draw()}))})())}}}();KTUtil.onDOMContentLoaded((function(){KTAppEcommerceReportCustomerOrders.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/reports/returns/returns.js b/Mid-term/public/assets/js/custom/apps/ecommerce/reports/returns/returns.js new file mode 100644 index 000000000..f2f1e364b --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/reports/returns/returns.js @@ -0,0 +1 @@ +"use strict";var KTAppEcommerceReportReturns=function(){var t,e;return{init:function(){(t=document.querySelector("#kt_ecommerce_report_returns_table"))&&(t.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),r=moment(e[0].innerHTML,"MMM DD, YYYY").format();e[0].setAttribute("data-order",r)})),e=$(t).DataTable({info:!1,order:[],pageLength:10}),(()=>{var t=moment().subtract(29,"days"),e=moment(),r=$("#kt_ecommerce_report_returns_daterangepicker");function n(t,e){r.html(t.format("MMMM D, YYYY")+" - "+e.format("MMMM D, YYYY"))}r.daterangepicker({startDate:t,endDate:e,ranges:{Today:[moment(),moment()],Yesterday:[moment().subtract(1,"days"),moment().subtract(1,"days")],"Last 7 Days":[moment().subtract(6,"days"),moment()],"Last 30 Days":[moment().subtract(29,"days"),moment()],"This Month":[moment().startOf("month"),moment().endOf("month")],"Last Month":[moment().subtract(1,"month").startOf("month"),moment().subtract(1,"month").endOf("month")]}},n),n(t,e)})(),(()=>{const e="Returns Report";new $.fn.dataTable.Buttons(t,{buttons:[{extend:"copyHtml5",title:e},{extend:"excelHtml5",title:e},{extend:"csvHtml5",title:e},{extend:"pdfHtml5",title:e}]}).container().appendTo($("#kt_ecommerce_report_returns_export")),document.querySelectorAll("#kt_ecommerce_report_returns_export_menu [data-kt-ecommerce-export]").forEach((t=>{t.addEventListener("click",(t=>{t.preventDefault();const e=t.target.getAttribute("data-kt-ecommerce-export");document.querySelector(".dt-buttons .buttons-"+e).click()}))}))})(),document.querySelector('[data-kt-ecommerce-order-filter="search"]').addEventListener("keyup",(function(t){e.search(t.target.value).draw()})))}}}();KTUtil.onDOMContentLoaded((function(){KTAppEcommerceReportReturns.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/reports/sales/sales.js b/Mid-term/public/assets/js/custom/apps/ecommerce/reports/sales/sales.js new file mode 100644 index 000000000..7a4d5ea1c --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/reports/sales/sales.js @@ -0,0 +1 @@ +"use strict";var KTAppEcommerceReportSales=function(){var t,e;return{init:function(){(t=document.querySelector("#kt_ecommerce_report_sales_table"))&&(t.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),r=moment(e[0].innerHTML,"MMM DD, YYYY").format();e[0].setAttribute("data-order",r)})),e=$(t).DataTable({info:!1,order:[],pageLength:10}),(()=>{var t=moment().subtract(29,"days"),e=moment(),r=$("#kt_ecommerce_report_sales_daterangepicker");function o(t,e){r.html(t.format("MMMM D, YYYY")+" - "+e.format("MMMM D, YYYY"))}r.daterangepicker({startDate:t,endDate:e,ranges:{Today:[moment(),moment()],Yesterday:[moment().subtract(1,"days"),moment().subtract(1,"days")],"Last 7 Days":[moment().subtract(6,"days"),moment()],"Last 30 Days":[moment().subtract(29,"days"),moment()],"This Month":[moment().startOf("month"),moment().endOf("month")],"Last Month":[moment().subtract(1,"month").startOf("month"),moment().subtract(1,"month").endOf("month")]}},o),o(t,e)})(),(()=>{const e="Sales Report";new $.fn.dataTable.Buttons(t,{buttons:[{extend:"copyHtml5",title:e},{extend:"excelHtml5",title:e},{extend:"csvHtml5",title:e},{extend:"pdfHtml5",title:e}]}).container().appendTo($("#kt_ecommerce_report_sales_export")),document.querySelectorAll("#kt_ecommerce_report_sales_export_menu [data-kt-ecommerce-export]").forEach((t=>{t.addEventListener("click",(t=>{t.preventDefault();const e=t.target.getAttribute("data-kt-ecommerce-export");document.querySelector(".dt-buttons .buttons-"+e).click()}))}))})(),document.querySelector('[data-kt-ecommerce-order-filter="search"]').addEventListener("keyup",(function(t){e.search(t.target.value).draw()})))}}}();KTUtil.onDOMContentLoaded((function(){KTAppEcommerceReportSales.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/reports/shipping/shipping.js b/Mid-term/public/assets/js/custom/apps/ecommerce/reports/shipping/shipping.js new file mode 100644 index 000000000..641aebe7c --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/reports/shipping/shipping.js @@ -0,0 +1 @@ +"use strict";var KTAppEcommerceReportShipping=function(){var t,e;return{init:function(){(t=document.querySelector("#kt_ecommerce_report_shipping_table"))&&(t.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),r=moment(e[0].innerHTML,"MMM DD, YYYY").format();e[0].setAttribute("data-order",r)})),e=$(t).DataTable({info:!1,order:[],pageLength:10}),(()=>{var t=moment().subtract(29,"days"),e=moment(),r=$("#kt_ecommerce_report_shipping_daterangepicker");function o(t,e){r.html(t.format("MMMM D, YYYY")+" - "+e.format("MMMM D, YYYY"))}r.daterangepicker({startDate:t,endDate:e,ranges:{Today:[moment(),moment()],Yesterday:[moment().subtract(1,"days"),moment().subtract(1,"days")],"Last 7 Days":[moment().subtract(6,"days"),moment()],"Last 30 Days":[moment().subtract(29,"days"),moment()],"This Month":[moment().startOf("month"),moment().endOf("month")],"Last Month":[moment().subtract(1,"month").startOf("month"),moment().subtract(1,"month").endOf("month")]}},o),o(t,e)})(),(()=>{const e="Shipping Report";new $.fn.dataTable.Buttons(t,{buttons:[{extend:"copyHtml5",title:e},{extend:"excelHtml5",title:e},{extend:"csvHtml5",title:e},{extend:"pdfHtml5",title:e}]}).container().appendTo($("#kt_ecommerce_report_shipping_export")),document.querySelectorAll("#kt_ecommerce_report_shipping_export_menu [data-kt-ecommerce-export]").forEach((t=>{t.addEventListener("click",(t=>{t.preventDefault();const e=t.target.getAttribute("data-kt-ecommerce-export");document.querySelector(".dt-buttons .buttons-"+e).click()}))}))})(),document.querySelector('[data-kt-ecommerce-order-filter="search"]').addEventListener("keyup",(function(t){e.search(t.target.value).draw()})),(()=>{const t=document.querySelector('[data-kt-ecommerce-order-filter="status"]');$(t).on("change",(t=>{let r=t.target.value;"all"===r&&(r=""),e.column(3).search(r).draw()}))})())}}}();KTUtil.onDOMContentLoaded((function(){KTAppEcommerceReportShipping.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/reports/views/views.js b/Mid-term/public/assets/js/custom/apps/ecommerce/reports/views/views.js new file mode 100644 index 000000000..05000464c --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/reports/views/views.js @@ -0,0 +1 @@ +"use strict";var KTAppEcommerceReportViews=function(){var t,e;return{init:function(){(t=document.querySelector("#kt_ecommerce_report_views_table"))&&(e=$(t).DataTable({info:!1,order:[],pageLength:10}),(()=>{var t=moment().subtract(29,"days"),e=moment(),r=$("#kt_ecommerce_report_views_daterangepicker");function o(t,e){r.html(t.format("MMMM D, YYYY")+" - "+e.format("MMMM D, YYYY"))}r.daterangepicker({startDate:t,endDate:e,ranges:{Today:[moment(),moment()],Yesterday:[moment().subtract(1,"days"),moment().subtract(1,"days")],"Last 7 Days":[moment().subtract(6,"days"),moment()],"Last 30 Days":[moment().subtract(29,"days"),moment()],"This Month":[moment().startOf("month"),moment().endOf("month")],"Last Month":[moment().subtract(1,"month").startOf("month"),moment().subtract(1,"month").endOf("month")]}},o),o(t,e)})(),(()=>{const e="Product Views Report";new $.fn.dataTable.Buttons(t,{buttons:[{extend:"copyHtml5",title:e},{extend:"excelHtml5",title:e},{extend:"csvHtml5",title:e},{extend:"pdfHtml5",title:e}]}).container().appendTo($("#kt_ecommerce_report_views_export")),document.querySelectorAll("#kt_ecommerce_report_views_export_menu [data-kt-ecommerce-export]").forEach((t=>{t.addEventListener("click",(t=>{t.preventDefault();const e=t.target.getAttribute("data-kt-ecommerce-export");document.querySelector(".dt-buttons .buttons-"+e).click()}))}))})(),document.querySelector('[data-kt-ecommerce-order-filter="search"]').addEventListener("keyup",(function(t){e.search(t.target.value).draw()})),(()=>{const t=document.querySelector('[data-kt-ecommerce-order-filter="rating"]');$(t).on("change",(t=>{let r=t.target.value;"all"===r&&(r=""),e.column(2).search(r).draw()}))})())}}}();KTUtil.onDOMContentLoaded((function(){KTAppEcommerceReportViews.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/sales/listing.js b/Mid-term/public/assets/js/custom/apps/ecommerce/sales/listing.js new file mode 100644 index 000000000..17004354d --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/sales/listing.js @@ -0,0 +1 @@ +"use strict";var KTAppEcommerceSalesListing=function(){var e,t,n,r,o,a=(e,n,a)=>{r=e[0]?new Date(e[0]):null,o=e[1]?new Date(e[1]):null,$.fn.dataTable.ext.search.push((function(e,t,n){var a=r,c=o,l=new Date(moment($(t[5]).text(),"DD/MM/YYYY")),u=new Date(moment($(t[6]).text(),"DD/MM/YYYY"));return null===a&&null===c||null===a&&c>=u||a<=l&&null===c||a<=l&&c>=u})),t.draw()},c=()=>{e.querySelectorAll('[data-kt-ecommerce-order-filter="delete_row"]').forEach((e=>{e.addEventListener("click",(function(e){e.preventDefault();const n=e.target.closest("tr"),r=n.querySelector('[data-kt-ecommerce-order-filter="order_id"]').innerText;Swal.fire({text:"Are you sure you want to delete order: "+r+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(e){e.value?Swal.fire({text:"You have deleted "+r+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){t.row($(n)).remove().draw()})):"cancel"===e.dismiss&&Swal.fire({text:r+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))}))};return{init:function(){(e=document.querySelector("#kt_ecommerce_sales_table"))&&((t=$(e).DataTable({info:!1,order:[],pageLength:10,columnDefs:[{orderable:!1,targets:0},{orderable:!1,targets:7}]})).on("draw",(function(){c()})),(()=>{const e=document.querySelector("#kt_ecommerce_sales_flatpickr");n=$(e).flatpickr({altInput:!0,altFormat:"d/m/Y",dateFormat:"Y-m-d",mode:"range",onChange:function(e,t,n){a(e,t,n)}})})(),document.querySelector('[data-kt-ecommerce-order-filter="search"]').addEventListener("keyup",(function(e){t.search(e.target.value).draw()})),(()=>{const e=document.querySelector('[data-kt-ecommerce-order-filter="status"]');$(e).on("change",(e=>{let n=e.target.value;"all"===n&&(n=""),t.column(3).search(n).draw()}))})(),c(),document.querySelector("#kt_ecommerce_sales_flatpickr_clear").addEventListener("click",(e=>{n.clear()})))}}}();KTUtil.onDOMContentLoaded((function(){KTAppEcommerceSalesListing.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/sales/save-order.js b/Mid-term/public/assets/js/custom/apps/ecommerce/sales/save-order.js new file mode 100644 index 000000000..4532220fd --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/sales/save-order.js @@ -0,0 +1 @@ +"use strict";var KTAppEcommerceSalesSaveOrder=function(){var e,t;return{init:function(){(()=>{$("#kt_ecommerce_edit_order_date").flatpickr({altInput:!0,altFormat:"d F, Y",dateFormat:"Y-m-d"});const r=e=>{if(!e.id)return e.text;var t=document.createElement("span"),r="";return r+='image',r+=e.text,t.innerHTML=r,$(t)};$("#kt_ecommerce_edit_order_billing_country").select2({placeholder:"Select a country",minimumResultsForSearch:1/0,templateSelection:r,templateResult:r}),$("#kt_ecommerce_edit_order_shipping_country").select2({placeholder:"Select a country",minimumResultsForSearch:1/0,templateSelection:r,templateResult:r}),e=document.querySelector("#kt_ecommerce_edit_order_product_table"),t=$(e).DataTable({order:[],scrollY:"400px",scrollCollapse:!0,paging:!1,info:!1,columnDefs:[{orderable:!1,targets:0}]})})(),document.querySelector('[data-kt-ecommerce-edit-order-filter="search"]').addEventListener("keyup",(function(e){t.search(e.target.value).draw()})),(()=>{const e=document.getElementById("kt_ecommerce_edit_order_shipping_form");document.getElementById("same_as_billing").addEventListener("change",(t=>{t.target.checked?e.classList.add("d-none"):e.classList.remove("d-none")}))})(),(()=>{const t=e.querySelectorAll('[type="checkbox"]'),r=document.getElementById("kt_ecommerce_edit_order_selected_products"),o=document.getElementById("kt_ecommerce_edit_order_total_price");t.forEach((e=>{e.addEventListener("change",(t=>{const o=e.closest("tr").querySelector('[data-kt-ecommerce-edit-order-filter="product"]').cloneNode(!0),d=document.createElement("div"),n=o.innerHTML,a=["d-flex","align-items-center"];o.classList.remove(...a),o.classList.add("col","my-2"),o.innerHTML="",d.classList.add(...a),d.classList.add("border","border-dashed","rounded","p-3","bg-white"),d.innerHTML=n,o.appendChild(d);const c=o.getAttribute("data-kt-ecommerce-edit-order-id");if(t.target.checked)r.appendChild(o);else{const e=r.querySelector('[data-kt-ecommerce-edit-order-id="'+c+'"]');e&&r.removeChild(e)}i()}))}));const i=()=>{const e=r.querySelector("span"),t=r.querySelectorAll('[data-kt-ecommerce-edit-order-filter="product"]');t.length<1?(e.classList.remove("d-none"),o.innerText="0.00"):(e.classList.add("d-none"),d(t))},d=e=>{let t=0;e.forEach((e=>{const r=parseFloat(e.querySelector('[data-kt-ecommerce-edit-order-filter="price"]').innerText);t=parseFloat(t+r)})),o.innerText=t.toFixed(2)}})(),(()=>{let e;const t=document.getElementById("kt_ecommerce_edit_order_form"),r=document.getElementById("kt_ecommerce_edit_order_submit");e=FormValidation.formValidation(t,{fields:{payment_method:{validators:{notEmpty:{message:"Payment method is required"}}},shipping_method:{validators:{notEmpty:{message:"Shipping method is required"}}},order_date:{validators:{notEmpty:{message:"Order date is required"}}},billing_order_address_1:{validators:{notEmpty:{message:"Address line 1 is required"}}},billing_order_postcode:{validators:{notEmpty:{message:"Postcode is required"}}},billing_order_state:{validators:{notEmpty:{message:"State is required"}}},billing_order_country:{validators:{notEmpty:{message:"Country is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),r.addEventListener("click",(o=>{o.preventDefault(),e&&e.validate().then((function(e){console.log("validated!"),"Valid"==e?(r.setAttribute("data-kt-indicator","on"),r.disabled=!0,setTimeout((function(){r.removeAttribute("data-kt-indicator"),Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(e){e.isConfirmed&&(r.disabled=!1,window.location=t.getAttribute("data-kt-redirect"))}))}),2e3)):Swal.fire({html:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTAppEcommerceSalesSaveOrder.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/ecommerce/settings/settings.js b/Mid-term/public/assets/js/custom/apps/ecommerce/settings/settings.js new file mode 100644 index 000000000..6f7d968a2 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/ecommerce/settings/settings.js @@ -0,0 +1 @@ +"use strict";var KTAppEcommerceSettings={init:function(){["kt_ecommerce_settings_general_form","kt_ecommerce_settings_general_store","kt_ecommerce_settings_general_localization","kt_ecommerce_settings_general_products","kt_ecommerce_settings_general_customers"].forEach((e=>{const t=document.getElementById(e);if(!t)return;const r=t.querySelectorAll(".required");var o,n={fields:{},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}};r.forEach((e=>{const t=e.closest(".row").querySelector("input");t&&(o=t);const r=e.closest(".row").querySelector("textarea");r&&(o=r);const s=e.closest(".row").querySelector("select");s&&(o=s);const i=o.getAttribute("name");n.fields[i]={validators:{notEmpty:{message:e.innerText+" is required"}}}}));var s=FormValidation.formValidation(t,n);const i=t.querySelector('[data-kt-ecommerce-settings-type="submit"]');i.addEventListener("click",(function(e){e.preventDefault(),s&&s.validate().then((function(e){console.log("validated!"),"Valid"==e?(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3)):Swal.fire({text:"Oops! There are some error(s) detected.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})),document.querySelectorAll('[data-kt-ecommerce-settings-type="tagify"]').forEach((e=>{new Tagify(e)})),(()=>{const e=e=>{if(!e.id)return e.text;var t=document.createElement("span"),r="";return r+='image',r+=e.text,t.innerHTML=r,$(t)};$('[data-kt-ecommerce-settings-type="select2_flags"]').select2({placeholder:"Select a country",minimumResultsForSearch:1/0,templateSelection:e,templateResult:e})})()}};KTUtil.onDOMContentLoaded((function(){KTAppEcommerceSettings.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/file-manager/list.js b/Mid-term/public/assets/js/custom/apps/file-manager/list.js new file mode 100644 index 000000000..19fe402e4 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/file-manager/list.js @@ -0,0 +1 @@ +"use strict";var KTFileManagerList=function(){var e,t,o,n,r,a;const l=()=>{t.querySelectorAll('[data-kt-filemanager-table-filter="delete_row"]').forEach((t=>{t.addEventListener("click",(function(t){t.preventDefault();const o=t.target.closest("tr"),n=o.querySelectorAll("td")[1].innerText;Swal.fire({text:"Are you sure you want to delete "+n+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(t){t.value?Swal.fire({text:"You have deleted "+n+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){e.row($(o)).remove().draw()})):"cancel"===t.dismiss&&Swal.fire({text:customerName+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))}))},i=()=>{var o=t.querySelectorAll('[type="checkbox"]');"folders"===t.getAttribute("data-kt-filemanager-table")&&(o=document.querySelectorAll('#kt_file_manager_list_wrapper [type="checkbox"]'));const n=document.querySelector('[data-kt-filemanager-table-select="delete_selected"]');o.forEach((e=>{e.addEventListener("click",(function(){console.log(e),setTimeout((function(){s()}),50)}))})),n.addEventListener("click",(function(){Swal.fire({text:"Are you sure you want to delete selected files or folders?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(n){n.value?Swal.fire({text:"You have deleted all selected files or folders!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){o.forEach((t=>{t.checked&&e.row($(t.closest("tbody tr"))).remove().draw()}));t.querySelectorAll('[type="checkbox"]')[0].checked=!1})):"cancel"===n.dismiss&&Swal.fire({text:"Selected files or folders was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))},s=()=>{const e=document.querySelector('[data-kt-filemanager-table-toolbar="base"]'),o=document.querySelector('[data-kt-filemanager-table-toolbar="selected"]'),n=document.querySelector('[data-kt-filemanager-table-select="selected_count"]'),r=t.querySelectorAll('tbody [type="checkbox"]');let a=!1,l=0;r.forEach((e=>{e.checked&&(a=!0,l++)})),a?(n.innerHTML=l,e.classList.add("d-none"),o.classList.remove("d-none")):(e.classList.remove("d-none"),o.classList.add("d-none"))},c=()=>{const e=t.querySelector("#kt_file_manager_new_folder_row");e&&e.parentNode.removeChild(e)},d=()=>{t.querySelectorAll('[data-kt-filemanager-table="rename"]').forEach((e=>{e.addEventListener("click",u)}))},u=o=>{let r;if(o.preventDefault(),t.querySelectorAll("#kt_file_manager_rename_input").length>0)return void Swal.fire({text:"Unsaved input detected. Please save or cancel the current item",icon:"warning",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-danger"}});const a=o.target.closest("tr"),l=a.querySelectorAll("td")[1],i=l.querySelector(".svg-icon");r=l.innerText;const s=n.cloneNode(!0);s.querySelector("#kt_file_manager_rename_folder_icon").innerHTML=i.outerHTML,l.innerHTML=s.innerHTML,a.querySelector("#kt_file_manager_rename_input").value=r;var c=FormValidation.formValidation(l,{fields:{rename_folder_name:{validators:{notEmpty:{message:"Name is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});document.querySelector("#kt_file_manager_rename_folder").addEventListener("click",(t=>{t.preventDefault(),c&&c.validate().then((function(t){console.log("validated!"),"Valid"==t&&Swal.fire({text:"Are you sure you want to rename "+r+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, rename it!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(t){t.value?Swal.fire({text:"You have renamed "+r+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){const t=document.querySelector("#kt_file_manager_rename_input").value,o=`
\n ${i.outerHTML}\n ${t}\n
`;e.cell($(l)).data(o).draw()})):"cancel"===t.dismiss&&Swal.fire({text:r+" was not renamed.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))}));const d=document.querySelector("#kt_file_manager_rename_folder_cancel");d.addEventListener("click",(t=>{t.preventDefault(),d.setAttribute("data-kt-indicator","on"),setTimeout((function(){const t=`
\n ${i.outerHTML}\n ${r}\n
`;d.removeAttribute("data-kt-indicator"),e.cell($(l)).data(t).draw(),toastr.options={closeButton:!0,debug:!1,newestOnTop:!1,progressBar:!1,positionClass:"toastr-top-right",preventDuplicates:!1,showDuration:"300",hideDuration:"1000",timeOut:"5000",extendedTimeOut:"1000",showEasing:"swing",hideEasing:"linear",showMethod:"fadeIn",hideMethod:"fadeOut"},toastr.error("Cancelled rename function")}),1e3)}))},m=()=>{t.querySelectorAll('[data-kt-filemanger-table="copy_link"]').forEach((e=>{const t=e.querySelector("button"),o=e.querySelector('[data-kt-filemanger-table="copy_link_generator"]'),n=e.querySelector('[data-kt-filemanger-table="copy_link_result"]'),r=e.querySelector("input");t.addEventListener("click",(e=>{var t;e.preventDefault(),o.classList.remove("d-none"),n.classList.add("d-none"),clearTimeout(t),t=setTimeout((()=>{o.classList.add("d-none"),n.classList.remove("d-none"),r.select()}),2e3)}))}))},f=()=>{document.getElementById("kt_file_manager_items_counter").innerText=e.rows().count()+" items"};return{init:function(){(t=document.querySelector("#kt_file_manager_list"))&&(o=document.querySelector('[data-kt-filemanager-template="upload"]'),n=document.querySelector('[data-kt-filemanager-template="rename"]'),r=document.querySelector('[data-kt-filemanager-template="action"]'),a=document.querySelector('[data-kt-filemanager-template="checkbox"]'),(()=>{t.querySelectorAll("tbody tr").forEach((e=>{const t=e.querySelectorAll("td")[3],o=moment(t.innerHTML,"DD MMM YYYY, LT").format();t.setAttribute("data-order",o)}));const o={info:!1,order:[],scrollY:"700px",scrollCollapse:!0,paging:!1,ordering:!1,columns:[{data:"checkbox"},{data:"name"},{data:"size"},{data:"date"},{data:"action"}],language:{emptyTable:`
\n \n
No items found.
\n
Start creating new folders or uploading a new file!
\n
`}},n={info:!1,order:[],pageLength:10,lengthChange:!1,ordering:!1,columns:[{data:"checkbox"},{data:"name"},{data:"size"},{data:"date"},{data:"action"}],language:{emptyTable:`
\n \n
No items found.
\n
Start creating new folders or uploading a new file!
\n
`},conditionalPaging:!0};var r;r="folders"===t.getAttribute("data-kt-filemanager-table")?o:n,(e=$(t).DataTable(r)).on("draw",(function(){i(),l(),s(),c(),KTMenu.createInstances(),m(),f(),d()}))})(),i(),document.querySelector('[data-kt-filemanager-table-filter="search"]').addEventListener("keyup",(function(t){e.search(t.target.value).draw()})),l(),document.getElementById("kt_file_manager_new_folder").addEventListener("click",(n=>{if(n.preventDefault(),t.querySelector("#kt_file_manager_new_folder_row"))return;const l=t.querySelector("tbody"),i=o.cloneNode(!0);l.prepend(i);const s=i.querySelector("#kt_file_manager_add_folder_form"),d=i.querySelector("#kt_file_manager_add_folder"),u=i.querySelector("#kt_file_manager_cancel_folder"),m=i.querySelector(".svg-icon-2x"),f=i.querySelector('[name="new_folder_name"]');var g=FormValidation.formValidation(s,{fields:{new_folder_name:{validators:{notEmpty:{message:"Folder name is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});d.addEventListener("click",(t=>{t.preventDefault(),d.setAttribute("data-kt-indicator","on"),g&&g.validate().then((function(t){console.log("validated!"),"Valid"==t?setTimeout((function(){const t=document.createElement("a");t.setAttribute("href","?page=apps/file-manager/blank"),t.classList.add("text-gray-800","text-hover-primary"),t.innerText=f.value;const o=e.row.add({checkbox:a.innerHTML,name:m.outerHTML+t.outerHTML,size:"-",date:"-",action:r.innerHTML}).node();$(o).find("td").eq(4).attr("data-kt-filemanager-table","action_dropdown"),$(o).find("td").eq(4).addClass("text-end");for(var n,l=e.row(0).index(),i=e.data().length-1,s=e.row(i).data(),c=i;c>l;c--)n=e.row(c-1).data(),e.row(c).data(n),e.row(c-1).data(s);toastr.options={closeButton:!0,debug:!1,newestOnTop:!1,progressBar:!1,positionClass:"toastr-top-right",preventDuplicates:!1,showDuration:"300",hideDuration:"1000",timeOut:"5000",extendedTimeOut:"1000",showEasing:"swing",hideEasing:"linear",showMethod:"fadeIn",hideMethod:"fadeOut"},toastr.success(f.value+" was created!"),d.removeAttribute("data-kt-indicator"),f.value="",e.draw(!1)}),2e3):d.removeAttribute("data-kt-indicator")}))})),u.addEventListener("click",(e=>{e.preventDefault(),u.setAttribute("data-kt-indicator","on"),setTimeout((function(){u.removeAttribute("data-kt-indicator"),toastr.options={closeButton:!0,debug:!1,newestOnTop:!1,progressBar:!1,positionClass:"toastr-top-right",preventDuplicates:!1,showDuration:"300",hideDuration:"1000",timeOut:"5000",extendedTimeOut:"1000",showEasing:"swing",hideEasing:"linear",showMethod:"fadeIn",hideMethod:"fadeOut"},toastr.error("Cancelled new folder creation"),c()}),1e3)}))})),(()=>{const e="#kt_modal_upload_dropzone",t=document.querySelector(e);var o=t.querySelector(".dropzone-item");o.id="";var n=o.parentNode.innerHTML;o.parentNode.removeChild(o);var r=new Dropzone(e,{url:"path/to/your/server",parallelUploads:10,previewTemplate:n,maxFilesize:1,autoProcessQueue:!1,autoQueue:!1,previewsContainer:e+" .dropzone-items",clickable:e+" .dropzone-select"});r.on("addedfile",(function(o){o.previewElement.querySelector(e+" .dropzone-start").onclick=function(){const e=o.previewElement.querySelector(".progress-bar");e.style.opacity="1";var t=1,n=setInterval((function(){t>=100?(r.emit("success",o),r.emit("complete",o),clearInterval(n)):(t++,e.style.width=t+"%")}),20)},t.querySelectorAll(".dropzone-item").forEach((e=>{e.style.display=""})),t.querySelector(".dropzone-upload").style.display="inline-block",t.querySelector(".dropzone-remove-all").style.display="inline-block"})),r.on("complete",(function(e){const o=t.querySelectorAll(".dz-complete");setTimeout((function(){o.forEach((e=>{e.querySelector(".progress-bar").style.opacity="0",e.querySelector(".progress").style.opacity="0",e.querySelector(".dropzone-start").style.opacity="0"}))}),300)})),t.querySelector(".dropzone-upload").addEventListener("click",(function(){r.files.forEach((e=>{const t=e.previewElement.querySelector(".progress-bar");t.style.opacity="1";var o=1,n=setInterval((function(){o>=100?(r.emit("success",e),r.emit("complete",e),clearInterval(n)):(o++,t.style.width=o+"%")}),20)}))})),t.querySelector(".dropzone-remove-all").addEventListener("click",(function(){Swal.fire({text:"Are you sure you would like to remove all files?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, remove it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(e){e.value?(t.querySelector(".dropzone-upload").style.display="none",t.querySelector(".dropzone-remove-all").style.display="none",r.removeAllFiles(!0)):"cancel"===e.dismiss&&Swal.fire({text:"Your files was not removed!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),r.on("queuecomplete",(function(e){t.querySelectorAll(".dropzone-upload").forEach((e=>{e.style.display="none"}))})),r.on("removedfile",(function(e){r.files.length<1&&(t.querySelector(".dropzone-upload").style.display="none",t.querySelector(".dropzone-remove-all").style.display="none")}))})(),m(),d(),(()=>{const e=document.querySelector("#kt_modal_move_to_folder"),t=e.querySelector("#kt_modal_move_to_folder_form"),o=t.querySelector("#kt_modal_move_to_folder_submit"),n=new bootstrap.Modal(e);var r=FormValidation.formValidation(t,{fields:{move_to_folder:{validators:{notEmpty:{message:"Please select a folder."}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});o.addEventListener("click",(e=>{e.preventDefault(),o.setAttribute("data-kt-indicator","on"),r&&r.validate().then((function(e){console.log("validated!"),"Valid"==e?setTimeout((function(){Swal.fire({text:"Are you sure you would like to move to this folder",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, move it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(e){e.isConfirmed?(t.reset(),n.hide(),toastr.options={closeButton:!0,debug:!1,newestOnTop:!1,progressBar:!1,positionClass:"toastr-top-right",preventDuplicates:!1,showDuration:"300",hideDuration:"1000",timeOut:"5000",extendedTimeOut:"1000",showEasing:"swing",hideEasing:"linear",showMethod:"fadeIn",hideMethod:"fadeOut"},toastr.success("1 item has been moved."),o.removeAttribute("data-kt-indicator")):(Swal.fire({text:"Your action has been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}),o.removeAttribute("data-kt-indicator"))}))}),500):o.removeAttribute("data-kt-indicator")}))}))})(),f(),KTMenu.createInstances())}}}();KTUtil.onDOMContentLoaded((function(){KTFileManagerList.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/file-manager/settings.js b/Mid-term/public/assets/js/custom/apps/file-manager/settings.js new file mode 100644 index 000000000..cf6379a87 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/file-manager/settings.js @@ -0,0 +1 @@ +"use strict";var KTAppFileManagerSettings=function(){var t;return{init:function(e){t=document.querySelector("#kt_file_manager_settings"),function(){const e=t.querySelector("#kt_file_manager_settings_submit");e.addEventListener("click",(t=>{t.preventDefault(),e.setAttribute("data-kt-indicator","on"),setTimeout((function(){toastr.options={closeButton:!0,debug:!1,newestOnTop:!1,progressBar:!1,positionClass:"toast-top-right",preventDuplicates:!1,showDuration:"300",hideDuration:"1000",timeOut:"5000",extendedTimeOut:"1000",showEasing:"swing",hideEasing:"linear",showMethod:"fadeIn",hideMethod:"fadeOut"},toastr.success("File manager settings have been saved"),e.removeAttribute("data-kt-indicator")}),1e3)}))}()}}}();KTUtil.onDOMContentLoaded((function(){KTAppFileManagerSettings.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/inbox/compose.js b/Mid-term/public/assets/js/custom/apps/inbox/compose.js new file mode 100644 index 000000000..cdf4e8d07 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/inbox/compose.js @@ -0,0 +1 @@ +"use strict";var KTAppInboxCompose=function(){const e=e=>{const t=e.querySelector('[data-kt-inbox-form="cc"]'),a=e.querySelector('[data-kt-inbox-form="cc_button"]'),n=e.querySelector('[data-kt-inbox-form="cc_close"]'),o=e.querySelector('[data-kt-inbox-form="bcc"]'),r=e.querySelector('[data-kt-inbox-form="bcc_button"]'),l=e.querySelector('[data-kt-inbox-form="bcc_close"]');a.addEventListener("click",(e=>{e.preventDefault(),t.classList.remove("d-none"),t.classList.add("d-flex")})),n.addEventListener("click",(e=>{e.preventDefault(),t.classList.add("d-none"),t.classList.remove("d-flex")})),r.addEventListener("click",(e=>{e.preventDefault(),o.classList.remove("d-none"),o.classList.add("d-flex")})),l.addEventListener("click",(e=>{e.preventDefault(),o.classList.add("d-none"),o.classList.remove("d-flex")}))},t=e=>{const t=e.querySelector('[data-kt-inbox-form="send"]');t.addEventListener("click",(function(){t.setAttribute("data-kt-indicator","on"),setTimeout((function(){t.removeAttribute("data-kt-indicator")}),3e3)}))},a=e=>{var t,a=new Tagify(e,{tagTextProp:"name",enforceWhitelist:!0,skipInvalid:!0,dropdown:{closeOnSelect:!1,enabled:0,classname:"users-list",searchKeys:["name","email"]},templates:{tag:function(e){return`\n \n \n
\n
\n \n
\n ${e.name}\n
\n
\n `},dropdownItem:function(e){return`\n
\n\n ${e.avatar?`\n
\n \n
`:""}\n\n
\n ${e.name}\n ${e.email}\n
\n
\n `}},whitelist:[{value:1,name:"Emma Smith",avatar:"avatars/300-6.jpg",email:"e.smith@kpmg.com.au"},{value:2,name:"Max Smith",avatar:"avatars/300-1.jpg",email:"max@kt.com"},{value:3,name:"Sean Bean",avatar:"avatars/300-5.jpg",email:"sean@dellito.com"},{value:4,name:"Brian Cox",avatar:"avatars/300-25.jpg",email:"brian@exchange.com"},{value:5,name:"Francis Mitcham",avatar:"avatars/300-9.jpg",email:"f.mitcham@kpmg.com.au"},{value:6,name:"Dan Wilson",avatar:"avatars/300-23.jpg",email:"dam@consilting.com"},{value:7,name:"Ana Crown",avatar:"avatars/300-12.jpg",email:"ana.cf@limtel.com"},{value:8,name:"John Miller",avatar:"avatars/300-13.jpg",email:"miller@mapple.com"}]});a.on("dropdown:show dropdown:updated",(function(e){var n=e.detail.tagify.DOM.dropdown.content;a.suggestedListItems.length>1&&(t=a.parseTemplate("dropdownItem",[{class:"addAll",name:"Add all",email:a.settings.whitelist.reduce((function(e,t){return a.isTagDuplicate(t.value)?e:e+1}),0)+" Members"}]),n.insertBefore(t,n.firstChild))})),a.on("dropdown:select",(function(e){e.detail.elm==t&&a.dropdown.selectAll.call(a)}))},n=e=>{new Quill("#kt_inbox_form_editor",{modules:{toolbar:[[{header:[1,2,!1]}],["bold","italic","underline"],["image","code-block"]]},placeholder:"Type your text here...",theme:"snow"});const t=e.querySelector(".ql-toolbar");if(t){const e=["px-5","border-top-0","border-start-0","border-end-0"];t.classList.add(...e)}},o=e=>{const t='[data-kt-inbox-form="dropzone"]',a=e.querySelector(t),n=e.querySelector('[data-kt-inbox-form="dropzone_upload"]');var o=a.querySelector(".dropzone-item");o.id="";var r=o.parentNode.innerHTML;o.parentNode.removeChild(o);var l=new Dropzone(t,{url:"https://preview.keenthemes.com/api/dropzone/void.php",parallelUploads:20,maxFilesize:1,previewTemplate:r,previewsContainer:t+" .dropzone-items",clickable:n});l.on("addedfile",(function(e){a.querySelectorAll(".dropzone-item").forEach((e=>{e.style.display=""}))})),l.on("totaluploadprogress",(function(e){a.querySelectorAll(".progress-bar").forEach((t=>{t.style.width=e+"%"}))})),l.on("sending",(function(e){a.querySelectorAll(".progress-bar").forEach((e=>{e.style.opacity="1"}))})),l.on("complete",(function(e){const t=a.querySelectorAll(".dz-complete");setTimeout((function(){t.forEach((e=>{e.querySelector(".progress-bar").style.opacity="0",e.querySelector(".progress").style.opacity="0"}))}),300)}))};return{init:function(){(()=>{const r=document.querySelector("#kt_inbox_compose_form"),l=r.querySelectorAll('[data-kt-inbox-form="tagify"]');e(r),t(r),l.forEach((e=>{a(e)})),n(r),o(r)})()}}}();KTUtil.onDOMContentLoaded((function(){KTAppInboxCompose.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/inbox/listing.js b/Mid-term/public/assets/js/custom/apps/inbox/listing.js new file mode 100644 index 000000000..d3961003d --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/inbox/listing.js @@ -0,0 +1 @@ +"use strict";var KTAppInboxListing=function(){var t,n,e=()=>{document.querySelector("#kt_inbox_listing_wrapper > .row").classList.add("px-9","pt-3","pb-5")};return{init:function(){(t=document.querySelector("#kt_inbox_listing"))&&((n=$(t).DataTable({info:!1,order:[]})).on("draw",(function(){e()})),document.querySelector('[data-kt-inbox-listing-filter="search"]').addEventListener("keyup",(function(t){n.search(t.target.value).draw()})),e())}}}();KTUtil.onDOMContentLoaded((function(){KTAppInboxListing.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/inbox/reply.js b/Mid-term/public/assets/js/custom/apps/inbox/reply.js new file mode 100644 index 000000000..dc7a49836 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/inbox/reply.js @@ -0,0 +1 @@ +"use strict";var KTAppInboxReply=function(){const e=e=>{const t=e.querySelector('[data-kt-inbox-form="cc"]'),a=e.querySelector('[data-kt-inbox-form="cc_button"]'),n=e.querySelector('[data-kt-inbox-form="cc_close"]'),o=e.querySelector('[data-kt-inbox-form="bcc"]'),r=e.querySelector('[data-kt-inbox-form="bcc_button"]'),l=e.querySelector('[data-kt-inbox-form="bcc_close"]');a.addEventListener("click",(e=>{e.preventDefault(),t.classList.remove("d-none"),t.classList.add("d-flex")})),n.addEventListener("click",(e=>{e.preventDefault(),t.classList.add("d-none"),t.classList.remove("d-flex")})),r.addEventListener("click",(e=>{e.preventDefault(),o.classList.remove("d-none"),o.classList.add("d-flex")})),l.addEventListener("click",(e=>{e.preventDefault(),o.classList.add("d-none"),o.classList.remove("d-flex")}))},t=e=>{const t=e.querySelector('[data-kt-inbox-form="send"]');t.addEventListener("click",(function(){t.setAttribute("data-kt-indicator","on"),setTimeout((function(){t.removeAttribute("data-kt-indicator")}),3e3)}))},a=e=>{var t,a=new Tagify(e,{tagTextProp:"name",enforceWhitelist:!0,skipInvalid:!0,dropdown:{closeOnSelect:!1,enabled:0,classname:"users-list",searchKeys:["name","email"]},templates:{tag:function(e){return`\n \n \n
\n
\n \n
\n ${e.name}\n
\n
\n `},dropdownItem:function(e){return`\n
\n\n ${e.avatar?`\n
\n \n
`:""}\n\n
\n ${e.name}\n ${e.email}\n
\n
\n `}},whitelist:[{value:1,name:"Emma Smith",avatar:"avatars/300-6.jpg",email:"e.smith@kpmg.com.au"},{value:2,name:"Max Smith",avatar:"avatars/300-1.jpg",email:"max@kt.com"},{value:3,name:"Sean Bean",avatar:"avatars/300-5.jpg",email:"sean@dellito.com"},{value:4,name:"Brian Cox",avatar:"avatars/300-25.jpg",email:"brian@exchange.com"},{value:5,name:"Francis Mitcham",avatar:"avatars/300-9.jpg",email:"f.mitcham@kpmg.com.au"},{value:6,name:"Dan Wilson",avatar:"avatars/300-23.jpg",email:"dam@consilting.com"},{value:7,name:"Ana Crown",avatar:"avatars/300-12.jpg",email:"ana.cf@limtel.com"},{value:8,name:"John Miller",avatar:"avatars/300-13.jpg",email:"miller@mapple.com"}]});a.on("dropdown:show dropdown:updated",(function(e){var n=e.detail.tagify.DOM.dropdown.content;a.suggestedListItems.length>1&&(t=a.parseTemplate("dropdownItem",[{class:"addAll",name:"Add all",email:a.settings.whitelist.reduce((function(e,t){return a.isTagDuplicate(t.value)?e:e+1}),0)+" Members"}]),n.insertBefore(t,n.firstChild))})),a.on("dropdown:select",(function(e){e.detail.elm==t&&a.dropdown.selectAll.call(a)}))},n=e=>{new Quill("#kt_inbox_form_editor",{modules:{toolbar:[[{header:[1,2,!1]}],["bold","italic","underline"],["image","code-block"]]},placeholder:"Type your text here...",theme:"snow"});const t=e.querySelector(".ql-toolbar");if(t){const e=["px-5","border-top-0","border-start-0","border-end-0"];t.classList.add(...e)}},o=e=>{const t='[data-kt-inbox-form="dropzone"]',a=e.querySelector(t),n=e.querySelector('[data-kt-inbox-form="dropzone_upload"]');var o=a.querySelector(".dropzone-item");o.id="";var r=o.parentNode.innerHTML;o.parentNode.removeChild(o);var l=new Dropzone(t,{url:"https://preview.keenthemes.com/api/dropzone/void.php",parallelUploads:20,maxFilesize:1,previewTemplate:r,previewsContainer:t+" .dropzone-items",clickable:n});l.on("addedfile",(function(e){a.querySelectorAll(".dropzone-item").forEach((e=>{e.style.display=""}))})),l.on("totaluploadprogress",(function(e){a.querySelectorAll(".progress-bar").forEach((t=>{t.style.width=e+"%"}))})),l.on("sending",(function(e){a.querySelectorAll(".progress-bar").forEach((e=>{e.style.opacity="1"}))})),l.on("complete",(function(e){const t=a.querySelectorAll(".dz-complete");setTimeout((function(){t.forEach((e=>{e.querySelector(".progress-bar").style.opacity="0",e.querySelector(".progress").style.opacity="0"}))}),300)}))};return{init:function(){document.querySelectorAll('[data-kt-inbox-message="message_wrapper"]').forEach((e=>{const t=e.querySelector('[data-kt-inbox-message="header"]'),a=e.querySelector('[data-kt-inbox-message="preview"]'),n=e.querySelector('[data-kt-inbox-message="details"]'),o=e.querySelector('[data-kt-inbox-message="message"]'),r=new bootstrap.Collapse(o,{toggle:!1});t.addEventListener("click",(e=>{e.target.closest('[data-kt-menu-trigger="click"]')||e.target.closest(".btn")||(a.classList.toggle("d-none"),n.classList.toggle("d-none"),r.toggle())}))})),(()=>{const r=document.querySelector("#kt_inbox_reply_form"),l=r.querySelectorAll('[data-kt-inbox-form="tagify"]');e(r),t(r),l.forEach((e=>{a(e)})),n(r),o(r)})()}}}();KTUtil.onDOMContentLoaded((function(){KTAppInboxReply.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/invoices/create.js b/Mid-term/public/assets/js/custom/apps/invoices/create.js new file mode 100644 index 000000000..1824242b6 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/invoices/create.js @@ -0,0 +1 @@ +"use strict";var KTAppInvoicesCreate=function(){var e,t=function(){var t=[].slice.call(e.querySelectorAll('[data-kt-element="items"] [data-kt-element="item"]')),a=0,n=wNumb({decimals:2,thousand:","});t.map((function(e){var t=e.querySelector('[data-kt-element="quantity"]'),l=e.querySelector('[data-kt-element="price"]'),r=n.from(l.value);r=!r||r<0?0:r;var i=parseInt(t.value);i=!i||i<0?1:i,l.value=n.to(r),t.value=i,e.querySelector('[data-kt-element="total"]').innerText=n.to(r*i),a+=r*i})),e.querySelector('[data-kt-element="sub-total"]').innerText=n.to(a),e.querySelector('[data-kt-element="grand-total"]').innerText=n.to(a)},a=function(){if(0===e.querySelectorAll('[data-kt-element="items"] [data-kt-element="item"]').length){var t=e.querySelector('[data-kt-element="empty-template"] tr').cloneNode(!0);e.querySelector('[data-kt-element="items"] tbody').appendChild(t)}else KTUtil.remove(e.querySelector('[data-kt-element="items"] [data-kt-element="empty"]'))};return{init:function(n){(e=document.querySelector("#kt_invoice_form")).querySelector('[data-kt-element="items"] [data-kt-element="add-item"]').addEventListener("click",(function(n){n.preventDefault();var l=e.querySelector('[data-kt-element="item-template"] tr').cloneNode(!0);e.querySelector('[data-kt-element="items"] tbody').appendChild(l),a(),t()})),KTUtil.on(e,'[data-kt-element="items"] [data-kt-element="remove-item"]',"click",(function(e){e.preventDefault(),KTUtil.remove(this.closest('[data-kt-element="item"]')),a(),t()})),KTUtil.on(e,'[data-kt-element="items"] [data-kt-element="quantity"], [data-kt-element="items"] [data-kt-element="price"]',"change",(function(e){e.preventDefault(),t()})),$(e.querySelector('[name="invoice_date"]')).flatpickr({enableTime:!1,dateFormat:"d, M Y"}),$(e.querySelector('[name="invoice_due_date"]')).flatpickr({enableTime:!1,dateFormat:"d, M Y"}),t()}}}();KTUtil.onDOMContentLoaded((function(){KTAppInvoicesCreate.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/projects/list/list.js b/Mid-term/public/assets/js/custom/apps/projects/list/list.js new file mode 100644 index 000000000..18564d6d3 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/projects/list/list.js @@ -0,0 +1 @@ +"use strict";var KTProjectList={init:function(){!function(){var t=document.getElementById("kt_project_list_chart");if(t){var e=t.getContext("2d");new Chart(e,{type:"doughnut",data:{datasets:[{data:[30,45,25],backgroundColor:["#00A3FF","#50CD89","#E4E6EF"]}],labels:["Active","Completed","Yet to start"]},options:{chart:{fontFamily:"inherit"},cutout:"75%",cutoutPercentage:65,responsive:!0,maintainAspectRatio:!1,title:{display:!1},animation:{animateScale:!0,animateRotate:!0},tooltips:{enabled:!0,intersect:!1,mode:"nearest",bodySpacing:5,yPadding:10,xPadding:10,caretPadding:0,displayColors:!1,backgroundColor:"#20D489",titleFontColor:"#ffffff",cornerRadius:4,footerSpacing:0,titleSpacing:0},plugins:{legend:{display:!1}}}})}}()}};KTUtil.onDOMContentLoaded((function(){KTProjectList.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/projects/project/project.js b/Mid-term/public/assets/js/custom/apps/projects/project/project.js new file mode 100644 index 000000000..e4e24064a --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/projects/project/project.js @@ -0,0 +1 @@ +"use strict";var KTProjectOverview=function(){var t=KTUtil.getCssVariableValue("--bs-primary"),e=KTUtil.getCssVariableValue("--bs-light-primary"),a=KTUtil.getCssVariableValue("--bs-success"),r=KTUtil.getCssVariableValue("--bs-light-success"),o=KTUtil.getCssVariableValue("--bs-gray-200"),n=KTUtil.getCssVariableValue("--bs-gray-500");return{init:function(){var s,i;!function(){var t=document.getElementById("project_overview_chart");if(t){var e=t.getContext("2d");new Chart(e,{type:"doughnut",data:{datasets:[{data:[30,45,25],backgroundColor:["#00A3FF","#50CD89","#E4E6EF"]}],labels:["Active","Completed","Yet to start"]},options:{chart:{fontFamily:"inherit"},cutoutPercentage:75,responsive:!0,maintainAspectRatio:!1,cutout:"75%",title:{display:!1},animation:{animateScale:!0,animateRotate:!0},tooltips:{enabled:!0,intersect:!1,mode:"nearest",bodySpacing:5,yPadding:10,xPadding:10,caretPadding:0,displayColors:!1,backgroundColor:"#20D489",titleFontColor:"#ffffff",cornerRadius:4,footerSpacing:0,titleSpacing:0},plugins:{legend:{display:!1}}}})}}(),s=document.getElementById("kt_project_overview_graph"),i=parseInt(KTUtil.css(s,"height")),s&&new ApexCharts(s,{series:[{name:"Incomplete",data:[70,70,80,80,75,75,75]},{name:"Complete",data:[55,55,60,60,55,55,60]}],chart:{type:"area",height:i,toolbar:{show:!1}},plotOptions:{},legend:{show:!1},dataLabels:{enabled:!1},fill:{type:"solid",opacity:1},stroke:{curve:"smooth",show:!0,width:3,colors:[t,a]},xaxis:{categories:["Feb","Mar","Apr","May","Jun","Jul","Aug"],axisBorder:{show:!1},axisTicks:{show:!1},labels:{style:{colors:n,fontSize:"12px"}},crosshairs:{position:"front",stroke:{color:t,width:1,dashArray:3}},tooltip:{enabled:!0,formatter:void 0,offsetY:0,style:{fontSize:"12px"}}},yaxis:{labels:{style:{colors:n,fontSize:"12px"}}},states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"none",value:0}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"none",value:0}}},tooltip:{style:{fontSize:"12px"},y:{formatter:function(t){return t+" tasks"}}},colors:[e,r],grid:{borderColor:o,strokeDashArray:4,yaxis:{lines:{show:!0}}},markers:{colors:[e,r],strokeColor:[t,a],strokeWidth:3}}).render(),function(){var t=document.querySelector("#kt_profile_overview_table");if(!t)return;t.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),a=moment(e[1].innerHTML,"MMM D, YYYY").format();e[1].setAttribute("data-order",a)}));const e=$(t).DataTable({info:!1,order:[]}),a=document.getElementById("kt_filter_orders"),r=document.getElementById("kt_filter_year");var o,n;a.addEventListener("change",(function(t){e.column(3).search(t.target.value).draw()})),r.addEventListener("change",(function(t){switch(t.target.value){case"thisyear":o=moment().startOf("year").format(),n=moment().endOf("year").format(),e.draw();break;case"thismonth":o=moment().startOf("month").format(),n=moment().endOf("month").format(),e.draw();break;case"lastmonth":o=moment().subtract(1,"months").startOf("month").format(),n=moment().subtract(1,"months").endOf("month").format(),e.draw();break;case"last90days":o=moment().subtract(30,"days").format(),n=moment().format(),e.draw();break;default:o=moment().subtract(100,"years").startOf("month").format(),n=moment().add(1,"months").endOf("month").format(),e.draw()}})),$.fn.dataTable.ext.search.push((function(t,e,a){var r=o,s=n,i=parseFloat(moment(e[1]).format())||0;return!!(isNaN(r)&&isNaN(s)||isNaN(r)&&i<=s||r<=i&&isNaN(s)||r<=i&&i<=s)})),document.getElementById("kt_filter_search").addEventListener("keyup",(function(t){e.search(t.target.value).draw()}))}()}}}();KTUtil.onDOMContentLoaded((function(){KTProjectOverview.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/projects/settings/settings.js b/Mid-term/public/assets/js/custom/apps/projects/settings/settings.js new file mode 100644 index 000000000..1340858b0 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/projects/settings/settings.js @@ -0,0 +1 @@ +"use strict";var KTProjectSettings={init:function(){!function(){var t;$("#kt_datepicker_1").flatpickr();var e=document.getElementById("kt_project_settings_form"),i=e.querySelector("#kt_project_settings_submit");t=FormValidation.formValidation(e,{fields:{name:{validators:{notEmpty:{message:"Project name is required"}}},type:{validators:{notEmpty:{message:"Project type is required"}}},description:{validators:{notEmpty:{message:"Project Description is required"}}},date:{validators:{notEmpty:{message:"Due Date is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,submitButton:new FormValidation.plugins.SubmitButton,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row"})}}),i.addEventListener("click",(function(e){e.preventDefault(),t.validate().then((function(t){"Valid"==t?swal.fire({text:"Thank you! You've updated your project settings",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-light-primary"}}):swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-light-primary"}})}))}))}()}};KTUtil.onDOMContentLoaded((function(){KTProjectSettings.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/projects/targets/targets.js b/Mid-term/public/assets/js/custom/apps/projects/targets/targets.js new file mode 100644 index 000000000..04a437739 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/projects/targets/targets.js @@ -0,0 +1 @@ +"use strict";var KTProjectTargets={init:function(){!function(){const t=document.getElementById("kt_profile_overview_table");t.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),o=moment(e[1].innerHTML,"MMM D, YYYY").format();e[1].setAttribute("data-order",o)})),$(t).DataTable({info:!1,order:[],paging:!1})}()}};KTUtil.onDOMContentLoaded((function(){KTProjectTargets.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/projects/users/users.js b/Mid-term/public/assets/js/custom/apps/projects/users/users.js new file mode 100644 index 000000000..ad0b05301 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/projects/users/users.js @@ -0,0 +1 @@ +"use strict";var KTProjectUsers={init:function(){!function(){const t=document.getElementById("kt_project_users_table");if(!t)return;t.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),r=moment(e[1].innerHTML,"MMM D, YYYY").format();e[1].setAttribute("data-order",r)}));const e=$(t).DataTable({info:!1,order:[],columnDefs:[{targets:4,orderable:!1}]});var r=document.getElementById("kt_filter_search");r&&r.addEventListener("keyup",(function(t){e.search(t.target.value).draw()}))}()}};KTUtil.onDOMContentLoaded((function(){KTProjectUsers.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/subscriptions/add/advanced.js b/Mid-term/public/assets/js/custom/apps/subscriptions/add/advanced.js new file mode 100644 index 000000000..c2f65d7a4 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/subscriptions/add/advanced.js @@ -0,0 +1 @@ +"use strict";var KTSubscriptionsAdvanced=function(){var t,e,n=function(){t.querySelectorAll("tbody tr").forEach(((t,e)=>{const n=t.querySelector("td:first-child input"),o=t.querySelector("td:nth-child(2) input"),i=n.getAttribute("id"),r=o.getAttribute("id");n.setAttribute("name",i+"-"+e),o.setAttribute("name",r+"-"+e)}))};return{init:function(){t=document.getElementById("kt_create_new_custom_fields"),function(){const o=document.getElementById("kt_create_new_custom_fields_add"),i=t.querySelector("tbody tr td:first-child").innerHTML,r=t.querySelector("tbody tr td:nth-child(2)").innerHTML,c=t.querySelector("tbody tr td:last-child").innerHTML;var d;e=$(t).DataTable({info:!1,order:[],ordering:!1,paging:!1,lengthChange:!1}),o.addEventListener("click",(function(t){t.preventDefault(),d=e.row.add([i,r,c]).draw().node(),$(d).find("td").eq(2).addClass("text-end"),n()}))}(),n(),KTUtil.on(t,'[data-kt-action="field_remove"]',"click",(function(t){t.preventDefault();const n=t.target.closest("tr");Swal.fire({text:"Are you sure you want to delete this field ?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(t){t.value?Swal.fire({text:"You have deleted it!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){e.row($(n)).remove().draw()})):"cancel"===t.dismiss&&Swal.fire({text:"It was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTSubscriptionsAdvanced.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/subscriptions/add/customer-select.js b/Mid-term/public/assets/js/custom/apps/subscriptions/add/customer-select.js new file mode 100644 index 000000000..a882b9310 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/subscriptions/add/customer-select.js @@ -0,0 +1 @@ +"use strict";var KTModalCustomerSelect=function(){var e,t,n,o,s,a,c=function(e){setTimeout((function(){var s=KTUtil.getRandomInt(1,6);t.classList.add("d-none"),3===s?(n.classList.add("d-none"),o.classList.remove("d-none")):(n.classList.remove("d-none"),o.classList.add("d-none")),e.complete()}),1500)},r=function(e){t.classList.remove("d-none"),n.classList.add("d-none"),o.classList.add("d-none")};return{init:function(){e=document.querySelector("#kt_modal_customer_search_handler"),a=new bootstrap.Modal(document.querySelector("#kt_modal_customer_search")),e&&(e.querySelector('[data-kt-search-element="wrapper"]'),t=e.querySelector('[data-kt-search-element="suggestions"]'),n=e.querySelector('[data-kt-search-element="results"]'),o=e.querySelector('[data-kt-search-element="empty"]'),(s=new KTSearch(e)).on("kt.search.process",c),s.on("kt.search.clear",r),KTUtil.on(e,'[data-kt-search-element="customer"]',"click",(function(){a.hide()})))}}}();KTUtil.onDOMContentLoaded((function(){KTModalCustomerSelect.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/subscriptions/add/products.js b/Mid-term/public/assets/js/custom/apps/subscriptions/add/products.js new file mode 100644 index 000000000..8c71e64d0 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/subscriptions/add/products.js @@ -0,0 +1 @@ +"use strict";var KTSubscriptionsProducts=function(){var t,e,n,o;return{init:function(){n=document.getElementById("kt_modal_add_product"),o=new bootstrap.Modal(n),t=document.querySelector("#kt_subscription_products_table"),e=$(t).DataTable({info:!1,order:[],ordering:!1,paging:!1,lengthChange:!1}),KTUtil.on(t,'[data-kt-action="product_remove"]',"click",(function(t){t.preventDefault();const n=t.target.closest("tr"),o=n.querySelectorAll("td")[0].innerText;Swal.fire({text:"Are you sure you want to delete "+o+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(t){t.value?Swal.fire({text:"You have deleted "+o+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){e.row($(n)).remove().draw()})):"cancel"===t.dismiss&&Swal.fire({text:customerName+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))})),function(){n.querySelector("#kt_modal_add_product_close");const r=n.querySelector("#kt_modal_add_product_cancel"),c=n.querySelector("#kt_modal_add_product_submit");r.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?o.hide():"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),c.addEventListener("click",(function(r){r.preventDefault();var c,i=n.querySelector('input[type="radio"]:checked');i&&!0===i.checked&&(c=e.row.add([i.getAttribute("data-kt-product-name"),"1",i.getAttribute("data-kt-product-price")+" / "+i.getAttribute("data-kt-product-frequency"),t.querySelector("tbody tr td:last-child").innerHTML]).draw().node(),$(c).find("td").eq(3).addClass("text-end")),o.hide()}))}()}}}();KTUtil.onDOMContentLoaded((function(){KTSubscriptionsProducts.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/subscriptions/list/export.js b/Mid-term/public/assets/js/custom/apps/subscriptions/list/export.js new file mode 100644 index 000000000..5649a680b --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/subscriptions/list/export.js @@ -0,0 +1 @@ +"use strict";var KTSubscriptionsExport=function(){var t,e,n,o,i,r,s;return{init:function(){t=document.querySelector("#kt_subscriptions_export_modal"),s=new bootstrap.Modal(t),r=document.querySelector("#kt_subscriptions_export_form"),e=r.querySelector("#kt_subscriptions_export_submit"),n=r.querySelector("#kt_subscriptions_export_cancel"),o=t.querySelector("#kt_subscriptions_export_close"),i=FormValidation.formValidation(r,{fields:{date:{validators:{notEmpty:{message:"Date range is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),e.addEventListener("click",(function(t){t.preventDefault(),i&&i.validate().then((function(t){console.log("validated!"),"Valid"==t?(e.setAttribute("data-kt-indicator","on"),e.disabled=!0,setTimeout((function(){e.removeAttribute("data-kt-indicator"),Swal.fire({text:"Customer list has been successfully exported!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&(s.hide(),e.disabled=!1)}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),n.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(r.reset(),s.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),o.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(r.reset(),s.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),function(){const t=r.querySelector("[name=date]");$(t).flatpickr({altInput:!0,altFormat:"F j, Y",dateFormat:"Y-m-d",mode:"range"})}()}}}();KTUtil.onDOMContentLoaded((function(){KTSubscriptionsExport.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/subscriptions/list/list.js b/Mid-term/public/assets/js/custom/apps/subscriptions/list/list.js new file mode 100644 index 000000000..6a8254d9e --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/subscriptions/list/list.js @@ -0,0 +1 @@ +"use strict";var KTSubscriptionsList=function(){var t,e,n,o,c,r=function(){t.querySelectorAll('[data-kt-subscriptions-table-filter="delete_row"]').forEach((t=>{t.addEventListener("click",(function(t){t.preventDefault();const n=t.target.closest("tr"),o=n.querySelectorAll("td")[1].innerText;Swal.fire({text:"Are you sure you want to delete "+o+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(t){t.value?Swal.fire({text:"You have deleted "+o+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){e.row($(n)).remove().draw()})).then((function(){i()})):"cancel"===t.dismiss&&Swal.fire({text:o+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))}))},l=()=>{const r=t.querySelectorAll('[type="checkbox"]');n=document.querySelector('[data-kt-subscription-table-toolbar="base"]'),o=document.querySelector('[data-kt-subscription-table-toolbar="selected"]'),c=document.querySelector('[data-kt-subscription-table-select="selected_count"]');const a=document.querySelector('[data-kt-subscription-table-select="delete_selected"]');r.forEach((t=>{t.addEventListener("click",(function(){setTimeout((function(){i()}),50)}))})),a.addEventListener("click",(function(){Swal.fire({text:"Are you sure you want to delete selected customers?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(n){n.value?Swal.fire({text:"You have deleted all selected customers!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){r.forEach((t=>{t.checked&&e.row($(t.closest("tbody tr"))).remove().draw()}));t.querySelectorAll('[type="checkbox"]')[0].checked=!1})).then((function(){i(),l()})):"cancel"===n.dismiss&&Swal.fire({text:"Selected customers was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))};const i=()=>{const e=t.querySelectorAll('tbody [type="checkbox"]');let r=!1,l=0;e.forEach((t=>{t.checked&&(r=!0,l++)})),r?(c.innerHTML=l,n.classList.add("d-none"),o.classList.remove("d-none")):(n.classList.remove("d-none"),o.classList.add("d-none"))};return{init:function(){(t=document.getElementById("kt_subscriptions_table"))&&(t.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),n=moment(e[5].innerHTML,"DD MMM YYYY, LT").format();e[5].setAttribute("data-order",n)})),(e=$(t).DataTable({info:!1,order:[],pageLength:10,lengthChange:!1,columnDefs:[{orderable:!1,targets:0},{orderable:!1,targets:6}]})).on("draw",(function(){l(),r(),i()})),l(),document.querySelector('[data-kt-subscription-table-filter="search"]').addEventListener("keyup",(function(t){e.search(t.target.value).draw()})),r(),function(){const t=document.querySelector('[data-kt-subscription-table-filter="form"]'),n=t.querySelector('[data-kt-subscription-table-filter="filter"]'),o=t.querySelector('[data-kt-subscription-table-filter="reset"]'),c=t.querySelectorAll("select");n.addEventListener("click",(function(){var t="";c.forEach(((e,n)=>{e.value&&""!==e.value&&(0!==n&&(t+=" "),t+=e.value)})),e.search(t).draw()})),o.addEventListener("click",(function(){c.forEach(((t,e)=>{$(t).val(null).trigger("change")})),e.search("").draw()}))}())}}}();KTUtil.onDOMContentLoaded((function(){KTSubscriptionsList.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/support-center/tickets/create.js b/Mid-term/public/assets/js/custom/apps/support-center/tickets/create.js new file mode 100644 index 000000000..d816fa050 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/support-center/tickets/create.js @@ -0,0 +1 @@ +"use strict";var KTModalNewTicket=function(){var t,e,n,i,o,a;return{init:function(){(a=document.querySelector("#kt_modal_new_ticket"))&&(o=new bootstrap.Modal(a),i=document.querySelector("#kt_modal_new_ticket_form"),t=document.getElementById("kt_modal_new_ticket_submit"),e=document.getElementById("kt_modal_new_ticket_cancel"),new Dropzone("#kt_modal_create_ticket_attachments",{url:"https://keenthemes.com/scripts/void.php",paramName:"file",maxFiles:10,maxFilesize:10,addRemoveLinks:!0,accept:function(t,e){"justinbieber.jpg"==t.name?e("Naha, you don't."):e()}}),$(i.querySelector('[name="due_date"]')).flatpickr({enableTime:!0,dateFormat:"d, M Y, H:i"}),$(i.querySelector('[name="user"]')).on("change",(function(){n.revalidateField("user")})),$(i.querySelector('[name="status"]')).on("change",(function(){n.revalidateField("status")})),n=FormValidation.formValidation(i,{fields:{subject:{validators:{notEmpty:{message:"Ticket subject is required"}}},user:{validators:{notEmpty:{message:"Ticket user is required"}}},due_date:{validators:{notEmpty:{message:"Ticket due date is required"}}},description:{validators:{notEmpty:{message:"Target description is required"}}},"notifications[]":{validators:{notEmpty:{message:"Please select at least one notifications method"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),t.addEventListener("click",(function(e){e.preventDefault(),n&&n.validate().then((function(e){console.log("validated!"),"Valid"==e?(t.setAttribute("data-kt-indicator","on"),t.disabled=!0,setTimeout((function(){t.removeAttribute("data-kt-indicator"),t.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&o.hide()}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),e.addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(i.reset(),o.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})))}}}();KTUtil.onDOMContentLoaded((function(){KTModalNewTicket.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/permissions/add-permission.js b/Mid-term/public/assets/js/custom/apps/user-management/permissions/add-permission.js new file mode 100644 index 000000000..996ce8def --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/permissions/add-permission.js @@ -0,0 +1 @@ +"use strict";var KTUsersAddPermission=function(){const t=document.getElementById("kt_modal_add_permission"),e=t.querySelector("#kt_modal_add_permission_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{var o=FormValidation.formValidation(e,{fields:{permission_name:{validators:{notEmpty:{message:"Permission name is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});t.querySelector('[data-kt-permissions-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to close?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, close it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value&&n.hide()}))})),t.querySelector('[data-kt-permissions-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const i=t.querySelector('[data-kt-permissions-modal-action="submit"]');i.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t?(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersAddPermission.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/permissions/list.js b/Mid-term/public/assets/js/custom/apps/user-management/permissions/list.js new file mode 100644 index 000000000..8fbd15f99 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/permissions/list.js @@ -0,0 +1 @@ +"use strict";var KTUsersPermissionsList=function(){var t,e;return{init:function(){(e=document.querySelector("#kt_permissions_table"))&&(e.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),n=moment(e[2].innerHTML,"DD MMM YYYY, LT").format();e[2].setAttribute("data-order",n)})),t=$(e).DataTable({info:!1,order:[],columnDefs:[{orderable:!1,targets:1},{orderable:!1,targets:3}]}),document.querySelector('[data-kt-permissions-table-filter="search"]').addEventListener("keyup",(function(e){t.search(e.target.value).draw()})),e.querySelectorAll('[data-kt-permissions-table-filter="delete_row"]').forEach((e=>{e.addEventListener("click",(function(e){e.preventDefault();const n=e.target.closest("tr"),o=n.querySelectorAll("td")[0].innerText;Swal.fire({text:"Are you sure you want to delete "+o+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(e){e.value?Swal.fire({text:"You have deleted "+o+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){t.row($(n)).remove().draw()})):"cancel"===e.dismiss&&Swal.fire({text:customerName+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))})))}}}();KTUtil.onDOMContentLoaded((function(){KTUsersPermissionsList.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/permissions/update-permission.js b/Mid-term/public/assets/js/custom/apps/user-management/permissions/update-permission.js new file mode 100644 index 000000000..9e71e2f92 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/permissions/update-permission.js @@ -0,0 +1 @@ +"use strict";var KTUsersUpdatePermission=function(){const t=document.getElementById("kt_modal_update_permission"),e=t.querySelector("#kt_modal_update_permission_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{var o=FormValidation.formValidation(e,{fields:{permission_name:{validators:{notEmpty:{message:"Permission name is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});t.querySelector('[data-kt-permissions-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to close?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, close it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value&&n.hide()}))})),t.querySelector('[data-kt-permissions-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const i=t.querySelector('[data-kt-permissions-modal-action="submit"]');i.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t?(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersUpdatePermission.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/roles/list/add.js b/Mid-term/public/assets/js/custom/apps/user-management/roles/list/add.js new file mode 100644 index 000000000..65a3432b8 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/roles/list/add.js @@ -0,0 +1 @@ +"use strict";var KTUsersAddRole=function(){const t=document.getElementById("kt_modal_add_role"),e=t.querySelector("#kt_modal_add_role_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{var o=FormValidation.formValidation(e,{fields:{role_name:{validators:{notEmpty:{message:"UserRole name is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});t.querySelector('[data-kt-roles-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to close?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, close it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value&&n.hide()}))})),t.querySelector('[data-kt-roles-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const r=t.querySelector('[data-kt-roles-modal-action="submit"]');r.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t?(r.setAttribute("data-kt-indicator","on"),r.disabled=!0,setTimeout((function(){r.removeAttribute("data-kt-indicator"),r.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})(),(()=>{const t=e.querySelector("#kt_roles_select_all"),n=e.querySelectorAll('[type="checkbox"]');t.addEventListener("change",(t=>{n.forEach((e=>{e.checked=t.target.checked}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersAddRole.init()})); diff --git a/Mid-term/public/assets/js/custom/apps/user-management/roles/list/update-role.js b/Mid-term/public/assets/js/custom/apps/user-management/roles/list/update-role.js new file mode 100644 index 000000000..0d031b439 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/roles/list/update-role.js @@ -0,0 +1 @@ +"use strict";var KTUsersUpdatePermissions=function(){const t=document.getElementById("kt_modal_update_role"),e=t.querySelector("#kt_modal_update_role_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{var o=FormValidation.formValidation(e,{fields:{role_name:{validators:{notEmpty:{message:"UserRole name is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});t.querySelector('[data-kt-roles-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to close?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, close it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value&&n.hide()}))})),t.querySelector('[data-kt-roles-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const i=t.querySelector('[data-kt-roles-modal-action="submit"]');i.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t?(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})(),(()=>{const t=e.querySelector("#kt_roles_select_all"),n=e.querySelectorAll('[type="checkbox"]');t.addEventListener("change",(t=>{n.forEach((e=>{e.checked=t.target.checked}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersUpdatePermissions.init()})); diff --git a/Mid-term/public/assets/js/custom/apps/user-management/roles/view/update-role.js b/Mid-term/public/assets/js/custom/apps/user-management/roles/view/update-role.js new file mode 100644 index 000000000..0d031b439 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/roles/view/update-role.js @@ -0,0 +1 @@ +"use strict";var KTUsersUpdatePermissions=function(){const t=document.getElementById("kt_modal_update_role"),e=t.querySelector("#kt_modal_update_role_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{var o=FormValidation.formValidation(e,{fields:{role_name:{validators:{notEmpty:{message:"UserRole name is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});t.querySelector('[data-kt-roles-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to close?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, close it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value&&n.hide()}))})),t.querySelector('[data-kt-roles-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const i=t.querySelector('[data-kt-roles-modal-action="submit"]');i.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t?(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})(),(()=>{const t=e.querySelector("#kt_roles_select_all"),n=e.querySelectorAll('[type="checkbox"]');t.addEventListener("change",(t=>{n.forEach((e=>{e.checked=t.target.checked}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersUpdatePermissions.init()})); diff --git a/Mid-term/public/assets/js/custom/apps/user-management/roles/view/view.js b/Mid-term/public/assets/js/custom/apps/user-management/roles/view/view.js new file mode 100644 index 000000000..219c13f55 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/roles/view/view.js @@ -0,0 +1 @@ +"use strict";var KTUsersViewRole=function(){var t,e,o=()=>{const r=e.querySelectorAll('[type="checkbox"]'),c=document.querySelector('[data-kt-view-roles-table-select="delete_selected"]');r.forEach((t=>{t.addEventListener("click",(function(){setTimeout((function(){n()}),50)}))})),c.addEventListener("click",(function(){Swal.fire({text:"Are you sure you want to delete selected customers?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(c){c.value?Swal.fire({text:"You have deleted all selected customers!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){r.forEach((e=>{e.checked&&t.row($(e.closest("tbody tr"))).remove().draw()}));e.querySelectorAll('[type="checkbox"]')[0].checked=!1})).then((function(){n(),o()})):"cancel"===c.dismiss&&Swal.fire({text:"Selected customers was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))};const n=()=>{const t=document.querySelector('[data-kt-view-roles-table-toolbar="base"]'),o=document.querySelector('[data-kt-view-roles-table-toolbar="selected"]'),n=document.querySelector('[data-kt-view-roles-table-select="selected_count"]'),r=e.querySelectorAll('tbody [type="checkbox"]');let c=!1,l=0;r.forEach((t=>{t.checked&&(c=!0,l++)})),c?(n.innerHTML=l,t.classList.add("d-none"),o.classList.remove("d-none")):(t.classList.remove("d-none"),o.classList.add("d-none"))};return{init:function(){(e=document.querySelector("#kt_roles_view_table"))&&(e.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),o=moment(e[3].innerHTML,"DD MMM YYYY, LT").format();e[3].setAttribute("data-order",o)})),t=$(e).DataTable({info:!1,order:[],pageLength:5,lengthChange:!1,columnDefs:[{orderable:!1,targets:0},{orderable:!1,targets:4}]}),document.querySelector('[data-kt-roles-table-filter="search"]').addEventListener("keyup",(function(e){t.search(e.target.value).draw()})),e.querySelectorAll('[data-kt-roles-table-filter="delete_row"]').forEach((e=>{e.addEventListener("click",(function(e){e.preventDefault();const o=e.target.closest("tr"),n=o.querySelectorAll("td")[1].innerText;Swal.fire({text:"Are you sure you want to delete "+n+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(e){e.value?Swal.fire({text:"You have deleted "+n+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){t.row($(o)).remove().draw()})):"cancel"===e.dismiss&&Swal.fire({text:customerName+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))})),o())}}}();KTUtil.onDOMContentLoaded((function(){KTUsersViewRole.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/users/list/add.js b/Mid-term/public/assets/js/custom/apps/user-management/users/list/add.js new file mode 100644 index 000000000..b82ed9474 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/users/list/add.js @@ -0,0 +1 @@ +"use strict";var KTUsersAddUser=function(){const t=document.getElementById("kt_modal_add_user"),e=t.querySelector("#kt_modal_add_user_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{var o=FormValidation.formValidation(e,{fields:{user_name:{validators:{notEmpty:{message:"Full name is required"}}},user_email:{validators:{notEmpty:{message:"Valid email address is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const i=t.querySelector('[data-kt-users-modal-action="submit"]');i.addEventListener("click",(t=>{t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t?(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),t.querySelector('[data-kt-users-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersAddUser.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/users/list/export-users.js b/Mid-term/public/assets/js/custom/apps/user-management/users/list/export-users.js new file mode 100644 index 000000000..c2d8286d7 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/users/list/export-users.js @@ -0,0 +1 @@ +"use strict";var KTModalExportUsers=function(){const t=document.getElementById("kt_modal_export_users"),e=t.querySelector("#kt_modal_export_users_form"),n=new bootstrap.Modal(t);return{init:function(){!function(){var o=FormValidation.formValidation(e,{fields:{format:{validators:{notEmpty:{message:"File format is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const i=t.querySelector('[data-kt-users-modal-action="submit"]');i.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t?(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),Swal.fire({text:"User list has been successfully exported!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&(n.hide(),i.disabled=!1)}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),t.querySelector('[data-kt-users-modal-action="cancel"]').addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(function(t){t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}()}}}();KTUtil.onDOMContentLoaded((function(){KTModalExportUsers.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/users/list/table.js b/Mid-term/public/assets/js/custom/apps/user-management/users/list/table.js new file mode 100644 index 000000000..aca46fe2f --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/users/list/table.js @@ -0,0 +1 @@ +"use strict";var KTUsersList=function(){var e,t,n,r,o=document.getElementById("kt_table_users"),c=()=>{o.querySelectorAll('[data-kt-users-table-filter="delete_row"]').forEach((t=>{t.addEventListener("click",(function(t){t.preventDefault();const n=t.target.closest("tr"),r=n.querySelectorAll("td")[1].querySelectorAll("a")[1].innerText;Swal.fire({text:"Are you sure you want to delete "+r+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(t){t.value?Swal.fire({text:"You have deleted "+r+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){e.row($(n)).remove().draw()})).then((function(){a()})):"cancel"===t.dismiss&&Swal.fire({text:customerName+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))}))},l=()=>{const c=o.querySelectorAll('[type="checkbox"]');t=document.querySelector('[data-kt-user-table-toolbar="base"]'),n=document.querySelector('[data-kt-user-table-toolbar="selected"]'),r=document.querySelector('[data-kt-user-table-select="selected_count"]');const s=document.querySelector('[data-kt-user-table-select="delete_selected"]');c.forEach((e=>{e.addEventListener("click",(function(){setTimeout((function(){a()}),50)}))})),s.addEventListener("click",(function(){Swal.fire({text:"Are you sure you want to delete selected customers?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(t){t.value?Swal.fire({text:"You have deleted all selected customers!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){c.forEach((t=>{t.checked&&e.row($(t.closest("tbody tr"))).remove().draw()}));o.querySelectorAll('[type="checkbox"]')[0].checked=!1})).then((function(){a(),l()})):"cancel"===t.dismiss&&Swal.fire({text:"Selected customers was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))};const a=()=>{const e=o.querySelectorAll('tbody [type="checkbox"]');let c=!1,l=0;e.forEach((e=>{e.checked&&(c=!0,l++)})),c?(r.innerHTML=l,t.classList.add("d-none"),n.classList.remove("d-none")):(t.classList.remove("d-none"),n.classList.add("d-none"))};return{init:function(){o&&(o.querySelectorAll("tbody tr").forEach((e=>{const t=e.querySelectorAll("td"),n=t[3].innerText.toLowerCase();let r=0,o="minutes";n.includes("yesterday")?(r=1,o="days"):n.includes("mins")?(r=parseInt(n.replace(/\D/g,"")),o="minutes"):n.includes("hours")?(r=parseInt(n.replace(/\D/g,"")),o="hours"):n.includes("days")?(r=parseInt(n.replace(/\D/g,"")),o="days"):n.includes("weeks")&&(r=parseInt(n.replace(/\D/g,"")),o="weeks");const c=moment().subtract(r,o).format();t[3].setAttribute("data-order",c);const l=moment(t[5].innerHTML,"DD MMM YYYY, LT").format();t[5].setAttribute("data-order",l)})),(e=$(o).DataTable({info:!1,order:[],pageLength:10,lengthChange:!1,columnDefs:[{orderable:!1,targets:0},{orderable:!1,targets:6}]})).on("draw",(function(){l(),c(),a()})),l(),document.querySelector('[data-kt-user-table-filter="search"]').addEventListener("keyup",(function(t){e.search(t.target.value).draw()})),document.querySelector('[data-kt-user-table-filter="reset"]').addEventListener("click",(function(){document.querySelector('[data-kt-user-table-filter="form"]').querySelectorAll("select").forEach((e=>{$(e).val("").trigger("change")})),e.search("").draw()})),c(),(()=>{const t=document.querySelector('[data-kt-user-table-filter="form"]'),n=t.querySelector('[data-kt-user-table-filter="filter"]'),r=t.querySelectorAll("select");n.addEventListener("click",(function(){var t="";r.forEach(((e,n)=>{e.value&&""!==e.value&&(0!==n&&(t+=" "),t+=e.value)})),e.search(t).draw()}))})())}}}();KTUtil.onDOMContentLoaded((function(){KTUsersList.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/users/view/add-auth-app.js b/Mid-term/public/assets/js/custom/apps/user-management/users/view/add-auth-app.js new file mode 100644 index 000000000..4655a5f07 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/users/view/add-auth-app.js @@ -0,0 +1 @@ +"use strict";var KTUsersAddAuthApp=function(){const t=document.getElementById("kt_modal_add_auth_app"),e=new bootstrap.Modal(t);return{init:function(){t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to close?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, close it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value&&e.hide()}))})),(()=>{const e=t.querySelector('[ data-kt-add-auth-action="qr-code"]'),n=t.querySelector('[ data-kt-add-auth-action="text-code"]'),o=t.querySelector('[ data-kt-add-auth-action="qr-code-button"]'),a=t.querySelector('[ data-kt-add-auth-action="text-code-button"]'),c=t.querySelector('[ data-kt-add-auth-action="qr-code-label"]'),d=t.querySelector('[ data-kt-add-auth-action="text-code-label"]'),l=()=>{e.classList.toggle("d-none"),o.classList.toggle("d-none"),c.classList.toggle("d-none"),n.classList.toggle("d-none"),a.classList.toggle("d-none"),d.classList.toggle("d-none")};a.addEventListener("click",(t=>{t.preventDefault(),l()})),o.addEventListener("click",(t=>{t.preventDefault(),l()}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersAddAuthApp.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/users/view/add-one-time-password.js b/Mid-term/public/assets/js/custom/apps/user-management/users/view/add-one-time-password.js new file mode 100644 index 000000000..11e480a28 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/users/view/add-one-time-password.js @@ -0,0 +1 @@ +"use strict";var KTUsersAddOneTimePassword=function(){const t=document.getElementById("kt_modal_add_one_time_password"),e=t.querySelector("#kt_modal_add_one_time_password_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{var o=FormValidation.formValidation(e,{fields:{otp_mobile_number:{validators:{notEmpty:{message:"Valid mobile number is required"}}},otp_confirm_password:{validators:{notEmpty:{message:"Password confirmation is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to close?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, close it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value&&n.hide()}))})),t.querySelector('[data-kt-users-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const i=t.querySelector('[data-kt-users-modal-action="submit"]');i.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t?(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersAddOneTimePassword.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/users/view/add-schedule.js b/Mid-term/public/assets/js/custom/apps/user-management/users/view/add-schedule.js new file mode 100644 index 000000000..a5499b4cf --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/users/view/add-schedule.js @@ -0,0 +1 @@ +"use strict";var KTUsersAddSchedule=function(){const t=document.getElementById("kt_modal_add_schedule"),e=t.querySelector("#kt_modal_add_schedule_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{$("#kt_modal_add_schedule_datepicker").flatpickr({enableTime:!0,dateFormat:"Y-m-d H:i"});const o=e.querySelector("#kt_modal_add_schedule_tagify");new Tagify(o,{whitelist:["sean@dellito.com","brian@exchange.com","mikaela@pexcom.com","f.mitcham@kpmg.com.au","olivia@corpmail.com","owen.neil@gmail.com","dam@consilting.com","emma@intenso.com","ana.cf@limtel.com","robert@benko.com","lucy.m@fentech.com","ethan@loop.com.au"],maxTags:10,dropdown:{maxItems:20,classname:"tagify__inline__suggestions",enabled:0,closeOnSelect:!1}});var i=FormValidation.formValidation(e,{fields:{event_datetime:{validators:{notEmpty:{message:"Event date & time is required"}}},event_name:{validators:{notEmpty:{message:"Event name is required"}}},event_org:{validators:{notEmpty:{message:"Event organiser is required"}}},event_invitees:{validators:{notEmpty:{message:"Event invitees is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});$(e.querySelector('[name="event_invitees"]')).on("change",(function(){i.revalidateField("event_invitees")})),t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),t.querySelector('[data-kt-users-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const a=t.querySelector('[data-kt-users-modal-action="submit"]');a.addEventListener("click",(function(t){t.preventDefault(),i&&i.validate().then((function(t){console.log("validated!"),"Valid"==t?(a.setAttribute("data-kt-indicator","on"),a.disabled=!0,setTimeout((function(){a.removeAttribute("data-kt-indicator"),a.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersAddSchedule.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/users/view/add-task.js b/Mid-term/public/assets/js/custom/apps/user-management/users/view/add-task.js new file mode 100644 index 000000000..5e68f4477 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/users/view/add-task.js @@ -0,0 +1 @@ +"use strict";var KTUsersAddTask=function(){const t=document.getElementById("kt_modal_add_task"),e=t.querySelector("#kt_modal_add_task_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{$("#kt_modal_add_task_datepicker").flatpickr({dateFormat:"Y-m-d"});var o=FormValidation.formValidation(e,{fields:{task_duedate:{validators:{notEmpty:{message:"Task due date is required"}}},task_name:{validators:{notEmpty:{message:"Task name is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),t.querySelector('[data-kt-users-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const a=t.querySelector('[data-kt-users-modal-action="submit"]');a.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t?(a.setAttribute("data-kt-indicator","on"),a.disabled=!0,setTimeout((function(){a.removeAttribute("data-kt-indicator"),a.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})(),document.querySelectorAll('[data-kt-menu-id="kt-users-tasks"]').forEach((t=>{const e=t.querySelector('[data-kt-users-update-task-status="reset"]'),n=t.querySelector('[data-kt-users-update-task-status="submit"]'),o=t.querySelector('[data-kt-menu-id="kt-users-tasks-form"]');var a=FormValidation.formValidation(o,{fields:{task_status:{validators:{notEmpty:{message:"Task due date is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});$(o.querySelector('[name="task_status"]')).on("change",(function(){a.revalidateField("task_status")})),e.addEventListener("click",(e=>{e.preventDefault(),Swal.fire({text:"Are you sure you would like to reset?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, reset it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(e){e.value?(o.reset(),t.hide()):"cancel"===e.dismiss&&Swal.fire({text:"Your form was not reset!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),n.addEventListener("click",(e=>{e.preventDefault(),a&&a.validate().then((function(e){console.log("validated!"),"Valid"==e?(n.setAttribute("data-kt-indicator","on"),n.disabled=!0,setTimeout((function(){n.removeAttribute("data-kt-indicator"),n.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(e){e.isConfirmed&&t.hide()}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(){}))}))}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTUsersAddTask.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/users/view/update-details.js b/Mid-term/public/assets/js/custom/apps/user-management/users/view/update-details.js new file mode 100644 index 000000000..40b0c5544 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/users/view/update-details.js @@ -0,0 +1 @@ +"use strict";var KTUsersUpdateDetails=function(){const t=document.getElementById("kt_modal_update_details"),e=t.querySelector("#kt_modal_update_user_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),t.querySelector('[data-kt-users-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const o=t.querySelector('[data-kt-users-modal-action="submit"]');o.addEventListener("click",(function(t){t.preventDefault(),o.setAttribute("data-kt-indicator","on"),o.disabled=!0,setTimeout((function(){o.removeAttribute("data-kt-indicator"),o.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3)}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersUpdateDetails.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/users/view/update-email.js b/Mid-term/public/assets/js/custom/apps/user-management/users/view/update-email.js new file mode 100644 index 000000000..d4080e6e0 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/users/view/update-email.js @@ -0,0 +1 @@ +"use strict";var KTUsersUpdateEmail=function(){const t=document.getElementById("kt_modal_update_email"),e=t.querySelector("#kt_modal_update_email_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{var o=FormValidation.formValidation(e,{fields:{profile_email:{validators:{notEmpty:{message:"Email address is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),t.querySelector('[data-kt-users-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const i=t.querySelector('[data-kt-users-modal-action="submit"]');i.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3))}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersUpdateEmail.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/users/view/update-password.js b/Mid-term/public/assets/js/custom/apps/user-management/users/view/update-password.js new file mode 100644 index 000000000..1c688442a --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/users/view/update-password.js @@ -0,0 +1 @@ +"use strict";var KTUsersUpdatePassword=function(){const t=document.getElementById("kt_modal_update_password"),e=t.querySelector("#kt_modal_update_password_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{var o=FormValidation.formValidation(e,{fields:{current_password:{validators:{notEmpty:{message:"Current password is required"}}},new_password:{validators:{notEmpty:{message:"The password is required"},callback:{message:"Please enter valid password",callback:function(t){if(t.value.length>0)return validatePassword()}}}},confirm_password:{validators:{notEmpty:{message:"The password confirmation is required"},identical:{compare:function(){return e.querySelector('[name="new_password"]').value},message:"The password and its confirm are not the same"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),t.querySelector('[data-kt-users-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const a=t.querySelector('[data-kt-users-modal-action="submit"]');a.addEventListener("click",(function(t){t.preventDefault(),o&&o.validate().then((function(t){console.log("validated!"),"Valid"==t&&(a.setAttribute("data-kt-indicator","on"),a.disabled=!0,setTimeout((function(){a.removeAttribute("data-kt-indicator"),a.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3))}))}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersUpdatePassword.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/users/view/update-role.js b/Mid-term/public/assets/js/custom/apps/user-management/users/view/update-role.js new file mode 100644 index 000000000..1a7c41e0b --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/users/view/update-role.js @@ -0,0 +1 @@ +"use strict";var KTUsersUpdateRole=function(){const t=document.getElementById("kt_modal_update_role"),e=t.querySelector("#kt_modal_update_role_form"),n=new bootstrap.Modal(t);return{init:function(){(()=>{t.querySelector('[data-kt-users-modal-action="close"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),t.querySelector('[data-kt-users-modal-action="cancel"]').addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?(e.reset(),n.hide()):"cancel"===t.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}));const o=t.querySelector('[data-kt-users-modal-action="submit"]');o.addEventListener("click",(function(t){t.preventDefault(),o.setAttribute("data-kt-indicator","on"),o.disabled=!0,setTimeout((function(){o.removeAttribute("data-kt-indicator"),o.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&n.hide()}))}),2e3)}))})()}}}();KTUtil.onDOMContentLoaded((function(){KTUsersUpdateRole.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/apps/user-management/users/view/view.js b/Mid-term/public/assets/js/custom/apps/user-management/users/view/view.js new file mode 100644 index 000000000..000814fa2 --- /dev/null +++ b/Mid-term/public/assets/js/custom/apps/user-management/users/view/view.js @@ -0,0 +1 @@ +"use strict";var KTUsersViewMain={init:function(){document.getElementById("kt_modal_sign_out_sesions").addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like sign out all sessions?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, sign out!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?Swal.fire({text:"You have signed out all sessions!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}):"cancel"===t.dismiss&&Swal.fire({text:"Your sessions are still preserved!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),document.querySelectorAll('[data-kt-users-sign-out="single_user"]').forEach((t=>{t.addEventListener("click",(n=>{n.preventDefault();const e=t.closest("tr").querySelectorAll("td")[1].innerText;Swal.fire({text:"Are you sure you would like sign out "+e+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, sign out!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(n){n.value?Swal.fire({text:"You have signed out "+e+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(){t.closest("tr").remove()})):"cancel"===n.dismiss&&Swal.fire({text:e+"'s session is still preserved!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})),document.getElementById("kt_users_delete_two_step").addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Are you sure you would like remove this two-step authentication?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, remove it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(t){t.value?Swal.fire({text:"You have removed this two-step authentication!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}):"cancel"===t.dismiss&&Swal.fire({text:"Your two-step authentication is still valid!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),(()=>{const t=document.getElementById("kt_users_email_notification_form"),n=t.querySelector("#kt_users_email_notification_submit"),e=t.querySelector("#kt_users_email_notification_cancel");n.addEventListener("click",(t=>{t.preventDefault(),n.setAttribute("data-kt-indicator","on"),n.disabled=!0,setTimeout((function(){n.removeAttribute("data-kt-indicator"),n.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3)})),e.addEventListener("click",(n=>{n.preventDefault(),Swal.fire({text:"Are you sure you would like to cancel?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, cancel it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(n){n.value?t.reset():"cancel"===n.dismiss&&Swal.fire({text:"Your form has not been cancelled!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))})()}};KTUtil.onDOMContentLoaded((function(){KTUsersViewMain.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/authentication/password-reset/new-password.js b/Mid-term/public/assets/js/custom/authentication/password-reset/new-password.js new file mode 100644 index 000000000..11a1aa731 --- /dev/null +++ b/Mid-term/public/assets/js/custom/authentication/password-reset/new-password.js @@ -0,0 +1 @@ +"use strict";var KTPasswordResetNewPassword=function(){var e,t,r,o,s=function(){return 100===o.getScore()};return{init:function(){e=document.querySelector("#kt_new_password_form"),t=document.querySelector("#kt_new_password_submit"),o=KTPasswordMeter.getInstance(e.querySelector('[data-kt-password-meter="true"]')),r=FormValidation.formValidation(e,{fields:{password:{validators:{notEmpty:{message:"The password is required"},callback:{message:"Please enter valid password",callback:function(e){if(e.value.length>0)return s()}}}},"confirm-password":{validators:{notEmpty:{message:"The password confirmation is required"},identical:{compare:function(){return e.querySelector('[name="password"]').value},message:"The password and its confirm are not the same"}}},toc:{validators:{notEmpty:{message:"You must accept the terms and conditions"}}}},plugins:{trigger:new FormValidation.plugins.Trigger({event:{password:!1}}),bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),t.addEventListener("click",(function(s){s.preventDefault(),r.revalidateField("password"),r.validate().then((function(r){"Valid"==r?(t.setAttribute("data-kt-indicator","on"),t.disabled=!0,setTimeout((function(){t.removeAttribute("data-kt-indicator"),t.disabled=!1,Swal.fire({text:"You have successfully reset your password!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&(e.querySelector('[name="password"]').value="",e.querySelector('[name="confirm-password"]').value="",o.reset())}))}),1500)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),e.querySelector('input[name="password"]').addEventListener("input",(function(){this.value.length>0&&r.updateFieldStatus("password","NotValidated")}))}}}();KTUtil.onDOMContentLoaded((function(){KTPasswordResetNewPassword.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/authentication/password-reset/password-reset.js b/Mid-term/public/assets/js/custom/authentication/password-reset/password-reset.js new file mode 100644 index 000000000..dbd59991c --- /dev/null +++ b/Mid-term/public/assets/js/custom/authentication/password-reset/password-reset.js @@ -0,0 +1 @@ +"use strict";var KTPasswordResetGeneral=function(){var t,e,i;return{init:function(){t=document.querySelector("#kt_password_reset_form"),e=document.querySelector("#kt_password_reset_submit"),i=FormValidation.formValidation(t,{fields:{email:{validators:{notEmpty:{message:"Email address is required"},emailAddress:{message:"The value is not a valid email address"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),e.addEventListener("click",(function(o){o.preventDefault(),i.validate().then((function(i){"Valid"==i?(e.setAttribute("data-kt-indicator","on"),e.disabled=!0,setTimeout((function(){e.removeAttribute("data-kt-indicator"),e.disabled=!1,Swal.fire({text:"You have successfully logged in!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(e){e.isConfirmed&&(t.querySelector('[name="email"]').value="")}))}),1500)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTPasswordResetGeneral.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/authentication/sign-in/general.js b/Mid-term/public/assets/js/custom/authentication/sign-in/general.js new file mode 100644 index 000000000..4cb46f739 --- /dev/null +++ b/Mid-term/public/assets/js/custom/authentication/sign-in/general.js @@ -0,0 +1 @@ +"use strict";var KTSigninGeneral=function(){var t,e,i;return{init:function(){t=document.querySelector("#kt_sign_in_form"),e=document.querySelector("#kt_sign_in_submit"),i=FormValidation.formValidation(t,{fields:{email:{validators:{notEmpty:{message:"Email address is required"},emailAddress:{message:"The value is not a valid email address"}}},password:{validators:{notEmpty:{message:"The password is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row"})}}),e.addEventListener("click",(function(n){n.preventDefault(),i.validate().then((function(i){"Valid"==i?(e.setAttribute("data-kt-indicator","on"),e.disabled=!0,setTimeout((function(){e.removeAttribute("data-kt-indicator"),e.disabled=!1,Swal.fire({text:"You have successfully logged in!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(e){if(e.isConfirmed){t.querySelector('[name="email"]').value="",t.querySelector('[name="password"]').value="";var i=t.getAttribute("data-kt-redirect-url");i&&(location.href=i)}}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTSigninGeneral.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/authentication/sign-in/two-steps.js b/Mid-term/public/assets/js/custom/authentication/sign-in/two-steps.js new file mode 100644 index 000000000..1e58c9bb1 --- /dev/null +++ b/Mid-term/public/assets/js/custom/authentication/sign-in/two-steps.js @@ -0,0 +1 @@ +"use strict";var KTSigninTwoSteps=function(){var t,e;return{init:function(){t=document.querySelector("#kt_sing_in_two_steps_form"),(e=document.querySelector("#kt_sing_in_two_steps_submit")).addEventListener("click",(function(n){n.preventDefault();var i=!0,o=[].slice.call(t.querySelectorAll('input[maxlength="1"]'));o.map((function(t){""!==t.value&&0!==t.value.length||(i=!1)})),!0===i?(e.setAttribute("data-kt-indicator","on"),e.disabled=!0,setTimeout((function(){e.removeAttribute("data-kt-indicator"),e.disabled=!1,Swal.fire({text:"You have been successfully verified!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(e){if(e.isConfirmed){o.map((function(t){t.value=""}));var n=t.getAttribute("data-kt-redirect-url");n&&(location.href=n)}}))}),1e3)):swal.fire({text:"Please enter valid securtiy code and try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-light-primary"}}).then((function(){KTUtil.scrollTop()}))}))}}}();KTUtil.onDOMContentLoaded((function(){KTSigninTwoSteps.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/authentication/sign-up/coming-soon.js b/Mid-term/public/assets/js/custom/authentication/sign-up/coming-soon.js new file mode 100644 index 000000000..1f466e206 --- /dev/null +++ b/Mid-term/public/assets/js/custom/authentication/sign-up/coming-soon.js @@ -0,0 +1 @@ +"use strict";var KTSignupComingSoon=function(){var e,t,o,n,i,r,a;return{init:function(){var s,u,l;e=document.querySelector("#kt_coming_soon_form"),t=document.querySelector("#kt_coming_soon_submit"),n=document.querySelector("#kt_coming_soon_counter_days"),i=document.querySelector("#kt_coming_soon_counter_hours"),r=document.querySelector("#kt_coming_soon_counter_minutes"),a=document.querySelector("#kt_coming_soon_counter_seconds"),o=FormValidation.formValidation(e,{fields:{email:{validators:{notEmpty:{message:"Email address is required"},emailAddress:{message:"The value is not a valid email address"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),t.addEventListener("click",(function(n){n.preventDefault(),o.validate().then((function(o){"Valid"==o?(t.setAttribute("data-kt-indicator","on"),t.disabled=!0,setTimeout((function(){t.removeAttribute("data-kt-indicator"),t.disabled=!1,Swal.fire({text:"You have successfully subscribed !",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&(e.querySelector('[name="email"]').value="")}))}),2e3)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),s=new Date,u=new Date(s.getTime()+1296e6+36e6+9e5).getTime(),l=function(){var e=(new Date).getTime(),t=u-e,o=Math.floor(t/864e5),s=Math.floor(t%864e5/36e5),l=Math.floor(t%36e5/6e4),c=Math.floor(t%6e4/1e3);n.innerHTML=o,i.innerHTML=s,r.innerHTML=l,a.innerHTML=c},setInterval(l,1e3),l()}}}();KTUtil.onDOMContentLoaded((function(){KTSignupComingSoon.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/authentication/sign-up/free-trial.js b/Mid-term/public/assets/js/custom/authentication/sign-up/free-trial.js new file mode 100644 index 000000000..a4b882667 --- /dev/null +++ b/Mid-term/public/assets/js/custom/authentication/sign-up/free-trial.js @@ -0,0 +1 @@ +"use strict";var KTSignupFreeTrial=function(){var e,t,r,a,i=function(){return 100===a.getScore()};return{init:function(){e=document.querySelector("#kt_free_trial_form"),t=document.querySelector("#kt_free_trial_submit"),a=KTPasswordMeter.getInstance(e.querySelector('[data-kt-password-meter="true"]')),r=FormValidation.formValidation(e,{fields:{email:{validators:{notEmpty:{message:"Email address is required"},emailAddress:{message:"The value is not a valid email address"}}},password:{validators:{notEmpty:{message:"The password is required"},callback:{message:"Please enter valid password",callback:function(e){if(e.value.length>0)return i()}}}},"confirm-password":{validators:{notEmpty:{message:"The password confirmation is required"},identical:{compare:function(){return e.querySelector('[name="password"]').value},message:"The password and its confirm are not the same"}}},toc:{validators:{notEmpty:{message:"You must accept the terms and conditions"}}}},plugins:{trigger:new FormValidation.plugins.Trigger({event:{password:!1}}),bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),t.addEventListener("click",(function(i){i.preventDefault(),r.revalidateField("password"),r.validate().then((function(r){"Valid"==r?(t.setAttribute("data-kt-indicator","on"),t.disabled=!0,setTimeout((function(){t.removeAttribute("data-kt-indicator"),t.disabled=!1,Swal.fire({text:"You have successfully registered!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&(e.reset(),a.reset())}))}),1500)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),e.querySelector('input[name="password"]').addEventListener("input",(function(){this.value.length>0&&r.updateFieldStatus("password","NotValidated")}))}}}();KTUtil.onDOMContentLoaded((function(){KTSignupFreeTrial.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/authentication/sign-up/general.js b/Mid-term/public/assets/js/custom/authentication/sign-up/general.js new file mode 100644 index 000000000..ce5a61621 --- /dev/null +++ b/Mid-term/public/assets/js/custom/authentication/sign-up/general.js @@ -0,0 +1 @@ +"use strict";var KTSignupGeneral=function(){var e,t,a,s,r=function(){return 100===s.getScore()};return{init:function(){e=document.querySelector("#kt_sign_up_form"),t=document.querySelector("#kt_sign_up_submit"),s=KTPasswordMeter.getInstance(e.querySelector('[data-kt-password-meter="true"]')),a=FormValidation.formValidation(e,{fields:{"first-name":{validators:{notEmpty:{message:"First Name is required"}}},"last-name":{validators:{notEmpty:{message:"Last Name is required"}}},email:{validators:{notEmpty:{message:"Email address is required"},emailAddress:{message:"The value is not a valid email address"}}},password:{validators:{notEmpty:{message:"The password is required"},callback:{message:"Please enter valid password",callback:function(e){if(e.value.length>0)return r()}}}},"confirm-password":{validators:{notEmpty:{message:"The password confirmation is required"},identical:{compare:function(){return e.querySelector('[name="password"]').value},message:"The password and its confirm are not the same"}}},toc:{validators:{notEmpty:{message:"You must accept the terms and conditions"}}}},plugins:{trigger:new FormValidation.plugins.Trigger({event:{password:!1}}),bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}}),t.addEventListener("click",(function(r){r.preventDefault(),a.revalidateField("password"),a.validate().then((function(a){"Valid"==a?(t.setAttribute("data-kt-indicator","on"),t.disabled=!0,setTimeout((function(){t.removeAttribute("data-kt-indicator"),t.disabled=!1,Swal.fire({text:"You have successfully reset your password!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}}).then((function(t){t.isConfirmed&&(e.reset(),s.reset())}))}),1500)):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})),e.querySelector('input[name="password"]').addEventListener("input",(function(){this.value.length>0&&a.updateFieldStatus("password","NotValidated")}))}}}();KTUtil.onDOMContentLoaded((function(){KTSignupGeneral.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/base/forms/advanced.js b/Mid-term/public/assets/js/custom/documentation/base/forms/advanced.js new file mode 100644 index 000000000..e59746ed0 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/base/forms/advanced.js @@ -0,0 +1 @@ +"use strict";var KTDocsAdvancedForms={init:function(){var e,n,t,c,r;e=document.querySelector("#kt_share_earn_link_copy_button"),n=document.querySelector("#kt_share_earn_link_input"),(t=new ClipboardJS(e))&&t.on("success",(function(t){var c=e.innerHTML;n.classList.add("bg-success"),n.classList.add("text-inverse-success"),e.innerHTML="Copied!",setTimeout((function(){e.innerHTML=c,n.classList.remove("bg-success"),n.classList.remove("text-inverse-success")}),3e3),t.clearSelection()})),(()=>{const e=document.querySelectorAll('[data-kt-docs-advanced-forms="interactive"]'),n=document.querySelector('[name="interactive_amount"]');e.forEach((e=>{e.addEventListener("click",(e=>{e.preventDefault(),n.value=e.target.innerText}))}))})(),c=document.querySelector("#kt_docs_forms_advanced_interactive_slider"),r=document.querySelector("#kt_docs_forms_advanced_interactive_slider_label"),noUiSlider.create(c,{start:[5],connect:!0,range:{min:1,max:500}}),c.noUiSlider.on("update",(function(e,n){r.innerHTML=Math.round(e[n]),n&&(r.innerHTML=Math.round(e[n]))}))}};KTUtil.onDOMContentLoaded((function(){KTDocsAdvancedForms.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/base/indicator.js b/Mid-term/public/assets/js/custom/documentation/base/indicator.js new file mode 100644 index 000000000..a93724294 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/base/indicator.js @@ -0,0 +1 @@ +"use strict";var KTBaseIndicatorDemos={init:function(t){var e;(e=document.querySelector("#kt_button_1")).addEventListener("click",(function(){e.setAttribute("data-kt-indicator","on"),setTimeout((function(){e.removeAttribute("data-kt-indicator")}),3e3)})),function(t){var e=document.querySelector("#kt_button_2");e.addEventListener("click",(function(){e.setAttribute("data-kt-indicator","on"),setTimeout((function(){e.removeAttribute("data-kt-indicator")}),3e3)}))}(),function(t){var e=document.querySelector("#kt_button_3");e.addEventListener("click",(function(){e.setAttribute("data-kt-indicator","on"),setTimeout((function(){e.removeAttribute("data-kt-indicator")}),3e3)}))}()}};KTUtil.onDOMContentLoaded((function(){KTBaseIndicatorDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/base/modal.js b/Mid-term/public/assets/js/custom/documentation/base/modal.js new file mode 100644 index 000000000..df6aefdd5 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/base/modal.js @@ -0,0 +1 @@ +"use strict";var KTDocsModal=function(){var n;return{init:function(){(n=document.querySelector("#kt_modal_3"))&&function(n){var e=0,o=0,t=0,u=0;function c(n){(n=n||window.event).preventDefault(),t=n.clientX,u=n.clientY,document.onmouseup=i,document.onmousemove=l}function l(c){(c=c||window.event).preventDefault(),e=t-c.clientX,o=u-c.clientY,t=c.clientX,u=c.clientY,n.style.top=n.offsetTop-o+"px",n.style.left=n.offsetLeft-e+"px"}function i(){document.onmouseup=null,document.onmousemove=null}n.querySelector(".modal-content")?n.querySelector(".modal-content").onmousedown=c:n.onmousedown=c}(n)}}}();KTUtil.onDOMContentLoaded((function(){KTDocsModal.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/base/rotate.js b/Mid-term/public/assets/js/custom/documentation/base/rotate.js new file mode 100644 index 000000000..d1217c359 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/base/rotate.js @@ -0,0 +1 @@ +"use strict";var KTBaseRotateDemos={init:function(t){var e;(e=document.querySelector("#kt_button_toggle")).addEventListener("click",(function(){e.classList.toggle("active")}))}};KTUtil.onDOMContentLoaded((function(){KTBaseRotateDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/base/toasts.js b/Mid-term/public/assets/js/custom/documentation/base/toasts.js new file mode 100644 index 000000000..a4bf8c56e --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/base/toasts.js @@ -0,0 +1 @@ +"use strict";const KTBaseToastDemos={init:function(){(()=>{const t=document.getElementById("kt_docs_toast_toggle_button"),e=document.getElementById("kt_docs_toast_toggle"),o=bootstrap.Toast.getOrCreateInstance(e);t.addEventListener("click",(t=>{t.preventDefault(),o.show()}))})(),(()=>{const t=document.getElementById("kt_docs_toast_stack_button"),e=document.getElementById("kt_docs_toast_stack_container"),o=document.querySelector('[data-kt-docs-toast="stack"]');o.parentNode.removeChild(o),t.addEventListener("click",(t=>{t.preventDefault();const n=o.cloneNode(!0);e.append(n),bootstrap.Toast.getOrCreateInstance(n).show()}))})()}};KTUtil.onDOMContentLoaded((function(){KTBaseToastDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/charts/amcharts/charts.js b/Mid-term/public/assets/js/custom/documentation/charts/amcharts/charts.js new file mode 100644 index 000000000..d946d0bf0 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/charts/amcharts/charts.js @@ -0,0 +1 @@ +"use strict";var KTGeneralAmCharts=function(){const e=getComputedStyle(document.documentElement).getPropertyValue("--bs-body-color"),a=getComputedStyle(document.documentElement).getPropertyValue("--bs-body-bg");var t=function(){am5.ready((function(){var a=am5.Root.new("kt_amcharts_4");const t=am5.Theme.new(a);t.rule("Label").set("fontSize",10),t.rule("Grid").set("strokeOpacity",.06),a.setThemes([am5themes_Animated.new(a),t]);var r={EUROPE:[["Albania",3.89,3.61,1.61,1.61,1.11,3.36,3.36,-.36,-2.26,-2.32,-2.36,-2.41,-2.55,-2.05,-1.49,-1.91,-2.52,-2.03,-1.05,-1.23,-1.23,-1.23,-1.23,-1.23,-1.23,-1.23,-1.23,-1.59,-1.59,-1.59,-1.59,-1.59,-1.59,-1.59,1.11,.96,.96,.96,.96,.96,1.48,-1.71,-1.14,-.57,-.84],["Austria",6.9,-.33,.18,.36,-.05,.42,-.55,-.13,-.84,-.14,.38,.72,-.47,-.27,.03,-.17,.57,.94,.88,-.02,1.49,.82,2.08,.75,-.26,.95,1.03,1.05,1.85,-.87,.43,.26,-.62,-.83,-.08,-.1,.62,.58,-.39,.53,.22,.27,.86,.89,.75],["Belgium",10.32,-.07,.23,.15,.73,.11,-.5,-.88,-.64,-.29,.67,.49,-.27,-.82,-.62,-.82,.49,1.08,.99,-.15,.56,-.07,.91,.98,-.92,.65,.38,.94,1.72,1.53,1.93,2.29,1.94,2.53,1.74,2.07,1.78,1.76,1.18,2.93,2.29,.92,2.63,-5.37,-4.61],["Bulgaria",12.03,.06,-.12,.48,-.58,.07,-.65,.41,-.46,.29,.45,.06,.28,.24,-2.82,.31,.23,.78,1.49,-3.23,-.55,-4.72,-.57,-1.77,-1.77,-1.77,-3.13,.55,.57,1.21,-.43,-2.21,-1.56,-1.45,-1.08,-.05,-1.34,.13,-.81,-.93,-1.67,-.77,-1.06,-.51,.14],["Croatia",13.8,-.07,.21,.34,-.54,.45,-.87,.22,-.82,.03,.52,.52,-.39,-.12,.06,.03,.48,.48,.87,-.12,1.07,.61,1.73,.32,-3.32,-3.18,-3.32,-.28,.84,-.39,.58,.68,-.33,-.62,.41,1.01,.77,.89,-.13,.79,1.12,.51,1.13,-.22,-2.08],["Czech Republic",8.12,-.46,.11,.36,-.32,.44,.01,-.42,-1.58,-.24,.96,1.1,-.68,-.81,-.2,-1.09,.97,1.34,1.34,-.18,1.17,.26,1.47,.54,-1.14,.41,.86,1.32,2.06,.52,1.41,1.68,1.46,.61,2.04,1.96,1.84,1.95,.62,1.54,1.77,1.11,2.63,-3.79,2.48],["Denmark",7.89,.48,.31,.68,.06,-.47,-.04,-.97,-.21,-.19,.36,-.01,.31,-.82,-.49,-.97,.36,.92,1.38,.5,.96,-.43,.19,-.13,-.83,.61,-.09,.31,.78,.62,1.59,.41,.83,1.39,1.49,1.18,1.27,.83,-.84,1.14,.46,.56,1.95,1.49,1.33],["Estonia",3.85,-1.07,1.77,.14,-3.82,-2.64,1.71,1.66,1.31,2.01,2.64,3.27,2.67,.26,1.68,2.24,2.5,3.49,.74,-2.3,2.78,-1.96,2.73,3.14,1.64,2.57,2.41,3.07,4.03,4.33,3.74,3.27,3.51,3.15,4.32,3.41,3.65,2.55,1.72,3.51,2.08,3.13,3.5,3.78,3.06],["Finland",2.29,.24,1.87,1.67,-1.16,-.27,-1.27,.02,-.67,-.96,.15,.45,.74,-2.04,-.4,-1.84,.22,2.05,1.31,.16,1.17,.14,-.02,.57,-.11,.37,-.22,.62,1.77,.19,.32,.55,.69,1.33,1.06,1.38,1.57,.74,-.31,2.03,.14,1.84,2.01,2.43,1.63],["France",11.96,-.44,-.22,-.02,.04,-.32,.05,-.43,-.79,-.09,.92,.28,-.27,-.29,-.24,.16,.58,.79,1.21,.4,.68,.03,1.33,.78,-.22,.92,.44,.91,.82,.63,.64,1.56,.38,.48,1.17,.72,.31,.92,.02,1.44,.69,-.01,1.33,1.06,.64],["Greece",16.38,-.06,-.19,-.03,-.38,.69,.01,.41,-.06,.18,-.24,-.32,.03,.45,.14,-.07,1.72,-.04,.62,-.38,-.06,.57,1.21,.53,.75,.17,1.53,1.49,1.03,1.88,.92,.86,.53,.48,1.13,1.56,1.53,2.76,2.05,.91,1.99,-4.31,3.41,2.5,.07],["Hungary",10.73,.01,.32,.55,-.36,-.43,-.86,.25,-1.2,.32,.52,.89,-.26,-.36,.34,.14,.34,.79,.76,-.26,1.31,.31,1.73,1.5,1.12,1.47,1.29,1.73,2.57,1.35,2.63,1.49,1.01,-.04,1.92,2.99,2.51,2.41,1.79,2.25,2.69,2.59,2.66,2.69,2.43],["Iceland",3.93,-.29,.96,.24,.52,.05,.22,-1.3,-.35,.62,-.27,-.37,.47,.49,.18,1.26,.01,.06,.43,1.22,.44,.31,.13,-.16,.83,.83,.32,.32,.53,1.03,1.23,2.01,1.59,.83,1.07,1.82,1.18,1.54,2.03,.9,1.8,1.17,2.31,.82,2.37],["Ireland",10.13,-.13,-.49,.06,-.1,.45,.28,-.82,-.16,.03,.24,.32,.27,-.4,-1.04,-.16,.23,.73,.71,.41,.37,.57,.34,1.02,.06,.84,.67,.58,.36,.28,.46,.93,.64,.52,.84,1.23,.43,.45,-.33,.55,.26,.29,.82,.04,.65],["Italy",13.05,.19,-.27,.19,-.63,.19,-.1,-.08,-.39,-.14,.53,.55,.17,.29,.28,1.19,1.04,.51,1.39,.62,-.33,.42,1.34,.24,-2.41,.47,.25,-1.22,2.13,2.22,1.87,1.93,1.14,-.64,1.51,1.66,1.96,2.14,1.63,2.24,2.47,1.83,2.09,2.22,2.3],["Latvia",5.22,-1.89,.41,.26,-1.89,-2.57,1.78,.89,.67,1.73,2.54,2.74,3.53,-.72,1.12,-.42,2.13,1.76,1.71,.07,1.68,1.4,-3.59,.41,.88,3.05,1.93,2.74,3.23,3.45,3.16,3.53,2.41,2.28,3.13,2.99,-.27,1.96,1.44,2.77,1.44,2.67,2.71,3.09,2.32],["Lithuania",6.53,.39,.7,1.74,-1.34,-.22,-.91,-.73,-1.28,.09,.37,1.19,.42,-1.31,-.23,-1.74,.45,1.82,1.75,.92,1.25,.07,1.15,1.16,-.61,.82,.63,1.49,1.95,1.51,2.23,.89,.61,.68,1.37,1.86,2,.88,1.11,1.78,.89,-1.37,1.08,3.27,2.36],["Luxembourg",8.61,.14,.27,.44,.68,.09,-.87,-.77,-.89,-.17,.51,.57,-.26,-1.06,-.55,-.86,.58,1.17,1.3,.44,1.08,.46,1.69,1.19,-.52,1.17,.75,1.39,1.58,1.09,1.49,1.89,.84,1.24,1.76,2.02,1.23,1.48,.2,2.17,1.19,.57,2.36,1.88,-.59],["Macedonia",9.52,3.13,-1.49,3.38,-1.99,2.12,.52,1.01,.41,0,-2.85,-7.12,-7.12,-8.64,-3.89,-.35,3.15,1.01,1.82,4.11,1.92,1.94,3.92,-2.4,5.58,1.5,.99,5.07,3.43,3.22,2.09,1.69,2.42,-1.58,2.67,2.98,3.15,2.82,2.51,2.58,3.47,2.01,2.9,3.17,3.64],["Malta",18.86,.04,.05,.11,-.7,.58,-.13,.15,-.9,-.22,.83,.18,-.67,.53,1.02,1.82,1.27,.3,1.04,.53,.62,1.27,1.52,1.01,.41,.61,1.37,1.37,.83,1.24,.29,1.56,.41,.86,1.38,1.16,1.48,1.17,1.52,.36,1.61,.84,.78,1.06,1.07],["Montenegro",11.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.87,3.81,5.06,3.64,3.76,3.07,.81,-.96,2.31,-.12,6.41,4.34,5.31,5.88,6.6,5.88,6.04,5.98,6.42,5.89,7.04,6.56,6.37,6.68,-1.12,9.91],["Netherlands",9.49,-.24,.06,-.03,.31,.02,-.27,-.98,-.44,-.09,.79,.87,-.02,-.46,-.65,-.49,1.02,1.43,1.17,.01,.89,.18,1.29,1.11,-.88,.8,.89,1.81,1.36,1.25,1.42,1.27,.99,1.58,2.42,1.82,1.2,1.21,-.16,1.42,.84,.52,2.31,1.43,1.34],["Norway",3.73,.82,1.53,.01,.16,-.23,-.53,-.72,-.7,.04,.33,-.67,.96,-1.09,-.43,-.71,-.01,.98,1.48,.76,.86,.09,.13,.08,-.22,-.16,.56,1.16,1.47,.69,1.38,.77,1.38,1.19,1.42,1.17,1.11,1.01,-.53,1.8,.59,1.09,2.02,1.65,1.53],["Poland",8.64,.89,.77,1.59,-.71,-.42,-.37,-.89,-1.73,.14,-.06,.49,-.18,-.63,.34,-1.34,.82,1.9,1.4,.42,-.89,.21,1.07,.76,-1.04,.33,.42,1.22,1.52,.42,1.67,.82,.41,.73,.93,1.74,1.54,.46,-1.14,.64,.22,-.07,1.16,.87,1.39],["Russia",.51,.51,-.63,1.69,-1.09,-.62,-.16,-.33,-.8,.69,.06,.7,-.47,-.67,-.14,-.92,.5,.53,1.01,.45,.26,.13,-.03,1.58,-.29,.5,.02,.17,.01,.48,.74,.81,.46,.77,-.14,1.57,1.27,.27,.33,.89,1.51,-2.22,-2.98,2.25,.13],["Serbia",11.68,-.24,.31,.48,-.64,.54,-.72,.39,-1.03,.09,.29,.52,-.28,-.59,-.06,-.11,.34,.57,1.07,-.49,.95,.31,1.76,.52,-.26,-.18,.67,.88,2.08,.97,1.7,.88,.63,-.07,.84,1.97,2.05,1.59,2.09,1.91,2.24,2.45,2.39,2.69,2.16],["Slovakia",9.7,-.11,.61,.93,.04,-.31,-1.03,-.02,-1.34,-.14,.61,.76,-.22,-.78,-.34,-.64,-.08,.73,.82,-.45,.98,.04,1.67,.68,-.57,.01,.82,.93,1.73,.61,1.36,.72,.4,.13,.92,1.71,1.83,1.39,.81,1.43,1.71,1.62,3.01,2.31,2.74],["Spain",17.29,-1.64,-1.48,-.84,-.82,.54,.69,.78,.34,.78,.43,.18,-.78,.17,-.61,.02,-.27,1.15,.42,-.21,-.16,-1.08,.55,.64,-.39,1.33,.22,.07,.11,.46,.38,1.07,.64,1.36,1.51,-.62,-.89,.75,.57,.73,.34,.38,1.37,.64,1.74],["Sweden",5.67,.84,1.23,1.9,-.27,.33,-.72,-1.16,-1.03,-.88,.01,.36,.41,-1.97,-.76,-1.9,.09,1.21,1.43,.27,1.01,-.27,.06,-1.02,-.46,1.06,.29,1.09,1.73,.59,1.48,.82,.86,1.22,1.43,1.2,.38,.13,-1.55,.85,.11,.42,1.59,1.42,-.29],["Switzerland",9.73,-.3,.37,.16,.27,.45,-.75,-.15,-.68,-.25,.46,.43,-.44,-.74,-.46,-.5,.55,.73,1.02,.01,.64,.26,1.59,.44,-.64,.67,.73,.85,1.63,.74,1.33,1.41,.54,.39,.96,1.24,.76,1.08,-.13,1.65,.86,.21,1.81,1.7,.34],["Ukraine",9.15,-.48,-.05,1.22,-1.58,-.08,.13,.24,-1.24,.78,.19,.9,-.18,-1.37,-.15,-1.77,-.3,1.33,1.12,.24,.55,-.83,.64,.54,-.48,-.33,.51,1.61,.91,.51,1.9,-.04,.48,-.94,.47,1.08,4.14,2.33,2.07,.89,1.51,2.09,1.56,2.09,2.31]],AFRICA:[["Algeria",16.99,.55,.09,.44,-4.27,.58,.28,.93,.58,-.5,2.37,-1.47,1.45,1.74,1.34,2.07,.91,.61,1.84,.71,.54,.36,2.18,2.28,1.93,4.09,1.03,1.77,1.32,2.72,1.51,2.68,1.43,1.82,2.62,1.64,1.72,3.03,1.88,2.16,2.45,-.54,3.03,1.52,3.32],["Angola",23.86,1.64,.58,-.54,.37,.96,.56,.56,.56,-1.61,-1.94,-1.94,-1.94,-2.46,-2.46,-2.46,-2.46,-2.46,-2.46,-2.46,-2.46,-2.46,-2.46,-2.46,-2.46,-2.46,-2.46,-2.46,-2.46,.86,1.81,.79,.18,.64,1.38,1.98,.65,.65,.09,3.67,5.14,5.14,2.62,1.91,2.57],["Botswana",21.64,.33,-1.11,-.36,-.7,-.1,-.26,.24,-.92,-.77,.58,.88,.68,.33,-1.9,1.8,1.41,.3,2.82,.84,.3,.98,1.19,2.32,1.36,1.64,1.68,2.41,.34,1.46,2.44,1.63,.87,2.18,.41,.84,.64,.58,1.6,.89,.87,.83,.24,1.09,2.2],["Cameroon",24.36,.16,-.32,-.6,-.31,.01,.09,.22,.18,.27,-.07,.36,.03,.18,.33,.76,.43,.11,.96,1.1,-.1,.38,.14,.46,.32,.98,1.14,.5,.42,.33,1.02,.57,1.56,1.14,-1.78,.84,.47,.71,3.01,-.46,.62,.93,.3,.55,.96],["Chad",27.71,1.17,.16,.16,.36,.18,.12,-2.14,-2.14,-2.14,-2.14,-2.14,-2.14,-2.14,-2.14,-.52,.86,-.09,1.26,1.18,-.27,.74,1.43,.42,.04,.97,-.09,-1.44,.37,.95,1.15,1.21,1.41,.42,1.9,1.14,.13,1.52,1.98,1.16,.87,1.77,1.53,.86,1.33],["Congo",25.22,.17,-.28,-.45,-.31,.13,.07,.21,.12,.14,-.31,.5,.54,.11,.24,.66,.63,.51,-.1,.26,-.64,-.14,.56,.81,.32,1.27,1.34,.74,.16,.49,1.54,1.67,.73,1.14,.57,.95,.96,1.13,1.28,.91,1.2,.89,.79,1.12,1.37],["Egypt",22.71,-.54,-.06,-.88,.35,-.27,2.35,.56,-.34,.74,-.34,-.55,-.19,1.07,-1.12,-.37,-.2,-.16,-.59,-.19,-.85,-.44,.79,-.03,.46,-.87,.68,1.25,-1.59,.1,.23,.72,.71,-.01,.91,.68,.93,.79,2.17,.14,.57,-.01,1.56,1.43,1.1],["Ethiopia",19.63,.43,-.53,-.37,-.21,-.04,-.12,-.07,.41,-.18,.28,.42,-.16,-.72,.11,.59,.45,-1.68,.52,.86,.96,1.11,-.24,.79,.31,.8,.73,.86,1.22,.17,4.5,4.5,4.5,-5.07,.97,-1.89,-2.05,1.61,1.18,2.43,1.51,1.88,1.49,1.84,1.54],["Ghana",26.71,-.01,-1.01,-.19,-.91,.42,.07,.22,1.24,.74,-2.58,-2.58,-2.58,-2.58,.01,1.98,-.77,-.39,.21,.54,.48,.11,.94,1.69,-.23,.44,1.02,.97,.15,2.47,1.91,.78,1.11,.8,1.92,1.58,.65,.87,1.23,.7,.88,1.52,.19,.84,1.36],["Kenya",23.06,-2.26,-.79,-.14,.35,.21,.08,.27,.46,.28,.5,.48,.23,.14,.27,.77,.74,.13,.31,.39,.44,.06,.43,.47,.36,.63,1.03,.38,.67,.54,.87,.83,.92,.98,.99,.91,.83,1.23,1.19,1.18,.93,.94,1.07,1.44,1.24],["Libya",21.54,-.77,.08,1.01,-.04,-.41,.47,1.54,-.86,.23,.2,-1.32,-.53,.28,-1.55,-.13,.63,.08,.32,-.83,-.55,.52,-.47,.26,1.73,.42,.98,.55,-.17,.49,-1.42,.04,2.46,1.01,.23,.75,.72,.57,1.13,-7.21,3.03,1.2,-1.33,1.39,-.68],["Madagascar",24.01,.71,-.82,-.57,.35,.91,-.26,-.07,-.72,.14,-.01,.51,-.28,.37,.04,.6,.46,.12,.51,.04,-.72,-.28,.37,.7,.26,.66,.87,.59,.62,.53,.75,.81,.97,.48,.88,.73,.33,.07,1.13,1.34,.73,.78,.76,.69,.68],["Mali",28.39,-.03,-.84,-.41,-.39,.07,.01,.14,1.04,.33,-.34,.22,.78,-.44,-.98,.7,-.48,.5,.83,1.09,.19,.55,-.06,.56,.36,.91,1.13,.83,.37,.82,1.89,.88,1.33,1.09,.76,1.44,.48,.73,1.58,1.43,.86,.37,.56,1.22,1.26],["Mauritania",27.57,-.18,-1.05,-.61,-1.07,.14,-.21,.44,0,.72,.07,1.24,.17,.32,-.48,1.36,.54,.31,.58,-.08,.56,.26,-.91,.17,.84,-.02,1.15,-1.02,.4,.44,.48,.86,.78,.22,1.12,-1.03,1.56,1.13,2.14,1.52,.51,1.93,.71,1.43,1.63],["Morocco",17.58,-.47,-.62,-.29,-.57,-.4,-.08,.72,.55,.29,.22,.64,.21,.58,.55,1.36,.45,.62,.89,-.09,.11,-.12,.63,1.44,.93,1.54,1.39,.87,1.17,1.57,1.21,1.47,1.36,1.41,1.99,1.03,1.02,2.15,2.06,1.76,1.55,1.08,1.42,1.35,1.97],["Mozambique",23.62,.02,-.46,-.59,.22,.17,.22,.22,.07,-.29,-.17,.64,.25,0,-.08,.38,.16,.56,.31,.46,.86,.41,-.3,.95,.63,-.31,.49,-.23,1.36,.33,.49,.92,.94,1.18,.65,1.53,.97,.79,1.86,3.11,.17,-.58,.23,1.09,1.44],["Namibia",20.84,-.18,-1.9,-.91,-1.88,-.71,-1.07,-.24,.61,-.33,1.13,.71,1.62,.12,-.29,.68,.63,-.36,.41,-1.41,.67,.4,.44,.28,.43,.24,1.04,.64,.56,.01,1.26,1.96,1.12,1.05,-.09,-.25,1.42,.59,1.02,-.66,.66,1.24,.87,2.64,1.88],["Niger",28.41,.65,-.49,-.29,0,-.57,.04,.36,-.38,-.07,.53,.19,-.16,.28,.37,.46,-.12,-.73,.78,-.48,-.09,.5,-.7,.21,.33,-.44,1.65,-1.01,-.82,.14,.97,.48,.77,1.44,1.45,.61,.17,1.22,1.31,1.02,.66,1.23,.94,.71,1.27],["Nigeria",26.35,0,-.73,-.05,1.29,.65,-1.35,-.55,.22,.15,.15,.15,.15,.15,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,1.52,.73,1.87,.66,.19,.51,.37,1.01,-.05,1.91,.23,1.36,1.59,1.55,.74,1.38,1.72,1.46,1.53],["South Africa",17.03,-.29,-.54,.45,-.05,.03,-.53,-.21,.31,-.73,-.19,.74,.79,1.51,.36,.96,.35,.44,2.13,-.26,1.02,1.31,.47,1.36,.42,.02,.5,1.83,.71,.31,1.28,1.45,1.57,1.11,1.08,.51,.58,.86,1.29,.56,1.16,1.59,.97,1.63,1.73],["Tanzania",24.09,-.58,-.93,.12,.28,.41,-.58,-.18,.26,.21,.56,.19,-.41,-.59,-.18,.25,.34,.16,-.52,.19,-.39,-.39,1.93,1.99,2.96,1.89,1.93,2.42,-.16,-.79,.53,1.06,.57,1.11,1.01,.79,.12,.72,1.02,.57,.62,.44,.38,.43,.51],["Tunisia",18.81,.07,-.68,-.31,-.92,.28,-.22,.15,-.46,.21,1.46,.41,-.21,.51,.76,1.13,1.01,.34,1.02,-.38,0,.53,1.86,1.1,.74,1.48,1.14,2.43,1.64,2.48,1.56,2.47,.9,2.38,2.1,1.86,2.04,2.08,1.82,1.6,2.61,1.71,2.36,2.29,2.36],["Zambia",21.76,3.24,-3.41,1.78,-.2,-.06,-3.73,1.24,-1.18,-1.47,1.4,2.4,.78,.65,-.65,1.28,.35,-.7,.44,-.51,-.28,-3.03,.08,.25,1.94,-2.09,4.19,1.19,-1.39,2.88,1.77,.54,-.14,3.77,-1.06,1.69,.24,.72,2.36,3.51,.63,1.03,1.08,1.81,4.54],["Zimbabwe",19.03,.15,-.56,-.41,-.39,.21,-.18,.06,-.16,-.31,.27,1.32,.43,-.03,.14,1.04,.21,.07,.68,.45,.91,-.18,.3,.87,.12,-.25,.61,-.42,-.36,.39,.77,.48,.37,1.07,.32,.42,.94,.47,.61,1.61,.34,.2,.56,.7,1.42]],AMERICA:[["Argentina",17.19,-1.68,-.6,-.49,.73,-.41,1.13,-.53,-.19,-.29,2.62,-.62,-1.66,-1.17,-.91,-.73,-.47,-.09,-.35,-.64,-.86,-.61,-.07,-.58,-.39,-.38,.16,-.42,-.87,.25,-.21,-.17,.33,-.01,.19,-.3,-.05,.65,.06,.22,.66,.29,.31,.27,-.53],["Belize",26.31,-.53,-.4,-1.28,.14,-.47,-.68,.87,.77,.36,.42,.79,-.91,.84,.56,.09,.58,.11,.38,.38,.34,.21,.61,-1.36,.67,1.13,1.12,-.09,.11,.58,.94,.92,.5,1.14,.84,.98,.68,.78,.75,.68,.47,.95,.66,1.19,1.23],["Bolivia",21.84,-2.32,-1.07,-1.07,2.28,-.61,-.92,-.14,-.33,.57,1.18,-.22,.23,-.44,.34,1.07,.34,.12,.38,.59,-.09,.57,1.07,1.14,.43,.42,-.82,-.23,.39,.92,1.49,1.04,.86,1.04,1.27,.69,.81,1.79,.84,.53,2.75,2.11,1.52,1.68,2.01],["Brazil",25.75,.43,-1.64,-.21,.72,.73,.14,-1.11,.01,-.41,1.15,.39,.25,.32,.75,.36,.23,.35,.55,.37,.59,.57,.58,.99,.53,.29,.46,.64,.68,.73,.37,.23,-1.12,.39,-.63,.44,-.03,-.18,.34,.26,.16,.68,-1.71,-2.25,-.23],["Canada",3.37,.29,-.05,-.65,.04,.34,-.82,-.21,-.02,1.24,-.92,.62,.31,-.33,.53,1.84,1.11,.46,.9,1.21,-1.33,.51,.06,.03,-.78,.31,1.57,.73,-.14,.72,-.45,.08,-.28,.54,1.04,.12,-.32,-.44,1.03,.04,.63,-.19,-.31,.67,1.03],["Chile",13.37,-.54,-.44,-.69,-.35,.34,.05,.03,.25,.26,.32,1.14,.56,1.92,.5,1,.74,.94,.98,.66,1.19,.61,.67,.29,.42,1.16,1.33,.04,-.37,1.08,.61,1.05,1.53,2.13,2.56,1.22,2.06,2.06,1.2,1.04,1.56,1.28,1,1.74,1.76],["Colombia",25.89,1.04,-.03,-.28,.24,-.21,-.36,-.21,-.1,-.25,-.35,.51,-.73,-.62,-.81,-.47,-.56,-2.44,-.48,-.48,-.32,-.31,-.43,-.36,-.51,.08,.26,-1.09,-1.03,-.31,-.26,-.03,-.45,.01,-.58,-.48,-.66,-3.99,.06,-.17,.12,.27,.42,.83,.62],["Costa Rica",24.8,1.47,.89,.9,-.58,-.42,-.34,-.36,-.12,-.33,.05,.49,.22,.3,.32,1.06,.5,.24,.61,.83,.6,.6,.67,.72,.41,1.18,1.19,.17,.59,.98,1.02,1.07,.72,.55,.73,.86,.63,1.16,1.12,.46,.79,1.07,1.21,1.51,1.16],["Cuba",26.64,-.24,-.6,-.09,-.64,-.15,-.45,.06,.28,.23,.38,1.22,.84,.93,.91,1.6,1.46,1.12,1.52,1.54,1.16,.77,1.41,.83,.06,.37,.42,-.55,-.65,-.02,.12,.44,-.29,-.22,.02,0,-.28,.12,.07,-.27,-.12,-.73,.67,1.81,1.19],["Greenland",-5.08,-1.37,-2.73,-3.02,1.58,1.73,1.53,2.04,2.67,.01,.05,-1.31,-.49,1.59,.69,.12,1.03,-.87,.25,.48,.34,0,.62,1.76,2.58,2.03,1.88,.06,1.74,1.63,1.44,2.53,1.86,2.32,1.66,1.71,1.52,1.59,2.81,1.11,.68,.88,1.44,1.14,2.75],["Jamaica",26.98,.33,-.43,-.37,-.11,.34,.04,-.25,.12,-.02,-.08,.42,-.17,-.21,-.06,.55,.44,.24,.43,.49,.64,.75,.85,.94,.62,1.11,1.19,.59,.57,.86,.97,1.02,.93,1.04,.94,.91,.21,1.16,.84,.31,.97,1.14,1.31,1.41,1.32],["Mexico",21.24,-.5,1.04,.06,-1.08,-.12,.12,-.27,.08,.27,-.02,.03,-.63,-.54,-.48,-.49,-.14,.78,.71,.8,.58,.75,1.27,.88,1.04,.29,1.94,-1.11,1.34,1.16,1.17,1.67,1.24,1.29,1.76,1.39,1.08,1.79,1.17,1.95,1.63,1.6,1.64,1.96,2.07],["Paraguay",22.78,1.06,-.46,-2.44,.09,1.63,-1.56,-1.71,-1.65,3.02,1.26,.24,-1.73,2.62,3.78,-.06,1.05,.57,.31,1.39,-.05,1.49,1.8,1.77,.87,2.48,.23,.5,.9,1.33,2.05,1.98,.79,1.88,2.24,1.49,1.16,1.46,.94,2.02,2.04,1.34,2.11,1.68,.82],["Peru",20.42,-.07,-.42,-.68,.01,-.09,-.12,.06,.16,-.52,.07,1.72,.09,-.17,.18,.73,-.11,.22,.21,.78,2.39,.96,.96,.88,.34,1.9,1.99,.08,.43,.25,.63,.16,1.17,.32,.88,-.21,.19,.43,.48,-.02,.42,.49,1.06,1.32,1.43],["Uruguay",18,-.42,-.45,-2.36,-2.33,3.59,-1.29,-.57,-.39,.41,1.18,-.13,4.28,-1.37,1.24,-.15,-.38,.67,.29,.54,.36,.31,.56,.39,.16,1.86,-.26,-.22,0,.49,.48,.06,.64,.88,1.11,-.77,1.11,1.46,.19,.09,1.2,.59,.59,.6,-.76]],ASIA:[["Armenia",9.14,-2.47,-5.54,2.91,-9.13,-3.98,1.3,1.79,4.56,2.72,-.64,-6.61,-2.99,-.93,-1.88,-1.64,-2.48,.19,-.03,.23,-5.73,-5.01,-3.64,-3.24,-3.11,-3.73,-3.69,-4.82,-7.09,-6.27,-6.48,-3.68,-.06,-7.24,-1.48,-1.65,-3.22,-3.04,-.34,-3.41,-1.92,-2.47,-4.29,.52,.26],["Bangladesh",24.84,0,0,0,0,-.34,2.28,.68,-.08,-1.43,-.16,.02,.08,.75,.44,.3,.23,.57,.71,.72,1.05,.69,.39,.72,-.07,-4.22,2.03,2.57,.93,3.94,1.04,4.21,2.68,.63,1.08,2.64,1.63,-.26,2.41,2.42,3.28,-4.2,1.99,1.44,1.65],["Burma",25.69,-.13,.29,-.57,-.67,.08,-.53,-.38,.47,-.58,.03,1.46,.12,.46,2.83,-.25,-1.51,-1.79,.1,.49,-.76,.63,1.2,.84,1.38,-.34,2.09,1.39,.89,1.02,1.14,.22,.67,1.26,1.56,.99,.73,1.33,1.45,.62,.64,.94,1.16,.9,.44],["China",9.47,.16,-.31,.38,-.59,-.11,.13,.04,-.24,.04,.34,.18,-.5,-.34,-.13,.29,.29,.42,.65,.42,.18,.17,.78,.59,.21,.67,1.46,1.07,.51,.88,1.11,.91,1.01,.73,1.34,1.47,.96,1.09,.88,.68,.52,.01,1.06,.81,-.18],["Georgia",12.99,-1.18,-3.01,.21,-.1,.41,.09,.84,1.76,-.25,.63,-.78,-5.57,.06,-3.45,1.1,-1.41,-4.07,0,1.69,1.23,-.86,5.93,-.06,3.27,-1.46,-3.82,.44,.44,2.17,2.08,.88,1.77,.89,.57,-1.65,-1.06,.08,1.46,-.01,.46,-.38,.72,-.58,-.94],["India",25.69,-.61,-.42,-.46,-.24,.16,.42,1.16,.36,.06,.14,-.48,.33,.37,-.54,.39,.64,-.32,-.61,.21,-.05,.23,.27,.27,.35,-.18,.87,.46,.27,.53,.75,.59,.59,-.07,1.03,.48,.47,.56,.86,.7,.94,.81,.86,-1.73,-.16],["Indonesia",26.99,0,0,0,-.58,-.58,-.58,.09,.08,-.07,-1.54,-.33,-.17,-.23,-.04,.36,.18,-.09,.01,.06,.08,-.01,-.07,-.04,-.04,-.03,.54,-.12,-.05,.07,.34,.4,.36,.48,.24,.27,.11,.44,.55,.21,.34,.66,.56,.58,.98],["Iran",18.84,.63,-1.68,.51,.62,-.42,2.31,-1.14,1.49,-2.98,-4.29,-3.54,-3.54,-3.43,-3.66,-2.66,-2.81,-7.02,2.66,.42,-5.14,-1.31,-3.86,-.69,-1.86,-3.81,-.93,-3.07,.84,.64,.53,-5.54,1.75,-.71,.84,.03,.79,-.36,.93,.11,.81,.42,.77,1.73,1.46],["Iraq",24.27,.66,-1.69,-1.54,-.46,-1.32,.49,1.84,2.03,2.03,2.03,2.03,2.03,2.03,2.03,2.03,-10.73,-.43,.4,.4,.4,.4,.4,.4,.4,.4,.4,.4,.4,.4,.4,.4,.4,.4,.4,.4,.4,-7.47,2.85,2.85,2.85,-13.1,1.82,2.41,2.29],["Israel",19.88,.09,-.09,-.17,-.19,-.01,.17,.72,.22,.14,-.43,-.46,-.12,.36,.03,.07,.11,-.02,.46,.63,-.05,1.22,1.53,1.05,1.52,.76,1.9,1.6,.72,1.45,1.38,1.32,1.11,1.01,.93,1.25,2.14,1.68,3.17,1.06,1.88,2.01,1.67,1.76,2.42],["Japan",13.93,.16,-.48,.1,-.41,.17,.36,.68,-.27,-.48,.11,.07,-.45,.18,-.39,.46,-.11,.71,4.79,3.9,2.53,1.51,1.77,.71,.47,1.06,1.86,1.51,1.3,-.01,1.23,.91,1.5,.63,1.39,1.51,1.34,1.4,2.04,1.19,1.19,1.37,1.22,1.67,1.97],["Kazakhstan",6.55,1.08,-2.06,1.07,-.53,.33,.97,.25,-1.56,.95,-.45,-.04,-2.54,-.24,.18,-.83,1.68,1.71,1.96,.79,.51,-1.71,-.03,1.37,-1.89,1.54,.41,1.81,.36,1.8,2.04,.49,2.14,2.62,2.18,2.08,2.01,1.14,1.97,.26,1.11,2.77,.63,2.2,2.41],["Korea, South",9.08,.27,-.55,.25,-.49,.42,.36,.7,-.72,-.44,.21,-.01,-1.59,-.49,-.76,-.15,-.27,.51,.32,-.03,.39,-.15,.59,-.21,-.48,.08,1.37,1.92,.78,.65,-.07,.07,.79,.53,.32,3.63,.76,.69,.42,-.04,-.27,.02,1.36,-.72,.59],["Kyrgyzstan",5.98,2.12,-3.32,-.95,-.74,.2,-.36,.72,.54,.48,.13,-.15,-.32,.49,-.29,-.99,.03,-.17,1.56,1.09,.26,.1,.88,.88,-.11,1.8,3.54,2.82,2.64,1.01,2.86,1.84,2.84,3.44,3.84,3.31,2.43,2.25,2.94,2.64,2.29,2.97,1.86,2.92,3.66],["Laos",25.89,.68,-1.89,.11,.11,7.11,7.11,-1.86,.95,.56,-.94,.96,1.01,1.01,1.01,1.01,1.01,1.01,1.01,1.01,1.01,2.93,2.93,.61,.61,.61,.61,.61,.61,.61,.61,1.54,1.18,.69,1.29,1,.29,.86,1.26,.28,1.56,1.27,1.23,1.59,1.76],["Lebanon",18.93,.52,-.37,-.26,-3.99,.69,1.78,1.37,-.04,-1.32,-2.48,1.7,1.34,2.04,6.72,8.87,8.87,8.87,8.87,4.92,4.38,2.46,3.64,.26,.72,-.1,1.33,.92,.67,1.16,.46,1.16,-3.93,.02,.21,.28,1.6,.99,1.74,.63,1.3,1.32,1.04,1.84,2.37],["Malaysia",27.4,-.19,-.53,-.49,-.47,-.19,.04,.02,.29,.03,.24,.39,-.34,-.02,.02,.28,.14,-.1,.26,.21,.14,.07,.14,.22,.14,.46,1.02,.17,.33,.41,.64,.41,.4,.39,.38,.31,.13,.39,.58,.35,.47,.86,-.42,.94,1.07],["Mongolia",-.23,1.04,-1.12,1.12,-1.46,-1.56,1.74,1.64,.31,.17,2,-2.59,-1.07,-1.11,-.17,-.34,-.3,.68,.79,-.14,-3.86,-.03,-.01,.48,-.78,1.16,1.52,1.68,.52,1.12,1.18,.24,1.14,-.86,.8,2.32,1.18,.44,.2,-.26,-.86,.41,.96,1.51,.51],["Nepal",17.82,.06,.08,-.06,-1.51,-.32,-.13,.81,.04,-.04,.33,.78,.01,.47,.12,.26,.2,.43,.39,-.29,.16,1.69,.39,.39,2.21,-1.18,2.93,2.59,-.13,-1.07,-.02,6.07,4.28,.43,.43,4.98,5.73,5.73,5.73,5.73,3.63,-4.62,2.22,2.13,2.67],["Oman",25.27,4.23,4.23,4.23,4.23,4.23,.56,3.73,-4.27,2.48,.6,-.91,.46,-1.18,-1.01,3.12,2.73,1.04,1.77,.44,-1.57,2.23,1.92,1.34,.2,1.29,2.28,.01,1.42,.63,-1.12,2.27,1.88,1.91,2.68,2.18,1.68,3.67,3.64,2.48,2.82,3.09,2.02,2.81,2.74],["Pakistan",22.13,-3.44,2.88,1.14,.08,.15,-.63,.64,.38,.64,-1.41,-.18,.97,1.24,-.38,-1.08,-2.81,.51,1.68,.6,-.94,1.14,.26,1.24,.31,.06,2.53,3.18,-.65,.92,.02,5.79,3.63,-.4,1.08,.98,.98,.94,1.69,1.4,.58,-4.67,1.16,.94,-2.29],["Philippines",27.06,.3,-.04,.11,-.04,.31,.26,-.02,-.3,-.25,-.06,.22,-.03,-.25,-.24,.34,.26,.03,.24,-.02,.06,.14,.02,-.23,-.08,-.09,.72,-.16,.15,.15,.16,.01,-.22,-.09,.29,.14,-.08,-.04,.33,-.31,.04,.08,-.07,.06,.53],["Saudi Arabia",23.51,-.09,.42,-.72,.48,-1.51,.21,1.17,.57,.49,-1.05,-.01,.54,1.22,.99,1.12,1.26,.64,.96,1.19,-.49,1.34,1.54,1.13,1.61,.99,2.15,1.94,1.59,1.86,1.81,2.07,1.7,1.52,2.11,2.05,1.92,2.03,2.83,1.97,2.36,-1.03,5.43,3.82,2.27],["Syria",18.33,.93,-1.56,-.47,-.18,.12,.38,.63,-1.04,.63,.26,.31,.16,-.09,.21,.02,.65,1.54,-.39,-.09,-1.18,-.42,.89,.23,.62,.27,1.86,.56,.58,.69,.68,1.87,.09,1.46,1.84,-.73,.88,-.11,3.17,.68,1.51,3.43,-.6,3.13,1.96],["Thailand",27.27,.03,-.43,-.27,-.44,.01,.19,.5,.4,-.16,.01,.21,-.74,.04,.01,.57,.28,.32,.63,.68,.47,.37,.44,.58,.29,.72,1.37,.27,.38,.73,.84,.67,.67,.72,.79,.65,.39,.72,1.38,.34,1.22,.98,1.01,1.4,1.58],["Turkey",13.63,-.26,-.89,-2.68,.54,1.04,.79,.99,.63,1.4,.29,-.52,-.06,.14,.09,-.4,.04,.33,.47,.24,-.87,-.33,1.29,.48,.77,-.2,1.19,1.27,.31,1.7,.68,1.49,.59,.38,.91,1.87,1.12,1.49,2.94,.57,1.61,2.14,2.77,2.43,-3.67],["Turkmenistan",16.18,1.9,-2.76,.29,-.89,.08,-.49,.56,1.3,.68,-.73,.08,-.57,.99,.43,-.29,-.23,.8,1.74,.88,.38,.11,.9,1.53,.54,1.31,1.78,2.12,2.05,2.49,2.33,2.06,2.53,3.4,2.97,1.17,1.55,2.25,2.82,1.82,2.37,2.61,1.69,3.1,3.21],["United Arab Emirates",27.37,0,0,0,0,-4.97,.22,5.47,-.12,1.13,-.57,-.39,-.66,-.07,.18,-.23,.26,-.56,.42,-.54,-.13,.44,1.15,.02,.89,.13,2.84,2.95,-1,.54,1.23,1.16,2.54,2.19,1.71,-.89,1.11,1.92,1.25,1.82,2.08,.71,1.69,1.51,2.39],["Vietnam",25.36,1.97,-.97,.52,-.05,.17,.38,-2.68,-2.68,-2.68,1.51,.83,1.3,.97,.99,1.99,1.77,.93,1.23,1.28,.19,.54,.48,.26,.08,.12,1.03,.22,.12,.24,.42,.73,.05,.11,.53,.24,-.14,.41,.76,-.47,.45,.29,.31,-1.95,1.08]],OCEANIA:[["Australia",18.38,.36,-.34,-.14,-.48,-.08,-.34,.3,.57,.12,-.11,.1,-.62,-.21,-.44,-.13,.56,-.31,-.26,-.18,-.66,-.38,-.44,-.61,-.59,-.35,-.11,-.29,-.29,-.21,.19,.11,-.02,.28,-.06,.26,-.21,.41,.01,-.18,-.18,.56,.48,.27,.41],["Fiji",26.11,0,0,0,1.39,1.39,1.39,-1.22,.79,-.77,-.77,-.77,1.39,1.39,1.39,-1.72,1.27,-.96,-.66,-.39,.97,-1.45,-1.12,-.58,-.54,-.82,.27,.12,.58,.17,.71,.07,.19,.21,.11,.51,.04,-.41,.42,.42,.18,.38,.19,-.02,.45],["French Polynesia",25.11,0,0,0,1.14,1.14,1.14,-.19,.03,-.3,-.33,-.19,-.15,-.01,-.06,-.08,.13,-.04,.11,-.06,.26,.09,-.02,.27,-.05,.06,.23,.34,.24,.22,.55,.36,.28,.19,.48,.32,.07,.51,.29,.22,-.09,.01,-.05,.37,.45],["New Zealand",12.39,.27,.47,.43,-.27,-.31,.44,-.16,-.18,.08,-.28,-.36,.32,.29,.27,.35,.41,.63,.57,-.2,-.59,-.37,-.71,.26,.28,-.06,.96,.91,.52,.65,.69,.47,.04,.84,.01,.26,.34,-.26,.53,.21,.62,1.62,.79,.37,.64],["Tuvalu",26.37,0,0,0,0,0,0,-.92,-1.87,-.87,1.73,1.49,1.63,1.85,2.03,1.65,1.62,1.57,1.94,2.03,1.86,1.77,2.3,1.86,1.52,1.52,1.54,1.73,2.09,2.23,2.33,2.38,2.21,2.32,2.35,2.23,1.86,2.23,2.03,2.12,1.77,2.38,2.34,2.36,2.64]]};a.numberFormatter.set("numberFormat","+#.0°C|#.0°C|0.0°C");var l=1973,n=1995,i=(document.getElementById("chartdiv"),am5.ColorSet.new(a,{})),o=a.container.children.push(am5radar.RadarChart.new(a,{panX:!1,panY:!1,wheelX:"panX",wheelY:"zoomX",innerRadius:am5.percent(40),radius:am5.percent(65),startAngle:100,endAngle:440}));o.set("cursor",am5radar.RadarCursor.new(a,{behavior:"zoomX",radius:am5.percent(40),innerRadius:-25})).lineY.set("visible",!1);var s=am5radar.AxisRendererCircular.new(a,{minGridDistance:10});s.labels.template.setAll({radius:10,textType:"radial",centerY:am5.p50,fill:e});var m=am5radar.AxisRendererRadial.new(a,{axisAngle:90});m.labels.template.setAll({centerX:am5.p50,fill:e});var c=o.xAxes.push(am5xy.CategoryAxis.new(a,{maxDeviation:0,categoryField:"country",renderer:s})),u=o.yAxes.push(am5xy.ValueAxis.new(a,{min:-3,max:6,extraMax:.1,renderer:m})),d=o.series.push(am5radar.RadarColumnSeries.new(a,{calculateAggregates:!0,name:"Series",xAxis:c,yAxis:u,valueYField:"value"+n,categoryXField:"country",tooltip:am5.Tooltip.new(a,{labelText:"{categoryX}: {valueY}"})}));d.columns.template.set("strokeOpacity",0),d.set("heatRules",[{target:d.columns.template,key:"fill",min:am5.color(6765239),max:am5.color(16007990),dataField:"valueY"}]),o.set("scrollbarX",am5.Scrollbar.new(a,{orientation:"horizontal"})),o.set("scrollbarY",am5.Scrollbar.new(a,{orientation:"vertical"}));var p=o.radarContainer.children.push(am5.Label.new(a,{fontSize:"2em",text:n.toString(),centerX:am5.p50,centerY:am5.p50,fill:am5.color(6765239)})),g=function(){var e=[],a=0;for(var t in r){var n=r[t];n.forEach((function(a){for(var t={country:a[0]},r=2;r=.99?h.set("rotation",180):e<=.01&&h.set("rotation",0)})),o.appear(1e3,100)})),am5.ready((function(){var e=am5.Root.new("kt_amcharts_3");e.setThemes([am5themes_Animated.new(e)]);var t=e.container.children.push(am5map.MapChart.new(e,{panX:"rotateX",panY:"rotateY",projection:am5map.geoOrthographic(),paddingBottom:20,paddingTop:20,paddingLeft:20,paddingRight:20})),a=t.series.push(am5map.MapPolygonSeries.new(e,{geoJSON:am5geodata_worldLow}));a.mapPolygons.template.setAll({tooltipText:"{name}",toggleKey:"active",interactive:!0}),a.mapPolygons.template.states.create("hover",{fill:e.interfaceColors.get("primaryButtonHover")});var o=t.series.push(am5map.MapPolygonSeries.new(e,{}));o.mapPolygons.template.setAll({fill:e.interfaceColors.get("alternativeBackground"),fillOpacity:.1,strokeOpacity:0}),o.data.push({geometry:am5map.getGeoRectangle(90,180,-90,-180)}),t.series.push(am5map.GraticuleSeries.new(e,{})).mapLines.template.setAll({strokeOpacity:.1,stroke:e.interfaceColors.get("alternativeBackground")}),t.animate({key:"rotationX",from:0,to:360,duration:3e4,loops:1/0}),t.appear(1e3,100)})),am5.ready((function(){var t=am5.Root.new("kt_amcharts_4");t.setThemes([am5themes_Animated.new(t)]);var a=t.container.children.push(am5map.MapChart.new(t,{panX:"translateX",panY:"translateY",projection:am5map.geoMercator()})),o=am5.ColorSet.new(t,{}),n=a.series.push(am5map.MapPolygonSeries.new(t,{geoJSON:am5geodata_worldTimeZoneAreasLow})),r=n.mapPolygons.template;r.setAll({fillOpacity:.6}),r.adapters.add("fill",(function(e,t){return am5.Color.saturate(o.getIndex(n.mapPolygons.indexOf(t)),.5)})),r.states.create("hover",{fillOpacity:.8});var l=a.series.push(am5map.MapPolygonSeries.new(t,{geoJSON:am5geodata_worldTimeZonesLow}));l.mapPolygons.template.setAll({fill:am5.color(0),fillOpacity:.08});var i=l.mapPolygons.template;i.setAll({interactive:!0,tooltipText:"{id}"}),i.states.create("hover",{fillOpacity:.3});var s=a.series.push(am5map.MapPointSeries.new(t,{}));s.bullets.push((()=>am5.Bullet.new(t,{sprite:am5.Label.new(t,{text:"{id}",populateText:!0,centerX:am5.p50,centerY:am5.p50,fontSize:"0.7em",fill:e})}))),l.events.on("datavalidated",(()=>{am5.array.each(l.dataItems,(e=>{var t=e.get("mapPolygon").visualCentroid();s.pushDataItem({id:e.get("id"),geometry:{type:"Point",coordinates:[t.longitude,t.latitude]}})}))})),a.set("zoomControl",am5map.ZoomControl.new(t,{}));var p=a.children.push(am5.Container.new(t,{layout:t.horizontalLayout,x:20,y:40}));p.children.push(am5.Label.new(t,{centerY:am5.p50,text:"Map",fill:e}));var m=p.children.push(am5.Button.new(t,{themeTags:["switch"],centerY:am5.p50,icon:am5.Circle.new(t,{themeTags:["icon"]})}));m.on("active",(function(){m.get("active")?(a.set("projection",am5map.geoOrthographic()),a.set("panX","rotateX"),a.set("panY","rotateY")):(a.set("projection",am5map.geoMercator()),a.set("panX","translateX"),a.set("panY","translateY"))})),p.children.push(am5.Label.new(t,{centerY:am5.p50,text:"Globe",fill:e})),a.appear(1e3,100)}))}}}();KTUtil.onDOMContentLoaded((function(){KTGeneralAmChartsMaps.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/charts/amcharts/stock-charts.js b/Mid-term/public/assets/js/custom/documentation/charts/amcharts/stock-charts.js new file mode 100644 index 000000000..97f4c57a4 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/charts/amcharts/stock-charts.js @@ -0,0 +1 @@ +"use strict";var KTGeneralAmChartsStock=function(){const e=getComputedStyle(document.documentElement).getPropertyValue("--bs-body-color"),a=getComputedStyle(document.documentElement).getPropertyValue("--bs-body-bg");return{init:function(){am5.ready((function(){var t=am5.Root.new("kt_amcharts_1");t.setThemes([am5themes_Animated.new(t)]);var l=t.container.children.push(am5xy.XYChart.new(t,{panX:!0,panY:!1,wheelX:"panX",wheelY:"zoomX",layout:t.verticalLayout}));l.get("colors").set("step",2);var r=am5xy.AxisRendererY.new(t,{opposite:!0});r.labels.template.setAll({centerY:am5.percent(100),maxPosition:.98,fill:e});var n=l.yAxes.push(am5xy.ValueAxis.new(t,{renderer:r,height:am5.percent(30),layer:5}));n.axisHeader.set("paddingTop",10),n.axisHeader.children.push(am5.Label.new(t,{text:"Volume",fontWeight:"bold",paddingTop:5,paddingBottom:5}));var i=am5xy.AxisRendererY.new(t,{opposite:!0,pan:"zoom"});i.labels.template.setAll({centerY:am5.percent(100),maxPosition:.98,fill:e});var o=l.yAxes.push(am5xy.ValueAxis.new(t,{renderer:i,height:am5.percent(70),maxDeviation:1}));o.axisHeader.children.push(am5.Label.new(t,{text:"Value",fontWeight:"bold",paddingBottom:5,paddingTop:5}));var s=am5xy.AxisRendererX.new(t,{pan:"zoom"});s.labels.template.setAll({minPosition:.01,maxPosition:.99,fill:e});var m=l.xAxes.push(am5xy.DateAxis.new(t,{groupData:!0,maxDeviation:.5,baseInterval:{timeUnit:"day",count:1},renderer:s}));m.set("tooltip",am5.Tooltip.new(t,{}));var u=l.series.push(am5xy.LineSeries.new(t,{name:"XTD",valueYField:"price1",calculateAggregates:!0,valueXField:"date",xAxis:m,yAxis:o,legendValueText:"{valueY}"}));u.set("tooltip",am5.Tooltip.new(t,{getFillFromSprite:!1,getStrokeFromSprite:!0,getLabelFillFromSprite:!0,autoTextColor:!1,pointerOrientation:"horizontal",labelText:"{name}: {valueY} {valueYChangePercent.formatNumber('[#00ff00]+#,###.##|[#ff0000]#,###.##|[#999999]0')}%"})).get("background").set("fill",a);var d=l.get("colors").getIndex(0),p=l.series.push(am5xy.ColumnSeries.new(t,{name:"XTD",fill:d,stroke:d,valueYField:"quantity",valueXField:"date",valueYGrouped:"sum",xAxis:m,yAxis:n,legendValueText:"{valueY}",tooltip:am5.Tooltip.new(t,{labelText:"{valueY}"})}));p.columns.template.setAll({strokeWidth:.2,strokeOpacity:1,stroke:am5.color(16777215)}),o.axisHeader.children.push(am5.Legend.new(t,{useDefaultMarker:!0})).data.setAll([u]),n.axisHeader.children.push(am5.Legend.new(t,{useDefaultMarker:!0})).data.setAll([p]),l.rightAxesContainer.set("layout",t.verticalLayout),l.set("cursor",am5xy.XYCursor.new(t,{}));var x=l.set("scrollbarX",am5xy.XYChartScrollbar.new(t,{orientation:"horizontal",height:50})),h=x.chart.xAxes.push(am5xy.DateAxis.new(t,{groupData:!0,groupIntervals:[{timeUnit:"week",count:1}],baseInterval:{timeUnit:"day",count:1},renderer:am5xy.AxisRendererX.new(t,{})})),c=x.chart.yAxes.push(am5xy.ValueAxis.new(t,{renderer:am5xy.AxisRendererY.new(t,{})})),y=x.chart.series.push(am5xy.LineSeries.new(t,{valueYField:"price1",valueXField:"date",xAxis:h,yAxis:c}));y.fills.template.setAll({visible:!0,fillOpacity:.3});for(var g=[],A=1e3,v=1e4,w=1;w<5e3;w++)(A+=Math.round((Math.random()<.5?1:-1)*Math.random()*20))<100&&(A=100),(v+=Math.round((Math.random()<.5?1:-1)*Math.random()*500))<0&&(v*=-1),g.push({date:new Date(2010,0,w).getTime(),price1:A,quantity:v});u.data.setAll(g),p.data.setAll(g),y.data.setAll(g),l.appear(1e3,100)})),am5.ready((function(){var t=am5.Root.new("kt_amcharts_2");t.setThemes([am5themes_Animated.new(t)]);var l=t.container.children.push(am5xy.XYChart.new(t,{panX:!0,panY:!1,wheelX:"panX",wheelY:"zoomX",layout:t.verticalLayout}));l.get("colors").set("step",2);var r=am5xy.AxisRendererY.new(t,{opposite:!0,pan:"zoom"});r.labels.template.setAll({centerY:am5.percent(100),maxPosition:.98,fill:e});var n=l.yAxes.push(am5xy.ValueAxis.new(t,{renderer:r,maxDeviation:1,extraMin:.2})),i=am5xy.AxisRendererY.new(t,{opposite:!0});i.labels.template.setAll({forceHidden:!0,fill:e}),i.grid.template.setAll({forceHidden:!0});var o=l.yAxes.push(am5xy.ValueAxis.new(t,{renderer:i,height:am5.percent(25),layer:5,centerY:am5.p100,y:am5.p100}));o.axisHeader.set("paddingTop",10);var s=am5xy.AxisRendererX.new(t,{});s.labels.template.setAll({minPosition:.01,maxPosition:.99,fill:e});var m=l.xAxes.push(am5xy.DateAxis.new(t,{groupData:!0,baseInterval:{timeUnit:"day",count:1},renderer:s}));m.set("tooltip",am5.Tooltip.new(t,{themeTags:["axis"]}));var u=l.series.push(am5xy.LineSeries.new(t,{name:"XTD",valueYField:"price1",calculateAggregates:!0,valueYShow:"valueYChangeSelectionPercent",valueXField:"date",xAxis:m,yAxis:n,legendValueText:"{valueY}"})),d=l.series.push(am5xy.LineSeries.new(t,{name:"BTD",valueYField:"price2",calculateAggregates:!0,valueYShow:"valueYChangeSelectionPercent",valueXField:"date",xAxis:m,yAxis:n,legendValueText:"{valueY}"}));u.set("tooltip",am5.Tooltip.new(t,{getFillFromSprite:!1,getStrokeFromSprite:!0,getLabelFillFromSprite:!0,autoTextColor:!1,pointerOrientation:"horizontal",labelText:"{name}: {valueY} {valueYChangePercent.formatNumber('[#00ff00]+#,###.##|[#ff0000]#,###.##|[#999999]0')}%"})).get("background").set("fill",a),d.set("tooltip",am5.Tooltip.new(t,{getFillFromSprite:!1,getStrokeFromSprite:!0,getLabelFillFromSprite:!0,autoTextColor:!1,pointerOrientation:"horizontal",labelText:"{name}: {valueY} {valueYChangePercent.formatNumber('[#00ff00]+#,###.##|[#ff0000]#,###.##|[#999999]0')}%"})).get("background").set("fill",a);var p=l.get("colors").getIndex(0),x=l.series.push(am5xy.ColumnSeries.new(t,{name:"XTD",fill:p,stroke:p,valueYField:"quantity",valueXField:"date",valueYGrouped:"sum",xAxis:m,yAxis:o,legendValueText:"{valueY}",tooltip:am5.Tooltip.new(t,{labelText:"{valueY}"})}));x.columns.template.setAll({width:am5.percent(40),strokeWidth:.2,strokeOpacity:1,stroke:am5.color(16777215)});var h=l.plotContainer.children.push(am5.Legend.new(t,{useDefaultMarker:!0}));h.labels.template.setAll({fill:e}),h.valueLabels.template.setAll({fill:e}),h.data.setAll([u,d]),l.set("cursor",am5xy.XYCursor.new(t,{}));var c=l.set("scrollbarX",am5xy.XYChartScrollbar.new(t,{orientation:"horizontal",height:50})),y=c.chart.xAxes.push(am5xy.DateAxis.new(t,{groupData:!0,groupIntervals:[{timeUnit:"week",count:1}],baseInterval:{timeUnit:"day",count:1},renderer:am5xy.AxisRendererX.new(t,{})})),g=c.chart.yAxes.push(am5xy.ValueAxis.new(t,{renderer:am5xy.AxisRendererY.new(t,{})})),A=c.chart.series.push(am5xy.LineSeries.new(t,{valueYField:"price1",valueXField:"date",xAxis:y,yAxis:g}));A.fills.template.setAll({visible:!0,fillOpacity:.3});for(var v=[],w=1e3,Y=2e3,f=1e4,b=1;b<5e3;b++)(w+=Math.round((Math.random()<.5?1:-1)*Math.random()*20))<100&&(w=100),(Y+=Math.round((Math.random()<.5?1:-1)*Math.random()*20))<100&&(Y=100),(f+=Math.round((Math.random()<.5?1:-1)*Math.random()*500))<0&&(f*=-1),v.push({date:new Date(2010,0,b).getTime(),price1:w,price2:Y,quantity:f});u.data.setAll(v),d.data.setAll(v),x.data.setAll(v),A.data.setAll(v),l.appear(1e3,100)})),am5.ready((function(){var t=am5.Root.new("kt_amcharts_3");t.setThemes([am5themes_Animated.new(t)]);var l=t.container.children.push(am5xy.XYChart.new(t,{panX:!0,panY:!1,wheelX:"panX",wheelY:"zoomX",layout:t.verticalLayout}));l.get("colors").set("step",2);var r=am5xy.AxisRendererY.new(t,{inside:!0});r.labels.template.setAll({centerY:am5.percent(100),maxPosition:.98,fill:e});var n=l.yAxes.push(am5xy.ValueAxis.new(t,{renderer:r,height:am5.percent(70)}));n.axisHeader.children.push(am5.Label.new(t,{text:"Value",fontWeight:"bold",paddingBottom:5,paddingTop:5}));var i=am5xy.AxisRendererY.new(t,{inside:!0});i.labels.template.setAll({centerY:am5.percent(100),maxPosition:.98,fill:e});var o=l.yAxes.push(am5xy.ValueAxis.new(t,{renderer:i,height:am5.percent(30),layer:5,numberFormat:"#a"}));o.axisHeader.set("paddingTop",10),o.axisHeader.children.push(am5.Label.new(t,{text:"Volume",fontWeight:"bold",paddingTop:5,paddingBottom:5}));var s=am5xy.AxisRendererX.new(t,{});s.labels.template.setAll({minPosition:.01,maxPosition:.99,minGridDistance:40,fill:e});var m=l.xAxes.push(am5xy.DateAxis.new(t,{groupData:!0,baseInterval:{timeUnit:"day",count:1},renderer:s}));m.set("tooltip",am5.Tooltip.new(t,{}));var u=a,d=l.series.push(am5xy.CandlestickSeries.new(t,{fill:u,clustered:!1,calculateAggregates:!0,stroke:u,name:"MSFT",xAxis:m,yAxis:n,valueYField:"Close",openValueYField:"Open",lowValueYField:"Low",highValueYField:"High",valueXField:"Date",lowValueYGrouped:"low",highValueYGrouped:"high",openValueYGrouped:"open",valueYGrouped:"close",legendValueText:"open: {openValueY} low: {lowValueY} high: {highValueY} close: {valueY}",legendRangeValueText:"{valueYClose}"}));d.set("tooltip",am5.Tooltip.new(t,{getFillFromSprite:!1,getStrokeFromSprite:!0,getLabelFillFromSprite:!0,autoTextColor:!1,pointerOrientation:"horizontal",labelText:"{name}: {valueY} {valueYChangePreviousPercent.formatNumber('[#00ff00]+#,###.##|[#ff0000]#,###.##|[#999999]0')}%"})).get("background").set("fill",a);var p=l.get("colors").getIndex(0),x=l.series.push(am5xy.ColumnSeries.new(t,{name:"MSFT",clustered:!1,fill:p,stroke:p,valueYField:"Volume",valueXField:"Date",valueYGrouped:"sum",xAxis:m,yAxis:o,legendValueText:"{valueY}",tooltip:am5.Tooltip.new(t,{labelText:"{valueY}"})}));x.columns.template.setAll({}),n.axisHeader.children.push(am5.Legend.new(t,{useDefaultMarker:!0})).data.setAll([d]),o.axisHeader.children.push(am5.Legend.new(t,{useDefaultMarker:!0})).data.setAll([x]),l.leftAxesContainer.set("layout",t.verticalLayout),l.set("cursor",am5xy.XYCursor.new(t,{}));var h=l.set("scrollbarX",am5xy.XYChartScrollbar.new(t,{orientation:"horizontal",height:50})),c=h.chart.xAxes.push(am5xy.DateAxis.new(t,{groupData:!0,groupIntervals:[{timeUnit:"week",count:1}],baseInterval:{timeUnit:"day",count:1},renderer:am5xy.AxisRendererX.new(t,{})})),y=h.chart.yAxes.push(am5xy.ValueAxis.new(t,{renderer:am5xy.AxisRendererY.new(t,{})})),g=h.chart.series.push(am5xy.LineSeries.new(t,{valueYField:"Adj Close",valueXField:"Date",xAxis:c,yAxis:y}));g.fills.template.setAll({visible:!0,fillOpacity:.3}),am5.net.load("https://www.amcharts.com/wp-content/uploads/assets/stock/MSFT.csv").then((function(e){var a=am5.CSVParser.parse(e.response,{delimiter:",",reverse:!0,skipEmpty:!0,useColumnNames:!0});am5.DataProcessor.new(t,{dateFields:["Date"],dateFormat:"yyyy-MM-dd",numericFields:["Open","High","Low","Close","Adj Close","Volume"]}).processMany(a),console.log(a),d.data.setAll(a),x.data.setAll(a),g.data.setAll(a)})),l.appear(1e3,100)}))}}}();KTUtil.onDOMContentLoaded((function(){KTGeneralAmChartsStock.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/charts/apexcharts.js b/Mid-term/public/assets/js/custom/documentation/charts/apexcharts.js new file mode 100644 index 000000000..091ab1e4c --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/charts/apexcharts.js @@ -0,0 +1 @@ +"use strict";var KTGeneralApexCharts={init:function(){var e,t,a,s,i,o,r;e=document.getElementById("kt_apexcharts_1"),t=parseInt(KTUtil.css(e,"height")),a=KTUtil.getCssVariableValue("--bs-gray-500"),s=KTUtil.getCssVariableValue("--bs-gray-200"),i=KTUtil.getCssVariableValue("--bs-primary"),o=KTUtil.getCssVariableValue("--bs-gray-300"),r=KTUtil.getCssVariableValue("--bs-danger"),e&&new ApexCharts(e,{series:[{name:"Net Profit",data:[44,55,57,56,61,58,43,56,65,41,55,66]},{name:"Cost",data:[32,34,52,46,27,60,41,49,13,11,44,33]},{name:"Revenue",data:[76,85,101,98,87,105,87,99,75,82,91,89]}],chart:{fontFamily:"inherit",type:"bar",height:t,toolbar:{show:!1}},plotOptions:{bar:{horizontal:!1,columnWidth:["40%"],borderRadius:[6]}},legend:{show:!1},dataLabels:{enabled:!1},stroke:{show:!0,width:2,colors:["transparent"]},xaxis:{categories:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],axisBorder:{show:!1},axisTicks:{show:!1},labels:{style:{colors:a,fontSize:"12px"}}},yaxis:{labels:{style:{colors:a,fontSize:"12px"}}},fill:{opacity:1},states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"none",value:0}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"none",value:0}}},tooltip:{style:{fontSize:"12px"},y:{formatter:function(e){return"$"+e+" thousands"}}},colors:[i,r,o],grid:{borderColor:s,strokeDashArray:4,yaxis:{lines:{show:!0}}}}).render(),function(){var e=document.getElementById("kt_apexcharts_2"),t=parseInt(KTUtil.css(e,"height")),a=KTUtil.getCssVariableValue("--bs-gray-500"),s=KTUtil.getCssVariableValue("--bs-gray-200"),i=KTUtil.getCssVariableValue("--bs-warning"),o=KTUtil.getCssVariableValue("--bs-gray-300");e&&new ApexCharts(e,{series:[{name:"Net Profit",data:[44,55,57,56,61,58]},{name:"Revenue",data:[76,85,101,98,87,105]}],chart:{fontFamily:"inherit",type:"bar",height:t,toolbar:{show:!1}},plotOptions:{bar:{horizontal:!0,columnWidth:["30%"],borderRadius:[6]}},legend:{show:!1},dataLabels:{enabled:!1},stroke:{show:!0,width:2,colors:["transparent"]},xaxis:{categories:["Feb","Mar","Apr","May","Jun","Jul"],axisBorder:{show:!1},axisTicks:{show:!1},labels:{style:{colors:a,fontSize:"12px"}}},yaxis:{labels:{style:{colors:a,fontSize:"12px"}}},fill:{opacity:1},states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"none",value:0}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"none",value:0}}},tooltip:{style:{fontSize:"12px"},y:{formatter:function(e){return"$"+e+" thousands"}}},colors:[i,o],grid:{borderColor:s,strokeDashArray:4,yaxis:{lines:{show:!0}}}}).render()}(),function(){var e=document.getElementById("kt_apexcharts_3"),t=parseInt(KTUtil.css(e,"height")),a=KTUtil.getCssVariableValue("--bs-gray-500"),s=KTUtil.getCssVariableValue("--bs-gray-200"),i=KTUtil.getCssVariableValue("--bs-info"),o=KTUtil.getCssVariableValue("--bs-light-info");e&&new ApexCharts(e,{series:[{name:"Net Profit",data:[30,40,40,90,90,70,70]}],chart:{fontFamily:"inherit",type:"area",height:t,toolbar:{show:!1}},plotOptions:{},legend:{show:!1},dataLabels:{enabled:!1},fill:{type:"solid",opacity:1},stroke:{curve:"smooth",show:!0,width:3,colors:[i]},xaxis:{categories:["Feb","Mar","Apr","May","Jun","Jul","Aug"],axisBorder:{show:!1},axisTicks:{show:!1},labels:{style:{colors:a,fontSize:"12px"}},crosshairs:{position:"front",stroke:{color:i,width:1,dashArray:3}},tooltip:{enabled:!0,formatter:void 0,offsetY:0,style:{fontSize:"12px"}}},yaxis:{labels:{style:{colors:a,fontSize:"12px"}}},states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"none",value:0}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"none",value:0}}},tooltip:{style:{fontSize:"12px"},y:{formatter:function(e){return"$"+e+" thousands"}}},colors:[o],grid:{borderColor:s,strokeDashArray:4,yaxis:{lines:{show:!0}}},markers:{strokeColor:i,strokeWidth:3}}).render()}(),function(){var e=document.getElementById("kt_apexcharts_4"),t=parseInt(KTUtil.css(e,"height")),a=KTUtil.getCssVariableValue("--bs-gray-500"),s=KTUtil.getCssVariableValue("--bs-gray-200"),i=KTUtil.getCssVariableValue("--bs-success"),o=KTUtil.getCssVariableValue("--bs-light-success"),r=KTUtil.getCssVariableValue("--bs-warning"),l=KTUtil.getCssVariableValue("--bs-light-warning");e&&new ApexCharts(e,{series:[{name:"Net Profit",data:[60,50,80,40,100,60]},{name:"Revenue",data:[70,60,110,40,50,70]}],chart:{fontFamily:"inherit",type:"area",height:t,toolbar:{show:!1}},plotOptions:{},legend:{show:!1},dataLabels:{enabled:!1},fill:{type:"solid",opacity:1},stroke:{curve:"smooth"},xaxis:{categories:["Feb","Mar","Apr","May","Jun","Jul"],axisBorder:{show:!1},axisTicks:{show:!1},labels:{style:{colors:a,fontSize:"12px"}},crosshairs:{position:"front",stroke:{color:a,width:1,dashArray:3}},tooltip:{enabled:!0,formatter:void 0,offsetY:0,style:{fontSize:"12px"}}},yaxis:{labels:{style:{colors:a,fontSize:"12px"}}},states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"none",value:0}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"none",value:0}}},tooltip:{style:{fontSize:"12px"},y:{formatter:function(e){return"$"+e+" thousands"}}},colors:[i,r],grid:{borderColor:s,strokeDashArray:4,yaxis:{lines:{show:!0}}},markers:{colors:[o,l],strokeColor:[o,l],strokeWidth:3}}).render()}(),function(){var e=document.getElementById("kt_apexcharts_5"),t=parseInt(KTUtil.css(e,"height")),a=KTUtil.getCssVariableValue("--bs-gray-500"),s=KTUtil.getCssVariableValue("--bs-gray-200"),i=KTUtil.getCssVariableValue("--bs-primary"),o=KTUtil.getCssVariableValue("--bs-light-primary"),r=KTUtil.getCssVariableValue("--bs-info");e&&new ApexCharts(e,{series:[{name:"Net Profit",type:"bar",stacked:!0,data:[40,50,65,70,50,30]},{name:"Revenue",type:"bar",stacked:!0,data:[20,20,25,30,30,20]},{name:"Expenses",type:"area",data:[50,80,60,90,50,70]}],chart:{fontFamily:"inherit",stacked:!0,height:t,toolbar:{show:!1}},plotOptions:{bar:{stacked:!0,horizontal:!1,borderRadius:[6],columnWidth:["12%"]}},legend:{show:!1},dataLabels:{enabled:!1},stroke:{curve:"smooth",show:!0,width:2,colors:["transparent"]},xaxis:{categories:["Feb","Mar","Apr","May","Jun","Jul"],axisBorder:{show:!1},axisTicks:{show:!1},labels:{style:{colors:a,fontSize:"12px"}}},yaxis:{max:120,labels:{style:{colors:a,fontSize:"12px"}}},fill:{opacity:1},states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"none",value:0}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"none",value:0}}},tooltip:{style:{fontSize:"12px"},y:{formatter:function(e){return"$"+e+" thousands"}}},colors:[i,r,o],grid:{borderColor:s,strokeDashArray:4,yaxis:{lines:{show:!0}},padding:{top:0,right:0,bottom:0,left:0}}}).render()}(),function(){var e=document.getElementById("kt_apexcharts_6"),t=parseInt(KTUtil.css(e,"height")),a=KTUtil.getCssVariableValue("--bs-primary"),s=KTUtil.getCssVariableValue("--bs-success"),i=KTUtil.getCssVariableValue("--bs-info");if(e){var o={series:[{name:"Bob",data:[{x:"Design",y:[new Date("2019-03-05").getTime(),new Date("2019-03-08").getTime()]},{x:"Code",y:[new Date("2019-03-02").getTime(),new Date("2019-03-05").getTime()]},{x:"Code",y:[new Date("2019-03-05").getTime(),new Date("2019-03-07").getTime()]},{x:"Test",y:[new Date("2019-03-03").getTime(),new Date("2019-03-09").getTime()]},{x:"Test",y:[new Date("2019-03-08").getTime(),new Date("2019-03-11").getTime()]},{x:"Validation",y:[new Date("2019-03-11").getTime(),new Date("2019-03-16").getTime()]},{x:"Design",y:[new Date("2019-03-01").getTime(),new Date("2019-03-03").getTime()]}]},{name:"Joe",data:[{x:"Design",y:[new Date("2019-03-02").getTime(),new Date("2019-03-05").getTime()]},{x:"Test",y:[new Date("2019-03-06").getTime(),new Date("2019-03-16").getTime()]},{x:"Code",y:[new Date("2019-03-03").getTime(),new Date("2019-03-07").getTime()]},{x:"Deployment",y:[new Date("2019-03-20").getTime(),new Date("2019-03-22").getTime()]},{x:"Design",y:[new Date("2019-03-10").getTime(),new Date("2019-03-16").getTime()]}]},{name:"Dan",data:[{x:"Code",y:[new Date("2019-03-10").getTime(),new Date("2019-03-17").getTime()]},{x:"Validation",y:[new Date("2019-03-05").getTime(),new Date("2019-03-09").getTime()]}]}],chart:{type:"rangeBar",fontFamily:"inherit",height:t,toolbar:{show:!1}},colors:[a,i,s],plotOptions:{bar:{horizontal:!0,barHeight:"80%",borderRadius:[6]}},xaxis:{type:"datetime"},stroke:{width:1},fill:{type:"solid",opacity:1},legend:{position:"top",horizontalAlign:"left"}};new ApexCharts(e,o).render()}}()}};KTUtil.onDOMContentLoaded((function(){KTGeneralApexCharts.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/charts/chartjs.js b/Mid-term/public/assets/js/custom/documentation/charts/chartjs.js new file mode 100644 index 000000000..45263bf75 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/charts/chartjs.js @@ -0,0 +1 @@ +"use strict";var KTGeneralChartJS=function(){function a(a=1,e=100){return Math.floor(Math.random()*(e-a)+a)}function e(e=1,t=100,s=10){for(var r=[],l=0;l'+e+"").css({position:"absolute",display:"none",top:t+5,left:i+15,border:"1px solid "+KTUtil.getCssVariableValue("--bs-light-dark"),padding:"4px",color:+KTUtil.getCssVariableValue("--bs-active-dark"),"border-radius":"3px","background-color":+KTUtil.getCssVariableValue("--bs-light-dark"),opacity:.8}).appendTo("body").fadeIn(200)}(e.pageX,e.pageY,e.series.label+" of "+l+" = "+o)}}else $("#tooltip").remove(),a=null}))};return{init:function(){i()}}}();KTUtil.onDOMContentLoaded((function(){KTFlotDemoAxis.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/charts/flotcharts/bar.js b/Mid-term/public/assets/js/custom/documentation/charts/flotcharts/bar.js new file mode 100644 index 000000000..7296dc9c5 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/charts/flotcharts/bar.js @@ -0,0 +1 @@ +"use strict";var KTFlotDemoBar={init:function(){var t;t={colors:[KTUtil.getCssVariableValue("--bs-active-primary")],series:{bars:{show:!0}},bars:{horizontal:!0,barWidth:6,lineWidth:0,shadowSize:0,align:"left"},grid:{tickColor:KTUtil.getCssVariableValue("--bs-light-dark"),borderColor:KTUtil.getCssVariableValue("--bs-light-dark"),borderWidth:1}},$.plot($("#kt_docs_flot_bar"),[[[10,10],[20,20],[30,30],[40,40],[50,50],[60,60],[70,70],[80,80],[90,90],[100,100]]],t)}};KTUtil.onDOMContentLoaded((function(){KTFlotDemoBar.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/charts/flotcharts/basic.js b/Mid-term/public/assets/js/custom/documentation/charts/flotcharts/basic.js new file mode 100644 index 000000000..43ef754ba --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/charts/flotcharts/basic.js @@ -0,0 +1 @@ +"use strict";var KTFlotDemoBasic={init:function(){!function(){for(var a=[],i=0;i<2*Math.PI;i+=.25)a.push([i,Math.sin(i)]);var t=[];for(i=0;i<2*Math.PI;i+=.25)t.push([i,Math.cos(i)]);var s=[];for(i=0;i<2*Math.PI;i+=.1)s.push([i,Math.tan(i)]);$.plot($("#kt_docs_flot_basic"),[{label:"sin(x)",data:a,lines:{lineWidth:1},shadowSize:0},{label:"cos(x)",data:t,lines:{lineWidth:1},shadowSize:0},{label:"tan(x)",data:s,lines:{lineWidth:1},shadowSize:0}],{colors:[KTUtil.getCssVariableValue("--bs-active-success"),KTUtil.getCssVariableValue("--bs-active-primary"),KTUtil.getCssVariableValue("--bs-active-danger")],series:{lines:{show:!0},points:{show:!0,fill:!0,radius:3,lineWidth:1}},xaxis:{tickColor:KTUtil.getCssVariableValue("--bs-light-dark"),ticks:[0,[Math.PI/2,"π/2"],[Math.PI,"π"],[3*Math.PI/2,"3π/2"],[2*Math.PI,"2π"]]},yaxis:{tickColor:KTUtil.getCssVariableValue("--bs-light-dark"),ticks:10,min:-2,max:2},grid:{borderColor:KTUtil.getCssVariableValue("--bs-light-dark"),borderWidth:1}})}()}};KTUtil.onDOMContentLoaded((function(){KTFlotDemoBasic.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/charts/flotcharts/dynamic.js b/Mid-term/public/assets/js/custom/documentation/charts/flotcharts/dynamic.js new file mode 100644 index 000000000..ce249dfba --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/charts/flotcharts/dynamic.js @@ -0,0 +1 @@ +"use strict";var KTFlotDemoDynamic={init:function(){!function(){var t=[];function i(){for(t.length>0&&(t=t.slice(1));t.length<250;){var i=(t.length>0?t[t.length-1]:50)+10*Math.random()-5;i<0&&(i=0),i>100&&(i=100),t.push(i)}for(var a=[],e=0;et.xaxis.max||a.yt.yaxis.max)){var i,n,r=e.getData();for(i=0;ia.x);++n);var c,h=d.data[n-1],g=d.data[n];c=null==h?g[1]:null==g?h[1]:h[1]+(g[1]-h[1])*(a.x-h[0])/(g[0]-h[0]),l.eq(i).text(d.label.replace(/=.*/,"= "+c.toFixed(2)))}}}$("#kt_docs_flot_tracking").bind("plothover",(function(a,t,i){o=t,s||(s=setTimeout(n,50))}))}()}};KTUtil.onDOMContentLoaded((function(){KTFlotDemoTracking.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/charts/google-charts/column.js b/Mid-term/public/assets/js/custom/documentation/charts/google-charts/column.js new file mode 100644 index 000000000..8ddecca79 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/charts/google-charts/column.js @@ -0,0 +1 @@ +"use strict";var KTGoogleChartColumnDemo={init:function(){google.load("visualization","1",{packages:["corechart","bar","line"]}),google.setOnLoadCallback((function(){var o=new google.visualization.DataTable;o.addColumn("timeofday","Time of Day"),o.addColumn("number","Motivation Level"),o.addColumn("number","Energy Level"),o.addRows([[{v:[8,0,0],f:"8 am"},1,.25],[{v:[9,0,0],f:"9 am"},2,.5],[{v:[10,0,0],f:"10 am"},3,1],[{v:[11,0,0],f:"11 am"},4,2.25],[{v:[12,0,0],f:"12 pm"},5,2.25],[{v:[13,0,0],f:"1 pm"},6,3],[{v:[14,0,0],f:"2 pm"},7,4],[{v:[15,0,0],f:"3 pm"},8,5.25],[{v:[16,0,0],f:"4 pm"},9,7.5],[{v:[17,0,0],f:"5 pm"},10,10]]),new google.visualization.ColumnChart(document.getElementById("kt_docs_google_chart_column")).draw(o,{title:"Motivation and Energy Level Throughout the Day",focusTarget:"category",hAxis:{title:"Time of Day",format:"h:mm a",viewWindow:{min:[7,30,0],max:[17,30,0]}},vAxis:{title:"Rating (scale of 1-10)"},colors:["#6e4ff5","#fe3995"]})}))}};KTUtil.onDOMContentLoaded((function(){KTGoogleChartColumnDemo.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/charts/google-charts/line.js b/Mid-term/public/assets/js/custom/documentation/charts/google-charts/line.js new file mode 100644 index 000000000..562550430 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/charts/google-charts/line.js @@ -0,0 +1 @@ +"use strict";var KTGoogleChartLineDemo={init:function(){google.load("visualization","1",{packages:["corechart","bar","line"]}),google.setOnLoadCallback((function(){var o=new google.visualization.DataTable;o.addColumn("number","Day"),o.addColumn("number","Guardians of the Galaxy"),o.addColumn("number","The Avengers"),o.addColumn("number","Transformers: Age of Extinction"),o.addRows([[1,37.8,80.8,41.8],[2,30.9,69.5,32.4],[3,25.4,57,25.7],[4,11.7,18.8,10.5],[5,11.9,17.6,10.4],[6,8.8,13.6,7.7],[7,7.6,12.3,9.6],[8,12.3,29.2,10.6],[9,16.9,42.9,14.8],[10,12.8,30.9,11.6],[11,5.3,7.9,4.7],[12,6.6,8.4,5.2],[13,4.8,6.3,3.6],[14,4.2,6.2,3.4]]),new google.charts.Line(document.getElementById("kt_docs_google_chart_line")).draw(o,{chart:{title:"Box Office Earnings in First Two Weeks of Opening",subtitle:"in millions of dollars (USD)"},colors:["#6e4ff5","#f6aa33","#fe3995"]})}))}};KTUtil.onDOMContentLoaded((function(){KTGoogleChartLineDemo.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/charts/google-charts/pie.js b/Mid-term/public/assets/js/custom/documentation/charts/google-charts/pie.js new file mode 100644 index 000000000..4e46d7545 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/charts/google-charts/pie.js @@ -0,0 +1 @@ +"use strict";var KTGoogleChartPieDemo={init:function(){google.load("visualization","1",{packages:["corechart","bar","line"]}),google.setOnLoadCallback((function(){var e=google.visualization.arrayToDataTable([["Task","Hours per Day"],["Work",11],["Eat",2],["Commute",2],["Watch TV",2],["Sleep",7]]);new google.visualization.PieChart(document.getElementById("kt_docs_google_chart_pie")).draw(e,{title:"My Daily Activities",colors:["#fe3995","#f6aa33","#6e4ff5","#2abe81","#c7d2e7","#593ae1"]})}))}};KTUtil.onDOMContentLoaded((function(){KTGoogleChartPieDemo.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/documentation.js b/Mid-term/public/assets/js/custom/documentation/documentation.js new file mode 100644 index 000000000..245a07a84 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/documentation.js @@ -0,0 +1 @@ +"use strict";var KTLayoutDocumentation={init:function(t){!function(t){var e=t;if(void 0===e&&(e=document.querySelectorAll(".highlight")),e&&e.length>0)for(var n=0;n{console.log(o)})).catch((o=>{console.error(o)}))}};KTUtil.onDOMContentLoaded((function(){KTFormsCKEditorBalloonBlock.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/editors/ckeditor/balloon.js b/Mid-term/public/assets/js/custom/documentation/editors/ckeditor/balloon.js new file mode 100644 index 000000000..b91096d32 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/editors/ckeditor/balloon.js @@ -0,0 +1 @@ +"use strict";var KTFormsCKEditorBalloon={init:function(){BalloonEditor.create(document.querySelector("#kt_docs_ckeditor_balloon")).then((o=>{console.log(o)})).catch((o=>{console.error(o)}))}};KTUtil.onDOMContentLoaded((function(){KTFormsCKEditorBalloon.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/editors/ckeditor/classic.js b/Mid-term/public/assets/js/custom/documentation/editors/ckeditor/classic.js new file mode 100644 index 000000000..f4730798c --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/editors/ckeditor/classic.js @@ -0,0 +1 @@ +"use strict";var KTFormsCKEditorClassic={init:function(){ClassicEditor.create(document.querySelector("#kt_docs_ckeditor_classic")).then((o=>{console.log(o)})).catch((o=>{console.error(o)}))}};KTUtil.onDOMContentLoaded((function(){KTFormsCKEditorClassic.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/editors/ckeditor/document.js b/Mid-term/public/assets/js/custom/documentation/editors/ckeditor/document.js new file mode 100644 index 000000000..fcec85da1 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/editors/ckeditor/document.js @@ -0,0 +1 @@ +"use strict";var KTFormsCKEditorDocument={init:function(){DecoupledEditor.create(document.querySelector("#kt_docs_ckeditor_document")).then((o=>{document.querySelector("#kt_docs_ckeditor_document_toolbar").appendChild(o.ui.view.toolbar.element)})).catch((o=>{console.error(o)}))}};KTUtil.onDOMContentLoaded((function(){KTFormsCKEditorDocument.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/editors/ckeditor/inline.js b/Mid-term/public/assets/js/custom/documentation/editors/ckeditor/inline.js new file mode 100644 index 000000000..83dfeebc8 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/editors/ckeditor/inline.js @@ -0,0 +1 @@ +"use strict";var KTFormsCKEditorInline={init:function(){InlineEditor.create(document.querySelector("#kt_docs_ckeditor_inline")).then((n=>{console.log(n)})).catch((n=>{console.error(n)}))}};KTUtil.onDOMContentLoaded((function(){KTFormsCKEditorInline.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/editors/quill/autosave.js b/Mid-term/public/assets/js/custom/documentation/editors/quill/autosave.js new file mode 100644 index 000000000..429d1145a --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/editors/quill/autosave.js @@ -0,0 +1 @@ +"use strict";var KTFormsQuillAutosave={init:function(){var e,n,o;e=Quill.import("delta"),n=new Quill("#kt_docs_quill_autosave",{modules:{toolbar:!0},placeholder:"Type your text here...",theme:"snow"}),o=new e,n.on("text-change",(function(e){o=o.compose(e)})),setInterval((function(){o.length()>0&&(console.log("Saving changes",o),o=new e)}),5e3),window.onbeforeunload=function(){if(o.length()>0)return"There are unsaved changes. Are you sure you want to leave?"}}};KTUtil.onDOMContentLoaded((function(){KTFormsQuillAutosave.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/editors/quill/basic.js b/Mid-term/public/assets/js/custom/documentation/editors/quill/basic.js new file mode 100644 index 000000000..4af8a4898 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/editors/quill/basic.js @@ -0,0 +1 @@ +"use strict";var KTFormsQuillBasic={init:function(){new Quill("#kt_docs_quill_basic",{modules:{toolbar:[[{header:[1,2,!1]}],["bold","italic","underline"],["image","code-block"]]},placeholder:"Type your text here...",theme:"snow"})}};KTUtil.onDOMContentLoaded((function(){KTFormsQuillBasic.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/editors/tinymce/basic.js b/Mid-term/public/assets/js/custom/documentation/editors/tinymce/basic.js new file mode 100644 index 000000000..92630c1d3 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/editors/tinymce/basic.js @@ -0,0 +1 @@ +"use strict";var KTFormsTinyMCEBasic={init:function(){var i;i={selector:"#kt_docs_tinymce_basic"},KTApp.isDarkMode()&&(i.skin="oxide-dark",i.content_css="dark"),tinymce.init(i)}};KTUtil.onDOMContentLoaded((function(){KTFormsTinyMCEBasic.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/editors/tinymce/hidden.js b/Mid-term/public/assets/js/custom/documentation/editors/tinymce/hidden.js new file mode 100644 index 000000000..f3add1098 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/editors/tinymce/hidden.js @@ -0,0 +1 @@ +"use strict";var KTFormsTinyMCEHidden={init:function(){tinymce.init({selector:"#kt_docs_tinymce_hidden",menubar:!1,toolbar:["styleselect fontselect fontsizeselect","undo redo | cut copy paste | bold italic | link image | alignleft aligncenter alignright alignjustify","bullist numlist | outdent indent | blockquote subscript superscript | advlist | autolink | lists charmap | print preview | code"],plugins:"advlist autolink link image lists charmap print preview code"})}};KTUtil.onDOMContentLoaded((function(){KTFormsTinyMCEHidden.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/editors/tinymce/plugins.js b/Mid-term/public/assets/js/custom/documentation/editors/tinymce/plugins.js new file mode 100644 index 000000000..2a4a75f2b --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/editors/tinymce/plugins.js @@ -0,0 +1 @@ +"use strict";var KTFormsTinyMCEPlugins={init:function(){tinymce.init({selector:"#kt_docs_tinymce_plugins",toolbar:"advlist | autolink | link image | lists charmap | print preview",plugins:"advlist autolink link image lists charmap print preview"})}};KTUtil.onDOMContentLoaded((function(){KTFormsTinyMCEPlugins.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/bootstrap-maxlength.js b/Mid-term/public/assets/js/custom/documentation/forms/bootstrap-maxlength.js new file mode 100644 index 000000000..9e0fe13b3 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/bootstrap-maxlength.js @@ -0,0 +1 @@ +"use strict";var KTFormsMaxlengthDemos={init:function(){$("#kt_docs_maxlength_basic").maxlength({warningClass:"badge badge-primary",limitReachedClass:"badge badge-success"}),$("#kt_docs_maxlength_threshold").maxlength({threshold:20,warningClass:"badge badge-primary",limitReachedClass:"badge badge-success"}),$("#kt_docs_maxlength_always_show").maxlength({alwaysShow:!0,threshold:20,warningClass:"badge badge-danger",limitReachedClass:"badge badge-info"}),$("#kt_docs_maxlength_custom_text").maxlength({threshold:20,warningClass:"badge badge-danger",limitReachedClass:"badge badge-success",separator:" of ",preText:"You have ",postText:" chars remaining.",validate:!0}),$("#kt_docs_maxlength_textarea").maxlength({warningClass:"badge badge-primary",limitReachedClass:"badge badge-success"}),$("#kt_docs_maxlength_position_top_left").maxlength({placement:"top-left",warningClass:"badge badge-danger",limitReachedClass:"badge badge-primary"}),$("#kt_docs_maxlength_position_top_right").maxlength({placement:"top-right",warningClass:"badge badge-success",limitReachedClass:"badge badge-danger"}),$("#kt_docs_maxlength_position_bottom_left").maxlength({placement:"bottom-left",warningClass:"badge badge-info",limitReachedClass:"badge badge-warning"}),$("#kt_docs_maxlength_position_bottom_right").maxlength({placement:"bottom-right",warningClass:"badge badge-primary",limitReachedClass:"badge badge-success"})}};KTUtil.onDOMContentLoaded((function(){KTFormsMaxlengthDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/clipboard.js b/Mid-term/public/assets/js/custom/documentation/forms/clipboard.js new file mode 100644 index 000000000..d894e3c53 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/clipboard.js @@ -0,0 +1 @@ +"use strict";var KTFormsClipboard={init:function(){!function(){const n=document.getElementById("kt_clipboard_1"),e=n.nextElementSibling;new ClipboardJS(e,{target:n,text:function(){return n.value}}).on("success",(function(n){const t=e.innerHTML;"Copied!"!==e.innerHTML&&(e.innerHTML="Copied!",setTimeout((function(){e.innerHTML=t}),3e3))}))}(),function(){const n=document.getElementById("kt_clipboard_2"),e=n.nextElementSibling;new ClipboardJS(e,{target:n,text:function(){return n.innerText}}).on("success",(function(n){const t=e.innerHTML;"Copied!"!==e.innerHTML&&(e.innerHTML="Copied!",setTimeout((function(){e.innerHTML=t}),3e3))}))}(),function(){const n=document.getElementById("kt_clipboard_3");new ClipboardJS(n).on("success",(function(e){const t=n.innerHTML;"Copied!"!==n.innerHTML&&(n.innerHTML="Copied!",setTimeout((function(){n.innerHTML=t}),3e3))}))}(),function(){const n=document.getElementById("kt_clipboard_4"),e=n.nextElementSibling;new ClipboardJS(e,{target:n,text:function(){return n.innerHTML}}).on("success",(function(t){var i=e.querySelector(".bi.bi-check"),o=e.querySelector(".svg-icon");if(i)return;(i=document.createElement("i")).classList.add("bi"),i.classList.add("bi-check"),i.classList.add("fs-2x"),e.appendChild(i);const s=["text-success","fw-boldest"];n.classList.add(...s),e.classList.add("btn-success"),o.classList.add("d-none"),setTimeout((function(){o.classList.remove("d-none"),e.removeChild(i),n.classList.remove(...s),e.classList.remove("btn-success")}),3e3)}))}()}};KTUtil.onDOMContentLoaded((function(){KTFormsClipboard.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/daterangepicker.js b/Mid-term/public/assets/js/custom/documentation/forms/daterangepicker.js new file mode 100644 index 000000000..ed56423e3 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/daterangepicker.js @@ -0,0 +1 @@ +"use strict";var KTFormsDaterangepickerDemos={init:function(t){$("#kt_daterangepicker_1").daterangepicker(),$("#kt_daterangepicker_2").daterangepicker({timePicker:!0,startDate:moment().startOf("hour"),endDate:moment().startOf("hour").add(32,"hour"),locale:{format:"M/DD hh:mm A"}}),$("#kt_daterangepicker_3").daterangepicker({singleDatePicker:!0,showDropdowns:!0,minYear:1901,maxYear:parseInt(moment().format("YYYY"),10)},(function(t,e,a){var r=moment().diff(t,"years");alert("You are "+r+" years old!")})),function(t){var e=moment().subtract(29,"days"),a=moment();function r(t,e){$("#kt_daterangepicker_4").html(t.format("MMMM D, YYYY")+" - "+e.format("MMMM D, YYYY"))}$("#kt_daterangepicker_4").daterangepicker({startDate:e,endDate:a,ranges:{Today:[moment(),moment()],Yesterday:[moment().subtract(1,"days"),moment().subtract(1,"days")],"Last 7 Days":[moment().subtract(6,"days"),moment()],"Last 30 Days":[moment().subtract(29,"days"),moment()],"This Month":[moment().startOf("month"),moment().endOf("month")],"Last Month":[moment().subtract(1,"month").startOf("month"),moment().subtract(1,"month").endOf("month")]}},r),r(e,a)}(),$("#kt_daterangepicker_5").daterangepicker()}};KTUtil.onDOMContentLoaded((function(){KTFormsDaterangepickerDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/dialer.js b/Mid-term/public/assets/js/custom/documentation/forms/dialer.js new file mode 100644 index 000000000..f7a04a16a --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/dialer.js @@ -0,0 +1 @@ +"use strict";var KTFormsDialerDemos={init:function(e){var i;i=document.querySelector("#kt_dialer_example_1"),new KTDialer(i,{min:1e3,max:5e4,step:1e3,prefix:"$",decimals:2})}};KTUtil.onDOMContentLoaded((function(){KTFormsDialerDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/dropzonejs.js b/Mid-term/public/assets/js/custom/documentation/forms/dropzonejs.js new file mode 100644 index 000000000..5dc842292 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/dropzonejs.js @@ -0,0 +1 @@ +"use strict";var KTFormsDropzoneJSDemos={init:function(e){new Dropzone("#kt_dropzonejs_example_1",{url:"https://keenthemes.com/scripts/void.php",paramName:"file",maxFiles:10,maxFilesize:10,addRemoveLinks:!0,accept:function(e,o){"wow.jpg"==e.name?o("Naha, you don't."):o()}}),function(){const e="#kt_dropzonejs_example_2",o=document.querySelector(e);var r=o.querySelector(".dropzone-item");r.id="";var t=r.parentNode.innerHTML;r.parentNode.removeChild(r);var l=new Dropzone(e,{url:"https://preview.keenthemes.com/api/dropzone/void.php",parallelUploads:20,previewTemplate:t,maxFilesize:1,autoQueue:!1,previewsContainer:e+" .dropzone-items",clickable:e+" .dropzone-select"});l.on("addedfile",(function(r){r.previewElement.querySelector(e+" .dropzone-start").onclick=function(){l.enqueueFile(r)},o.querySelectorAll(".dropzone-item").forEach((e=>{e.style.display=""})),o.querySelector(".dropzone-upload").style.display="inline-block",o.querySelector(".dropzone-remove-all").style.display="inline-block"})),l.on("totaluploadprogress",(function(e){o.querySelectorAll(".progress-bar").forEach((o=>{o.style.width=e+"%"}))})),l.on("sending",(function(r){o.querySelectorAll(".progress-bar").forEach((e=>{e.style.opacity="1"})),r.previewElement.querySelector(e+" .dropzone-start").setAttribute("disabled","disabled")})),l.on("complete",(function(e){const r=o.querySelectorAll(".dz-complete");setTimeout((function(){r.forEach((e=>{e.querySelector(".progress-bar").style.opacity="0",e.querySelector(".progress").style.opacity="0",e.querySelector(".dropzone-start").style.opacity="0"}))}),300)})),o.querySelector(".dropzone-upload").addEventListener("click",(function(){l.enqueueFiles(l.getFilesWithStatus(Dropzone.ADDED))})),o.querySelector(".dropzone-remove-all").addEventListener("click",(function(){o.querySelector(".dropzone-upload").style.display="none",o.querySelector(".dropzone-remove-all").style.display="none",l.removeAllFiles(!0)})),l.on("queuecomplete",(function(e){o.querySelectorAll(".dropzone-upload").forEach((e=>{e.style.display="none"}))})),l.on("removedfile",(function(e){l.files.length<1&&(o.querySelector(".dropzone-upload").style.display="none",o.querySelector(".dropzone-remove-all").style.display="none")}))}(),function(){const e="#kt_dropzonejs_example_3",o=document.querySelector(e);var r=o.querySelector(".dropzone-item");r.id="";var t=r.parentNode.innerHTML;r.parentNode.removeChild(r);var l=new Dropzone(e,{url:"https://preview.keenthemes.com/api/dropzone/void.php",parallelUploads:20,maxFilesize:1,previewTemplate:t,previewsContainer:e+" .dropzone-items",clickable:e+" .dropzone-select"});l.on("addedfile",(function(e){o.querySelectorAll(".dropzone-item").forEach((e=>{e.style.display=""}))})),l.on("totaluploadprogress",(function(e){o.querySelectorAll(".progress-bar").forEach((o=>{o.style.width=e+"%"}))})),l.on("sending",(function(e){o.querySelectorAll(".progress-bar").forEach((e=>{e.style.opacity="1"}))})),l.on("complete",(function(e){const r=o.querySelectorAll(".dz-complete");setTimeout((function(){r.forEach((e=>{e.querySelector(".progress-bar").style.opacity="0",e.querySelector(".progress").style.opacity="0"}))}),300)}))}()}};KTUtil.onDOMContentLoaded((function(){KTFormsDropzoneJSDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/flatpickr.js b/Mid-term/public/assets/js/custom/documentation/forms/flatpickr.js new file mode 100644 index 000000000..da5fa556d --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/flatpickr.js @@ -0,0 +1 @@ +"use strict";var KTFormsFlatpickrDemos={init:function(t){$("#kt_datepicker_1").flatpickr(),$("#kt_datepicker_2").flatpickr(),$("#kt_datepicker_3").flatpickr({enableTime:!0,dateFormat:"Y-m-d H:i"}),$("#kt_datepicker_4").flatpickr({onReady:function(){this.jumpToDate("2025-01")},disable:["2025-01-10","22025-01-11","2025-01-12","2025-01-13","2025-01-14","2025-01-15","2025-01-16","2025-01-17"],dateFormat:"Y-m-d"}),$("#kt_datepicker_5").flatpickr({onReady:function(){this.jumpToDate("2025-01")},dateFormat:"Y-m-d",disable:[{from:"2025-01-05",to:"2025-01-25"},{from:"2025-02-03",to:"2025-02-15"}]}),$("#kt_datepicker_6").flatpickr({onReady:function(){this.jumpToDate("2025-01")},mode:"multiple",dateFormat:"Y-m-d",defaultDate:["2025-01-05","2025-01-10"]}),$("#kt_datepicker_7").flatpickr({altInput:!0,altFormat:"F j, Y",dateFormat:"Y-m-d",mode:"range"}),$("#kt_datepicker_8").flatpickr({enableTime:!0,noCalendar:!0,dateFormat:"H:i"}),$("#kt_datepicker_9").flatpickr({weekNumbers:!0}),$("#kt_datepicker_10").flatpickr()}};KTUtil.onDOMContentLoaded((function(){KTFormsFlatpickrDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/formrepeater/advanced.js b/Mid-term/public/assets/js/custom/documentation/forms/formrepeater/advanced.js new file mode 100644 index 000000000..29084c38a --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/formrepeater/advanced.js @@ -0,0 +1 @@ +"use strict";var KTFormRepeaterAdvanced={init:function(){$("#kt_docs_repeater_advanced").repeater({initEmpty:!1,defaultValues:{"text-input":"foo"},show:function(){$(this).slideDown(),$(this).find('[data-kt-repeater="select2"]').select2(),$(this).find('[data-kt-repeater="datepicker"]').flatpickr(),new Tagify(this.querySelector('[data-kt-repeater="tagify"]'))},hide:function(e){$(this).slideUp(e)},ready:function(){$('[data-kt-repeater="select2"]').select2(),$('[data-kt-repeater="datepicker"]').flatpickr(),new Tagify(document.querySelector('[data-kt-repeater="tagify"]'))}})}};KTUtil.onDOMContentLoaded((function(){KTFormRepeaterAdvanced.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/formrepeater/basic.js b/Mid-term/public/assets/js/custom/documentation/forms/formrepeater/basic.js new file mode 100644 index 000000000..5fe1a3e39 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/formrepeater/basic.js @@ -0,0 +1 @@ +"use strict";var KTFormRepeaterBasic={init:function(){$("#kt_docs_repeater_basic").repeater({initEmpty:!1,defaultValues:{"text-input":"foo"},show:function(){$(this).slideDown()},hide:function(t){$(this).slideUp(t)}})}};KTUtil.onDOMContentLoaded((function(){KTFormRepeaterBasic.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/formrepeater/nested.js b/Mid-term/public/assets/js/custom/documentation/forms/formrepeater/nested.js new file mode 100644 index 000000000..df5ec7e1b --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/formrepeater/nested.js @@ -0,0 +1 @@ +"use strict";var KTFormRepeaterNested={init:function(){$("#kt_docs_repeater_nested").repeater({repeaters:[{selector:".inner-repeater",show:function(){$(this).slideDown()},hide:function(e){$(this).slideUp(e)}}],show:function(){$(this).slideDown()},hide:function(e){$(this).slideUp(e)}})}};KTUtil.onDOMContentLoaded((function(){KTFormRepeaterNested.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/formvalidation/advanced.js b/Mid-term/public/assets/js/custom/documentation/forms/formvalidation/advanced.js new file mode 100644 index 000000000..6ec493720 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/formvalidation/advanced.js @@ -0,0 +1 @@ +"use strict";var KTFormValidationDemoAdvanced={init:function(){!function(){const t=document.getElementById("kt_docs_formvalidation_daterangepicker"),e=$("#kt_daterangepicker");e.daterangepicker({autoUpdateInput:!1}),e.on("apply.daterangepicker",(function(t,e){$(this).val(e.startDate.format("MM/DD/YYYY")+" - "+e.endDate.format("MM/DD/YYYY"))})),e.on("cancel.daterangepicker",(function(t,e){$(this).val("")}));var i=FormValidation.formValidation(t,{fields:{daterangepicker_input:{validators:{notEmpty:{message:"Date range input is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const a=document.getElementById("kt_docs_formvalidation_daterangepicker_submit");a.addEventListener("click",(function(t){t.preventDefault(),i&&i.validate().then((function(t){console.log("validated!"),"Valid"==t&&(a.setAttribute("data-kt-indicator","on"),a.disabled=!0,setTimeout((function(){a.removeAttribute("data-kt-indicator"),a.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3))}))}))}(),function(){const t=document.getElementById("kt_docs_formvalidation_flatpickr");$("#kt_flatpickr").flatpickr();var e=FormValidation.formValidation(t,{fields:{flatpickr_input:{validators:{date:{format:"YYYY-MM-DD",message:"The value is not a valid date"},notEmpty:{message:"Flatpickr input is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const i=document.getElementById("kt_docs_formvalidation_flatpickr_submit");i.addEventListener("click",(function(t){t.preventDefault(),e&&e.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3))}))}))}(),function(){const t=document.getElementById("kt_docs_formvalidation_image_input");var e=FormValidation.formValidation(t,{fields:{avatar:{validators:{notEmpty:{message:"Please select an image"},file:{extension:"jpg,jpeg,png",type:"image/jpeg,image/png",message:"The selected file is not valid"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const i=document.getElementById("kt_docs_formvalidation_image_input_submit");i.addEventListener("click",(function(t){t.preventDefault(),e&&e.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3))}))}))}(),function(){const t=document.getElementById("kt_docs_formvalidation_password");var e=FormValidation.formValidation(t,{fields:{current_password:{validators:{notEmpty:{message:"Current password is required"}}},new_password:{validators:{notEmpty:{message:"The password is required"},callback:{message:"Please enter valid password",callback:function(t){if(t.value.length>0)return validatePassword()}}}},confirm_password:{validators:{notEmpty:{message:"The password confirmation is required"},identical:{compare:function(){return t.querySelector('[name="new_password"]').value},message:"The password and its confirm are not the same"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const i=document.getElementById("kt_docs_formvalidation_password_submit");i.addEventListener("click",(function(t){t.preventDefault(),e&&e.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3))}))}))}(),function(){const t=document.getElementById("kt_docs_formvalidation_select2");var e=FormValidation.formValidation(t,{fields:{select2_input:{validators:{notEmpty:{message:"Select2 input is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});$(t.querySelector('[name="select2_input"]')).on("change",(function(){e.revalidateField("select2_input")}));const i=document.getElementById("kt_docs_formvalidation_select2_submit");i.addEventListener("click",(function(t){t.preventDefault(),e&&e.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3))}))}))}(),function(){const t=document.getElementById("kt_docs_formvalidation_tagify");new Tagify(document.querySelector("#kt_tagify"),{whitelist:["Tag 1","Tag 2","Tag 3","Tag 4","Tag 5","Tag 6","Tag 7","Tag 8","Tag 9","Tag 10","Tag 11","Tag 12"],maxTags:6,dropdown:{maxItems:20,classname:"tagify__inline__suggestions",enabled:0,closeOnSelect:!1}}).on("change",(function(){e.revalidateField("tagify_input")}));var e=FormValidation.formValidation(t,{fields:{tagify_input:{validators:{notEmpty:{message:"Tagify input is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const i=document.getElementById("kt_docs_formvalidation_tagify_submit");i.addEventListener("click",(function(t){t.preventDefault(),e&&e.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3))}))}))}()}};KTUtil.onDOMContentLoaded((function(){KTFormValidationDemoAdvanced.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/formvalidation/basic.js b/Mid-term/public/assets/js/custom/documentation/forms/formvalidation/basic.js new file mode 100644 index 000000000..4059e7207 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/formvalidation/basic.js @@ -0,0 +1 @@ +"use strict";var KTFormValidationDemoBasic={init:function(){!function(){const t=document.getElementById("kt_docs_formvalidation_text");var e=FormValidation.formValidation(t,{fields:{text_input:{validators:{notEmpty:{message:"Text input is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const i=document.getElementById("kt_docs_formvalidation_text_submit");i.addEventListener("click",(function(t){t.preventDefault(),e&&e.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3))}))}))}(),function(){const t=document.getElementById("kt_docs_formvalidation_email");var e=FormValidation.formValidation(t,{fields:{email_input:{validators:{emailAddress:{message:"The value is not a valid email address"},notEmpty:{message:"Email address is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const i=document.getElementById("kt_docs_formvalidation_email_submit");i.addEventListener("click",(function(t){t.preventDefault(),e&&e.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3))}))}))}(),function(){const t=document.getElementById("kt_docs_formvalidation_textarea");var e=FormValidation.formValidation(t,{fields:{textarea_input:{validators:{notEmpty:{message:"Textarea input is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const i=document.getElementById("kt_docs_formvalidation_textarea_submit");i.addEventListener("click",(function(t){t.preventDefault(),e&&e.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3))}))}))}(),function(){const t=document.getElementById("kt_docs_formvalidation_input_group");var e=FormValidation.formValidation(t,{fields:{input_group_input:{validators:{notEmpty:{message:"Input is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const i=document.getElementById("kt_docs_formvalidation_input_group_submit");i.addEventListener("click",(function(t){t.preventDefault(),e&&e.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3))}))}))}(),function(){const t=document.getElementById("kt_docs_formvalidation_radio");var e=FormValidation.formValidation(t,{fields:{radio_input:{validators:{notEmpty:{message:"Radio input is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const i=document.getElementById("kt_docs_formvalidation_radio_submit");i.addEventListener("click",(function(t){t.preventDefault(),e&&e.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3))}))}))}(),function(){const t=document.getElementById("kt_docs_formvalidation_checkbox");var e=FormValidation.formValidation(t,{fields:{checkbox_input:{validators:{notEmpty:{message:"Checkbox input is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap5({rowSelector:".fv-row",eleInvalidClass:"",eleValidClass:""})}});const i=document.getElementById("kt_docs_formvalidation_checkbox_submit");i.addEventListener("click",(function(t){t.preventDefault(),e&&e.validate().then((function(t){console.log("validated!"),"Valid"==t&&(i.setAttribute("data-kt-indicator","on"),i.disabled=!0,setTimeout((function(){i.removeAttribute("data-kt-indicator"),i.disabled=!1,Swal.fire({text:"Form has been successfully submitted!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}),2e3))}))}))}()}};KTUtil.onDOMContentLoaded((function(){KTFormValidationDemoBasic.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/image-input.js b/Mid-term/public/assets/js/custom/documentation/forms/image-input.js new file mode 100644 index 000000000..8a47d5ff3 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/image-input.js @@ -0,0 +1 @@ +"use strict";var KTGeneralImageInputDemos={init:function(){}};KTUtil.onDOMContentLoaded((function(){KTGeneralImageInputDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/inputmask.js b/Mid-term/public/assets/js/custom/documentation/forms/inputmask.js new file mode 100644 index 000000000..cb659f67b --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/inputmask.js @@ -0,0 +1 @@ +"use strict";var KTFormsInputmaskDemos={init:function(a){Inputmask({mask:"99/99/9999"}).mask("#kt_inputmask_1"),Inputmask({mask:"(999) 999-9999"}).mask("#kt_inputmask_2"),Inputmask({mask:"(999) 999-9999",placeholder:"(999) 999-9999"}).mask("#kt_inputmask_3"),Inputmask({mask:"9",repeat:10,greedy:!1}).mask("#kt_inputmask_4"),Inputmask("decimal",{rightAlignNumerics:!1}).mask("#kt_inputmask_5"),Inputmask("€ 999.999.999,99",{numericInput:!0}).mask("#kt_inputmask_6"),Inputmask({mask:"999.999.999.999"}).mask("#kt_inputmask_7"),Inputmask({mask:"*{1,20}[.*{1,20}][.*{1,20}][.*{1,20}]@*{1,20}[.*{2,6}][.*{1,2}]",greedy:!1,onBeforePaste:function(a,t){return(a=a.toLowerCase()).replace("mailto:","")},definitions:{"*":{validator:'[0-9A-Za-z!#$%&"*+/=?^_`{|}~-]',cardinality:1,casing:"lower"}}}).mask("#kt_inputmask_8")}};KTUtil.onDOMContentLoaded((function(){KTFormsInputmaskDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/multiselectsplitter.js b/Mid-term/public/assets/js/custom/documentation/forms/multiselectsplitter.js new file mode 100644 index 000000000..ade2d6672 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/multiselectsplitter.js @@ -0,0 +1 @@ +"use strict";var KTFormsMultiselectsplitterDemos={init:function(){$("#kt_multiselectsplitter_example_1").multiselectsplitter(),$("#kt_multiselectsplitter_example_2").multiselectsplitter({selectSize:7,clearOnFirstChange:!0,groupCounter:!0}),$("#kt_multiselectsplitter_example_3").multiselectsplitter({groupCounter:!0,maximumSelected:2}),$("#kt_multiselectsplitter_example_4").multiselectsplitter({groupCounter:!0,maximumSelected:3,onlySameGroup:!0}),$("#kt_multiselectsplitter_example_5").multiselectsplitter({size:6,groupCounter:!0,maximumSelected:2,maximumAlert:function(t){alert("You choose "+(t+1)+" options. Are you crazy ?")},createFirstSelect:function(t,e){return'"},createSecondSelect:function(t,e){return''}})}};KTUtil.onDOMContentLoaded((function(){KTFormsMultiselectsplitterDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/nouislider.js b/Mid-term/public/assets/js/custom/documentation/forms/nouislider.js new file mode 100644 index 000000000..bacbd40f4 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/nouislider.js @@ -0,0 +1 @@ +"use strict";var KTFormsNouisliderDemos={init:function(e){var t,r,i,n,o,c;t=document.querySelector("#kt_slider_basic"),r=document.querySelector("#kt_slider_basic_min"),i=document.querySelector("#kt_slider_basic_max"),noUiSlider.create(t,{start:[20,80],connect:!0,range:{min:0,max:100}}),t.noUiSlider.on("update",(function(e,t){t?i.innerHTML=e[t]:r.innerHTML=e[t]})),n=document.querySelector("#kt_slider_sizes_sm"),o=document.querySelector("#kt_slider_sizes_default"),c=document.querySelector("#kt_slider_sizes_lg"),noUiSlider.create(n,{start:[20,80],connect:!0,range:{min:0,max:100}}),noUiSlider.create(o,{start:[20,80],connect:!0,range:{min:0,max:100}}),noUiSlider.create(c,{start:[20,80],connect:!0,range:{min:0,max:100}}),function(){var e=document.querySelector("#kt_slider_vertical");noUiSlider.create(e,{start:[60,160],connect:!0,orientation:"vertical",range:{min:0,max:200}})}(),function(){var e=document.querySelector("#kt_slider_tooltip");noUiSlider.create(e,{start:[20,80,120],tooltips:[!1,wNumb({decimals:1}),!0],range:{min:0,max:200}})}(),function(){var e=document.querySelector("#kt_slider_soft_limits");noUiSlider.create(e,{start:50,range:{min:0,max:100},pips:{mode:"values",values:[20,80],density:4}})}()}};KTUtil.onDOMContentLoaded((function(){KTFormsNouisliderDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/password-meter.js b/Mid-term/public/assets/js/custom/documentation/forms/password-meter.js new file mode 100644 index 000000000..b93c8280c --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/password-meter.js @@ -0,0 +1 @@ +"use strict";var KTGeneralPasswordMeterDemos={init:function(){!function(){const e=document.getElementById("kt_password_meter_example_show_score"),t=document.querySelector("#kt_password_meter_example"),n=KTPasswordMeter.getInstance(t);e.addEventListener("click",(e=>{const t=n.getScore();Swal.fire({text:"Current Password Score: "+t,icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))}()}};KTUtil.onDOMContentLoaded((function(){KTGeneralPasswordMeterDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/recaptcha.js b/Mid-term/public/assets/js/custom/documentation/forms/recaptcha.js new file mode 100644 index 000000000..36105bf39 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/recaptcha.js @@ -0,0 +1 @@ +"use strict";var KTFormsGoogleRecaptchaDemos={init:function(e){document.querySelector("#kt_form_submit_button").addEventListener("click",(function(e){e.preventDefault(),grecaptcha.ready((function(){""===grecaptcha.getResponse()?alert("Please validate the Google reCaptcha."):alert("Successful validation! Now you can submit this form to your server side processing.")}))}))}};KTUtil.onDOMContentLoaded((function(){KTFormsGoogleRecaptchaDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/select2.js b/Mid-term/public/assets/js/custom/documentation/forms/select2.js new file mode 100644 index 000000000..e61dec11c --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/select2.js @@ -0,0 +1 @@ +"use strict";var KTFormsSelect2Demo={init:function(){var e;e=function(e){if(!e.id)return e.text;var t=document.createElement("span"),n="";return n+='image',n+=e.text,t.innerHTML=n,$(t)},$("#kt_docs_select2_country").select2({templateSelection:e,templateResult:e}),function(){var e=function(e){if(!e.id)return e.text;var t=document.createElement("span"),n="";return n+='image',n+=e.text,t.innerHTML=n,$(t)};$("#kt_docs_select2_users").select2({templateSelection:e,templateResult:e})}(),function(){var e=function(e){if(!e.id)return e.text;var t=document.createElement("span"),n="";return n+='image',n+=e.text,t.innerHTML=n,$(t)};$("#kt_docs_select2_floating_labels_1").select2({placeholder:"Select coin",minimumResultsForSearch:1/0,templateSelection:e,templateResult:e})}(),function(){var e=function(e){if(!e.id)return e.text;var t=document.createElement("span"),n="";return n+='image',n+=e.text,t.innerHTML=n,$(t)};$("#kt_docs_select2_floating_labels_2").select2({placeholder:"Select coin",minimumResultsForSearch:1/0,templateSelection:e,templateResult:e})}(),(()=>{const e=e=>{if(!e.id)return e.text;var t=document.createElement("span"),n="";return n+='
',n+=''+e.text+'',n+='
',n+=''+e.text+"",n+=''+e.element.getAttribute("data-kt-rich-content-subcontent")+"",n+="
",n+="
",t.innerHTML=n,$(t)};$("#kt_docs_select2_rich_content").select2({placeholder:"Select an option",minimumResultsForSearch:1/0,templateSelection:e,templateResult:e})})()}};KTUtil.onDOMContentLoaded((function(){KTFormsSelect2Demo.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/forms/tagify.js b/Mid-term/public/assets/js/custom/documentation/forms/tagify.js new file mode 100644 index 000000000..3179c9d62 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/forms/tagify.js @@ -0,0 +1 @@ +"use strict";var KTFormsTagifyDemos=function(){const e=()=>{var e=new Tagify(document.querySelector("#kt_tagify_country"),{delimiters:null,templates:{tag:function(e){const a=hostUrl+"media/flags/"+e.value.toLowerCase().replace(/\s+/g,"-")+".svg";try{return`\n \n
\n ${e.code?``:""}\n ${e.value}\n
\n
`}catch(e){}},dropdownItem:function(e){const a=hostUrl+"media/flags/"+e.value.toLowerCase().replace(/\s+/g,"-")+".svg";try{return`
\n \n ${e.value}\n
`}catch(e){}}},enforceWhitelist:!0,whitelist:[{value:"Argentina",code:"AR"},{value:"Australia",code:"AU",searchBy:"beach, sub-tropical"},{value:"Austria",code:"AT"},{value:"Brazil",code:"BR"},{value:"China",code:"CN"},{value:"Egypt",code:"EG"},{value:"Finland",code:"FI"},{value:"France",code:"FR"},{value:"Germany",code:"DE"},{value:"Hong Kong",code:"HK"},{value:"Hungary",code:"HU"},{value:"Iceland",code:"IS"},{value:"India",code:"IN"},{value:"Indonesia",code:"ID"},{value:"Italy",code:"IT"},{value:"Jamaica",code:"JM"},{value:"Japan",code:"JP"},{value:"Jersey",code:"JE"},{value:"Luxembourg",code:"LU"},{value:"Mexico",code:"MX"},{value:"Netherlands",code:"NL"},{value:"New Zealand",code:"NZ"},{value:"Norway",code:"NO"},{value:"Philippines",code:"PH"},{value:"Singapore",code:"SG"},{value:"South Korea",code:"KR"},{value:"Sweden",code:"SE"},{value:"Switzerland",code:"CH"},{value:"Thailand",code:"TH"},{value:"Ukraine",code:"UA"},{value:"United Kingdom",code:"GB"},{value:"United States",code:"US"},{value:"Vietnam",code:"VN"}],dropdown:{enabled:1,classname:"extra-properties"}}),a=e.settings.whitelist.slice(0,2);e.addTags(a)},a=()=>{var e=document.querySelector("#kt_tagify_users");var a,t=new Tagify(e,{tagTextProp:"name",enforceWhitelist:!0,skipInvalid:!0,dropdown:{closeOnSelect:!1,enabled:0,classname:"users-list",searchKeys:["name","email"]},templates:{tag:function(e){return`\n \n \n
\n
\n \n
\n ${e.name}\n
\n
\n `},dropdownItem:function(e){return`\n
\n\n ${e.avatar?`\n
\n \n
`:""}\n\n
\n ${e.name}\n ${e.email}\n
\n
\n `}},whitelist:[{value:1,name:"Emma Smith",avatar:"avatars/300-6.jpg",email:"e.smith@kpmg.com.au"},{value:2,name:"Max Smith",avatar:"avatars/300-1.jpg",email:"max@kt.com"},{value:3,name:"Sean Bean",avatar:"avatars/300-5.jpg",email:"sean@dellito.com"},{value:4,name:"Brian Cox",avatar:"avatars/300-25.jpg",email:"brian@exchange.com"},{value:5,name:"Francis Mitcham",avatar:"avatars/300-9.jpg",email:"f.mitcham@kpmg.com.au"},{value:6,name:"Dan Wilson",avatar:"avatars/300-23.jpg",email:"dam@consilting.com"},{value:7,name:"Ana Crown",avatar:"avatars/300-12.jpg",email:"ana.cf@limtel.com"},{value:8,name:"John Miller",avatar:"avatars/300-13.jpg",email:"miller@mapple.com"}]});t.on("dropdown:show dropdown:updated",(function(e){var n=e.detail.tagify.DOM.dropdown.content;t.suggestedListItems.length>1&&(a=t.parseTemplate("dropdownItem",[{class:"addAll",name:"Add all",email:t.settings.whitelist.reduce((function(e,a){return t.isTagDuplicate(a.value)?e:e+1}),0)+" Members"}]),n.insertBefore(a,n.firstChild))})),t.on("dropdown:select",(function(e){e.detail.elm==a&&t.dropdown.selectAll.call(t)}))};return{init:function(){var t,n,i,o,l;t=document.querySelector("#kt_tagify_1"),n=document.querySelector("#kt_tagify_2"),new Tagify(t,{placeholder:"Type something"}),new Tagify(n,{placeholder:"Type something"}),function(e){var a=document.querySelector("#kt_tagify_3"),t=document.querySelector("#kt_tagify_4"),n=document.querySelector("#kt_tagify_5");new Tagify(a),new Tagify(t),new Tagify(n)}(),function(e){var a=document.querySelector("#kt_tagify_6"),t=document.querySelector("#kt_tagify_7");new Tagify(a,{whitelist:["A# .NET","A# (Axiom)","A-0 System","A+","A++","ABAP","ABC","ABC ALGOL","ABSET","ABSYS","ACC","Accent","Ace DASL","ACL2","Avicsoft","ACT-III","Action!","ActionScript","Ada","Adenine","Agda","Agilent VEE","Agora","AIMMS","Alef","ALF","ALGOL 58","ALGOL 60","ALGOL 68","ALGOL W","Alice","Alma-0","AmbientTalk","Amiga E","AMOS","AMPL","Apex (Salesforce.com)","APL","AppleScript","Arc","ARexx","Argus","AspectJ","Assembly language","ATS","Ateji PX","AutoHotkey","Autocoder","AutoIt","AutoLISP / Visual LISP","Averest","AWK","Axum","Active Server Pages","ASP.NET","B","Babbage","Bash","BASIC","bc","BCPL","BeanShell","Batch (Windows/Dos)","Bertrand","BETA","Bigwig","Bistro","BitC","BLISS","Blockly","BlooP","Blue","Boo","Boomerang","Bourne shell (including bash and ksh)","BREW","BPEL","B","C--","C++ – ISO/IEC 14882","C# – ISO/IEC 23270","C/AL","Caché ObjectScript","C Shell","Caml","Cayenne","CDuce","Cecil","Cesil","Céu","Ceylon","CFEngine","CFML","Cg","Ch","Chapel","Charity","Charm","Chef","CHILL","CHIP-8","chomski","ChucK","CICS","Cilk","Citrine (programming language)","CL (IBM)","Claire","Clarion","Clean","Clipper","CLIPS","CLIST","Clojure","CLU","CMS-2","COBOL – ISO/IEC 1989","CobolScript – COBOL Scripting language","Cobra","CODE","CoffeeScript","ColdFusion","COMAL","Combined Programming Language (CPL)","COMIT","Common Intermediate Language (CIL)","Common Lisp (also known as CL)","COMPASS","Component Pascal","Constraint Handling Rules (CHR)","COMTRAN","Converge","Cool","Coq","Coral 66","Corn","CorVision","COWSEL","CPL","CPL","Cryptol","csh","Csound","CSP","CUDA","Curl","Curry","Cybil","Cyclone","Cython","Java","Javascript","M2001","M4","M#","Machine code","MAD (Michigan Algorithm Decoder)","MAD/I","Magik","Magma","make","Maple","MAPPER now part of BIS","MARK-IV now VISION:BUILDER","Mary","MASM Microsoft Assembly x86","MATH-MATIC","Mathematica","MATLAB","Maxima (see also Macsyma)","Max (Max Msp – Graphical Programming Environment)","Maya (MEL)","MDL","Mercury","Mesa","Metafont","Microcode","MicroScript","MIIS","Milk (programming language)","MIMIC","Mirah","Miranda","MIVA Script","ML","Model 204","Modelica","Modula","Modula-2","Modula-3","Mohol","MOO","Mortran","Mouse","MPD","Mathcad","MSIL – deprecated name for CIL","MSL","MUMPS","Mystic Programming L"],maxTags:10,dropdown:{maxItems:20,classname:"tagify__inline__suggestions",enabled:0,closeOnSelect:!1}}),new Tagify(t,{whitelist:["A# .NET","A# (Axiom)","A-0 System","A+","A++","ABAP","ABC","ABC ALGOL","ABSET","ABSYS","ACC","Accent","Ace DASL","ACL2","Avicsoft","ACT-III","Action!","ActionScript","Ada","Adenine","Agda","Agilent VEE","Agora","AIMMS","Alef","ALF","ALGOL 58","ALGOL 60","ALGOL 68","ALGOL W","Alice","Alma-0","AmbientTalk","Amiga E","AMOS","AMPL","Apex (Salesforce.com)","APL","AppleScript","Arc","ARexx","Argus","AspectJ","Assembly language","ATS","Ateji PX","AutoHotkey","Autocoder","AutoIt","AutoLISP / Visual LISP","Averest","AWK","Axum","Active Server Pages","ASP.NET","B","Babbage","Bash","BASIC","bc","BCPL","BeanShell","Batch (Windows/Dos)","Bertrand","BETA","Bigwig","Bistro","BitC","BLISS","Blockly","BlooP","Blue","Boo","Boomerang","Bourne shell (including bash and ksh)","BREW","BPEL","B","C--","C++ – ISO/IEC 14882","C# – ISO/IEC 23270","C/AL","Caché ObjectScript","C Shell","Caml","Cayenne","CDuce","Cecil","Cesil","Céu","Ceylon","CFEngine","CFML","Cg","Ch","Chapel","Charity","Charm","Chef","CHILL","CHIP-8","chomski","ChucK","CICS","Cilk","Citrine (programming language)","CL (IBM)","Claire","Clarion","Clean","Clipper","CLIPS","CLIST","Clojure","CLU","CMS-2","COBOL – ISO/IEC 1989","CobolScript – COBOL Scripting language","Cobra","CODE","CoffeeScript","ColdFusion","COMAL","Combined Programming Language (CPL)","COMIT","Common Intermediate Language (CIL)","Common Lisp (also known as CL)","COMPASS","Component Pascal","Constraint Handling Rules (CHR)","COMTRAN","Converge","Cool","Coq","Coral 66","Corn","CorVision","COWSEL","CPL","CPL","Cryptol","csh","Csound","CSP","CUDA","Curl","Curry","Cybil","Cyclone","Cython","Java","Javascript","M2001","M4","M#","Machine code","MAD (Michigan Algorithm Decoder)","MAD/I","Magik","Magma","make","Maple","MAPPER now part of BIS","MARK-IV now VISION:BUILDER","Mary","MASM Microsoft Assembly x86","MATH-MATIC","Mathematica","MATLAB","Maxima (see also Macsyma)","Max (Max Msp – Graphical Programming Environment)","Maya (MEL)","MDL","Mercury","Mesa","Metafont","Microcode","MicroScript","MIIS","Milk (programming language)","MIMIC","Mirah","Miranda","MIVA Script","ML","Model 204","Modelica","Modula","Modula-2","Modula-3","Mohol","MOO","Mortran","Mouse","MPD","Mathcad","MSIL – deprecated name for CIL","MSL","MUMPS","Mystic Programming L"],maxTags:10,dropdown:{maxItems:20,classname:"",enabled:0,closeOnSelect:!1}})}(),function(e){var a=document.querySelector("#kt_tagify_8");new Tagify(a)}(),i=document.querySelector("#kt_tagify_custom"),o=new Tagify(i,{whitelist:["Bootstrap","Angular","React","Vue"],placeholder:"Type something",enforceWhitelist:!0}),l=document.querySelector("#kt_tagify_custom_suggestions"),KTUtil.on(l,'[data-kt-suggestion="true"]',"click",(function(e){o.addTags([this.innerText])})),e(),a()}}}();KTUtil.onDOMContentLoaded((function(){KTFormsTagifyDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/blockui.js b/Mid-term/public/assets/js/custom/documentation/general/blockui.js new file mode 100644 index 000000000..295c260f6 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/blockui.js @@ -0,0 +1 @@ +"use strict";var KTGeneralBlockUI={init:function(){var e,t,n;e=document.querySelector("#kt_block_ui_1_button"),t=document.querySelector("#kt_block_ui_1_target"),n=new KTBlockUI(t),e.addEventListener("click",(function(){n.isBlocked()?(n.release(),e.innerText="Block"):(n.block(),e.innerText="Release")})),function(){var e=document.querySelector("#kt_block_ui_2_button"),t=document.querySelector("#kt_block_ui_2_target"),n=new KTBlockUI(t,{message:'
Loading...
'});e.addEventListener("click",(function(){n.isBlocked()?(n.release(),e.innerText="Block"):(n.block(),e.innerText="Release")}))}(),function(){var e=document.querySelector("#kt_block_ui_3_button"),t=document.querySelector("#kt_block_ui_3_target"),n=new KTBlockUI(t,{overlayClass:"bg-danger bg-opacity-25"});e.addEventListener("click",(function(){n.isBlocked()?(n.release(),e.innerText="Block"):(n.block(),e.innerText="Release")}))}(),function(){var e=document.querySelector("#kt_block_ui_4_button"),t=document.querySelector("#kt_block_ui_4_target"),n=new KTBlockUI(t);e.addEventListener("click",(function(e){e.preventDefault(),n.block(),setTimeout((function(){n.release()}),3e3)}))}()}};KTUtil.onDOMContentLoaded((function(){KTGeneralBlockUI.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/cropper.js b/Mid-term/public/assets/js/custom/documentation/general/cropper.js new file mode 100644 index 000000000..40f2ab649 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/cropper.js @@ -0,0 +1 @@ +"use strict";var KTCropperDemo={init:function(){var e,t,n;e=document.getElementById("image"),t={crop:function(e){document.getElementById("dataX").value=Math.round(e.detail.x),document.getElementById("dataY").value=Math.round(e.detail.y),document.getElementById("dataWidth").value=Math.round(e.detail.width),document.getElementById("dataHeight").value=Math.round(e.detail.height),document.getElementById("dataRotate").value=e.detail.rotate,document.getElementById("dataScaleX").value=e.detail.scaleX,document.getElementById("dataScaleY").value=e.detail.scaleY;var t=document.getElementById("cropper-preview-lg");t.innerHTML="",t.appendChild(n.getCroppedCanvas({width:256,height:160}));var a=document.getElementById("cropper-preview-md");a.innerHTML="",a.appendChild(n.getCroppedCanvas({width:128,height:80}));var d=document.getElementById("cropper-preview-sm");d.innerHTML="",d.appendChild(n.getCroppedCanvas({width:64,height:40}));var o=document.getElementById("cropper-preview-xs");o.innerHTML="",o.appendChild(n.getCroppedCanvas({width:32,height:20}))}},n=new Cropper(e,t),document.getElementById("cropper-buttons").querySelectorAll("[data-method]").forEach((function(e){e.addEventListener("click",(function(t){var a,d=e.getAttribute("data-method"),o=e.getAttribute("data-option"),r=e.getAttribute("data-second-option");try{o=JSON.parse(o)}catch(t){}if(a=r?o?n[d](o):n[d]():n[d](o,r),"getCroppedCanvas"===d){var i=document.getElementById("getCroppedCanvasModal").querySelector(".modal-body");i.innerHTML="",i.appendChild(a)}var c=document.querySelector("#putData");try{c.value=JSON.stringify(a)}catch(t){a||(c.value=a)}}))})),document.getElementById("setAspectRatio").querySelectorAll('[name="aspectRatio"]').forEach((function(e){e.addEventListener("click",(function(e){n.setAspectRatio(e.target.value)}))})),document.getElementById("viewMode").querySelectorAll('[name="viewMode"]').forEach((function(a){a.addEventListener("click",(function(a){n.destroy(),n=new Cropper(e,Object.assign({},t,{viewMode:a.target.value}))}))})),document.getElementById("toggleOptionButtons").querySelectorAll('[type="checkbox"]').forEach((function(a){a.addEventListener("click",(function(a){var d={};d[a.target.getAttribute("name")]=a.target.checked,t=Object.assign({},t,d),n.destroy(),n=new Cropper(e,t)}))}))}};KTUtil.onDOMContentLoaded((function(){KTCropperDemo.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/datatables/advanced.js b/Mid-term/public/assets/js/custom/documentation/general/datatables/advanced.js new file mode 100644 index 000000000..24537ef9c --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/datatables/advanced.js @@ -0,0 +1 @@ +"use strict";var KTDatatablesAdvanced={init:function(){var t,e;t={1:{title:"Pending",state:"primary"},2:{title:"Delivered",state:"danger"},3:{title:"Canceled",state:"primary"},4:{title:"Success",state:"success"},5:{title:"Info",state:"info"},6:{title:"Danger",state:"danger"},7:{title:"Warning",state:"warning"}},$("#kt_datatable_example_1").DataTable({columnDefs:[{render:function(e,a,n){var l=KTUtil.getRandomInt(1,7);return e+''+t[l].title+""},targets:1}]}),$("#kt_datatable_example_2").DataTable({columnDefs:[{visible:!1,targets:-1}]}),e=$("#kt_datatable_example_3").DataTable({columnDefs:[{visible:!1,targets:2}],order:[[2,"asc"]],displayLength:25,drawCallback:function(t){var e=this.api(),a=e.rows({page:"current"}).nodes(),n=null;e.column(2,{page:"current"}).data().each((function(t,e){n!==t&&($(a).eq(e).before(''+t+""),n=t)}))}}),$("#kt_datatable_example_3 tbody").on("click","tr.group",(function(){var t=e.order()[0];2===t[0]&&"asc"===t[1]?e.order([2,"desc"]).draw():e.order([2,"asc"]).draw()})),$("#kt_datatable_example_4").DataTable({footerCallback:function(t,e,a,n,l){var r=this.api(),s=function(t){return"string"==typeof t?1*t.replace(/[\$,]/g,""):"number"==typeof t?t:0},i=r.column(4).data().reduce((function(t,e){return s(t)+s(e)}),0),c=r.column(4,{page:"current"}).data().reduce((function(t,e){return s(t)+s(e)}),0);$(r.column(4).footer()).html("$"+c+" ( $"+i+" total)")}}),$("#kt_datatable_example_5").DataTable({language:{lengthMenu:"Show _MENU_"},dom:"<'row'<'col-sm-6 d-flex align-items-center justify-conten-start'l><'col-sm-6 d-flex align-items-center justify-content-end'f>><'table-responsive'tr><'row'<'col-sm-12 col-md-5 d-flex align-items-center justify-content-center justify-content-md-start'i><'col-sm-12 col-md-7 d-flex align-items-center justify-content-center justify-content-md-end'p>>"}),function(){var t={1:{title:"Pending",state:"primary"},2:{title:"Delivered",state:"danger"},3:{title:"Canceled",state:"primary"},4:{title:"Success",state:"success"},5:{title:"Info",state:"info"},6:{title:"Danger",state:"danger"},7:{title:"Warning",state:"warning"}};$("#kt_datatable_example_6").DataTable({responsive:!0,columnDefs:[{render:function(e,a,n){var l=KTUtil.getRandomInt(1,7);return e+''+t[l].title+""},targets:1}]})}(),$("#kt_datatable_example_7").DataTable({select:!0})}};KTUtil.onDOMContentLoaded((function(){KTDatatablesAdvanced.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/datatables/api.js b/Mid-term/public/assets/js/custom/documentation/general/datatables/api.js new file mode 100644 index 000000000..5834ed319 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/datatables/api.js @@ -0,0 +1 @@ +"use strict";var KTDatatablesApi={init:function(){var a,t,e;a=$("#kt_datatable_example_1").DataTable(),t=1,$("#kt_datatable_example_1_addrow").on("click",(function(){a.row.add([t+".1",t+".2",t+".3",t+".4",t+".5"]).draw(!1),t++})),$("#kt_datatable_example_1_addrow").click(),e=$("#kt_datatable_example_2").DataTable({columnDefs:[{orderable:!1,targets:[1,2,3]}]}),$("#kt_datatable_example_2_submit").click((function(){var a=e.$("input, select").serialize();return alert("The following data would have been submitted to the server: \n\n"+a.substr(0,120)+"..."),!1}))}};KTUtil.onDOMContentLoaded((function(){KTDatatablesApi.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/datatables/basic.js b/Mid-term/public/assets/js/custom/documentation/general/datatables/basic.js new file mode 100644 index 000000000..7b81e3d8a --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/datatables/basic.js @@ -0,0 +1 @@ +"use strict";var KTDatatablesBasic={init:function(){$("#kt_datatable_example_1").DataTable(),$("#kt_datatable_example_2").DataTable({scrollY:"500px",scrollCollapse:!0,paging:!1,dom:"<'table-responsive'tr>"}),$("#kt_datatable_example_3").DataTable({scrollX:!0}),$("#kt_datatable_example_4").DataTable({scrollY:300,scrollX:!0})}};KTUtil.onDOMContentLoaded((function(){KTDatatablesBasic.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/datatables/buttons.js b/Mid-term/public/assets/js/custom/documentation/general/datatables/buttons.js new file mode 100644 index 000000000..e3865f3ee --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/datatables/buttons.js @@ -0,0 +1 @@ +"use strict";var KTDatatablesButtons=function(){var t,e;return{init:function(){(t=document.querySelector("#kt_datatable_example_1"))&&(t.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),a=moment(e[3].innerHTML,"DD MMM YYYY, LT").format();e[3].setAttribute("data-order",a)})),e=$(t).DataTable({info:!1,order:[],pageLength:10}),(()=>{const e="Customer Orders Report";new $.fn.dataTable.Buttons(t,{buttons:[{extend:"copyHtml5",title:e},{extend:"excelHtml5",title:e},{extend:"csvHtml5",title:e},{extend:"pdfHtml5",title:e}]}).container().appendTo($("#kt_datatable_example_1_export")),document.querySelectorAll("#kt_datatable_example_1_export_menu [data-kt-export]").forEach((t=>{t.addEventListener("click",(t=>{t.preventDefault();const e=t.target.getAttribute("data-kt-export");document.querySelector(".dt-buttons .buttons-"+e).click()}))}))})(),document.querySelector('[data-kt-filter="search"]').addEventListener("keyup",(function(t){e.search(t.target.value).draw()})))}}}();KTUtil.onDOMContentLoaded((function(){KTDatatablesButtons.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/datatables/server-side.js b/Mid-term/public/assets/js/custom/documentation/general/datatables/server-side.js new file mode 100644 index 000000000..7721efd59 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/datatables/server-side.js @@ -0,0 +1 @@ +"use strict";var KTDatatablesServerSide=function(){var e,t,n=()=>{document.querySelectorAll('[data-kt-docs-table-filter="delete_row"]').forEach((t=>{t.addEventListener("click",(function(t){t.preventDefault();const n=t.target.closest("tr").querySelectorAll("td")[1].innerText;Swal.fire({text:"Are you sure you want to delete "+n+"?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(t){t.value?Swal.fire({text:"Deleting "+n,icon:"info",buttonsStyling:!1,showConfirmButton:!1,timer:2e3}).then((function(){Swal.fire({text:"You have deleted "+n+"!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){e.draw()}))})):"cancel"===t.dismiss&&Swal.fire({text:n+" was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))}))},o=function(){const t=document.querySelector("#kt_datatable_example_1"),n=t.querySelectorAll('[type="checkbox"]'),o=document.querySelector('[data-kt-docs-table-select="delete_selected"]');n.forEach((e=>{e.addEventListener("click",(function(){setTimeout((function(){a()}),50)}))})),o.addEventListener("click",(function(){Swal.fire({text:"Are you sure you want to delete selected customers?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,showLoaderOnConfirm:!0,confirmButtonText:"Yes, delete!",cancelButtonText:"No, cancel",customClass:{confirmButton:"btn fw-bold btn-danger",cancelButton:"btn fw-bold btn-active-light-primary"}}).then((function(n){n.value?Swal.fire({text:"Deleting selected customers",icon:"info",buttonsStyling:!1,showConfirmButton:!1,timer:2e3}).then((function(){Swal.fire({text:"You have deleted all selected customers!.",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}}).then((function(){e.draw()}));t.querySelectorAll('[type="checkbox"]')[0].checked=!1})):"cancel"===n.dismiss&&Swal.fire({text:"Selected customers was not deleted.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn fw-bold btn-primary"}})}))}))},a=function(){const e=document.querySelector("#kt_datatable_example_1"),t=document.querySelector('[data-kt-docs-table-toolbar="base"]'),n=document.querySelector('[data-kt-docs-table-toolbar="selected"]'),o=document.querySelector('[data-kt-docs-table-select="selected_count"]'),a=e.querySelectorAll('tbody [type="checkbox"]');let c=!1,r=0;a.forEach((e=>{e.checked&&(c=!0,r++)})),c?(o.innerHTML=r,t.classList.add("d-none"),n.classList.remove("d-none")):(t.classList.remove("d-none"),n.classList.add("d-none"))};return{init:function(){e=$("#kt_datatable_example_1").DataTable({searchDelay:500,processing:!0,serverSide:!0,order:[[5,"desc"]],stateSave:!0,select:{style:"multi",selector:'td:first-child input[type="checkbox"]',className:"row-selected"},ajax:{url:"https://preview.keenthemes.com/api/datatables.php"},columns:[{data:"RecordID"},{data:"Name"},{data:"Email"},{data:"Company"},{data:"CreditCardNumber"},{data:"Datetime"},{data:null}],columnDefs:[{targets:0,orderable:!1,render:function(e){return`\n
\n \n
`}},{targets:4,render:function(e,t,n){return`${n.CreditCardType}`+e}},{targets:-1,data:null,orderable:!1,className:"text-end",render:function(e,t,n){return'\n \n Actions\n \n \n \n \n \n \n \n \n \n \x3c!--begin::Menu--\x3e\n \n \x3c!--end::Menu--\x3e\n '}}],createdRow:function(e,t,n){$(e).find("td:eq(4)").attr("data-filter",t.CreditCardType)}}),e.$,e.on("draw",(function(){o(),a(),n(),KTMenu.createInstances()})),document.querySelector('[data-kt-docs-table-filter="search"]').addEventListener("keyup",(function(t){e.search(t.target.value).draw()})),o(),t=document.querySelectorAll('[data-kt-docs-table-filter="payment_type"] [name="payment_type"]'),document.querySelector('[data-kt-docs-table-filter="filter"]').addEventListener("click",(function(){let n="";t.forEach((e=>{e.checked&&(n=e.value),"all"===n&&(n="")})),e.search(n).draw()})),n(),document.querySelector('[data-kt-docs-table-filter="reset"]').addEventListener("click",(function(){t[0].checked=!0,e.search("").draw()}))}}}();KTUtil.onDOMContentLoaded((function(){KTDatatablesServerSide.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/datatables/subtable.js b/Mid-term/public/assets/js/custom/documentation/general/datatables/subtable.js new file mode 100644 index 000000000..0d8d6595b --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/datatables/subtable.js @@ -0,0 +1 @@ +"use strict";var KTDocsDatatableSubtable=function(){var t,e;const a=[{image:"76",name:"Go Pro 8",description:"Latest version of Go Pro.",cost:"500.00",qty:"1",total:"500.00",stock:"12"},{image:"60",name:"Bose Earbuds",description:"Top quality earbuds from Bose.",cost:"300.00",qty:"1",total:"300.00",stock:"8"},{image:"211",name:"Dry-fit Sports T-shirt",description:"Comfortable sportswear for everyday use.",cost:"89.00",qty:"1",total:"89.00",stock:"18"},{image:"21",name:"Apple Airpod 3",description:"Apple's latest and most advanced earbuds.",cost:"200.00",qty:"2",total:"400.00",stock:"32"},{image:"83",name:"Nike Pumps",description:"Apple's latest and most advanced headphones.",cost:"200.00",qty:"1",total:"200.00",stock:"8"}],o=()=>{const t=document.querySelectorAll('[data-kt-docs-datatable-subtable="expand_row"]'),e=[4,1,5,1,4,2];t.forEach(((t,o)=>{t.addEventListener("click",(d=>{d.stopImmediatePropagation(),d.preventDefault();const l=t.closest("tr"),r=["isOpen","border-bottom-0"],n=[];for(var c=0;c{a.forEach(((s,d)=>{const l=e.cloneNode(!0),r=l.querySelector('[data-kt-docs-datatable-subtable="template_image"]'),n=l.querySelector('[data-kt-docs-datatable-subtable="template_name"]'),c=l.querySelector('[data-kt-docs-datatable-subtable="template_description"]'),i=l.querySelector('[data-kt-docs-datatable-subtable="template_cost"]'),b=l.querySelector('[data-kt-docs-datatable-subtable="template_qty"]'),u=l.querySelector('[data-kt-docs-datatable-subtable="template_total"]'),m=l.querySelector('[data-kt-docs-datatable-subtable="template_stock"]'),p=r.getAttribute("src");if(r.setAttribute("src",p+s.image+".gif"),n.innerText=s.name,c.innerText=s.description,i.innerText=s.cost,b.innerText=s.qty,u.innerText=s.total,s.stock>10?m.innerHTML='
In Stock
':m.innerHTML='
Low Stock
',1===a.length){let t=["rounded","rounded-end-0"];l.querySelectorAll("td")[0].classList.add(...t),t=["rounded","rounded-start-0"],l.querySelectorAll("td")[4].classList.add(...t),l.classList.add("border-bottom-0")}else{if(d===a.length-1){let t=["rounded-start","rounded-bottom-0"];l.querySelectorAll("td")[0].classList.add(...t),t=["rounded-end","rounded-bottom-0"],l.querySelectorAll("td")[4].classList.add(...t)}if(0===d){let t=["rounded-start","rounded-top-0"];l.querySelectorAll("td")[0].classList.add(...t),t=["rounded-end","rounded-top-0"],l.querySelectorAll("td")[4].classList.add(...t),l.classList.add("border-bottom-0")}}t.querySelector("tbody").insertBefore(l,o.nextSibling)}))},d=()=>{document.querySelectorAll('[data-kt-docs-datatable-subtable="subtable_template"]').forEach((t=>{t.parentNode.removeChild(t)}));t.querySelectorAll("tbody tr").forEach((t=>{t.classList.remove("isOpen"),t.querySelector('[data-kt-docs-datatable-subtable="expand_row"]')&&t.querySelector('[data-kt-docs-datatable-subtable="expand_row"]').classList.remove("active")}))};return{init:function(){(t=document.querySelector("#kt_docs_datatable_subtable"))&&((()=>{t.querySelectorAll("tbody tr").forEach((t=>{const e=t.querySelectorAll("td"),a=moment(e[1].innerHTML,"DD MMM YYYY, LT").format();t.closest('[data-kt-docs-datatable-subtable="subtable_template"]')||(e[1].setAttribute("data-order",a),e[1].innerText=moment(a).fromNow())}));const a=document.querySelector('[data-kt-docs-datatable-subtable="subtable_template"]');(e=a.cloneNode(!0)).classList.remove("d-none"),a.parentNode.removeChild(a),$(t).DataTable({info:!1,order:[],lengthChange:!1,pageLength:6,ordering:!1,paging:!1,columnDefs:[{orderable:!1,targets:0},{orderable:!1,targets:6}]}).on("draw",(function(){d(),o()}))})(),o())}}}();"undefined"!=typeof module&&(module.exports=KTDocsDatatableSubtable),KTUtil.onDOMContentLoaded((function(){KTDocsDatatableSubtable.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/draggable/cards.js b/Mid-term/public/assets/js/custom/documentation/general/draggable/cards.js new file mode 100644 index 000000000..103e2dad0 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/draggable/cards.js @@ -0,0 +1 @@ +"use strict";var KTDraggableCards={init:function(){!function(){var a=document.querySelectorAll(".draggable-zone");if(0===a.length)return!1;new Sortable.default(a,{draggable:".draggable",handle:".draggable .draggable-handle",mirror:{appendTo:"body",constrainDimensions:!0}})}()}};KTUtil.onDOMContentLoaded((function(){KTDraggableCards.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/draggable/multiple-containers.js b/Mid-term/public/assets/js/custom/documentation/general/draggable/multiple-containers.js new file mode 100644 index 000000000..6576abfc0 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/draggable/multiple-containers.js @@ -0,0 +1 @@ +"use strict";var KTDraggableMultiple={init:function(){!function(){var e=document.querySelectorAll(".draggable-zone");if(0===e.length)return!1;new Sortable.default(e,{draggable:".draggable",handle:".draggable .draggable-handle",mirror:{appendTo:"body",constrainDimensions:!0}})}()}};KTUtil.onDOMContentLoaded((function(){KTDraggableMultiple.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/draggable/restricted.js b/Mid-term/public/assets/js/custom/documentation/general/draggable/restricted.js new file mode 100644 index 000000000..acb5f7b41 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/draggable/restricted.js @@ -0,0 +1 @@ +"use strict";var KTDraggableRestricted={init:function(){!function(){var e=document.querySelectorAll(".draggable-zone");const a=document.querySelector('[data-kt-draggable-level="restricted"]');if(0===e.length)return!1;var r=new Droppable.default(e,{draggable:".draggable",dropzone:".draggable-zone",handle:".draggable .draggable-handle",mirror:{appendTo:"body",constrainDimensions:!0}});let t;r.on("drag:start",(e=>{t=e.originalSource.getAttribute("data-kt-draggable-level")})),r.on("drag:over",(e=>{e.overContainer.closest('[data-kt-draggable-level="restricted"]')&&"admin"!==t?a.classList.add("bg-light-danger"):a.classList.remove("bg-light-danger")})),r.on("drag:stop",(r=>{e.forEach((e=>{e.classList.remove("draggable-dropzone--occupied")})),a.classList.remove("bg-light-danger")})),r.on("droppable:dropped",(e=>{e.dropzone.closest('[data-kt-draggable-level="restricted"]')&&"admin"!==t&&(a.classList.add("bg-light-danger"),e.cancel())}))}()}};KTUtil.onDOMContentLoaded((function(){KTDraggableRestricted.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/draggable/swappable.js b/Mid-term/public/assets/js/custom/documentation/general/draggable/swappable.js new file mode 100644 index 000000000..f1864cecf --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/draggable/swappable.js @@ -0,0 +1 @@ +"use strict";var KTDraggableSwappable={init:function(){!function(){var a=document.querySelectorAll(".draggable-zone");if(0===a.length)return!1;new Swappable.default(a,{draggable:".draggable",handle:".draggable .draggable-handle",mirror:{appendTo:"body",constrainDimensions:!0}})}()}};KTUtil.onDOMContentLoaded((function(){KTDraggableSwappable.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/drawer.js b/Mid-term/public/assets/js/custom/documentation/general/drawer.js new file mode 100644 index 000000000..6b3a94f5b --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/drawer.js @@ -0,0 +1 @@ +"use strict";var KTGeneralDrawerDemos={init:function(){}};KTUtil.onDOMContentLoaded((function(){KTGeneralDrawerDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/background-events.js b/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/background-events.js new file mode 100644 index 000000000..693ac901a --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/background-events.js @@ -0,0 +1 @@ +"use strict";var KTGeneralFullCalendarEventsDemos={init:function(){var e,t,a;e=KTUtil.getCssVariableValue("--bs-active-success"),t=KTUtil.getCssVariableValue("--bs-active-danger"),a=document.getElementById("kt_docs_fullcalendar_background_events"),new FullCalendar.Calendar(a,{headerToolbar:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay,listMonth"},initialDate:"2020-09-12",navLinks:!0,businessHours:!0,editable:!0,selectable:!0,events:[{title:"Business Lunch",start:"2020-09-03T13:00:00",constraint:"businessHours"},{title:"Meeting",start:"2020-09-13T11:00:00",constraint:"availableForMeeting",color:e},{title:"Conference",start:"2020-09-18",end:"2020-09-20"},{title:"Party",start:"2020-09-29T20:00:00"},{groupId:"availableForMeeting",start:"2020-09-11",end:"2020-09-11",display:"background"},{groupId:"availableForMeeting",start:"2020-09-13",end:"2020-09-13",display:"background"},{start:"2020-09-24",end:"2020-09-28",overlap:!1,display:"background",color:t},{start:"2020-09-06",end:"2020-09-08",overlap:!1,display:"background",color:t}]}).render()}};KTUtil.onDOMContentLoaded((function(){KTGeneralFullCalendarEventsDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/basic.js b/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/basic.js new file mode 100644 index 000000000..04de66641 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/basic.js @@ -0,0 +1 @@ +"use strict";var KTGeneralFullCalendarBasicDemos={init:function(){var e,t,i,n,r,o;e=moment().startOf("day"),t=e.format("YYYY-MM"),i=e.clone().subtract(1,"day").format("YYYY-MM-DD"),n=e.format("YYYY-MM-DD"),r=e.clone().add(1,"day").format("YYYY-MM-DD"),o=document.getElementById("kt_docs_fullcalendar_basic"),new FullCalendar.Calendar(o,{headerToolbar:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay,listMonth"},height:800,contentHeight:780,aspectRatio:3,nowIndicator:!0,now:n+"T09:25:00",views:{dayGridMonth:{buttonText:"month"},timeGridWeek:{buttonText:"week"},timeGridDay:{buttonText:"day"}},initialView:"dayGridMonth",initialDate:n,editable:!0,dayMaxEvents:!0,navLinks:!0,events:[{title:"All Day Event",start:t+"-01",description:"Toto lorem ipsum dolor sit incid idunt ut",className:"fc-event-danger fc-event-solid-warning"},{title:"Reporting",start:t+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:t+"-14",className:"fc-event-success"},{title:"Company Trip",start:t+"-02",description:"Lorem ipsum dolor sit tempor incid",end:t+"-03",className:"fc-event-primary"},{title:"ICT Expo 2017 - Product Release",start:t+"-03",description:"Lorem ipsum dolor sit tempor inci",end:t+"-05",className:"fc-event-light fc-event-solid-primary"},{title:"Dinner",start:t+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:t+"-10"},{id:999,title:"Repeating Event",start:t+"-09T16:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger"},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:t+"-16T16:00:00"},{title:"Conference",start:i,end:r,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-primary"},{title:"Meeting",start:n+"T10:30:00",end:n+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore"},{title:"Lunch",start:n+"T12:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:n+"T14:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing"},{title:"Happy Hour",start:n+"T17:30:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, conse ctetur"},{title:"Dinner",start:r+"T05:00:00",className:"fc-event-solid-danger fc-event-light",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:r+"T07:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing"},{title:"Click for Google",url:"http://google.com/",start:t+"-28",className:"fc-event-solid-info fc-event-light",description:"Lorem ipsum dolor sit amet, labore"}],eventContent:function(e){var t=$(e.el);e.event.extendedProps&&e.event.extendedProps.description&&(t.hasClass("fc-day-grid-event")?(t.data("content",e.event.extendedProps.description),t.data("placement","top"),KTApp.initPopover(t)):t.hasClass("fc-time-grid-event")?t.find(".fc-title").append('
'+e.event.extendedProps.description+"
"):0!==t.find(".fc-list-item-title").lenght&&t.find(".fc-list-item-title").append('
'+e.event.extendedProps.description+"
"))}}).render()}};KTUtil.onDOMContentLoaded((function(){KTGeneralFullCalendarBasicDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/drag-n-drop.js b/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/drag-n-drop.js new file mode 100644 index 000000000..48b68cea2 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/drag-n-drop.js @@ -0,0 +1 @@ +"use strict";var KTGeneralFullCalendarDragDemos={init:function(){!function(){var e=document.getElementById("kt_docs_fullcalendar_events_list");new FullCalendar.Draggable(e,{itemSelector:".fc-event",eventData:function(e){return{title:e.innerText.trim()}}});var t=document.getElementById("kt_docs_fullcalendar_drag");new FullCalendar.Calendar(t,{headerToolbar:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay,listWeek"},editable:!0,droppable:!0,drop:function(e){document.getElementById("drop-remove").checked&&e.draggedEl.parentNode.removeChild(e.draggedEl)}}).render()}()}};KTUtil.onDOMContentLoaded((function(){KTGeneralFullCalendarDragDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/locales.js b/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/locales.js new file mode 100644 index 000000000..9bbe14d52 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/locales.js @@ -0,0 +1 @@ +"use strict";var KTGeneralFullCalendarLocalesDemos={init:function(){var e,t,n;e=document.getElementById("kt_docs_fullcalendar_locale_selector"),t=document.getElementById("kt_docs_fullcalendar_locales"),(n=new FullCalendar.Calendar(t,{headerToolbar:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay,listMonth"},initialDate:"2020-09-12",locale:"en",buttonIcons:!1,weekNumbers:!0,navLinks:!0,editable:!0,dayMaxEvents:!0,events:[{title:"All Day Event",start:"2020-09-01"},{title:"Long Event",start:"2020-09-07",end:"2020-09-10"},{groupId:999,title:"Repeating Event",start:"2020-09-09T16:00:00"},{groupId:999,title:"Repeating Event",start:"2020-09-16T16:00:00"},{title:"Conference",start:"2020-09-11",end:"2020-09-13"},{title:"Meeting",start:"2020-09-12T10:30:00",end:"2020-09-12T12:30:00"},{title:"Lunch",start:"2020-09-12T12:00:00"},{title:"Meeting",start:"2020-09-12T14:30:00"},{title:"Happy Hour",start:"2020-09-12T17:30:00"},{title:"Dinner",start:"2020-09-12T20:00:00"},{title:"Birthday Party",start:"2020-09-13T07:00:00"},{title:"Click for Google",url:"http://google.com/",start:"2020-09-28"}]})).render(),n.getAvailableLocaleCodes().forEach((function(t){var n=document.createElement("option");n.value=t,n.selected="en"==t,n.innerText=t,e.appendChild(n)})),$(e).on("change",(function(){this.value&&n.setOption("locale",this.value)})),n.render()}};KTUtil.onDOMContentLoaded((function(){KTGeneralFullCalendarLocalesDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/selectable-dates.js b/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/selectable-dates.js new file mode 100644 index 000000000..7db51a2cc --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/selectable-dates.js @@ -0,0 +1 @@ +"use strict";var KTGeneralFullCalendarSelectDemos={init:function(){var t,e;t=document.getElementById("kt_docs_fullcalendar_selectable"),(e=new FullCalendar.Calendar(t,{headerToolbar:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay"},initialDate:"2020-09-12",navLinks:!0,selectable:!0,selectMirror:!0,select:function(t){Swal.fire({html:'
Create new event?
Event Name:
',icon:"info",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, create it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(n){if(n.value){var a=document.querySelector('input[name="event_name"]').value;a&&e.addEvent({title:a,start:t.start,end:t.end,allDay:t.allDay}),e.unselect()}else"cancel"===n.dismiss&&Swal.fire({text:"Event creation was declined!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))},eventClick:function(t){Swal.fire({text:"Are you sure you want to delete this event?",icon:"warning",showCancelButton:!0,buttonsStyling:!1,confirmButtonText:"Yes, delete it!",cancelButtonText:"No, return",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-active-light"}}).then((function(e){e.value?t.event.remove():"cancel"===e.dismiss&&Swal.fire({text:"Event was not deleted!.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))},editable:!0,dayMaxEvents:!0,events:[{title:"All Day Event",start:"2020-09-01"},{title:"Long Event",start:"2020-09-07",end:"2020-09-10"},{groupId:999,title:"Repeating Event",start:"2020-09-09T16:00:00"},{groupId:999,title:"Repeating Event",start:"2020-09-16T16:00:00"},{title:"Conference",start:"2020-09-11",end:"2020-09-13"},{title:"Meeting",start:"2020-09-12T10:30:00",end:"2020-09-12T12:30:00"},{title:"Lunch",start:"2020-09-12T12:00:00"},{title:"Meeting",start:"2020-09-12T14:30:00"},{title:"Happy Hour",start:"2020-09-12T17:30:00"},{title:"Dinner",start:"2020-09-12T20:00:00"},{title:"Birthday Party",start:"2020-09-13T07:00:00"},{title:"Click for Google",url:"http://google.com/",start:"2020-09-28"}]})).render()}};KTUtil.onDOMContentLoaded((function(){KTGeneralFullCalendarSelectDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/timezone.js b/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/timezone.js new file mode 100644 index 000000000..a8fc969e7 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/fullcalendar/timezone.js @@ -0,0 +1 @@ +"use strict";var KTGeneralFullCalendarTimezoneDemos={init:function(){!function(){var e=document.getElementById("kt_docs_fullcalendar_timezone_selector"),t=document.getElementById("kt_docs_fullcalendar_timezone"),i=moment().startOf("day"),n=i.format("YYYY-MM"),r=i.clone().subtract(1,"day").format("YYYY-MM-DD"),o=i.format("YYYY-MM-DD"),a=i.clone().add(1,"day").format("YYYY-MM-DD"),s=[{title:"All Day Event",start:n+"-01",description:"Toto lorem ipsum dolor sit incid idunt ut",className:"fc-event-danger fc-event-solid-warning"},{title:"Reporting",start:n+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:n+"-14",className:"fc-event-success"},{title:"Company Trip",start:n+"-02",description:"Lorem ipsum dolor sit tempor incid",end:n+"-03",className:"fc-event-primary"},{title:"ICT Expo 2017 - Product Release",start:n+"-03",description:"Lorem ipsum dolor sit tempor inci",end:n+"-05",className:"fc-event-light fc-event-solid-primary"},{title:"Dinner",start:n+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:n+"-10"},{id:999,title:"Repeating Event",start:n+"-09T16:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger"},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:n+"-16T16:00:00"},{title:"Conference",start:r,end:a,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-primary"},{title:"Meeting",start:o+"T10:30:00",end:o+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore"},{title:"Lunch",start:o+"T12:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:o+"T14:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing"},{title:"Happy Hour",start:o+"T17:30:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, conse ctetur"},{title:"Dinner",start:a+"T05:00:00",className:"fc-event-solid-danger fc-event-light",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:a+"T07:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing"},{title:"Click for Google",url:"http://google.com/",start:n+"-28",className:"fc-event-solid-info fc-event-light",description:"Lorem ipsum dolor sit amet, labore"}],l=new FullCalendar.Calendar(t,{timeZone:"local",headerToolbar:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay,listWeek"},initialDate:o,navLinks:!0,editable:!0,selectable:!0,dayMaxEvents:!0,eventTimeFormat:{hour:"numeric",minute:"2-digit",timeZoneName:"short"},events:s});l.render(),$(e).on("change",(function(){l.setOption("timeZone","UTC"),l.getEvents().forEach((e=>{e.remove()})),s.forEach((e=>{var t,i;this.value<0?(t=moment(e.start).subtract(this.value.replace(/\D/g,""),"seconds").format(d(e.start)),i=e.end?moment(e.end).subtract(this.value.replace(/\D/g,""),"seconds").format(d(e.end)):t):(t=moment(e.start).add(this.value,"seconds").format(d(e.start)),i=e.end?moment(e.end).add(this.value,"seconds").format(d(e.end)):t),l.addEvent({title:e.title,start:t,end:i})})),l.render()}));const d=e=>e.includes("T")?"YYYY-MM-DDTHH:mm:ss":"YYYY-MM-DD"}()}};KTUtil.onDOMContentLoaded((function(){KTGeneralFullCalendarTimezoneDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/jkanban/basic.js b/Mid-term/public/assets/js/custom/documentation/general/jkanban/basic.js new file mode 100644 index 000000000..88fac7b61 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/jkanban/basic.js @@ -0,0 +1 @@ +"use strict";var KTJKanbanDemoBasic={init:function(){new jKanban({element:"#kt_docs_jkanban_basic",gutter:"0",widthBoard:"250px",boards:[{id:"_inprocess",title:"In Process",item:[{title:'You can drag me too'},{title:'Buy Milk'}]},{id:"_working",title:"Working",item:[{title:'Do Something!'},{title:'Run?'}]},{id:"_done",title:"Done",item:[{title:'All right'},{title:'Ok!'}]}]})}};KTUtil.onDOMContentLoaded((function(){KTJKanbanDemoBasic.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/jkanban/color.js b/Mid-term/public/assets/js/custom/documentation/general/jkanban/color.js new file mode 100644 index 000000000..6fc8c6d14 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/jkanban/color.js @@ -0,0 +1 @@ +"use strict";var KTJKanbanDemoColor={init:function(){new jKanban({element:"#kt_docs_jkanban_color",gutter:"0",widthBoard:"250px",boards:[{id:"_inprocess",title:"In Process",class:"primary",item:[{title:'You can drag me too',class:"light-primary"},{title:'Buy Milk',class:"light-primary"}]},{id:"_working",title:"Working",class:"success",item:[{title:'Do Something!',class:"light-success"},{title:'Run?',class:"light-success"}]},{id:"_done",title:"Done",class:"danger",item:[{title:'All right',class:"light-danger"},{title:'Ok!',class:"light-danger"}]}]})}};KTUtil.onDOMContentLoaded((function(){KTJKanbanDemoColor.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/jkanban/fixed-height.js b/Mid-term/public/assets/js/custom/documentation/general/jkanban/fixed-height.js new file mode 100644 index 000000000..b58047a60 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/jkanban/fixed-height.js @@ -0,0 +1 @@ +"use strict";var KTJKanbanDemoFixedHeight=function(){var t,s;const e=t=>{s.querySelectorAll(".kanban-drag").forEach((t=>{const s=t.querySelector(".gu-transit");if(!s)return;const e=t.getBoundingClientRect(),a=s.offsetHeight,l=document.querySelector(".gu-mirror").getBoundingClientRect(),n=l.top-e.top,o=e.bottom-l.bottom;n<=a?t.scroll({top:t.scrollTop-3}):o<=a?t.scroll({top:t.scrollTop+3}):t.scroll({top:t.scrollTop})}))};return{init:function(){t="#kt_docs_jkanban_fixed_height",s=document.querySelector(t),function(){const a=s.getAttribute("data-kt-jkanban-height");new jKanban({element:t,gutter:"0",widthBoard:"250px",boards:[{id:"_fixed_height",title:"Fixed Height",class:"primary",item:[{title:'Item 1'},{title:'Item 2'},{title:'Item 3'},{title:'Item 4'},{title:'Item 5'},{title:'Item 6'},{title:'Item 7'},{title:'Item 8'},{title:'Item 9'},{title:'Item 10'},{title:'Item 11'},{title:'Item 12'},{title:'Item 13'},{title:'Item 14'},{title:'Item 15'}]},{id:"_fixed_height2",title:"Fixed Height 2",class:"success",item:[{title:'Item 1'},{title:'Item 2'},{title:'Item 3'},{title:'Item 4'},{title:'Item 5'},{title:'Item 6'},{title:'Item 7'},{title:'Item 8'},{title:'Item 9'},{title:'Item 10'},{title:'Item 11'},{title:'Item 12'},{title:'Item 13'},{title:'Item 14'},{title:'Item 15'}]}],dragEl:function(t,s){document.addEventListener("mousemove",e)},dragendEl:function(t){document.removeEventListener("mousemove",e)}}),s.querySelectorAll(".kanban-drag").forEach((t=>{t.style.maxHeight=a+"px"}))}()}}}();KTUtil.onDOMContentLoaded((function(){KTJKanbanDemoFixedHeight.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/jkanban/restricted.js b/Mid-term/public/assets/js/custom/documentation/general/jkanban/restricted.js new file mode 100644 index 000000000..6b98c2c5a --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/jkanban/restricted.js @@ -0,0 +1 @@ +"use strict";var KTJKanbanDemoRestricted={init:function(){new jKanban({element:"#kt_docs_jkanban_restricted",gutter:"0",widthBoard:"250px",click:function(t){alert(t.innerHTML)},boards:[{id:"_todo",title:"To Do",class:"light-primary",dragTo:["_working"],item:[{title:"My Task Test",class:"primary"},{title:"Buy Milk",class:"primary"}]},{id:"_working",title:"Working",class:"light-warning",item:[{title:"Do Something!",class:"warning"},{title:"Run?",class:"warning"}]},{id:"_done",title:"Done",class:"light-success",dragTo:["_working"],item:[{title:"All right",class:"success"},{title:"Ok!",class:"success"}]},{id:"_notes",title:"Notes",class:"light-danger",item:[{title:"Warning Task",class:"danger"},{title:"Do not enter",class:"danger"}]}]})}};KTUtil.onDOMContentLoaded((function(){KTJKanbanDemoRestricted.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/jkanban/rich.js b/Mid-term/public/assets/js/custom/documentation/general/jkanban/rich.js new file mode 100644 index 000000000..a4719399e --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/jkanban/rich.js @@ -0,0 +1 @@ +"use strict";var KTJKanbanDemoRich={init:function(){var s;s=new jKanban({element:"#kt_docs_jkanban_rich",gutter:"0",click:function(s){alert(s.innerHTML)},boards:[{id:"_backlog",title:"Backlog",class:"light-dark",item:[{title:`\n
\n \t
\n \t Pic\n \t
\n \t
\n \t SEO Optimization\n \t In progress\n \t
\n \t
\n `},{title:'\n
\n \t
\n \t A.D\n \t
\n \t
\n \t Finance\n \t Pending\n \t
\n \t
\n '}]},{id:"_todo",title:"To Do",class:"light-danger",item:[{title:`\n
\n \t
\n \t Pic\n \t
\n \t
\n \t Server Setup\n \t Completed\n \t
\n \t
\n `},{title:`\n
\n \t
\n \t Pic\n \t
\n \t
\n \t Report Generation\n \t Due\n \t
\n \t
\n `}]},{id:"_working",title:"Working",class:"light-primary",item:[{title:`\n
\n \t
\n \t Pic\n \t
\n \t
\n \t Marketing\n \t Planning\n \t
\n \t
\n `},{title:'\n
\n \t
\n \t A.P\n \t
\n \t
\n \t Finance\n \t Done\n \t
\n \t
\n '}]},{id:"_done",title:"Done",class:"light-success",item:[{title:`\n
\n \t
\n \t Pic\n \t
\n \t
\n \t SEO Optimization\n \t In progress\n \t
\n \t
\n `},{title:`\n
\n \t
\n \t Pic\n \t
\n \t
\n \t Product Team\n \t In progress\n \t
\n \t
\n `}]},{id:"_deploy",title:"Deploy",class:"light-primary",item:[{title:'\n
\n \t
\n \t D.L\n \t
\n \t
\n \t SEO Optimization\n \t In progress\n \t
\n \t
\n '},{title:'\n
\n \t
\n \t E.K\n \t
\n \t
\n \t Requirement Study\n \t Scheduled\n \t
\n \t
\n '}]}]}),document.getElementById("addToDo").addEventListener("click",(function(){s.addElement("_todo",{title:`\n
\n
\n Pic\n
\n
\n Requirement Study\n Scheduled\n
\n
\n `})})),document.getElementById("addDefault").addEventListener("click",(function(){s.addBoards([{id:"_default",title:"New Board",class:"light-primary",item:[{title:`\n
\n
\n Pic\n
\n
\n Payment Modules\n In development\n
\n
\n `},{title:`\n
\n
\n Pic\n
\n
\n New Project\n Pending\n
\n
\n `}]}])})),document.getElementById("removeBoard").addEventListener("click",(function(){s.removeBoard("_done")}))}};KTUtil.onDOMContentLoaded((function(){KTJKanbanDemoRich.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/jstree/ajax.js b/Mid-term/public/assets/js/custom/documentation/general/jstree/ajax.js new file mode 100644 index 000000000..c50e9e413 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/jstree/ajax.js @@ -0,0 +1 @@ +"use strict";var KTJSTreeAjax={init:function(){$("#kt_docs_jstree_ajax").jstree({core:{themes:{responsive:!1},check_callback:!0,data:{url:function(e){return"https://preview.keenthemes.com/api/jstree/ajax_data.php"},data:function(e){return{parent:e.id}}}},types:{default:{icon:"fa fa-folder text-primary"},file:{icon:"fa fa-file text-primary"}},state:{key:"demo3"},plugins:["dnd","state","types"]})}};KTUtil.onDOMContentLoaded((function(){KTJSTreeAjax.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/jstree/basic.js b/Mid-term/public/assets/js/custom/documentation/general/jstree/basic.js new file mode 100644 index 000000000..b60283933 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/jstree/basic.js @@ -0,0 +1 @@ +"use strict";var KTJSTreeBasic={init:function(){$("#kt_docs_jstree_basic").jstree({core:{themes:{responsive:!1}},types:{default:{icon:"fa fa-folder"},file:{icon:"fa fa-file"}},plugins:["types"]})}};KTUtil.onDOMContentLoaded((function(){KTJSTreeBasic.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/jstree/checkable.js b/Mid-term/public/assets/js/custom/documentation/general/jstree/checkable.js new file mode 100644 index 000000000..c8940ace0 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/jstree/checkable.js @@ -0,0 +1 @@ +"use strict";var KTJSTreeCheckable={init:function(){$("#kt_docs_jstree_checkable").jstree({plugins:["wholerow","checkbox","types"],core:{themes:{responsive:!1},data:[{text:"Same but with checkboxes",children:[{text:"initially selected",state:{selected:!0}},{text:"custom icon",icon:"fa fa-warning text-danger"},{text:"initially open",icon:"fa fa-folder text-default",state:{opened:!0},children:["Another node"]},{text:"custom icon",icon:"fa fa-warning text-waring"},{text:"disabled node",icon:"fa fa-check text-success",state:{disabled:!0}}]},"And wholerow selection"]},types:{default:{icon:"fa fa-folder text-warning"},file:{icon:"fa fa-file text-warning"}}})}};KTUtil.onDOMContentLoaded((function(){KTJSTreeCheckable.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/jstree/contextual.js b/Mid-term/public/assets/js/custom/documentation/general/jstree/contextual.js new file mode 100644 index 000000000..3ad5d5031 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/jstree/contextual.js @@ -0,0 +1 @@ +"use strict";var KTJSTreeContextual={init:function(){$("#kt_docs_jstree_contextual").jstree({core:{themes:{responsive:!1},check_callback:!0,data:[{text:"Parent Node",children:[{text:"Initially selected",state:{selected:!0}},{text:"Custom Icon",icon:"flaticon2-hourglass-1 text-danger"},{text:"Initially open",icon:"fa fa-folder text-success",state:{opened:!0},children:[{text:"Another node",icon:"fa fa-file text-waring"}]},{text:"Another Custom Icon",icon:"flaticon2-drop text-waring"},{text:"Disabled Node",icon:"fa fa-check text-success",state:{disabled:!0}},{text:"Sub Nodes",icon:"fa fa-folder text-danger",children:[{text:"Item 1",icon:"fa fa-file text-waring"},{text:"Item 2",icon:"fa fa-file text-success"},{text:"Item 3",icon:"fa fa-file text-default"},{text:"Item 4",icon:"fa fa-file text-danger"},{text:"Item 5",icon:"fa fa-file text-info"}]}]},"Another Node"]},types:{default:{icon:"fa fa-folder text-primary"},file:{icon:"fa fa-file text-primary"}},state:{key:"demo2"},plugins:["contextmenu","state","types"]})}};KTUtil.onDOMContentLoaded((function(){KTJSTreeContextual.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/jstree/customicons.js b/Mid-term/public/assets/js/custom/documentation/general/jstree/customicons.js new file mode 100644 index 000000000..6afe3cd7a --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/jstree/customicons.js @@ -0,0 +1 @@ +"use strict";var KTJSTreeCustomIcons={init:function(){$("#kt_docs_jstree_customicons").jstree({core:{themes:{responsive:!1}},types:{default:{icon:"fa fa-folder text-warning"},file:{icon:"fa fa-file text-warning"}},plugins:["types"]}),$("#kt_docs_jstree_customicons").on("select_node.jstree",(function(t,e){var n=$("#"+e.selected).find("a");if("#"!=n.attr("href")&&"javascript:;"!=n.attr("href")&&""!=n.attr("href"))return"_blank"==n.attr("target")&&(n.attr("href").target="_blank"),document.location.href=n.attr("href"),!1}))}};KTUtil.onDOMContentLoaded((function(){KTJSTreeCustomIcons.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/jstree/dragdrop.js b/Mid-term/public/assets/js/custom/documentation/general/jstree/dragdrop.js new file mode 100644 index 000000000..d9f281ef4 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/jstree/dragdrop.js @@ -0,0 +1 @@ +"use strict";var KTJSTreeDragDrop={init:function(){$("#kt_docs_jstree_dragdrop").jstree({core:{themes:{responsive:!1},check_callback:!0,data:[{text:"Parent Node",children:[{text:"Initially selected",state:{selected:!0}},{text:"Custom Icon",icon:"flaticon2-warning text-danger"},{text:"Initially open",icon:"fa fa-folder text-success",state:{opened:!0},children:[{text:"Another node",icon:"fa fa-file text-waring"}]},{text:"Another Custom Icon",icon:"flaticon2-bell-5 text-waring"},{text:"Disabled Node",icon:"fa fa-check text-success",state:{disabled:!0}},{text:"Sub Nodes",icon:"fa fa-folder text-danger",children:[{text:"Item 1",icon:"fa fa-file text-waring"},{text:"Item 2",icon:"fa fa-file text-success"},{text:"Item 3",icon:"fa fa-file text-default"},{text:"Item 4",icon:"fa fa-file text-danger"},{text:"Item 5",icon:"fa fa-file text-info"}]}]},"Another Node"]},types:{default:{icon:"fa fa-folder text-success"},file:{icon:"fa fa-file text-success"}},state:{key:"demo2"},plugins:["dnd","state","types"]})}};KTUtil.onDOMContentLoaded((function(){KTJSTreeDragDrop.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/scroll.js b/Mid-term/public/assets/js/custom/documentation/general/scroll.js new file mode 100644 index 000000000..31bfccba6 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/scroll.js @@ -0,0 +1 @@ +"use strict";var KTGeneralScrollDemos={init:function(){}};KTUtil.onDOMContentLoaded((function(){KTGeneralScrollDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/search/basic.js b/Mid-term/public/assets/js/custom/documentation/general/search/basic.js new file mode 100644 index 000000000..71307ee28 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/search/basic.js @@ -0,0 +1 @@ +"use strict";var KTGeneralSearchBasicDemos=function(){var e,t,n,s,a,c=function(e){setTimeout((function(){var a=KTUtil.getRandomInt(1,6);t.classList.add("d-none"),3===a?(n.classList.add("d-none"),s.classList.remove("d-none")):(n.classList.remove("d-none"),s.classList.add("d-none")),e.complete()}),1500)},o=function(e){t.classList.remove("d-none"),n.classList.add("d-none"),s.classList.add("d-none")};return{init:function(){(e=document.querySelector("#kt_docs_search_handler_basic"))&&(e.querySelector('[data-kt-search-element="wrapper"]'),t=e.querySelector('[data-kt-search-element="suggestions"]'),n=e.querySelector('[data-kt-search-element="results"]'),s=e.querySelector('[data-kt-search-element="empty"]'),(a=new KTSearch(e)).on("kt.search.process",c),a.on("kt.search.clear",o),KTUtil.on(e,'[data-kt-search-element="customer"]',"click",(function(){})))}}}();KTUtil.onDOMContentLoaded((function(){KTGeneralSearchBasicDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/search/menu.js b/Mid-term/public/assets/js/custom/documentation/general/search/menu.js new file mode 100644 index 000000000..58678a28f --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/search/menu.js @@ -0,0 +1 @@ +"use strict";var KTGeneralSearchMenuDemos=function(){var e,t,n,a,s,c,r,o,d,l,i,m,u,h=function(e){setTimeout((function(){var a=KTUtil.getRandomInt(1,3);t.classList.add("d-none"),3===a?(n.classList.add("d-none"),s.classList.remove("d-none")):(n.classList.remove("d-none"),s.classList.add("d-none")),e.complete()}),1500)},L=function(e){t.classList.remove("d-none"),n.classList.add("d-none"),s.classList.add("d-none")};return{init:function(){(e=document.querySelector("#kt_docs_search_handler_menu"))&&(a=e.querySelector('[data-kt-search-element="wrapper"]'),e.querySelector('[data-kt-search-element="form"]'),t=e.querySelector('[data-kt-search-element="main"]'),n=e.querySelector('[data-kt-search-element="results"]'),s=e.querySelector('[data-kt-search-element="empty"]'),c=e.querySelector('[data-kt-search-element="preferences"]'),r=e.querySelector('[data-kt-search-element="preferences-show"]'),o=e.querySelector('[data-kt-search-element="preferences-dismiss"]'),d=e.querySelector('[data-kt-search-element="advanced-options-form"]'),l=e.querySelector('[data-kt-search-element="advanced-options-form-show"]'),i=e.querySelector('[data-kt-search-element="advanced-options-form-cancel"]'),m=e.querySelector('[data-kt-search-element="advanced-options-form-search"]'),(u=new KTSearch(e)).on("kt.search.process",h),u.on("kt.search.clear",L),r.addEventListener("click",(function(){a.classList.add("d-none"),c.classList.remove("d-none")})),o.addEventListener("click",(function(){a.classList.remove("d-none"),c.classList.add("d-none")})),l.addEventListener("click",(function(){a.classList.add("d-none"),d.classList.remove("d-none")})),i.addEventListener("click",(function(){a.classList.remove("d-none"),d.classList.add("d-none")})),m.addEventListener("click",(function(){})))}}}();KTUtil.onDOMContentLoaded((function(){KTGeneralSearchMenuDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/search/responsive.js b/Mid-term/public/assets/js/custom/documentation/general/search/responsive.js new file mode 100644 index 000000000..20553b29a --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/search/responsive.js @@ -0,0 +1 @@ +"use strict";var KTGeneralSearchResponsiveDemos=function(){var e,n,t,s,r,a,o,c,d,l=function(e){setTimeout((function(){var s=KTUtil.getRandomInt(1,3);n.classList.add("d-none"),3===s?(t.classList.add("d-none"),r.classList.remove("d-none")):(t.classList.remove("d-none"),r.classList.add("d-none")),e.complete()}),1500)},i=function(e){n.classList.remove("d-none"),t.classList.add("d-none"),r.classList.add("d-none")};return{init:function(){(e=document.querySelector("#kt_docs_search_handler_responsive"))&&(s=e.querySelector('[data-kt-search-element="wrapper"]'),n=e.querySelector('[data-kt-search-element="recently-viewed"]'),t=e.querySelector('[data-kt-search-element="results"]'),r=e.querySelector('[data-kt-search-element="empty"]'),a=e.querySelector('[data-kt-search-element="preferences"]'),o=e.querySelector('[data-kt-search-element="preferences-show"]'),c=e.querySelector('[data-kt-search-element="preferences-dismiss"]'),(d=new KTSearch(e)).on("kt.search.process",l),d.on("kt.search.clear",i),o.addEventListener("click",(function(){s.classList.add("d-none"),a.classList.remove("d-none")})),c.addEventListener("click",(function(){s.classList.remove("d-none"),a.classList.add("d-none")})))}}}();KTUtil.onDOMContentLoaded((function(){KTGeneralSearchResponsiveDemos.init()})),"undefined"!=typeof module&&void 0!==module.exports&&(module.exports=KTGeneralSearchResponsiveDemos); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/stepper.js b/Mid-term/public/assets/js/custom/documentation/general/stepper.js new file mode 100644 index 000000000..924a5e46e --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/stepper.js @@ -0,0 +1 @@ +"use strict";var KTGeneralStepperDemos={init:function(){var e,t;e=document.querySelector("#kt_stepper_example_basic"),(t=new KTStepper(e)).on("kt.stepper.next",(function(e){e.goNext()})),t.on("kt.stepper.previous",(function(e){e.goPrevious()})),function(){var e=document.querySelector("#kt_stepper_example_vertical"),t=new KTStepper(e);t.on("kt.stepper.next",(function(e){e.goNext()})),t.on("kt.stepper.previous",(function(e){e.goPrevious()}))}(),function(){var e=document.querySelector("#kt_stepper_example_clickable"),t=new KTStepper(e);t.on("kt.stepper.click",(function(e){e.goTo(e.getClickedStepIndex())})),t.on("kt.stepper.next",(function(e){e.goNext()})),t.on("kt.stepper.previous",(function(e){e.goPrevious()}))}()}};KTUtil.onDOMContentLoaded((function(){KTGeneralStepperDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/sweetalert.js b/Mid-term/public/assets/js/custom/documentation/general/sweetalert.js new file mode 100644 index 000000000..56f10b185 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/sweetalert.js @@ -0,0 +1 @@ +"use strict";var KTGeneralSweetAlertDemos={init:function(){document.getElementById("kt_docs_sweetalert_basic").addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Here's a basic example of SweetAlert!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})})),document.getElementById("kt_docs_sweetalert_html").addEventListener("click",(t=>{t.preventDefault(),Swal.fire({html:'A SweetAlert content with bold text, links or any of our available components',icon:"info",buttonsStyling:!1,showCancelButton:!0,confirmButtonText:"Ok, got it!",cancelButtonText:"Nope, cancel it",customClass:{confirmButton:"btn btn-primary",cancelButton:"btn btn-danger"}})})),(()=>{const t=document.getElementById("kt_docs_sweetalert_state_info"),e=document.getElementById("kt_docs_sweetalert_state_warning"),n=document.getElementById("kt_docs_sweetalert_state_error"),o=document.getElementById("kt_docs_sweetalert_state_success"),s=document.getElementById("kt_docs_sweetalert_state_question");t.addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Here's an example of an info SweetAlert!",icon:"info",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-info"}})})),e.addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Here's an example of a warning SweetAlert!",icon:"warning",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-warning"}})})),n.addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Here's an example of an error SweetAlert!",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-danger"}})})),o.addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Here's an example of a success SweetAlert!",icon:"success",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-success"}})})),s.addEventListener("click",(t=>{t.preventDefault(),Swal.fire({text:"Here's an example of a question SweetAlert!",icon:"question",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn btn-primary"}})}))})()}};KTUtil.onDOMContentLoaded((function(){KTGeneralSweetAlertDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/toastr.js b/Mid-term/public/assets/js/custom/documentation/general/toastr.js new file mode 100644 index 000000000..f623aaefe --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/toastr.js @@ -0,0 +1 @@ +"use strict";var KTGeneralToastr=function(){var t=function(){var t,o=-1,e=0;$("#showtoast").on("click",(function(){var n,a=$("#toastTypeGroup input:radio:checked").val(),s=$("#message").val(),i=$("#title").val()||"",r=$("#showDuration"),l=$("#hideDuration"),c=$("#timeOut"),p=$("#extendedTimeOut"),u=$("#showEasing"),h=$("#hideEasing"),d=$("#showMethod"),v=$("#hideMethod"),g=e++,f=$("#addClear").prop("checked");toastr.options={closeButton:$("#closeButton").prop("checked"),debug:$("#debugInfo").prop("checked"),newestOnTop:$("#newestOnTop").prop("checked"),progressBar:$("#progressBar").prop("checked"),positionClass:$("#positionGroup input:radio:checked").val()||"toast-top-right",preventDuplicates:$("#preventDuplicates").prop("checked"),onclick:null},$("#addBehaviorOnToastClick").prop("checked")&&(toastr.options.onclick=function(){alert("You can perform some custom action after a toast goes away")}),r.val().length&&(toastr.options.showDuration=r.val()),l.val().length&&(toastr.options.hideDuration=l.val()),c.val().length&&(toastr.options.timeOut=f?0:c.val()),p.val().length&&(toastr.options.extendedTimeOut=f?0:p.val()),u.val().length&&(toastr.options.showEasing=u.val()),h.val().length&&(toastr.options.hideEasing=h.val()),d.val().length&&(toastr.options.showMethod=d.val()),v.val().length&&(toastr.options.hideMethod=v.val()),f&&(s=function(t){return t=t||"Clear itself?",t+'

'}(s),toastr.options.tapToDismiss=!1),s||(++o===(n=["New order has been placed!","Are you the six fingered man?","Inconceivable!","I do not think that means what you think it means.","Have fun storming the castle!"]).length&&(o=0),s=n[o]),$("#toastrOptions").text("toastr.options = "+JSON.stringify(toastr.options,null,2)+";\n\ntoastr."+a+'("'+s+(i?'", "'+i:"")+'");');var k=toastr[a](s,i);t=k,void 0!==k&&(k.find("#okBtn").length&&k.delegate("#okBtn","click",(function(){alert("you clicked me. i was toast #"+g+". goodbye!"),k.remove()})),k.find("#surpriseBtn").length&&k.delegate("#surpriseBtn","click",(function(){alert("Surprise! you clicked me. i was toast #"+g+". You could perform an action here.")})),k.find(".clear").length&&k.delegate(".clear","click",(function(){toastr.clear(k,{force:!0})})))})),$("#clearlasttoast").on("click",(function(){toastr.clear(t)})),$("#cleartoasts").on("click",(function(){toastr.clear()}))};return{init:function(){t()}}}();KTUtil.onDOMContentLoaded((function(){KTGeneralToastr.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/typed.js b/Mid-term/public/assets/js/custom/documentation/general/typed.js new file mode 100644 index 000000000..252e61cc0 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/typed.js @@ -0,0 +1 @@ +"use strict";var KTGeneralTypedJsDemos={init:function(){new Typed("#kt_typedjs_example_1",{strings:["First sentence.","Second sentence.","Third sentense","And some longer sentence"],typeSpeed:30})}};KTUtil.onDOMContentLoaded((function(){KTGeneralTypedJsDemos.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/basic.js b/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/basic.js new file mode 100644 index 000000000..03ae3e17b --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/basic.js @@ -0,0 +1 @@ +"use strict";var KTVisTimelineBasic={init:function(){var t,i;t=document.getElementById("kt_docs_vistimeline_basic"),i=new vis.DataSet([{id:1,content:"item 1",start:"2021-04-20"},{id:2,content:"item 2",start:"2021-04-14"},{id:3,content:"item 3",start:"2021-04-18"},{id:4,content:"item 4",start:"2021-04-16",end:"2021-04-19"},{id:5,content:"item 5",start:"2021-04-25"},{id:6,content:"item 6",start:"2021-04-27",type:"point"}]),new vis.Timeline(t,i,{})}};KTUtil.onDOMContentLoaded((function(){KTVisTimelineBasic.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/group.js b/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/group.js new file mode 100644 index 000000000..625bfb185 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/group.js @@ -0,0 +1 @@ +"use strict";var KTVisTimelineGroup={init:function(){!function(){for(var e=Date.now(),t={stack:!0,maxHeight:640,horizontalScroll:!1,verticalScroll:!0,zoomKey:"ctrlKey",start:Date.now()-2592e5,end:Date.now()+18144e5,orientation:{axis:"both",item:"top"}},n=new vis.DataSet,i=new vis.DataSet,o=0;o<300;o++){var r=e+864e5*(o+Math.floor(7*Math.random())),a=r+864e5*(1+Math.floor(5*Math.random()));n.add({id:o,content:"Task "+o,order:o}),i.add({id:o,group:o,start:r,end:a,type:"range",content:"Item "+o})}var s=document.getElementById("kt_docs_vistimeline_group"),l=new vis.Timeline(s,i,n,t);l.setGroups(n),l.setItems(i),l.on("scroll",function(e,t=100){let n;return function(...i){clearTimeout(n),n=setTimeout((()=>{e.apply(this,i)}),t)}}((e=>{let t=l.getVisibleGroups().reduce(((e,t)=>{let n=l.itemSet.groups[t];return n.items&&(e=e.concat(Object.keys(n.items))),e}),[]);l.focus(t)}),200)),document.getElementById("kt_docs_vistimeline_group_button").addEventListener("click",(e=>{e.preventDefault();var t=l.getVisibleGroups();document.getElementById("visibleGroupsContainer").innerHTML="",document.getElementById("visibleGroupsContainer").innerHTML+=t}))}()}};KTUtil.onDOMContentLoaded((function(){KTVisTimelineGroup.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/interaction.js b/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/interaction.js new file mode 100644 index 000000000..5f3d6d685 --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/interaction.js @@ -0,0 +1 @@ +"use strict";var KTVisTimelineInteraction={init:function(){!function(){var t=new vis.DataSet({type:{start:"ISODate",end:"ISODate"}});t.add([{id:1,content:"item 1
start",start:"2021-01-23"},{id:2,content:"item 2",start:"2021-01-18"},{id:3,content:"item 3",start:"2021-01-21"},{id:4,content:"item 4",start:"2021-01-19",end:"2021-01-24"},{id:5,content:"item 5",start:"2021-01-28",type:"point"},{id:6,content:"item 6",start:"2021-01-26"}]);var e=document.getElementById("kt_docs_vistimeline_interaction"),n=new vis.Timeline(e,t,{start:"2021-01-10",end:"2021-02-10",editable:!0,showCurrentTime:!0});document.getElementById("window1").onclick=function(){n.setWindow("2021-01-01","2021-04-01")},document.getElementById("fit").onclick=function(){n.fit()},document.getElementById("select").onclick=function(){n.setSelection([5,6],{focus:!0})},document.getElementById("focus1").onclick=function(){n.focus(2)},document.getElementById("moveTo").onclick=function(){n.moveTo("2021-02-01")}}()}};KTUtil.onDOMContentLoaded((function(){KTVisTimelineInteraction.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/style.js b/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/style.js new file mode 100644 index 000000000..7174a245f --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/style.js @@ -0,0 +1 @@ +"use strict";var KTVisTimelineStyle={init:function(){!function(){var t=document.getElementById("kt_docs_vistimeline_style");const e=(t,e)=>{const n=document.createElement("div"),a=document.createElement("div");a.classList.add("fw-bolder","mb-2"),a.innerHTML=t;const s=document.createElement("img");s.setAttribute("src",e);const i=document.createElement("div");return i.classList.add("symbol","symbol-circle","symbol-30"),i.appendChild(s),n.appendChild(a),n.appendChild(i),n};var n=new vis.DataSet([{start:new Date(2010,7,23),content:e("Conversation",hostUrl+"/media/avatars/300-6.jpg")},{start:new Date(2010,7,23,23,0,0),content:e("Mail from boss",hostUrl+"/media/avatars/300-1.jpg")},{start:new Date(2010,7,24,16,0,0),content:"Report"},{start:new Date(2010,7,26),end:new Date(2010,8,2),content:"Traject A"},{start:new Date(2010,7,28),content:e("Memo",hostUrl+"/media/avatars/300-2.jpg")},{start:new Date(2010,7,29),content:e("Phone call",hostUrl+"/media/avatars/300-5.jpg")},{start:new Date(2010,7,31),end:new Date(2010,8,3),content:"Traject B"},{start:new Date(2010,8,4,12,0,0),content:e("Report",hostUrl+"/media/avatars/300-20.jpg")}]);new vis.Timeline(t,n,{editable:!0,margin:{item:20,axis:40}})}()}};KTUtil.onDOMContentLoaded((function(){KTVisTimelineStyle.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/template.js b/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/template.js new file mode 100644 index 000000000..34266c2de --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/general/vis-timeline/template.js @@ -0,0 +1 @@ +"use strict";var KTVisTimelineTemplate={init:function(){var r,e,a,t;r=Handlebars.compile('\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {{ description }}\n
{{ player1 }}\n {{ score1 }} - {{ score2 }}\n {{ player2 }}
\n \n \n \n
'),e=document.getElementById("kt_docs_vistimeline_template"),a=new vis.DataSet([{player1:"Brazil",abbr1:"br",score1:"1 (3)",player2:"Chile",abbr2:"cl",score2:"1 (2)",description:"round of 16",start:"2014-06-28T13:00:00"},{player1:"Colombia",abbr1:"co",score1:2,player2:"Uruguay",abbr2:"uy",score2:0,description:"round of 16",start:"2014-06-28T17:00:00"},{player1:"Netherlands",abbr1:"nl",score1:2,player2:"Mexico",abbr2:"mx",score2:1,description:"round of 16",start:"2014-06-29T13:00:00"},{player1:"Costa Rica",abbr1:"cr",score1:"1 (5)",player2:"Greece",abbr2:"gr",score2:"1 (3)",description:"round of 16",start:"2014-06-29T17:00:00"},{player1:"France",abbr1:"fr",score1:2,player2:"Nigeria",abbr2:"ng",score2:0,description:"round of 16",start:"2014-06-30T13:00:00"},{player1:"Germany",abbr1:"de",score1:2,player2:"Algeria",abbr2:"dz",score2:1,description:"round of 16",start:"2014-06-30T17:00:00"},{player1:"Argentina",abbr1:"ar",score1:1,player2:"Switzerland",abbr2:"ch",score2:0,description:"round of 16",start:"2014-07-01T13:00:00"},{player1:"Belgium",abbr1:"be",score1:2,player2:"USA",abbr2:"us",score2:1,description:"round of 16",start:"2014-07-01T17:00:00"},{player1:"France",abbr1:"fr",score1:0,player2:"Germany",abbr2:"de",score2:1,description:"quarter-finals",start:"2014-07-04T13:00:00"},{player1:"Brazil",abbr1:"br",score1:2,player2:"Colombia",abbr2:"co",score2:1,description:"quarter-finals",start:"2014-07-04T17:00:00"},{player1:"Argentina",abbr1:"ar",score1:1,player2:"Belgium",abbr2:"be",score2:0,description:"quarter-finals",start:"2014-07-05T13:00:00"},{player1:"Netherlands",abbr1:"nl",score1:"0 (4)",player2:"Costa Rica",abbr2:"cr",score2:"0 (3)",description:"quarter-finals",start:"2014-07-05T17:00:00"},{player1:"Brazil",abbr1:"br",score1:1,player2:"Germany",abbr2:"de",score2:7,description:"semi-finals",start:"2014-07-08T17:00:00"},{player1:"Netherlands",abbr1:"nl",score1:"0 (2)",player2:"Argentina",abbr2:"ar",score2:"0 (4)",description:"semi-finals",start:"2014-07-09T17:00:00"},{player1:"Germany",score1:1,abbr1:"de",player2:"Argentina",abbr2:"ar",score2:0,description:"final",start:"2014-07-13T16:00:00"}]),t={template:r},new vis.Timeline(e,a,t)}};KTUtil.onDOMContentLoaded((function(){KTVisTimelineTemplate.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/documentation/search.js b/Mid-term/public/assets/js/custom/documentation/search.js new file mode 100644 index 000000000..070b3521a --- /dev/null +++ b/Mid-term/public/assets/js/custom/documentation/search.js @@ -0,0 +1 @@ +"use strict";var KTDocsSearch=function(){var e,t,a,n,s,r=function(e){var r=0;[].slice.call(a.querySelectorAll('[data-kt-searchable="true"]')).map((function(e){var t=s.getQuery();-1!==e.innerText.toLowerCase().indexOf(t.toLowerCase())?(e.classList.remove("d-none"),r++):e.classList.add("d-none")})),t.classList.add("d-none"),0===r?(a.classList.add("d-none"),n.classList.remove("d-none")):(a.classList.remove("d-none"),n.classList.add("d-none")),e.complete()},c=function(e){t.classList.remove("d-none"),a.classList.add("d-none"),n.classList.add("d-none")};return{init:function(){(e=document.querySelector("#kt_docs_search"))&&(e.querySelector('[data-kt-search-element="wrapper"]'),e.querySelector('[data-kt-search-element="form"]'),t=e.querySelector('[data-kt-search-element="main"]'),a=e.querySelector('[data-kt-search-element="results"]'),n=e.querySelector('[data-kt-search-element="empty"]'),(s=new KTSearch(e)).on("kt.search.process",r),s.on("kt.search.clear",c))}}}();KTUtil.onDOMContentLoaded((function(){KTDocsSearch.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/intro.js b/Mid-term/public/assets/js/custom/intro.js new file mode 100644 index 000000000..691ed4447 --- /dev/null +++ b/Mid-term/public/assets/js/custom/intro.js @@ -0,0 +1 @@ +"use strict";var KTIntro=function(){var e=function(e,t,o){var i=new Date,n=(i.getTime(),1296e6);if(!KTCookie.get(e+"_counter")||parseInt(KTCookie.get(e+"_counter"))<3)return KTCookie.get(e+"_counter")?"1"!=KTCookie.get(e+"_counter")||KTCookie.get(e+"_show_1")?"2"==KTCookie.get(e+"_counter")&&!KTCookie.get(e+"_show_2")&&(setTimeout(t,o),KTCookie.set(e+"_show_3","1",{expires:new Date(i.getTime()+n)}),KTCookie.set(e+"_counter","3",{expires:new Date(i.getTime()+n)}),!0):(setTimeout(t,o),KTCookie.set(e+"_show_2","1",{expires:new Date(i.getTime()+6048e5)}),KTCookie.set(e+"_counter","2",{expires:new Date(i.getTime()+18144e5)}),!0):(setTimeout(t,o),KTCookie.set(e+"_show_1","1",{expires:new Date(i.getTime()+1728e5)}),KTCookie.set(e+"_counter","1",{expires:new Date(i.getTime()+2592e6)}),!0)},t=function(){var e=document.querySelector("#kt_header_search_toggle");if(e){var t=KTApp.initBootstrapPopover(e,{customClass:"popover-dark",container:"body",trigger:"manual",boundary:"window",placement:"left",dismiss:!0,html:!0,title:"Quick Search",content:"Fully functional search with advance options and preferences setup"});t.show(),setTimeout((function(){t&&t.dispose()}),1e4),e.addEventListener("click",(function(e){t.dispose()}))}},o=function(){var e=document.querySelector("#kt_toolbar_primary_button");if(e){var t=KTApp.initBootstrapPopover(e,{customClass:"popover-dark",container:"body",boundary:"window",trigger:"manual",placement:"left",dismiss:!0,html:!0,title:"Quick Notifications",content:"Seamless access to updates and notifications in various formats"});t.show(),setTimeout((function(){t&&t.dispose()}),1e4),e.addEventListener("click",(function(e){t.dispose()}))}},i=function(){var e=document.querySelector("#kt_header_user_menu_toggle");if(e){var t=KTApp.initBootstrapPopover(e,{customClass:"popover-dark",container:"body",boundary:"window",placement:"left",trigger:"manual",dismiss:!0,html:!0,title:"Advanced User Menu",content:"With quick links to user profile and account settings pages"});t.show(),setTimeout((function(){t&&t.dispose()}),1e4),e.addEventListener("click",(function(e){t.dispose()}))}};return{init:function(){var n;n="metronic",!1===KTUtil.inIframe()&&(e("kt_"+n+"_intro_1",t,5e3)||e("kt_"+n+"_intro_2",o,5e3)||e("kt_"+n+"_intro_3",i,5e3))}}}();"undefined"!=typeof module&&(module.exports=KTIntro),KTUtil.onDOMContentLoaded((function(){KTIntro.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/landing.js b/Mid-term/public/assets/js/custom/landing.js new file mode 100644 index 000000000..30786a3ef --- /dev/null +++ b/Mid-term/public/assets/js/custom/landing.js @@ -0,0 +1 @@ +"use strict";var KTLandingPage={init:function(){}};"undefined"!=typeof module&&(module.exports=KTLandingPage),KTUtil.onDOMContentLoaded((function(){KTLandingPage.init()})); \ No newline at end of file diff --git a/Mid-term/public/assets/js/custom/layout-builder/layout-builder.js b/Mid-term/public/assets/js/custom/layout-builder/layout-builder.js new file mode 100644 index 000000000..3c87ee5a2 --- /dev/null +++ b/Mid-term/public/assets/js/custom/layout-builder/layout-builder.js @@ -0,0 +1 @@ +"use strict";var KTLayoutBuilder=function(){var t=document.querySelector("#kt_layout_builder_form"),e=document.querySelector("#kt_layout_builder_action"),r=document.querySelector("#kt_layout_builder_tab"),a=t.getAttribute("action"),o=document.querySelector("#kt_layout_builder_preview"),i=document.querySelector("#kt_layout_builder_export"),n=document.querySelector("#kt_layout_builder_reset");return{init:function(){o.addEventListener("click",(function(r){r.preventDefault(),e.value="preview",o.setAttribute("data-kt-indicator","on");var i=$(t).serialize();$.ajax({type:"POST",dataType:"html",url:a,data:i,success:function(t,e,r){toastr.success("Preview has been updated with current configured layout.","Preview updated!",{timeOut:0,extendedTimeOut:0,closeButton:!0,closeDuration:0}),setTimeout((function(){location.reload()}),1500)},error:function(t){toastr.error("Please try it again later.","Something went wrong!",{timeOut:0,extendedTimeOut:0,closeButton:!0,closeDuration:0})},complete:function(){o.removeAttribute("data-kt-indicator")}})})),i.addEventListener("click",(function(r){r.preventDefault(),toastr.success("Process has been started and it may take a while.","Generating HTML!",{timeOut:0,extendedTimeOut:0,closeButton:!0,closeDuration:0}),i.setAttribute("data-kt-indicator","on"),e.value="export";var o=$(t).serialize();$.ajax({type:"POST",dataType:"html",url:a,data:o,success:function(t,e,r){var o=setInterval((function(){$("")?{type:"fragmented",fragments:n,content:"",bookmark:null,beforeBookmark:null}:{type:"complete",fragments:null,content:r,bookmark:null,beforeBookmark:null}}function Vp(e,t,n){var r,o,i,a,c,s,l,f,d,m,g,p=n?t.beforeBookmark:t.bookmark;function h(e,t,n,r){for(var o=e;o-ts){for(var l=0;l]*>( | |\\s| |
|)<\\/"+l+">[\r\n]*|
[\r\n]*)$"),s.replace(f,"")),B(["text","tree"],m.format)||po(Ot.fromDom(a))?m.content=g:m.content=kt.trim(g),(m.no_events?m:t.fire("GetContent",m)).content;var t,n,a,u,c,s,l,f,d,m,g}));var r,o,i},setContent:function(t,n){return function(e,t,n){var r,o=(r=t,_e(_e({format:"html"},n),{set:!0,content:dg(r)?"":r})),i=n.no_events?o:e.fire("BeforeSetContent",o);return dg(t)||(t=i.content),ve.from(e.getBody()).fold(f(t),(function(n){return dg(t)?function(e,t,n,r){var o,i,a,u;o=e.parser.getNodeFilters(),i=e.parser.getAttributeFilters(),a=n,u=function(e,t){var n,r,o={},i={},u=[];for(n in a.firstChild&&ep(a.firstChild,(function(n){F(e,(function(e){e.name===n.name&&(o[e.name]?o[e.name].nodes.push(n):o[e.name]={filter:e,nodes:[n]})})),F(t,(function(e){"string"==typeof n.attr(e.name)&&(i[e.name]?i[e.name].nodes.push(n):i[e.name]={filter:e,nodes:[n]})}))})),o)Oe(o,n)&&u.push(o[n]);for(r in i)Oe(i,r)&&u.push(i[r]);return u}(o,i),F(u,(function(e){F(e.filter.callbacks,(function(t){t(e.nodes,e.filter.name,{})}))}));var c=Xd({validate:e.validate},e.schema).serialize(n);return r.content=po(Ot.fromDom(t))?c:kt.trim(c),mg(e,r.content,r.no_selection),r.no_events||e.fire("SetContent",r),n}(e,n,t,i):(r=e,o=n,u=i,0===(a=t).length||/^\s+$/.test(a)?(c='
',"TABLE"===o.nodeName?a=""+c+"":/^(UL|OL)$/.test(o.nodeName)&&(a="
  • "+c+"
  • "),a=(s=wc(r))&&r.schema.isValidChild(o.nodeName.toLowerCase(),s.toLowerCase())?(a=c,r.dom.createHTML(s,xc(r),a)):a||'
    ',mg(r,a,u.no_selection),r.fire("SetContent",u)):("raw"!==u.format&&(a=Xd({validate:r.validate},r.schema).serialize(r.parser.parse(a,{isRootContent:!0,insert:!0}))),u.content=po(Ot.fromDom(o))?a:kt.trim(a),mg(r,u.content,u.no_selection),u.no_events||r.fire("SetContent",u)),u.content);var r,o,a,u,c,s}))}(e,t,n)},insertContent:function(t,n){return fg(e,t,n)},addVisual:function(t){var n,r=t,o=(n=e).dom,i=u(r)?r:n.getBody();C(n.hasVisual)&&(n.hasVisual=n.getParam("visual",!0,"boolean")),F(o.select("table,a",i),(function(e){switch(e.nodeName){case"TABLE":var t=n.getParam("visual_table_class","mce-item-table","string"),r=o.getAttrib(e,"border");r&&"0"!==r||!n.hasVisual?o.removeClass(e,t):o.addClass(e,t);break;case"A":var i,a;o.getAttrib(e,"href")||(i=o.getAttrib(e,"name")||e.id,a=n.getParam("visual_anchor_class","mce-item-anchor","string"),i&&n.hasVisual?o.addClass(e,a):o.removeClass(e,a))}})),n.fire("VisualAid",{element:r,hasVisual:n.hasVisual})}},selection:{getContent:function(t,n){return function(e,t,n){var r,o=(r=t,_e(_e({},n=void 0===n?{}:n),{format:r,get:!0,selection:!0})),i=e.fire("BeforeGetContent",o);if(i.isDefaultPrevented())return e.fire("GetContent",i),i.content;if("text"===i.format)return m=e,ve.from(m.selection.getRng()).map((function(e){var t=ve.from(m.dom.getParent(e.commonAncestorContainer,m.dom.isBlock)),n=m.getBody(),r=t.map((function(e){return e.nodeName})).getOr("div").toLowerCase(),o=xt.browser.isIE()&&"pre"!==r,i=m.dom.add(n,r,{"data-mce-bogus":"all",style:"overflow: hidden; opacity: 0;"},e.cloneContents()),a=Fp(i,o),u=wo(i.textContent);if(m.dom.remove(i),Ip(u,0)||Ip(u,u.length-1)){var c=Fp(t.getOr(n),o),s=c.indexOf(a);return-1===s?a:(Ip(c,s-1)?" ":"")+a+(Ip(c,s+a.length)?" ":"")}return a})).getOr("");i.getInner=!0;var a,u,c,s,l,f,d,m,g=(u=i,c=(a=e).selection.getRng(),s=a.dom.create("body"),l=a.selection.getSel(),f=pd(a,xl(l)),(d=u.contextual?function(e,t){var n,r,o,i,a,u,c,s=Cl(t,e);return 0
    ").append(t.childNodes)})))},ip.pre||(ip.pre=[]),ip.pre.push(Dg);var nh=kt.each,rh=function(e,t,n){nh(e.childNodes,(function(e){cp(e)&&(t(e)&&n(e),e.hasChildNodes()&&rh(e,t,n))}))},oh=rr([{keep:[]},{rename:["name"]},{removed:[]}]),ih=/^(src|href|style)$/,ah=kt.each,uh=el,ch=kt.each,sh=kt.each,lh=function(e,t,n,r){function o(e,t){var o;S((t=void 0===t?m:t).onformat)&&t.onformat(e,t,n,r),sh(t.styles,(function(t,r){p.setStyle(e,r,Qs(t,n))})),!t.styles||(o=p.getAttrib(e,"style"))&&p.setAttrib(e,"data-mce-style",o),sh(t.attributes,(function(t,r){p.setAttrib(e,r,Qs(t,n))})),sh(t.classes,(function(t){t=Qs(t,n),p.hasClass(e,t)||p.addClass(e,t)}))}function i(e,t){var n=!1;return sh(e,(function(e){return!!ul(e)&&(u(e.collapsed)&&e.collapsed!==g||!p.is(t,e.selector)||Ps(t)?void 0:(o(t,e),!(n=!0)))})),n}function a(r,a,c){var s=[],l=!0,f=m.inline||m.block,g=function(e){if(v(e)){var t=p.create(e);return o(t),t}return null}(f);wl(r,a,(function(a){var p,h=function(a){var v=!1,b=l,y=a.nodeName.toLowerCase(),w=a.parentNode,x=w.nodeName.toLowerCase();if(Ln(a)&&r.getContentEditable(a)&&(b=l,l="true"===r.getContentEditable(a),v=!0),$n(a)&&!function(e,t,n,r){if(e.getParam("format_empty_lines",!1,"boolean")&&cl(t)){var o=_e(_e({},e.schema.getTextBlockElements()),{td:{},th:{},li:{},dt:{},dd:{},figcaption:{},caption:{},details:{},summary:{}}),i=(a=Ot.fromDom(n),c=function(e){return Ps(e.dom)},((s=(u=a).dom).parentNode?function(e,t){return $(e.dom.childNodes,(function(e){return t(Ot.fromDom(e))})).map(Ot.fromDom)}(Ot.fromDom(s.parentNode),(function(e){return!je(u,e)&&c(e)})):ve.none()).isSome());return ce(o,r)&&Wr(Ot.fromDom(n.parentNode),!1)&&!i}var a,u,c,s}(e,m,a,x))return p=null,void(al(m)&&r.remove(a));if(al(m)&&m.wrapper&&np(e,a,t,n))p=null;else{if(l&&!v&&al(m)&&!m.wrapper&&Js(e,y)&&Zs(e,x,f)){var C=r.rename(a,f);return o(C),s.push(C),void(p=null)}if(ul(m)){var S=i(d,a);if(!S&&u(w)&&sl(m)&&(S=i(d,w)),!cl(m)||S)return void(p=null)}!l||v||!Zs(e,f,y)||!Zs(e,x,f)||!c&&Vn(a)&&yo(a.data)||Ps(a)||cl(m)&&r.isBlock(a)?(p=null,F(xe(a.childNodes),h),v&&(l=b),p=null):(p||(p=r.clone(g,!1),a.parentNode.insertBefore(p,a),s.push(p)),p.appendChild(a))}};F(a,h)})),!0===m.links&&F(s,(function(e){var t=function(e){"A"===e.nodeName&&o(e,m),F(xe(e.childNodes),t)};t(e)})),F(s,(function(i){var a,c,l,f,g,p,h,v,b,y,w,x,C,S,k,O,T,_,E=(a=0,F(i.childNodes,(function(e){var t;u(t=e)&&Vn(t)&&0===t.length||$s(e)||a++})),a);function A(e){var t;1===e.nodeType&&e.parentNode&&1===e.parentNode.nodeType&&(t=rl(C,e.parentNode),C.getStyle(e,"color")&&t?C.setStyle(e,"text-decoration",t):C.getStyle(e,"text-decoration")===t&&C.setStyle(e,"text-decoration",null))}!(1n.clientHeight){t=n;break}n=n.parentNode}return t},scrollIntoView:function(e,t){u(e)?(r.inline?Wf:qf)(r,e,t):Gf(r,h(),t)},placeCaretAt:function(e,t){return v(hf(e,t,r.getDoc()))},getBoundingClientRect:function(){var e=h();return e.collapsed?rc.fromRangeStart(e).getClientRects()[0]:e.getBoundingClientRect()},destroy:function(){t=s=l=null,w.destroy()}},y=Rl(b),w=gf(b,r);function x(e,t){return $(t,(function(t){return f.is(t,e)}))}function C(e){return f.getParents(e,null,f.getRoot())}return b.bookmarkManager=y,b.controlSelection=w,b}function vh(e){var t,n=decodeURIComponent(e).split(","),r=/data:([^;]+)/.exec(n[0]);return{type:t=r?r[1]:t,data:n[1]}}function bh(e,t){var n;try{n=atob(t)}catch(e){return ve.none()}for(var r=new Uint8Array(n.length),o=0;o)/g,"\n").replace(/^[\r\n]*|[\r\n]*$/g,"").replace(/^\s*(()?|\s*\/\/\s*\]\]>(-->)?|\/\/\s*(-->)?|\]\]>|\/\*\s*-->\s*\*\/|\s*-->\s*)\s*$/g,"")},r=e.length;r--;){var o,i=e[r],a=i.firstChild?i.firstChild.value:"";"script"===t?((o=i.attr("type"))&&i.attr("type","mce-no/type"===o?null:o.replace(/^mce\-/,"")),"xhtml"===u.element_format&&0")):"xhtml"===u.element_format&&0)\s*/g,"$1"),kt.map(c.split(/(?:>|\s+(?![^\[\]]+\]))/),(function(e){var t=kt.map(e.split(/(?:~\+|~|\+)/),Cv),n=t.pop();return t.length&&(n.siblings=t),n})).reverse()):[],f=l.length?(l[0].name||(l[0].name=s),s=t.selector,xv(l,e)):xv([s],e),d=Fb.select(s,f)[0]||f.firstChild;return Ib(t.styles,(function(e,t){var n=a(e);n&&Fb.setStyle(d,t,n)})),Ib(t.attributes,(function(e,t){var n=a(e);n&&Fb.setAttrib(d,t,n)})),Ib(t.classes,(function(e){var t=a(e);Fb.hasClass(d,t)||Fb.addClass(d,t)})),e.fire("PreviewFormats"),Fb.setStyles(f,{position:"absolute",left:-65535}),e.getBody().appendChild(f),n=Fb.getStyle(e.getBody(),"fontSize",!0),n=/px$/.test(n)?parseInt(n,10):0,Ib(i.split(" "),(function(t){var r=Fb.getStyle(d,t,!0);if(!("background-color"===t&&/transparent|rgba\s*\([^)]+,\s*0\)/.test(r)&&(r=Fb.getStyle(e.getBody(),t,!0),"#ffffff"===Fb.toHex(r).toLowerCase())||"color"===t&&"#000000"===Fb.toHex(r).toLowerCase())){if("font-size"===t&&/em|%$/.test(r)){if(0===n)return;r=parseFloat(r)/(/%$/.test(r)?100:1)*n+"px"}"border"===t&&r&&(o+="padding:0 2px;"),o+=t+":"+r+";"}})),e.fire("AfterPreviewFormats"),Fb.remove(f),o}function kv(e){var t,n,r,o,i,a,c=(o={},(i=function(e,t){e&&(v(e)?(F(t=y(t)?t:[t],(function(e){C(e.deep)&&(e.deep=!ul(e)),C(e.split)&&(e.split=!ul(e)||cl(e)),C(e.remove)&&ul(e)&&!cl(e)&&(e.remove="none"),ul(e)&&cl(e)&&(e.mixed=!0,e.block_expand=!0),v(e.classes)&&(e.classes=e.classes.split(/\s+/))})),o[e]=t):ne(e,(function(e,t){i(t,e)})))})((n=(t=e).dom,r={valigntop:[{selector:"td,th",styles:{verticalAlign:"top"}}],valignmiddle:[{selector:"td,th",styles:{verticalAlign:"middle"}}],valignbottom:[{selector:"td,th",styles:{verticalAlign:"bottom"}}],alignleft:[{selector:"figure.image",collapsed:!1,classes:"align-left",ceFalseOverride:!0,preview:"font-family font-size"},{selector:"figure,p,h1,h2,h3,h4,h5,h6,td,th,tr,div,ul,ol,li",styles:{textAlign:"left"},inherit:!1,preview:!1,defaultBlock:"div"},{selector:"img,table,audio,video",collapsed:!1,styles:{float:"left"},preview:"font-family font-size"}],aligncenter:[{selector:"figure,p,h1,h2,h3,h4,h5,h6,td,th,tr,div,ul,ol,li",styles:{textAlign:"center"},inherit:!1,preview:"font-family font-size",defaultBlock:"div"},{selector:"figure.image",collapsed:!1,classes:"align-center",ceFalseOverride:!0,preview:"font-family font-size"},{selector:"img,audio,video",collapsed:!1,styles:{display:"block",marginLeft:"auto",marginRight:"auto"},preview:!1},{selector:"table",collapsed:!1,styles:{marginLeft:"auto",marginRight:"auto"},preview:"font-family font-size"}],alignright:[{selector:"figure.image",collapsed:!1,classes:"align-right",ceFalseOverride:!0,preview:"font-family font-size"},{selector:"figure,p,h1,h2,h3,h4,h5,h6,td,th,tr,div,ul,ol,li",styles:{textAlign:"right"},inherit:!1,preview:"font-family font-size",defaultBlock:"div"},{selector:"img,table,audio,video",collapsed:!1,styles:{float:"right"},preview:"font-family font-size"}],alignjustify:[{selector:"figure,p,h1,h2,h3,h4,h5,h6,td,th,tr,div,ul,ol,li",styles:{textAlign:"justify"},inherit:!1,defaultBlock:"div",preview:"font-family font-size"}],bold:[{inline:"strong",remove:"all",preserve_attributes:["class","style"]},{inline:"span",styles:{fontWeight:"bold"}},{inline:"b",remove:"all",preserve_attributes:["class","style"]}],italic:[{inline:"em",remove:"all",preserve_attributes:["class","style"]},{inline:"span",styles:{fontStyle:"italic"}},{inline:"i",remove:"all",preserve_attributes:["class","style"]}],underline:[{inline:"span",styles:{textDecoration:"underline"},exact:!0},{inline:"u",remove:"all",preserve_attributes:["class","style"]}],strikethrough:[{inline:"span",styles:{textDecoration:"line-through"},exact:!0},{inline:"strike",remove:"all",preserve_attributes:["class","style"]},{inline:"s",remove:"all",preserve_attributes:["class","style"]}],forecolor:{inline:"span",styles:{color:"%value"},links:!0,remove_similar:!0,clear_child_styles:!0},hilitecolor:{inline:"span",styles:{backgroundColor:"%value"},links:!0,remove_similar:!0,clear_child_styles:!0},fontname:{inline:"span",toggle:!1,styles:{fontFamily:"%value"},clear_child_styles:!0},fontsize:{inline:"span",toggle:!1,styles:{fontSize:"%value"},clear_child_styles:!0},lineheight:{selector:"h1,h2,h3,h4,h5,h6,p,li,td,th,div",defaultBlock:"p",styles:{lineHeight:"%value"}},fontsize_class:{inline:"span",attributes:{class:"%value"}},blockquote:{block:"blockquote",wrapper:!0,remove:"all"},subscript:{inline:"sub"},superscript:{inline:"sup"},code:{inline:"code"},link:{inline:"a",selector:"a",remove:"all",split:!0,deep:!0,onmatch:function(e,t,n){return Ln(e)&&e.hasAttribute("href")},onformat:function(e,t,r){kt.each(r,(function(t,r){n.setAttrib(e,r,t)}))}},lang:{inline:"span",clear_child_styles:!0,remove_similar:!0,attributes:{lang:"%value","data-mce-lang":function(e){var t;return null!==(t=null==e?void 0:e.customValue)&&void 0!==t?t:null}}},removeformat:[{selector:"b,strong,em,i,font,u,strike,s,sub,sup,dfn,code,samp,kbd,var,cite,mark,q,del,ins,small",remove:"all",split:!0,expand:!1,block_expand:!0,deep:!0},{selector:"span",attributes:["style","class"],remove:"empty",split:!0,expand:!1,deep:!0},{selector:"*",attributes:["style","class"],split:!1,expand:!1,deep:!0}]},kt.each("p h1 h2 h3 h4 h5 h6 div address pre dt dd samp".split(/\s/),(function(e){r[e]={block:e,remove:"all"}})),r)),i(t.getParam("formats")),{get:function(e){return u(e)?o[e]:o},has:function(e){return Oe(o,e)},register:i,unregister:function(e){return e&&o[e]&&delete o[e],o}}),s=tu(null);return function(e){e.addShortcut("meta+b","","Bold"),e.addShortcut("meta+i","","Italic"),e.addShortcut("meta+u","","Underline");for(var t=1;t<=6;t++)e.addShortcut("access+"+t,"",["FormatBlock",!1,"h"+t]);e.addShortcut("access+7","",["FormatBlock",!1,"p"]),e.addShortcut("access+8","",["FormatBlock",!1,"div"]),e.addShortcut("access+9","",["FormatBlock",!1,"address"])}(e),(a=e).on("mouseup keydown",(function(e){var t=a,n=e.keyCode,r=t.selection,o=t.getBody();Og(t,null,!1),8!==n&&46!==n||!r.isCollapsed()||r.getStart().innerHTML!==rp||Og(t,Is(o,r.getStart())),37!==n&&39!==n||Og(t,Is(o,r.getStart()))})),{get:c.get,has:c.has,register:c.register,unregister:c.unregister,apply:function(t,n,r){var o=t,i=n,a=r;Zp(e).formatter.apply(o,i,a)},remove:function(t,n,r,o){var i=t,a=n,u=r,c=o;Zp(e).formatter.remove(i,a,u,c)},toggle:function(t,n,r){var o=t,i=n,a=r;Zp(e).formatter.toggle(o,i,a)},match:function(t,n,r,o){return i=t,a=n,u=r,c=o,Zp(e).formatter.match(i,a,u,c);var i,a,u,c},closest:function(t){return n=t,Zp(e).formatter.closest(n);var n},matchAll:function(t,n){return r=t,o=n,Zp(e).formatter.matchAll(r,o);var r,o},matchNode:function(t,n,r,o){return i=t,a=n,u=r,c=o,Zp(e).formatter.matchNode(i,a,u,c);var i,a,u,c},canApply:function(t){return n=t,Zp(e).formatter.canApply(n);var n},formatChanged:function(t,n,r,o){return i=s,a=t,u=n,c=r,l=o,Zp(e).formatter.formatChanged(i,a,u,c,l);var i,a,u,c,l},getCssText:O(Sv,e)}}function Ov(e){switch(e.toLowerCase()){case"undo":case"redo":case"mcerepaint":case"mcefocus":return 1;default:return}}function Tv(e){var t,n,r,o,i,a=uu(),u=tu(0),c=tu(0),s={data:[],typing:!1,beforeChange:function(){var t=u,n=a;Zp(e).undoManager.beforeChange(t,n)},add:function(t,n){return r=s,o=c,i=u,l=a,f=t,d=n,Zp(e).undoManager.add(r,o,i,l,f,d);var r,o,i,l,f,d},undo:function(){return t=s,n=u,r=c,Zp(e).undoManager.undo(t,n,r);var t,n,r},redo:function(){return t=c,n=s.data,Zp(e).undoManager.redo(t,n);var t,n},clear:function(){var t=s,n=c;Zp(e).undoManager.clear(t,n)},reset:function(){var t=s;Zp(e).undoManager.reset(t)},hasUndo:function(){return t=s,n=c,Zp(e).undoManager.hasUndo(t,n);var t,n},hasRedo:function(){return t=s,n=c,Zp(e).undoManager.hasRedo(t,n);var t,n},transact:function(t){return n=s,r=u,o=t,Zp(e).undoManager.transact(n,r,o);var n,r,o},ignore:function(t){var n=u,r=t;Zp(e).undoManager.ignore(n,r)},extra:function(t,n){var r=s,o=c,i=t,a=n;Zp(e).undoManager.extra(r,o,i,a)}};return Xp(e)||(r=s,o=u,i=tu(!1),(n=e).on("init",(function(){r.add()})),n.on("BeforeExecCommand",(function(e){Ov(e.command)||(Gp(r,o),r.beforeChange())})),n.on("ExecCommand",(function(e){Ov(e.command)||l(e)})),n.on("ObjectResizeStart cut",(function(){r.beforeChange()})),n.on("SaveContent ObjectResized blur",l),n.on("dragend",l),n.on("keyup",(function(e){var t=e.keyCode;e.isDefaultPrevented()||((33<=t&&t<=36||37<=t&&t<=40||45===t||e.ctrlKey)&&(l(),n.nodeChanged()),46!==t&&8!==t||n.nodeChanged(),i.get()&&r.typing&&!1===Wp(Hp(n),r.data[0])&&(!1===n.isDirty()&&(n.setDirty(!0),n.fire("change",{level:r.data[0],lastLevel:null})),n.fire("TypingUndo"),i.set(!1),n.nodeChanged()))})),n.on("keydown",(function(e){var t,n=e.keyCode;e.isDefaultPrevented()||(33<=n&&n<=36||37<=n&&n<=40||45===n?r.typing&&l(e):(t=e.ctrlKey&&!e.altKey||e.metaKey,!(n<16||20e}}function gy(e){return function(t){return t.line===e}}function py(e,t){return Math.abs(e.left-t)}function hy(e,t){return Math.abs(e.right-t)}function vy(e,t){return e>=t.left&&e<=t.right}function by(e,t){return e>=t.top&&e<=t.bottom}function yy(e,t,n){return void 0===n&&(n=M),me(e,(function(e,r){if(vy(t,r))return n(r)?r:e;if(vy(t,e))return n(e)?e:r;var o=Math.min(py(e,t),hy(e,t)),i=Math.min(py(r,t),hy(r,t));return i===o&&ce(r,"node")&&rx(r.node)||i'),o=i,1===t?e.$(r).after(o):e.$(r).before(o),e.selection.select(o,!0),e.selection.collapse()))}function Zy(e,t){return n=e,r=t?ts.Forwards:ts.Backwards,o=n.selection.getRng(),Sy(n,r,o,Hg,Vg,sx).orThunk((function(){return Jy(n,r,o),ve.none()})).exists((function(t){return xy(e,t),!0}));var n,r,o}function Qy(e,t){return r=t?1:-1,o=(n=e).selection.getRng(),ky(n,r,o,(function(e){return Hg(e)||Fg(e)}),(function(e){return Vg(e)||Lg(e)}),sx).orThunk((function(){return Jy(n,r,o),ve.none()})).exists((function(t){return xy(e,t),!0}));var n,r,o}function ew(e,t){return Oy(e,t,t?Vg:Hg)}function tw(e){return B(["figcaption"],Tt(e))}function nw(e){var t=document.createRange();return t.setStartBefore(e.dom),t.setEndBefore(e.dom),t}function rw(e,t,n){(n?Rn:qt)(e,t)}function ow(e,t){return!!e.selection.isCollapsed()&&function(e,t){var n=Ot.fromDom(e.getBody()),r=rc.fromRangeStart(e.selection.getRng()),o=wc(e),i=xc(e),a=r,u=O(je,n);return gr(Ot.fromDom(a.container()),co,u).filter(tw).exists((function(){if(b=n,y=r,t?(x=b.dom,sy(x,y).breakAt.isNone()):(w=b.dom,cy(w,y).breakAt.isNone())){var a=(u=n,s=i,l=t,""===(c=o)?(h=l,rw(u,v=Ot.fromTag("br"),h),nw(v)):(f=u,d=l,m=s,g=Ot.fromTag(c),p=Ot.fromTag("br"),hn(g,m),Rn(g,p),rw(f,g,d),nw(p)));return e.selection.setRng(a),!0}var u,c,s,l,f,d,m,g,p,h,v,b,y,w,x;return!1}))}(e,t)}function iw(e){for(var t=[],n=1;ns.childNodes.length-1,s=s.childNodes[Math.min(c,s.childNodes.length-1)]||s,c=u&&3===s.nodeType?s.nodeValue.length:0);var l=i.getParent(s,i.isBlock),f=l?i.getParent(l.parentNode,i.isBlock):null,d=f?f.nodeName.toUpperCase():"",m=!(!t||!t.ctrlKey);"LI"!==d||m||(l=f),s&&3===s.nodeType&&c>=s.nodeValue.length&&!function(e){for(var t,n=new _r(s,l),r=e.getNonEmptyElements();t=n.next();)if(r[t.nodeName.toLowerCase()]||0m.childNodes.length-1,m=m.childNodes[Math.min(g,m.childNodes.length-1)]||m,g=c&&Vn(m)?m.nodeValue.length:0);var b,y,w,x,C,S,k,O,T,_,E,A,D,M,N,R,z,B,P,I,L=Ew(s,m);L&&((p&&!h||!p&&h)&&(m=function(e,t,n,r){var o,i,a,u,c,s,l=p||"P",f=e.dom,d=Ew(f,n),m=f.getParent(n,f.isBlock);if(!m||!Tw(f,m)){if(c=((m=m||d)===e.getBody()||(s=m)&&/^(TD|TH|CAPTION)$/.test(s.nodeName)?m:m.parentNode).nodeName.toLowerCase(),!m.hasChildNodes())return Aw(e,o=f.create(l)),m.appendChild(o),t.setStart(o,0),t.setEnd(o,0),o;for(a=n;a.parentNode!==m;)a=a.parentNode;for(;a&&!f.isBlock(a);)a=(i=a).previousSibling;if(i&&e.schema.isValidChild(c,l.toLowerCase())){for(Aw(e,o=f.create(l)),i.parentNode.insertBefore(o,i),a=i;a&&!f.isBlock(a);)u=a.nextSibling,o.appendChild(a),a=u;t.setStart(n,r),t.setEnd(n,r)}}return n}(e,d,m,g)),y=(b=s.getParent(m,s.isBlock))?s.getParent(b.parentNode,s.isBlock):null,w=b?b.nodeName.toUpperCase():"","LI"!==(x=y?y.nodeName.toUpperCase():"")||v||(y=(b=y).parentNode,w=x),/^(LI|DT|DD)$/.test(w)&&s.isEmpty(b)?(O=n,T=y,_=b,E=p,P=(k=e).dom,I=k.selection.getRng(),T!==k.getBody()&&(D=(E=xw(A=T)&&xw(A.parentNode)?"LI":E)?O(E):P.create("BR"),Sw(T,_,!0)&&Sw(T,_,!1)?ww(T,"LI")?(M=Cw(T),P.insertAfter(D,M),(null===(B=(z=T).parentNode)||void 0===B?void 0:B.firstChild)===z?P.remove(M):P.remove(T)):P.replace(D,T):(Sw(T,_,!0)?ww(T,"LI")?(P.insertAfter(D,Cw(T)),D.appendChild(P.doc.createTextNode(" ")),D.appendChild(T)):T.parentNode.insertBefore(D,T):Sw(T,_,!1)?P.insertAfter(D,Cw(T)):(T=Cw(T),(N=I.cloneRange()).setStartAfter(_),N.setEndAfter(T),R=N.extractContents(),"LI"===E&&R.firstChild&&"LI"===R.firstChild.nodeName?(D=R.firstChild,P.insertAfter(R,T)):(P.insertAfter(R,T),P.insertAfter(D,T))),P.remove(_)),bw(k,D))):p&&b===e.getBody()||(p=p||"P",Nr(b)?(a=Fr(b),s.isEmpty(b)&&kw(b),Aw(e,a),bw(e,a)):r()?o():r(!0)?(a=b.parentNode.insertBefore(n(),b),bw(e,Ow(b,"HR")?a:b)):((S=(C=d).cloneRange()).setStart(C.startContainer,_w(!0,C.startContainer,C.startOffset)),S.setEnd(C.endContainer,_w(!1,C.endContainer,C.endOffset)),(i=S.cloneRange()).setEndAfter(b),u=i.extractContents(),F(Fu(Ot.fromDom(u),Tn),(function(e){var t=e.dom;t.nodeValue=wo(t.nodeValue)})),function(e){for(;Vn(e)&&(e.nodeValue=e.nodeValue.replace(/^[\r\n]+/,"")),e=e.firstChild;);}(u),a=u.firstChild,s.insertAfter(u,b),function(e,t){var n,r,o=a,i=[];if(o){for(;o=o.firstChild;){if(e.isBlock(o))return;Ln(o)&&!t[o.nodeName.toLowerCase()]&&i.push(o)}for(n=i.length;n--;)(!(o=i[n]).hasChildNodes()||o.firstChild===o.lastChild&&""===o.firstChild.nodeValue||(r=o)&&"A"===r.nodeName&&e.isEmpty(r))&&e.remove(o)}}(s,f),function(e,t){t.normalize();var n=t.lastChild;n&&!/^(left|right)$/gi.test(e.getStyle(n,"float",!0))||e.add(t,"br")}(s,b),s.isEmpty(b)&&kw(b),a.normalize(),s.isEmpty(a)?(s.remove(a),o()):(Aw(e,a),bw(e,a))),s.setAttrib(a,"id",""),e.fire("NewBlock",{newBlock:a})))}(e,t)}),c)}function Xw(e){return e.stopImmediatePropagation()}function Yw(e){return e.keyCode===_f.PAGE_UP||e.keyCode===_f.PAGE_DOWN}function Jw(e,t,n){n&&!e.get()?t.on("NodeChange",Xw,!0):!n&&e.get()&&t.off("NodeChange",Xw),e.set(n)}function Zw(e,t){var n=t.container(),r=t.offset();return Vn(n)?(n.insertData(r,e),ve.some(rc(n,r+e.length))):Zc(t).map((function(n){var r=Ot.fromText(e);return(t.isAtEnd()?$t:Wt)(n,r),rc(r.dom,e.length)}))}function Qw(e){var t,n,r=rc.fromRangeStart(e.selection.getRng()),o=Ot.fromDom(e.getBody());if(e.selection.isCollapsed()){var i=O(Av,e),a=rc.fromRangeStart(e.selection.getRng());return kb(i,e.getBody(),a).bind((n=o,function(e){return e.fold((function(e){return Gl(n.dom,rc.before(e))}),(function(e){return Kl(e)}),(function(e){return Xl(e)}),(function(e){return ql(n.dom,rc.after(e))}))})).bind(function(e,t){return function(n){return i=e,(!Cm(a=n)&&(o=a,Gl((r=i).dom,o).isNone()||ql(r.dom,o).isNone()||jg(r,o)||Ug(r,o)||vm(r,o)||hm(r,o)||wm(i,a)||xm(i,a))?bx:yx)(t);var r,o,i,a}}(o,r)).exists((t=e,function(e){return t.selection.setRng(e.toRange()),t.nodeChanged(),!0}))}return!1}function ex(e){var t,n,r,o,i,a,u,c,s,l,f,d,m,g,p=function(e){var t=tu(null),n=O(Av,e);return e.on("NodeChange",(function(r){var o,i,a,u,c,s,l,f,d,m,g,p,h;!Mc(e)||xt.browser.isIE()&&r.initial||(c=n,s=e.dom,l=r.parents,F(Y(f=V(I(gu(Ot.fromDom(s.getRoot()),'*[data-mce-selected="inline-boundary"]'),(function(e){return e.dom})),c),d=V(l,c)),O(_y,!1)),F(Y(d,f),O(_y,!0)),g=t,(m=e).selection.isCollapsed()&&!0!==m.composing&&g.get()&&(p=rc.fromRangeStart(m.selection.getRng()),rc.isTextPosition(p)&&!1===(Pr(h=p)||Ir(h))&&(Ty(m,Fc(g.get(),p)),g.set(null))),o=n,i=e,a=t,u=r.parents,i.selection.isCollapsed()&&F(V(u,o),(function(e){var t=rc.fromRangeStart(i.selection.getRng());kb(o,i.getBody(),t).bind((function(e){return Ey(i,a,e)}))})))})),t}(e);return e.on("keyup compositionstart",O(Yy,e)),g=p,(m=e).on("keydown",(function(e){var t,n,r,o;!1===e.isDefaultPrevented()&&(t=m,n=g,r=e,o=dt().os,aw([{keyCode:_f.RIGHT,action:iw(Zy,t,!0)},{keyCode:_f.LEFT,action:iw(Zy,t,!1)},{keyCode:_f.UP,action:iw(Qy,t,!1)},{keyCode:_f.DOWN,action:iw(Qy,t,!0)},{keyCode:_f.RIGHT,action:iw(hw,t,!0)},{keyCode:_f.LEFT,action:iw(hw,t,!1)},{keyCode:_f.UP,action:iw(vw,t,!1)},{keyCode:_f.DOWN,action:iw(vw,t,!0)},{keyCode:_f.RIGHT,action:iw(uw,t,!0)},{keyCode:_f.LEFT,action:iw(uw,t,!1)},{keyCode:_f.UP,action:iw(cw,t,!1)},{keyCode:_f.DOWN,action:iw(cw,t,!0)},{keyCode:_f.RIGHT,action:iw(Ay,t,n,!0)},{keyCode:_f.LEFT,action:iw(Ay,t,n,!1)},{keyCode:_f.RIGHT,ctrlKey:!o.isOSX(),altKey:o.isOSX(),action:iw(ax,t,n)},{keyCode:_f.LEFT,ctrlKey:!o.isOSX(),altKey:o.isOSX(),action:iw(ux,t,n)},{keyCode:_f.UP,action:iw(ow,t,!1)},{keyCode:_f.DOWN,action:iw(ow,t,!0)}],r).each((function(e){r.preventDefault()})))})),d=p,(f=e).on("keydown",(function(e){var t,n,r;!1===e.isDefaultPrevented()&&(n=d,r=e,aw([{keyCode:_f.BACKSPACE,action:iw(Wy,t=f,!1)},{keyCode:_f.BACKSPACE,action:iw(ab,t,!1)},{keyCode:_f.DELETE,action:iw(ab,t,!0)},{keyCode:_f.BACKSPACE,action:iw(eb,t,!1)},{keyCode:_f.DELETE,action:iw(eb,t,!0)},{keyCode:_f.BACKSPACE,action:iw(zy,t,n,!1)},{keyCode:_f.DELETE,action:iw(zy,t,n,!0)},{keyCode:_f.BACKSPACE,action:iw(ag,t,!1)},{keyCode:_f.DELETE,action:iw(ag,t,!0)},{keyCode:_f.BACKSPACE,action:iw(ub,t,!1)},{keyCode:_f.DELETE,action:iw(ub,t,!0)},{keyCode:_f.BACKSPACE,action:iw(Fy,t,!1)},{keyCode:_f.DELETE,action:iw(Fy,t,!0)},{keyCode:_f.BACKSPACE,action:iw(qv,t,!1)},{keyCode:_f.DELETE,action:iw(qv,t,!0)},{keyCode:_f.BACKSPACE,action:iw(Wv,t,!1)},{keyCode:_f.DELETE,action:iw(Wv,t,!0)},{keyCode:_f.BACKSPACE,action:iw(Py,t,!1)},{keyCode:_f.DELETE,action:iw(Py,t,!0)}],r).each((function(e){r.preventDefault()})))})),f.on("keyup",(function(e){var t,n;!1===e.isDefaultPrevented()&&(n=e,aw([{keyCode:_f.BACKSPACE,action:iw(ib,t=f)},{keyCode:_f.DELETE,action:iw(ib,t)}],n))})),(l=e).on("keydown",(function(e){var t,n,r;e.keyCode===_f.ENTER&&(t=l,(n=e).isDefaultPrevented()||(n.preventDefault(),(r=t.undoManager).typing&&(r.typing=!1,r.add()),t.undoManager.transact((function(){!1===t.selection.isCollapsed()&&t.execCommand("Delete"),Kw(t,n)}))))})),(s=e).on("keydown",(function(e){var t;!1===e.isDefaultPrevented()&&(t=e,aw([{keyCode:_f.SPACEBAR,action:iw(Qw,s)}],t).each((function(e){t.preventDefault()})))})),u=a=e,c=cu((function(){u.composing||Em(u)}),0),hx.isIE()&&(u.on("keypress",(function(e){c.throttle()})),u.on("remove",(function(e){c.cancel()}))),a.on("input",(function(e){!1===e.isComposing&&Em(a)})),i=p,(o=e).on("keydown",(function(e){var t,n,r;!1===e.isDefaultPrevented()&&(n=i,r=e,aw([{keyCode:_f.END,action:iw(ew,t=o,!0)},{keyCode:_f.HOME,action:iw(ew,t,!1)},{keyCode:_f.END,action:iw(sw,t,!0)},{keyCode:_f.HOME,action:iw(sw,t,!1)},{keyCode:_f.END,action:iw(My,t,!0,n)},{keyCode:_f.HOME,action:iw(My,t,!1,n)}],r).each((function(e){r.preventDefault()})))})),t=e,n=p,vx.os.isOSX()||(r=tu(!1),t.on("keydown",(function(e){Yw(e)&&Jw(r,t,!0)})),t.on("keyup",(function(e){var o,i,a;!1===e.isDefaultPrevented()&&(a=e,aw([{keyCode:_f.PAGE_UP,action:iw(My,o=t,!1,i=n)},{keyCode:_f.PAGE_DOWN,action:iw(My,o,!0,i)}],a)),Yw(e)&&r.get()&&(Jw(r,t,!1),t.nodeChanged())}))),p}(uy=ay=ay||{})[uy.Up=-1]="Up",uy[uy.Down=1]="Down";var tx=O(dy,ay.Up,Tu,_u),nx=O(dy,ay.Down,_u,Tu),rx=Kn,ox=Uc,ix=function(e,t){var n=e.selection.getRng(),r=e.getBody();if(t){var o=rc.fromRangeEnd(n),i=sy(r,o);return ee(i.positions)}return o=rc.fromRangeStart(n),Q((i=cy(r,o)).positions)},ax=O(Dy,!0),ux=O(Dy,!1),cx=function(e){return V(I(e.selection.getSelectedBlocks(),Ot.fromDom),(function(e){return!jy(e)&&!Nt(e).exists(jy)&&gr(e,(function(e){return Gn(e.dom)||Kn(e.dom)})).exists((function(e){return Gn(e.dom)}))}))},sx=Kn,lx=O(lw,(function(e){return e.bottom}),(function(e,t){return e.yt})),dx=O(fw,cy),mx=O(fw,sy),gx=function(e,t){return n=rc.after(t),!!$n(n.getNode())||ql(e,rc.after(t)).map((function(e){return $n(e.getNode())})).getOr(!1);var n},px=rr([{br:[]},{block:[]},{none:[]}]),hx=dt().browser,vx=dt(),bx=O(Zw,vo),yx=O(Zw," "),wx=(xx.prototype.nodeChanged=function(e){var t,n,r,o=this.editor.selection;this.editor.initialized&&o&&!this.editor.getParam("disable_nodechange")&&!this.editor.mode.isReadOnly()&&(r=this.editor.getBody(),(t=o.getStart(!0)||r).ownerDocument===this.editor.getDoc()&&this.editor.dom.isChildOf(t,r)||(t=r),n=[],this.editor.dom.getParent(t,(function(e){return e===r||void n.push(e)})),(e=e||{}).element=t,e.parents=n,this.editor.fire("NodeChange",e))},xx.prototype.isSameElementPath=function(e){var t,n=this.editor.$(e).parentsUntil(this.editor.getBody()).add(e);if(n.length===this.lastPath.length){for(t=n.length;0<=t&&n[t]===this.lastPath[t];t--);if(-1===t)return this.lastPath=n,!0}return this.lastPath=n,!1},xx);function xx(e){var t;this.lastPath=[],this.editor=e;var n=this;"onselectionchange"in e.getDoc()||e.on("NodeChange click mouseup keyup focus",(function(n){var r=e.selection.getRng(),o={startContainer:r.startContainer,startOffset:r.startOffset,endContainer:r.endContainer,endOffset:r.endOffset};"nodechange"!==n.type&&vf(o,t)||e.fire("SelectionChange"),t=o})),e.on("contextmenu",(function(){e.fire("SelectionChange")})),e.on("SelectionChange",(function(){var t=e.selection.getStart(!0);!t||!xt.range&&e.selection.isCollapsed()||_l(e)&&!n.isSameElementPath(t)&&e.dom.isChildOf(t,e.getBody())&&e.nodeChanged({selectionChange:!0})})),e.on("mouseup",(function(t){!t.isDefaultPrevented()&&_l(e)&&("IMG"===e.selection.getNode().nodeName?Or.setEditorTimeout(e,(function(){e.nodeChanged()})):e.nodeChanged())}))}function Cx(e){return Ln(e)&&so(Ot.fromDom(e))}function Sx(e){var t=e.getBoundingClientRect(),n=e.ownerDocument,r=n.documentElement,o=n.defaultView;return{top:t.top+o.pageYOffset-r.clientTop,left:t.left+o.pageXOffset-r.clientLeft}}function kx(e){e&&e.parentNode&&e.parentNode.removeChild(e)}function Ox(e){var t,n,r,o,i,a,u=uu(),c=Xa.DOM,s=document,l=function(e,t){var n=Or.throttle((function(e,n){t._selectionOverrides.hideFakeCaret(),t.selection.placeCaretAt(e,n)}),0);return t.on("remove",n.stop),function(r){return e.on((function(e){var o,i,a,u,c,s,l,f,d,m,g,p,h,v,b,y,w,x,C,S,k=Math.max(Math.abs(r.screenX-e.screenX),Math.abs(r.screenY-e.screenY));if(!e.dragging&&10').attr("id",y)).appendTo(e.getBody());var a=p.createRng();n===r&&xt.ie?(i.empty().append('

     

    ').append(n),a.setStartAfter(i[0].firstChild.firstChild),a.setEndAfter(n)):(i.empty().append(vo).append(n).append(vo),a.setStart(i[0].firstChild,1),a.setEnd(i[0].lastChild,0)),i.css({top:p.getPos(t,e.getBody()).y}),i[0].focus();var u=g.getSel();return u.removeAllRanges(),u.addRange(a),a}(t,r.targetClone,n),i=Ot.fromDom(t);return F(gu(Ot.fromDom(e.getBody()),"*[data-mce-selected]"),(function(e){je(i,e)||yn(e,w)})),p.getAttrib(t,w)||t.setAttribute(w,"1"),l=t,C(),o}(h)}return null}function s(){l&&l.removeAttribute(w),hr(Ot.fromDom(e.getBody()),"#"+y).each(zn),l=null}var l,f,d,m,g=e.selection,p=e.dom,h=p.isBlock,v=e.getBody(),b=function(e,t,n,r){function o(){!function(){for(var e=gu(Ot.fromDom(t),"*[contentEditable=false],video,audio,embed,object"),n=0;n').css(_e({},f)).appendTo(t)[0];return u.set({caret:d,element:c,before:e}),e&&Wa(d).addClass("mce-visual-caret-before"),i=Or.setInterval((function(){r()?Wa("div.mce-visual-caret",t).toggleClass("mce-visual-caret-hidden"):Wa("div.mce-visual-caret",t).addClass("mce-visual-caret-hidden")}),500),(l=c.ownerDocument.createRange()).setStart(a,0),l.setEnd(a,0),l},hide:o,getCss:function(){return".mce-visual-caret {position: absolute;background-color: black;background-color: currentcolor;}.mce-visual-caret-hidden {display: none;}*[data-mce-caret] {position: absolute;left: -1000px;right: auto;top: 0;margin: 0;padding: 0;}"},reposition:function(){u.on((function(e){var n=Lc(t,e.element,e.before);Wa(e.caret).css(_e({},n))}))},destroy:function(){return Or.clearInterval(i)}}}(e,v,h,(function(){return ld(e)})),y="sel-"+p.uniqueId(),w="data-mce-selected",x=g.getRng,C=function(){b.hide()};return xt.ceFalse&&!Xp(e)&&(e.on("mouseup",(function(t){var n=x();n.collapsed&&Bh(e,t.clientX,t.clientY)&&Xv(e,n,!1).each(r)})),e.on("click",(function(t){var n=Tx(e,t.target);n&&(Gx(n)&&(t.preventDefault(),e.focus()),qx(n)&&p.isChildOf(n,g.getNode())&&s())})),e.on("blur NewBlock",s),e.on("ResizeWindow FullscreenStateChanged",b.reposition),e.on("tap",(function(n){var r=n.target,o=Tx(e,r);Gx(o)?(n.preventDefault(),Kv(e,o).each(c)):t(r)&&Kv(e,r).each(c)}),!0),e.on("mousedown",(function(i){var u,l,f,d,m,b,y,w=i.target;w!==v&&"HTML"!==w.nodeName&&!p.isChildOf(w,v)||!1===Bh(e,i.clientX,i.clientY)||((u=Tx(e,w))?Gx(u)?(i.preventDefault(),Kv(e,u).each(c)):(s(),qx(u)&&i.shiftKey||lf(i.clientX,i.clientY,g.getRng())||(C(),g.placeCaretAt(i.clientX,i.clientY))):t(w)?Kv(e,w).each(c):!1===Vc(w)&&(s(),C(),(l=function(e,t,n){function r(e){return!sn(e.node)&&!Yn(e.node)}var o,i,a,u=iy(V(xe(e.getElementsByTagName("*")),Vc));return(a=yy(V(u,O(by,n)),t,r))&&(a=yy(function(e,t,n){function r(e,n){var r=V(iy([n]),(function(n){return!e(n,t)}));return o=o.concat(r),0===r.length}void 0===n&&(n=!0);var o=[];return o.push(t),wy(ay.Up,e,O(r,Tu),t.node,n),wy(ay.Down,e,O(r,_u),t.node,n),o}(e,a,r(a)),t,r))&&Vc(a.node)?{node:(o=a).node,before:py(o,i=t)")+"";e.getParam("document_base_url","")!==e.documentBaseUrl&&(t+=''),t+='';var n=bc(e,"body_id","tinymce"),r=bc(e,"body_class",""),o=e.translate(e.getParam("iframe_aria_text","Rich Text Area. Press ALT-0 for help.","string"));return yc(e)&&(t+=''),t+'
    '}(e),Xx.add(t.iframeContainer,u),c}(g=e,p=b),p.editorContainer&&(Xx.get(p.editorContainer).style.display=g.orgDisplay,g.hidden=Xx.isHidden(p.editorContainer)),g.getElement().style.display="none",Xx.setAttrib(g.id,"aria-hidden","true"),void(h||Rx(g)))}function Ix(e){return"-"===e.charAt(0)}function Fx(e,t,n){return ve.from(t).filter((function(e){return 0")},mceToggleVisualAid:function(){e.hasVisual=!e.hasVisual,e.addVisual()},mceReplaceContent:function(t,n,r){e.execCommand("mceInsertContent",!1,r.replace(/\{\$selection\}/g,e.selection.getContent({format:"text"})))},mceInsertLink:function(t,n,r){"string"==typeof r&&(r={href:r});var o=e.dom.getParent(e.selection.getNode(),"a");r.href=r.href.replace(/ /g,"%20"),o&&r.href||e.formatter.remove("link"),r.href&&e.formatter.apply("link",r,o)},selectAll:function(){var t,n=e.dom.getParent(e.selection.getStart(),Gn);n&&((t=e.dom.createRng()).selectNodeContents(n),e.selection.setRng(t))},mceNewDocument:function(){e.setContent("")},InsertLineBreak:function(t,n,r){return Pw(e,r),!0}}),t.addCommands({JustifyLeft:n("alignleft"),JustifyCenter:n("aligncenter"),JustifyRight:n("alignright"),JustifyFull:n("alignjustify"),"Bold,Italic,Underline,Strikethrough,Superscript,Subscript":function(e){return t.isFormatMatch(e)},mceBlockQuote:function(){return t.isFormatMatch("blockquote")},Outdent:function(){return Vy(e)},"InsertUnorderedList,InsertOrderedList":function(t){var n=e.dom.getParent(e.selection.getNode(),"ul,ol");return n&&("insertunorderedlist"===t&&"UL"===n.tagName||"insertorderedlist"===t&&"OL"===n.tagName)}},"state"),t.addCommands({Undo:function(){e.undoManager.undo()},Redo:function(){e.undoManager.redo()}}),t.addQueryValueHandler("FontName",(function(){return Vx(t=e,(function(e){return tC(t.getBody(),e.dom)})).getOr("");var t}),this),t.addQueryValueHandler("FontSize",(function(){return Vx(t=e,(function(e){return eC(t.getBody(),e.dom)})).getOr("");var t}),this),t.addQueryValueHandler("LineHeight",(function(){return Vx(t=e,(function(e){var n=Ot.fromDom(t.getBody());return pg(e,(function(e){return xn(e,"line-height")}),O(je,n)).getOrThunk((function(){var t=parseFloat(wn(e,"line-height")),n=parseFloat(wn(e,"font-size"));return String(t/n)}))})).getOr("");var t}),this)},aC);function aC(e){this.commands={state:{},exec:{},value:{}},this.editor=e,this.setupCommands(e)}function uC(e,t,n){try{e.getDoc().execCommand(t,!1,String(n))}catch(e){}}function cC(e,t){e.dom.contentEditable=t?"true":"false"}function sC(e,t){var n,r,o=Ot.fromDom(e.getBody());(function(e,t,n){var r,o,i,a,u,c;mu(e,t)&&!1===n?(o=t,fu(r=e)?r.dom.classList.remove(o):(u=o,0<(c=V(lu(a=r,"class"),(function(e){return e!==u}))).length?pn(a,"class",c.join(" ")):yn(a,"class")),0===(fu(i=r)?i.dom.classList:lu(i,"class")).length&&yn(i,"class")):n&&du(e,t)})(o,"mce-content-readonly",t),t?(e.selection.controlSelection.hideResizeRect(),e._selectionOverrides.hideFakeCaret(),ve.from(e.selection.getNode()).each((function(e){e.removeAttribute("data-mce-selected")})),cC(o,!(e.readonly=!0)),F(gu(o,'*[contenteditable="true"]'),(function(e){pn(e,dC,"true"),cC(e,!1)}))):(cC(o,!(e.readonly=!1)),F(gu(o,"*["+dC+'="true"]'),(function(e){yn(e,dC),cC(e,!0)})),uC(e,"StyleWithCSS",!1),uC(e,"enableInlineTableEditing",!1),uC(e,"enableObjectResizing",!1),(ld(n=e)||(r=n,Xf(Nn(Ot.fromDom(r.getElement()))).filter((function(e){return!(void 0!==(t=e.dom.classList)&&(t.contains("tox-edit-area")||t.contains("tox-edit-area__iframe")||t.contains("mce-content-body")))&&id(r,e.dom);var t})).isSome()))&&e.focus(),e.selection.setRng(e.selection.getRng()),e.nodeChanged())}function lC(e){return e.readonly}function fC(e){e.parser.addAttributeFilter("contenteditable",(function(t){lC(e)&&F(t,(function(e){e.attr(dC,e.attr("contenteditable")),e.attr("contenteditable","false")}))})),e.serializer.addAttributeFilter(dC,(function(t){lC(e)&&F(t,(function(e){e.attr("contenteditable",e.attr(dC))}))})),e.serializer.addTempAttr(dC)}var dC="data-mce-contenteditable",mC=kt.makeMap("focus blur focusin focusout click dblclick mousedown mouseup mousemove mouseover beforepaste paste cut copy selectionchange mouseout mouseenter mouseleave wheel keydown keypress keyup input beforeinput contextmenu dragstart dragend dragover draggesture dragdrop drop drag submit compositionstart compositionend compositionupdate touchstart touchmove touchend touchcancel"," "),gC=(pC.isNative=function(e){return!!mC[e.toLowerCase()]},pC.prototype.fire=function(e,t){var n=e.toLowerCase(),r=ro(n,t||{},this.scope);this.settings.beforeFire&&this.settings.beforeFire(r);var o=this.bindings[n];if(o)for(var i=0,a=o.length;i"),xC);return o[o.length-1]=kt.extend(o[o.length-1],{func:n,scope:r||this.editor}),kt.extend(o[0],{desc:this.editor.translate(t),subpatterns:o.slice(1)})},NC.prototype.hasModifier=function(e){return e.altKey||e.ctrlKey||e.metaKey},NC.prototype.isFunctionKey=function(e){return"keydown"===e.type&&112<=e.keyCode&&e.keyCode<=123},NC.prototype.matchShortcut=function(e,t){return!!t&&t.ctrl===e.ctrlKey&&t.meta===e.metaKey&&t.alt===e.altKey&&t.shift===e.shiftKey&&!!(e.keyCode===t.keyCode||e.charCode&&e.charCode===t.charCode)&&(e.preventDefault(),!0)},NC.prototype.executeShortcutAction=function(e){return e.func?e.func.call(e.scope):null},NC);function NC(e){this.shortcuts={},this.pendingPatterns=[],this.editor=e;var t=this;e.on("keyup keypress keydown",(function(e){!t.hasModifier(e)&&!t.isFunctionKey(e)||e.isDefaultPrevented()||(_C(t.shortcuts,(function(n){if(t.matchShortcut(e,n))return t.pendingPatterns=n.subpatterns.slice(0),"keydown"===e.type&&t.executeShortcutAction(n),!0})),t.matchShortcut(e,t.pendingPatterns[0])&&(1===t.pendingPatterns.length&&"keydown"===e.type&&t.executeShortcutAction(t.pendingPatterns[0]),t.pendingPatterns.shift()))}))}var RC=Xa.DOM,zC=kt.extend,BC=kt.each,PC=kt.resolve,IC=xt.ie,FC=(LC.prototype.render=function(){!function(e){var t=e.id;iu.setCode(Oc(e));var n,r,o,i,a=function(){Zx.unbind(window,"ready",a),e.render()};oi.Event.domLoaded?e.getElement()&&xt.contentEditable&&(n=Ot.fromDom(e.getElement()),r=U(n.dom.attributes,(function(e,t){return e[t.name]=t.value,e}),{}),e.on("remove",(function(){L(n.dom.attributes,(function(e){return yn(n,e.name),0})),hn(n,r)})),e.ui.styleSheetLoader=Tr.forElement(n,{contentCssCors:(o=e).getParam("content_css_cors"),referrerPolicy:kc(o)}),e.getParam("inline")?e.inline=!0:(e.orgVisibility=e.getElement().style.visibility,e.getElement().style.visibility="hidden"),(i=e.getElement().form||Zx.getParent(t,"form"))&&(e.formElement=i,e.getParam("hidden_input")&&!Hn(e.getElement())&&(Zx.insertAfter(Zx.create("input",{type:"hidden",name:t}),t),e.hasHiddenInput=!0),e.formEventDelegate=function(t){e.fire(t.type,t)},Zx.bind(i,"submit reset",e.formEventDelegate),e.on("reset",(function(){e.resetContent()})),!e.getParam("submit_patch")||i.submit.nodeType||i.submit.length||i._mceOldSubmit||(i._mceOldSubmit=i.submit,i.submit=function(){return e.editorManager.triggerSave(),e.setDirty(!1),i._mceOldSubmit(i)})),e.windowManager=sv(e),e.notificationManager=Ph(e),"xml"===e.getParam("encoding")&&e.on("GetContent",(function(e){e.save&&(e.content=Zx.encode(e.content))})),e.getParam("add_form_submit_trigger")&&e.on("submit",(function(){e.initialized&&e.save()})),e.getParam("add_unload_trigger")&&(e._beforeUnload=function(){!e.initialized||e.destroyed||e.isHidden()||e.save({format:"raw",no_events:!0,set_dirty:!1})},e.editorManager.on("BeforeUnload",e._beforeUnload)),e.editorManager.add(e),function(e,t){var n,r,o=Qa.ScriptLoader,i=o,a=t,u=function(){var n,r,i,a,u,s,l,f,d;u=o,f=Oc(s=e),d=s.getParam("language_url","","string"),!1===iu.hasCode(f)&&"en"!==f&&(l=""!==d?d:s.editorManager.baseURL+"/langs/"+f+".js",u.add(l,c,void 0,(function(){dv(s,"LanguageLoadError",mv("language",l,f))}))),i=o,F(function(e){for(var t=[],n=function(e){t.push(e)},r=0;r",visual:!0,font_size_legacy_values:"xx-small,small,medium,large,x-large,xx-large,300%",forced_root_block:"p",hidden_input:!0,inline_styles:!0,convert_fonts_to_spans:!0,indent:!0,indent_before:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,th,ul,ol,li,dl,dt,dd,area,table,thead,tfoot,tbody,tr,section,summary,article,hgroup,aside,figure,figcaption,option,optgroup,datalist",indent_after:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,th,ul,ol,li,dl,dt,dd,area,table,thead,tfoot,tbody,tr,section,summary,article,hgroup,aside,figure,figcaption,option,optgroup,datalist",entity_encoding:"named",url_converter:this.convertURL,url_converter_scope:this},b=_e(_e({},v),h?tv:{}),!1!==(y=Mh(Zh||Qh,Zh,b,m,g)).deprecation_warnings&&function(e,t){var n,r,o,i,a,u,c,s=(n=e,r=V(Gh,(function(e){return Oe(n,e)})),!1!==(o=n.forced_root_block)&&""!==o||r.push("forced_root_block (false only)"),J(r)),l=(c=kt.makeMap(t.plugins," "),J(Ee(Ee([],V(Kh,g),!0),G(Xh,(function(e){return g(e)?[e+" (moving to premium)"]:[]})),!0))),f=0=n.x&&o.x+o.w<=n.w+n.x&&o.y>=n.y&&o.y+o.h<=n.h+n.y)return r[i];return null},intersect:function(e,t){var n=cS(e.x,t.x),r=cS(e.y,t.y),o=uS(e.x+e.w,t.x+t.w),i=uS(e.y+e.h,t.y+t.h);return o-n<0||i-r<0?null:nS(n,r,o-n,i-r)},clamp:function(e,t,n){var r=e.x,o=e.y,i=e.x+e.w,a=e.y+e.h,u=t.x+t.w,c=t.y+t.h,s=cS(0,t.x-r),l=cS(0,t.y-o),f=cS(0,i-u),d=cS(0,a-c);return r+=s,o+=l,n&&(i+=s,a+=l,r-=f,o-=d),nS(r,o,(i-=f)-r,(a-=d)-o)},create:nS,fromClientRect:function(e){return nS(e.left,e.top,e.width,e.height)}},fS=(rS={},oS={},{load:function(e,t){var n='Script at URL "'+t+'" failed to load',r='Script at URL "'+t+"\" did not call `tinymce.Resource.add('"+e+"', data)` within 1 second";if(void 0!==rS[e])return rS[e];var o=new kr((function(o,i){var a=function(e,t,n){function r(e){return function(){for(var t=[],n=0;n-1},L=function(e,t){for(var n=0,r=e.length;n=0;n--)t(e[n],n)}(e,(function(e,r){n=t(n,e,r)})),n},G=function(e,t,n){return U(e,(function(e,r){n=t(n,e,r)})),n},K=function(e,t){return function(e,t,n){for(var r=0,o=e.length;r=0&&t=t.length&&e.substr(n,n+t.length)===t},Te=function(e,t){return-1!==e.indexOf(t)},_e=function(e,t){return Oe(e,t,0)},Ee=function(e,t){return Oe(e,t,e.length-t.length)},Ae=function(e){return function(t){return t.replace(e,"")}}(/^\s+|\s+$/g),De=function(e){return e.length>0},Me=function(e){return void 0!==e.style&&f(e.style.getPropertyValue)},Ne=function(e){if(null==e)throw new Error("Node cannot be null or undefined");return{dom:e}},Re={fromHtml:function(e,t){var n=(t||document).createElement("div");if(n.innerHTML=e,!n.hasChildNodes()||n.childNodes.length>1)throw console.error("HTML does not have a single root node",e),new Error("HTML must have a single root node");return Ne(n.childNodes[0])},fromTag:function(e,t){var n=(t||document).createElement(e);return Ne(n)},fromText:function(e,t){var n=(t||document).createTextNode(e);return Ne(n)},fromDom:Ne,fromPoint:function(e,t,n){return R.from(e.dom.elementFromPoint(t,n)).map(Ne)}};"undefined"!=typeof window?window:Function("return this;")();var ze,Be=function(e){return e.dom.nodeName.toLowerCase()},Pe=function(e){return function(t){return function(e){return e.dom.nodeType}(t)===e}},Ie=Pe(1),Fe=Pe(3),Le=Pe(9),He=Pe(11),Ve=function(e){var t,n=!1;return function(){for(var r=[],o=0;o0&&t0}))},rn=function(e){var t={},n=e.dom;if(Me(n))for(var r=0;ro?t-o:0}}},sn=cn("height",(function(e){var t=e.dom;return Lt(e)?t.getBoundingClientRect().height:t.offsetHeight})),ln=function(e){return sn.get(e)},fn=function(e){return sn.getOuter(e)},dn=function(e,t){return{left:e,top:t,translate:function(n,r){return dn(e+n,t+r)}}},mn=dn,gn=function(e,t){return void 0!==e?e:void 0!==t?t:0},pn=function(e){var t=e.dom.ownerDocument,n=t.body,r=t.defaultView,o=t.documentElement;if(n===e.dom)return mn(n.offsetLeft,n.offsetTop);var i=gn(null==r?void 0:r.pageYOffset,o.scrollTop),a=gn(null==r?void 0:r.pageXOffset,o.scrollLeft),u=gn(o.clientTop,n.clientTop),c=gn(o.clientLeft,n.clientLeft);return hn(e).translate(a-c,i-u)},hn=function(e){var t=e.dom,n=t.ownerDocument.body;return n===t?mn(n.offsetLeft,n.offsetTop):Lt(e)?function(e){var t=e.getBoundingClientRect();return mn(t.left,t.top)}(t):mn(0,0)},vn=cn("width",(function(e){return e.dom.offsetWidth})),bn=function(e){return vn.get(e)},yn=function(e){return vn.getOuter(e)},wn=function(e){var t=Re.fromDom(function(e){if(Rt()&&l(e.target)){var t=Re.fromDom(e.target);if(Ie(t)&&Ft(t)&&e.composed&&e.composedPath){var n=e.composedPath();if(n)return ie(n)}}return R.from(e.target)}(e).getOr(e.target)),n=function(){return e.stopPropagation()},r=function(){return e.preventDefault()},o=p(r,n);return function(e,t,n,r,o,i,a){return{target:e,x:t,y:n,stop:r,prevent:o,kill:i,raw:a}}(t,e.clientX,e.clientY,n,r,o,e)},xn=function(e,t,n,r,o){var i=function(e,t){return function(n){e(n)&&t(wn(n))}}(n,r);return e.dom.addEventListener(t,i,o),{unbind:y(Cn,e,t,i,o)}},Cn=function(e,t,n,r){e.dom.removeEventListener(t,n,r)},Sn=function(e,t){Ot(e).each((function(n){n.dom.insertBefore(t.dom,e.dom)}))},kn=function(e,t){var n=function(e){return R.from(e.dom.nextSibling).map(Re.fromDom)}(e);n.fold((function(){Ot(e).each((function(e){Tn(e,t)}))}),(function(e){Sn(e,t)}))},On=function(e,t){var n=function(e){return Et(e,0)}(e);n.fold((function(){Tn(e,t)}),(function(n){e.dom.insertBefore(t.dom,n.dom)}))},Tn=function(e,t){e.dom.appendChild(t.dom)},_n=function(e,t){U(t,(function(t){Tn(e,t)}))},En=function(e){e.dom.textContent="",U(_t(e),(function(e){An(e)}))},An=function(e){var t=e.dom;null!==t.parentNode&&t.parentNode.removeChild(t)},Dn=function(e){var t,n=_t(e);n.length>0&&(t=e,U(n,(function(e){Sn(t,e)}))),An(e)},Mn=function(e){var t=void 0!==e?e.dom:document,n=t.body.scrollLeft||t.documentElement.scrollLeft,r=t.body.scrollTop||t.documentElement.scrollTop;return mn(n,r)},Nn=function(e,t,n){var r=(void 0!==n?n.dom:document).defaultView;r&&r.scrollTo(e,t)},Rn=function(e,t,n,r){return{x:e,y:t,width:n,height:r,right:e+n,bottom:t+r}},zn=function(e){var t=void 0===e?window:e,n=t.document,r=Mn(Re.fromDom(n));return function(e){var t=void 0===e?window:e;return pt().browser.isFirefox()?R.none():R.from(t.visualViewport)}(t).fold((function(){var e=t.document.documentElement,n=e.clientWidth,o=e.clientHeight;return Rn(r.left,r.top,n,o)}),(function(e){return Rn(Math.max(e.pageLeft,r.left),Math.max(e.pageTop,r.top),e.width,e.height)}))},Bn=function(e,t){return e.view(t).fold(h([]),(function(t){var n=e.owner(t),r=Bn(e,n);return[t].concat(r)}))},Pn=Object.freeze({__proto__:null,view:function(e){var t;return(e.dom===document?R.none():R.from(null===(t=e.dom.defaultView)||void 0===t?void 0:t.frameElement)).map(Re.fromDom)},owner:function(e){return xt(e)}}),In=function(e){var t=Re.fromDom(document),n=Mn(t),r=function(e,t){var n=t.owner(e),r=Bn(t,n);return R.some(r)}(e,Pn);return r.fold(y(pn,e),(function(t){var r=hn(e),o=q(t,(function(e,t){var n=hn(t);return{left:e.left+n.left,top:e.top+n.top}}),{left:0,top:0});return mn(o.left+r.left+n.left,o.top+r.top+n.top)}))},Fn=function(e,t,n,r){return{x:e,y:t,width:n,height:r,right:e+n,bottom:t+r}},Ln=function(e){var t=pn(e),n=yn(e),r=fn(e);return Fn(t.left,t.top,n,r)},Hn=function(e){var t=In(e),n=yn(e),r=fn(e);return Fn(t.left,t.top,n,r)},Vn=function(){return zn(window)},jn=function(e){return{isValue:S,isError:C,getOr:h(e),getOrThunk:h(e),getOrDie:h(e),or:function(t){return jn(e)},orThunk:function(t){return jn(e)},fold:function(t,n){return n(e)},map:function(t){return jn(t(e))},mapError:function(t){return jn(e)},each:function(t){t(e)},bind:function(t){return t(e)},exists:function(t){return t(e)},forall:function(t){return t(e)},toOptional:function(){return R.some(e)}}},Un=function(e){return{isValue:C,isError:S,getOr:v,getOrThunk:function(e){return e()},getOrDie:function(){return x(String(e))()},or:v,orThunk:function(e){return e()},fold:function(t,n){return t(e)},map:function(t){return Un(e)},mapError:function(t){return Un(t(e))},each:g,bind:function(t){return Un(e)},exists:C,forall:S,toOptional:R.none}},Wn={value:jn,error:Un,fromOption:function(e,t){return e.fold((function(){return Un(t)}),jn)}};!function(e){e[e.Error=0]="Error",e[e.Value=1]="Value"}(ze||(ze={}));var $n=function(e,t,n){return e.stype===ze.Error?t(e.serror):n(e.svalue)},qn=function(e){return{stype:ze.Value,svalue:e}},Gn=function(e){return{stype:ze.Error,serror:e}},Kn=function(e){return e.fold(Gn,qn)},Xn=function(e){return $n(e,Wn.error,Wn.value)},Yn=qn,Jn=function(e){var t=[],n=[];return U(e,(function(e){$n(e,(function(e){return n.push(e)}),(function(e){return t.push(e)}))})),{values:t,errors:n}},Zn=Gn,Qn=function(e,t){return e.stype===ze.Value?t(e.svalue):e},er=function(e,t){return e.stype===ze.Error?t(e.serror):e},tr=function(e,t){return e.stype===ze.Value?{stype:ze.Value,svalue:t(e.svalue)}:e},nr=function(e,t){return e.stype===ze.Error?{stype:ze.Error,serror:t(e.serror)}:e},rr=$n,or=function(e,t,n,r){return{tag:"field",key:e,newKey:t,presence:n,prop:r}},ir=function(e,t,n){switch(e.tag){case"field":return t(e.key,e.newKey,e.presence,e.prop);case"custom":return n(e.newKey,e.instantiator)}},ar=function(e){return function(){for(var t=[],n=0;n0?dr(t.errors):Yn(t.values)},gr=function(e){return o(e)&&se(e).length>100?" removed due to size":JSON.stringify(e,null,2)},pr=function(e,t){return Zn([{path:e,getErrorInfo:t}])},hr=function(e){return{extract:function(t,n){return er(e(n),(function(e){return function(e,t){return pr(e,h(t))}(t,e)}))},toString:h("val")}},vr=hr(Yn),br=function(e,t,n,r){return be(t,n).fold((function(){return function(e,t,n){return pr(e,(function(){return'Could not find valid *required* value for "'+t+'" in '+gr(n)}))}(e,n,t)}),r)},yr=function(e,t,n,r){return r(be(e,t).getOrThunk((function(){return n(e)})))},wr=function(e,t,n,r,o){var i=function(e){return o.extract(t.concat([r]),e)},a=function(e){return e.fold((function(){return Yn(R.none())}),(function(e){var n=o.extract(t.concat([r]),e);return tr(n,R.some)}))};switch(e.tag){case"required":return br(t,n,r,i);case"defaultedThunk":return yr(n,r,e.process,i);case"option":return function(e,t,n){return n(be(e,t))}(n,r,a);case"defaultedOptionThunk":return function(e,t,n,r){return r(be(e,t).map((function(t){return!0===t?n(e):t})))}(n,r,e.process,a);case"mergeWithThunk":return yr(n,r,h({}),(function(t){var r=ur(e.process(n),t);return i(r)}))}},xr=function(e){return{extract:function(t,n){return e().extract(t,n)},toString:function(){return e().toString()}}},Cr=function(e){return se(ge(e,l))},Sr=function(e){var t=kr(e),n=q(e,(function(e,t){return ir(t,(function(t){var n;return ur(e,((n={})[t]=!0,n))}),h(e))}),{});return{extract:function(e,r){var o=u(r)?[]:Cr(r),i=$(o,(function(e){return!we(n,e)}));return 0===i.length?t.extract(e,r):function(e,t){return pr(e,(function(){return"There are unsupported fields: ["+t.join(", ")+"] specified"}))}(e,i)},toString:t.toString}},kr=function(e){return{extract:function(t,n){return function(e,t,n){for(var r={},o=[],i=0,a=n;i0?Zn(o):Yn(r)}(t,n,e)},toString:function(){var t=j(e,(function(e){return ir(e,(function(e,t,n,r){return e+" -> "+r.toString()}),(function(e,t){return"state("+e+")"}))}));return"obj{\n"+t.join("\n")+"}"}}},Or=function(e){return{extract:function(t,n){var r=j(n,(function(n,r){return e.extract(t.concat(["["+r+"]"]),n)}));return mr(r)},toString:function(){return"array("+e.toString()+")"}}},Tr=function(e){return{extract:function(t,n){for(var r=[],o=0,i=e;o10?t.slice(0,10).concat([{path:[],getErrorInfo:h("... (only showing first ten failures)")}]):t,j(n,(function(e){return"Failed path: ("+e.path.join(" > ")+")\n"+e.getErrorInfo()}))).join("\n")+"\n\nInput object: "+gr(e.input);var t,n},$r=function(e,t){return Fr(e,de(t,kr))},qr=or,Gr=function(e,t){return{tag:"custom",newKey:e,instantiator:t}},Kr=function(e){return Lr((function(t){return F(e,t)?Wn.value(t):Wn.error('Unsupported value: "'+t+'", choose one of "'+e.join(", ")+'".')}))},Xr=function(e){return qr(e,e,{tag:"required",process:{}},Ar())},Yr=function(e,t){return qr(e,e,{tag:"required",process:{}},t)},Jr=function(e){return Yr(e,Mr)},Zr=function(e){return Yr(e,Nr)},Qr=function(e,t){return qr(e,e,{tag:"required",process:{}},Kr(t))},eo=function(e){return Yr(e,zr)},to=function(e,t){return qr(e,e,{tag:"required",process:{}},kr(t))},no=function(e,t){return qr(e,e,{tag:"required",process:{}},Er(t))},ro=function(e,t){return qr(e,e,{tag:"required",process:{}},Or(t))},oo=function(e){return qr(e,e,{tag:"option",process:{}},Ar())},io=function(e,t){return qr(e,e,{tag:"option",process:{}},t)},ao=function(e){return io(e,Mr)},uo=function(e){return io(e,Nr)},co=function(e){return io(e,zr)},so=function(e,t){return io(e,Or(t))},lo=function(e,t){return io(e,kr(t))},fo=function(e,t){return qr(e,e,lr(t),Ar())},mo=function(e,t,n){return qr(e,e,lr(t),n)},go=function(e,t){return mo(e,t,Mr)},po=function(e,t){return mo(e,t,Nr)},ho=function(e,t,n){return mo(e,t,Kr(n))},vo=function(e,t){return mo(e,t,Rr)},bo=function(e,t){return mo(e,t,zr)},yo=function(e,t,n){return mo(e,t,Or(n))},wo=function(e,t,n){return mo(e,t,kr(n))},xo=function(e){var t=e;return{get:function(){return t},set:function(e){t=e}}},Co=function(e){if(!i(e))throw new Error("cases must be an array");if(0===e.length)throw new Error("there must be at least one case");var t=[],n={};return U(e,(function(r,o){var a=se(r);if(1!==a.length)throw new Error("one and only one name per case");var u=a[0],c=r[u];if(void 0!==n[u])throw new Error("duplicate key detected:"+u);if("cata"===u)throw new Error("cannot have a case named cata (sorry)");if(!i(c))throw new Error("case arguments must be an array");t.push(u),n[u]=function(){for(var n=[],r=0;r0?(n=r.errors,Wn.error(Y(n))):function(e,t){return 0===e.length?Wn.value(t):Wn.value(ur(t,cr.apply(void 0,e)))}(r.values,t)},Eo=function(e){return f(e)?e:C},Ao=function(e,t,n){for(var r=e.dom,o=Eo(n);r.parentNode;){r=r.parentNode;var i=Re.fromDom(r),a=t(i);if(a.isSome())return a;if(o(i))break}return R.none()},Do=function(e,t,n){var r=t(e),o=Eo(n);return r.orThunk((function(){return o(e)?R.none():Ao(e,t,o)}))},Mo=function(e,t){return bt(e.element,t.event.target)},No={can:S,abort:C,run:g},Ro=function(e){if(!we(e,"can")&&!we(e,"abort")&&!we(e,"run"))throw new Error("EventHandler defined by: "+JSON.stringify(e,null,2)+" does not have can, abort, or run!");return O(O({},No),e)},zo=function(e){var t=function(e,t){return function(){for(var n=[],r=0;r1?$(t[n],(function(t){return L(e,(function(e){return e.name===t}))})).join(" > "):e[0].name;return Oo(n,function(e,t){return{handler:e,purpose:t}}(o,i))}))}));return _o(n,{})},Da="alloy.base.behaviour",Ma=kr([qr("dom","dom",{tag:"required",process:{}},kr([Xr("tag"),fo("styles",{}),fo("classes",[]),fo("attributes",{}),oo("value"),oo("innerHtml")])),Xr("components"),Xr("uid"),fo("events",{}),fo("apis",{}),qr("eventOrder","eventOrder",function(e){return fr(h(e))}((So={},So[ci()]=["disabling",Da,"toggling","typeaheadevents"],So[oi()]=[Da,"focusing","keying"],So[gi()]=[Da,"disabling","toggling","representing"],So[Xo()]=[Da,"representing","streaming","invalidating"],So[wi()]=[Da,"representing","item-events","tooltipping"],So[Ho()]=["focusing",Da,"item-type-events"],So[Po()]=["focusing",Da,"item-type-events"],So[Wo()]=["item-type-events","tooltipping"],So[ui()]=["receiving","reflecting","tooltipping"],So)),Ar()),oo("domModification")]),Na=function(e){return e.events},Ra=function(e,t){var n=$t(e,t);return void 0===n||""===n?[]:n.split(" ")},za=function(e){return void 0!==e.dom.classList},Ba=function(e,t){return function(e,t,n){var r=Ra(e,t).concat([n]);return Ut(e,t,r.join(" ")),!0}(e,"class",t)},Pa=function(e,t){return function(e,t,n){var r=$(Ra(e,t),(function(e){return e!==n}));return r.length>0?Ut(e,t,r.join(" ")):Kt(e,t),!1}(e,"class",t)},Ia=function(e,t){za(e)?e.dom.classList.add(t):Ba(e,t)},Fa=function(e){var t=za(e)?e.dom.classList:function(e){return Ra(e,"class")}(e);0===t.length&&Kt(e,"class")},La=function(e,t){za(e)?e.dom.classList.remove(t):Pa(e,t);Fa(e)},Ha=function(e,t){return za(e)&&e.dom.classList.contains(t)},Va=function(e,t){U(t,(function(t){Ia(e,t)}))},ja=function(e,t){U(t,(function(t){La(e,t)}))},Ua=function(e){return e.dom.value},Wa=function(e,t){if(void 0===t)throw new Error("Value.set was undefined");e.dom.value=t},$a=function(e,t){return function(e,t){var n=j(t,(function(e){return lo(e.name(),[Xr("config"),fo("state",wa)])})),r=Vr("component.behaviours",kr(n),e.behaviours).fold((function(t){throw new Error(Wr(t)+"\nComplete spec:\n"+JSON.stringify(e,null,2))}),v);return{list:t,data:de(r,(function(e){var t=e.map((function(e){return{config:e.config,state:e.state.init(e.config)}}));return h(t)}))}}(e,t)},qa=function(e){var t=function(e){var t=be(e,"behaviours").getOr({});return J(se(t),(function(e){var n=t[e];return l(n)?[n.me]:[]}))}(e);return $a(e,t)},Ga=function(e,t,n){var r,o,i,a=O(O({},(r=e).dom),{uid:r.uid,domChildren:j(r.components,(function(e){return e.element}))}),u=function(e){return e.domModification.fold((function(){return Sa({})}),Sa)}(e),c={"alloy.base.modification":u},s=t.length>0?function(e,t,n,r){var o=O({},t);U(n,(function(t){o[t.name()]=t.exhibit(e,r)}));var i=Ca(o,(function(e,t){return{name:e,modification:t}})),a=function(e){return q(e,(function(e,t){return O(O({},t.modification),e)}),{})},u=q(i.classes,(function(e,t){return t.modification.concat(e)}),[]),c=a(i.attributes),s=a(i.styles);return Sa({classes:u,attributes:c,styles:s})}(n,c,t,a):u;return i=s,O(O({},o=a),{attributes:O(O({},o.attributes),i.attributes),styles:O(O({},o.styles),i.styles),classes:o.classes.concat(i.classes)})},Ka=function(e,t,n){var r={"alloy.base.behaviour":Na(e)};return function(e,t,n,r){var o=Ta(e,n,r);return Aa(o,t)}(n,e.eventOrder,t,r).getOrDie()},Xa=function(e){var t=function(){return l},n=xo(ga),r=jr(function(e){return Vr("custom.definition",Ma,e)}(e)),o=qa(e),i=function(e){return e.list}(o),a=function(e){return e.data}(o),u=function(e){var t=Re.fromTag(e.tag);Wt(t,e.attributes),Va(t,e.classes),Zt(t,e.styles),e.innerHtml.each((function(e){return Ji(t,e)}));var n=e.domChildren;return _n(t,n),e.value.each((function(e){Wa(t,e)})),e.uid,sa(t,e.uid),t}(Ga(r,i,a)),c=Ka(r,i,a),s=xo(r.components),l={uid:e.uid,getSystem:n.get,config:function(t){var n=a;return(f(n[t.name()])?n[t.name()]:function(){throw new Error("Could not find "+t.name()+" in "+JSON.stringify(e,null,2))})()},hasConfigured:function(e){return f(a[e.name()])},spec:e,readState:function(e){return a[e]().map((function(e){return e.state.readState()})).getOr("not enabled")},getApis:function(){return r.apis},connect:function(e){n.set(e)},disconnect:function(){n.set(ma(t))},element:u,syncComponents:function(){var e=_t(u),t=J(e,(function(e){return n.get().getByDom(e).fold((function(){return[]}),ne)}));s.set(t)},components:s.get,events:c};return l},Ya=function(e){var t=da(e),n=t.events,r=T(t,["events"]),o=function(e){var t=be(e,"components").getOr([]);return j(t,eu)}(r),i=O(O({},r),{events:O(O({},na),n),components:o});return Wn.value(Xa(i))},Ja=function(e){var t=Re.fromText(e);return Za({element:t})},Za=function(e){var t=Ur("external.component",Sr([Xr("element"),oo("uid")]),e),n=xo(ma()),r=t.uid.getOrThunk((function(){return fa("external")}));sa(t.element,r);var o={uid:r,getSystem:n.get,config:R.none,hasConfigured:C,connect:function(e){n.set(e)},disconnect:function(){n.set(ma((function(){return o})))},getApis:function(){return{}},element:t.element,spec:e,readState:h("No state"),syncComponents:g,components:h([]),events:{}};return ba(o)},Qa=fa,eu=function(e){return function(e){return be(e,va)}(e).getOrThunk((function(){var t=function(e){return ye(e,"uid")}(e)?e:O({uid:Qa("")},e);return Ya(t).getOrDie()}))},tu=ba;function nu(e,t,n,r,o){return e(n,r)?R.some(n):f(o)&&o(n)?R.none():t(n,r,o)}var ru,ou=function(e,t,n){for(var r=e.dom,o=f(n)?n:C;r.parentNode;){r=r.parentNode;var i=Re.fromDom(r);if(t(i))return R.some(i);if(o(i))break}return R.none()},iu=function(e,t,n){return nu((function(e,t){return t(e)}),ou,e,t,n)},au=function(e,t,n){return iu(e,t,n).isSome()},uu=function(e,t,n){return ou(e,(function(e){return ht(e,t)}),n)},cu=function(e,t){return function(e,t){return K(e.dom.childNodes,(function(e){return t(Re.fromDom(e))})).map(Re.fromDom)}(e,(function(e){return ht(e,t)}))},su=function(e,t){return function(e,t){var n=void 0===t?document:t.dom;return vt(n)?R.none():R.from(n.querySelector(e)).map(Re.fromDom)}(t,e)},lu=function(e,t,n){return nu((function(e,t){return ht(e,t)}),uu,e,t,n)},fu=function(){var e=oa("aria-owns");return{id:e,link:function(t){Ut(t,"aria-owns",e)},unlink:function(e){Kt(e,"aria-owns")}}},du=function(e,t){return function(e){var t=iu(e,(function(e){if(!Ie(e))return!1;var t=$t(e,"id");return void 0!==t&&t.indexOf("aria-owns")>-1}));return t.bind((function(e){var t=$t(e,"id"),n=zt(e);return su(n,'[aria-owns="'+t+'"]')}))}(t).exists((function(t){return mu(e,t)}))},mu=function(e,t){return au(t,(function(t){return bt(t,e.element)}),C)||du(e,t)},gu="unknown";!function(e){e[e.STOP=0]="STOP",e[e.NORMAL=1]="NORMAL",e[e.LOGGING=2]="LOGGING"}(ru||(ru={}));var pu=xo({}),hu=function(e,t,n){switch(be(pu.get(),e).orThunk((function(){var t=se(pu.get());return ce(t,(function(t){return e.indexOf(t)>-1?R.some(pu.get()[t]):R.none()}))})).getOr(ru.NORMAL)){case ru.NORMAL:return n(yu());case ru.LOGGING:var r=function(e,t){var n=[],r=(new Date).getTime();return{logEventCut:function(e,t,r){n.push({outcome:"cut",target:t,purpose:r})},logEventStopped:function(e,t,r){n.push({outcome:"stopped",target:t,purpose:r})},logNoParent:function(e,t,r){n.push({outcome:"no-parent",target:t,purpose:r})},logEventNoHandlers:function(e,t){n.push({outcome:"no-handlers-left",target:t})},logEventResponse:function(e,t,r){n.push({outcome:"response",purpose:r,target:t})},write:function(){var o=(new Date).getTime();F(["mousemove","mouseover","mouseout",gi()],e)||console.log(e,{event:e,time:o-r,target:t.dom,sequence:j(n,(function(e){return F(["cut","stopped","response"],e.outcome)?"{"+e.purpose+"} "+e.outcome+" at ("+ea(e.target)+")":e.outcome}))})}}}(e,t),o=n(r);return r.write(),o;case ru.STOP:return!0}},vu=["alloy/data/Fields","alloy/debugging/Debugging"],bu=function(e,t,n){return hu(e,t,n)},yu=h({logEventCut:g,logEventStopped:g,logNoParent:g,logEventNoHandlers:g,logEventResponse:g,write:g}),wu=h([Xr("menu"),Xr("selectedMenu")]),xu=h([Xr("item"),Xr("selectedItem")]);h(kr(xu().concat(wu())));var Cu=h(kr(xu())),Su=to("initSize",[Xr("numColumns"),Xr("numRows")]),ku=function(){return to("markers",[Xr("backgroundMenu")].concat(wu()).concat(xu()))},Ou=function(e){return to("markers",j(e,Xr))},Tu=function(e,t,n){return function(){var e=new Error;if(void 0!==e.stack){var t=e.stack.split("\n");return K(t,(function(e){return e.indexOf("alloy")>0&&!L(vu,(function(t){return e.indexOf(t)>-1}))})).getOr(gu)}}(),qr(t,t,n,Lr((function(e){return Wn.value((function(){for(var t=[],n=0;nr?n:o=n&&a<=o&&u>=r&&u<=i,sizeInBounds:c<=o&&c>=n&&s<=i&&s>=r,visibleW:Math.min(l,a>=n?o-a:c-n),visibleH:Math.min(f,u>=r?i-u:s-r)}}(s,a),f=l.originInBounds,d=l.sizeInBounds,m=l.visibleW,g=l.visibleH,p=f&&d,v=p?s:function(e,t){var n=t.x,r=t.y,o=t.right,i=t.bottom,a=e.x,u=e.y,c=e.width,s=e.height,l=Math.max(n,o-c),f=Math.max(r,i-s),d=$u(a,n,l),m=$u(u,r,f),g=Math.min(d+c,o)-d,p=Math.min(m+s,i)-m;return Fn(d,m,g,p)}(s,a),b=v.width>0&&v.height>0,y=function(e,t,n){var r=h(t.bottom-n.y),o=h(n.bottom-t.y),i=function(e,t,n,r){return e.fold(t,t,r,r,t,r,n,n)}(e,o,o,r),a=h(t.right-n.x),u=h(n.right-t.x),c=function(e,t,n,r){return e.fold(t,r,t,r,n,n,t,r)}(e,u,u,a);return{maxWidth:c,maxHeight:i}}(e.direction,v,r),w=y.maxWidth,x={rect:v,maxHeight:y.maxHeight,maxWidth:w,direction:e.direction,placement:e.placement,classes:{on:o.classesOn,off:o.classesOff},layout:e.label,testY:c};return p||e.alwaysFit?Kc.fit(x):Kc.nofit(x,m,g,b)},Yc=function(e){var t=xo(R.none()),n=function(){return t.get().each(e)};return{clear:function(){n(),t.set(R.none())},isSet:function(){return t.get().isSome()},get:function(){return t.get()},set:function(e){n(),t.set(R.some(e))}}},Jc=function(){return Yc((function(e){return e.destroy()}))},Zc=function(){return Yc((function(e){return e.unbind()}))},Qc=function(){var e=Yc(g);return O(O({},e),{on:function(t){return e.get().each(t)}})},es=S,ts=function(e,t,n){return function(e,t,n,r){return xn(e,t,n,r,!1)}(e,t,es,n)},ns=function(e,t,n){return function(e,t,n,r){return xn(e,t,n,r,!0)}(e,t,es,n)},rs=wn,os=["top","bottom","right","left"],is="data-alloy-transition-timer",as=function(e,t){return function(e,t){return Z(t,(function(t){return Ha(e,t)}))}(e,t.classes)},us=function(e,t){var n=function(e){return parseFloat(e).toFixed(3)};return he(t,(function(t,r){var o,i,a,u=e[r].map(n),c=t.map(n);return void 0===a&&(a=b),!Se(o=u,i=c,a).getOr(o.isNone()&&i.isNone())})).isSome()},cs=function(e,t){var n,o=Zc(),i=Zc(),a=function(t){var n,r=null!==(n=t.raw.pseudoElement)&&void 0!==n?n:"";return bt(t.target,e)&&!De(r)&&F(os,t.raw.propertyName)},u=function(r){if(s(r)||a(r)){o.clear(),i.clear();var u=null==r?void 0:r.raw.type;(s(u)||u===Qo())&&(clearTimeout(n),Kt(e,is),ja(e,t.classes))}},c=function(){o.set(ts(e,Qo(),u)),i.set(ts(e,Zo(),u))};if("ontransitionstart"in e.dom)var l=ts(e,ei(),(function(e){a(e)&&(l.unbind(),c())}));else c();var f=function(e){var t=function(t){var n=en(e,t),o=r(n)?n.split(/\s*,\s*/):[];return $(o,De)},n=function(e){if(r(e)&&/^[\d.]+/.test(e)){var t=parseFloat(e);return Ee(e,"ms")?t:1e3*t}return 0},o=t("transition-delay"),i=t("transition-duration");return G(i,(function(e,t,r){var i=n(o[r])+n(t);return Math.max(e,i)}),0)}(e);requestAnimationFrame((function(){n=setTimeout(u,f+17),Ut(e,is,n)}))},ss=function(e,t,n,r,o,i){var a=function(e,t,n){return n.exists((function(n){var r=e.mode;return"all"===r||n[r]!==t[r]}))}(r,o,i);if(a||as(e,r)){Jt(e,"position",n.position);var u=Lc(t,e),c=Fc(t,O(O({},o),{rect:u})),s=te(os,(function(e){return c[e]}));us(n,s)&&(Qt(e,s),a&&function(e,t){Va(e,t.classes),qt(e,is).each((function(t){clearTimeout(parseInt(t,10)),Kt(e,is)})),cs(e,t)}(e,r),un(e))}else ja(e,r.classes)},ls=function(e,t,n,r){an(t,"max-height"),an(t,"max-width");var o,i={width:yn(o=t),height:fn(o)};return function(e,t,n,r,o,i){var a=r.width,u=r.height,c=function(t,c,s,l,f){var d=t(n,r,o,e,i),m=Xc(d,a,u,i);return m.fold(h(m),(function(e,t,n,r){return(f===r?n>l||t>s:!f&&r)?m:Kc.nofit(c,s,l,f)}))},s=G(t,(function(e,t){var n=y(c,t);return e.fold(h(e),n)}),Kc.nofit({rect:n,maxHeight:r.height,maxWidth:r.width,direction:Pu(),placement:"southeast",classes:{on:[],off:[]},layout:"none",testY:n.y},-1,-1,!1));return s.fold(v,v)}(t,r.preference,e,i,n,r.bounds)},fs=function(e,t){!function(e,t){Ut(e,qc,t)}(e,t.placement)},ds=function(e,t){!function(e,t){var n=sn.max(e,t,["margin-top","border-top-width","padding-top","padding-bottom","border-bottom-width","margin-bottom"]);Jt(e,"max-height",n+"px")}(e,Math.floor(t))},ms=h((function(e,t){ds(e,t),Zt(e,{"overflow-x":"hidden","overflow-y":"auto"})})),gs=h((function(e,t){ds(e,t)})),ps=function(e,t,n){return void 0===e[t]?n:e[t]},hs=function(e,t,n,r){var o=ls(e,t,n,r);return function(e,t,n){var r=Fc(n.origin,t);n.transition.each((function(o){ss(e,n.origin,r,o,t,n.lastPlacement)})),Bc(e,r)}(t,o,r),fs(t,o),function(e,t){var n=t.classes;ja(e,n.off),Va(e,n.on)}(t,o),function(e,t,n){(0,n.maxHeightFunction)(e,t.maxHeight)}(t,o,r),function(e,t,n){(0,n.maxWidthFunction)(e,t.maxWidth)}(t,o,r),{layout:o.layout,placement:o.placement}},vs=["valignCentre","alignLeft","alignRight","alignCentre","top","bottom","left","right","inset"],bs=function(e,t,n,r){void 0===r&&(r=1);var o=e*r,i=t*r,a=function(e){return be(n,e).getOr([])},u=function(e,t,n){var r=ee(vs,n);return{offset:mn(e,t),classesOn:J(n,a),classesOff:J(r,a)}};return{southeast:function(){return u(-e,t,["top","alignLeft"])},southwest:function(){return u(e,t,["top","alignRight"])},south:function(){return u(-e/2,t,["top","alignCentre"])},northeast:function(){return u(-e,-t,["bottom","alignLeft"])},northwest:function(){return u(e,-t,["bottom","alignRight"])},north:function(){return u(-e/2,-t,["bottom","alignCentre"])},east:function(){return u(e,-t/2,["valignCentre","left"])},west:function(){return u(-e,-t/2,["valignCentre","right"])},insetNortheast:function(){return u(o,i,["top","alignLeft","inset"])},insetNorthwest:function(){return u(-o,i,["top","alignRight","inset"])},insetNorth:function(){return u(-o/2,i,["top","alignCentre","inset"])},insetSoutheast:function(){return u(o,-i,["bottom","alignLeft","inset"])},insetSouthwest:function(){return u(-o,-i,["bottom","alignRight","inset"])},insetSouth:function(){return u(-o/2,-i,["bottom","alignCentre","inset"])},insetEast:function(){return u(-o,-i/2,["valignCentre","right","inset"])},insetWest:function(){return u(o,-i/2,["valignCentre","left","inset"])}}},ys=function(){return bs(0,0,{})},ws=v,xs=function(e,t){return function(n){return"rtl"===Cs(n)?t:e}},Cs=function(e){return"rtl"===en(e,"direction")?"rtl":"ltr"};!function(e){e.TopToBottom="toptobottom",e.BottomToTop="bottomtotop"}(jc||(jc={}));var Ss="data-alloy-vertical-dir",ks=function(e){return au(e,(function(e){return Ie(e)&&$t(e,"data-alloy-vertical-dir")===jc.BottomToTop}))},Os=function(){return lo("layouts",[Xr("onLtr"),Xr("onRtl"),oo("onBottomLtr"),oo("onBottomRtl")])},Ts=function(e,t,n,r,o,i,a){var u=a.map(ks).getOr(!1),c=t.layouts.map((function(t){return t.onLtr(e)})),s=t.layouts.map((function(t){return t.onRtl(e)})),l=u?t.layouts.bind((function(t){return t.onBottomLtr.map((function(t){return t(e)}))})).or(c).getOr(o):c.getOr(n),f=u?t.layouts.bind((function(t){return t.onBottomRtl.map((function(t){return t(e)}))})).or(s).getOr(i):s.getOr(r);return xs(l,f)(e)},_s=[Xr("hotspot"),oo("bubble"),fo("overrides",{}),Os(),Mu("placement",(function(e,t,n){var r=t.hotspot,o=Lc(n,r.element),i=Ts(e.element,t,dc(),mc(),lc(),fc(),R.some(t.hotspot.element));return R.some(ws({anchorBox:o,bubble:t.bubble.getOr(ys()),overrides:t.overrides,layouts:i,placer:R.none()}))}))],Es=[Xr("x"),Xr("y"),fo("height",0),fo("width",0),fo("bubble",ys()),fo("overrides",{}),Os(),Mu("placement",(function(e,t,n){var r=Vc(n,t.x,t.y),o=Fn(r.left,r.top,t.width,t.height),i=Ts(e.element,t,cc(),sc(),cc(),sc(),R.none());return R.some(ws({anchorBox:o,bubble:t.bubble,overrides:t.overrides,layouts:i,placer:R.none()}))}))],As=Co([{screen:["point"]},{absolute:["point","scrollLeft","scrollTop"]}]),Ds=function(e){return e.fold(v,(function(e,t,n){return e.translate(-t,-n)}))},Ms=function(e){return e.fold(v,v)},Ns=function(e){return G(e,(function(e,t){return e.translate(t.left,t.top)}),mn(0,0))},Rs=function(e){var t=j(e,Ms);return Ns(t)},zs=As.screen,Bs=As.absolute,Ps=function(e,t,n){var r=xt(e.element),o=Mn(r),i=function(e,t,n){var r=kt(n.root).dom;return R.from(r.frameElement).map(Re.fromDom).filter((function(t){var n=xt(t),r=xt(e.element);return bt(n,r)})).map(pn)}(e,0,n).getOr(o);return Bs(i,o.left,o.top)},Is=function(e,t,n,r){var o=zs(mn(e,t));return R.some(function(e,t,n){return{point:e,width:t,height:n}}(o,n,r))},Fs=function(e,t,n,r,o){return e.map((function(e){var i,a,u,c=[t,e.point],s=(i=function(){return Rs(c)},a=function(){return Rs(c)},u=function(){return function(e){var t=j(e,Ds);return Ns(t)}(c)},r.fold(i,a,u)),l=function(e,t,n,r){return{x:e,y:t,width:n,height:r}}(s.left,s.top,e.width,e.height),f=n.showAbove?lc():dc(),d=n.showAbove?fc():mc(),m=Ts(o,n,f,d,f,d,R.none());return ws({anchorBox:l,bubble:n.bubble.getOr(ys()),overrides:n.overrides,layouts:m,placer:R.none()})}))},Ls=[Xr("node"),Xr("root"),oo("bubble"),Os(),fo("overrides",{}),fo("showAbove",!1),Mu("placement",(function(e,t,n){var r=Ps(e,0,t);return t.node.filter(Lt).bind((function(o){var i=o.dom.getBoundingClientRect(),a=Is(i.left,i.top,i.width,i.height),u=t.node.getOr(e.element);return Fs(a,r,t,n,u)}))}))],Hs=function(e,t,n,r){return{start:e,soffset:t,finish:n,foffset:r}},Vs=Co([{before:["element"]},{on:["element","offset"]},{after:["element"]}]),js=(Vs.before,Vs.on,Vs.after,function(e){return e.fold(v,v,v)}),Us=Co([{domRange:["rng"]},{relative:["startSitu","finishSitu"]},{exact:["start","soffset","finish","foffset"]}]),Ws={domRange:Us.domRange,relative:Us.relative,exact:Us.exact,exactFromRange:function(e){return Us.exact(e.start,e.soffset,e.finish,e.foffset)},getWin:function(e){var t=function(e){return e.match({domRange:function(e){return Re.fromDom(e.startContainer)},relative:function(e,t){return js(e)},exact:function(e,t,n,r){return e}})}(e);return kt(t)},range:Hs},$s=function(e,t,n){var r,o=e.document.createRange();return r=o,t.fold((function(e){r.setStartBefore(e.dom)}),(function(e,t){r.setStart(e.dom,t)}),(function(e){r.setStartAfter(e.dom)})),function(e,t){t.fold((function(t){e.setEndBefore(t.dom)}),(function(t,n){e.setEnd(t.dom,n)}),(function(t){e.setEndAfter(t.dom)}))}(o,n),o},qs=function(e,t,n,r,o){var i=e.document.createRange();return i.setStart(t.dom,n),i.setEnd(r.dom,o),i},Gs=function(e){return{left:e.left,top:e.top,right:e.right,bottom:e.bottom,width:e.width,height:e.height}},Ks=Co([{ltr:["start","soffset","finish","foffset"]},{rtl:["start","soffset","finish","foffset"]}]),Xs=function(e,t,n){return t(Re.fromDom(n.startContainer),n.startOffset,Re.fromDom(n.endContainer),n.endOffset)},Ys=function(e,t){var n=function(e,t){return t.match({domRange:function(e){return{ltr:h(e),rtl:R.none}},relative:function(t,n){return{ltr:Ve((function(){return $s(e,t,n)})),rtl:Ve((function(){return R.some($s(e,n,t))}))}},exact:function(t,n,r,o){return{ltr:Ve((function(){return qs(e,t,n,r,o)})),rtl:Ve((function(){return R.some(qs(e,r,o,t,n))}))}}})}(e,t);return function(e,t){var n=t.ltr();return n.collapsed?t.rtl().filter((function(e){return!1===e.collapsed})).map((function(e){return Ks.rtl(Re.fromDom(e.endContainer),e.endOffset,Re.fromDom(e.startContainer),e.startOffset)})).getOrThunk((function(){return Xs(0,Ks.ltr,n)})):Xs(0,Ks.ltr,n)}(0,n)},Js=function(e,t){return Ys(e,t).match({ltr:function(t,n,r,o){var i=e.document.createRange();return i.setStart(t.dom,n),i.setEnd(r.dom,o),i},rtl:function(t,n,r,o){var i=e.document.createRange();return i.setStart(r.dom,o),i.setEnd(t.dom,n),i}})};Ks.ltr,Ks.rtl;var Zs,Qs=function(e,t){var n=function(t){return e(t)?R.from(t.dom.nodeValue):R.none()};return{get:function(r){if(!e(r))throw new Error("Can only get "+t+" value of a "+t+" node");return n(r).getOr("")},getOption:n,set:function(n,r){if(!e(n))throw new Error("Can only set raw "+t+" value of a "+t+" node");n.dom.nodeValue=r}}}(Fe,"text"),el=function(e){return Qs.getOption(e)},tl=["img","br"],nl=function(e){var t=el(e).filter((function(e){return 0!==e.trim().length||e.indexOf(" ")>-1})).isSome();return t||F(tl,Be(e))},rl=function(e,t){var n=function(e){for(var r=_t(e),o=r.length-1;o>=0;o--){var i=r[o];if(t(i))return R.some(i);var a=n(i);if(a.isSome())return a}return R.none()};return n(e)},ol=function(e,t){return function(e,t){var n=void 0===t?document:t.dom;return vt(n)?[]:j(n.querySelectorAll(e),Re.fromDom)}(t,e)},il=function(e,t,n,r){var o=function(e,t,n,r){var o=xt(e).dom.createRange();return o.setStart(e.dom,t),o.setEnd(n.dom,r),o}(e,t,n,r),i=bt(e,n)&&t===r;return o.collapsed&&!i},al=function(e){if(e.rangeCount>0){var t=e.getRangeAt(0),n=e.getRangeAt(e.rangeCount-1);return R.some(Hs(Re.fromDom(t.startContainer),t.startOffset,Re.fromDom(n.endContainer),n.endOffset))}return R.none()},ul=function(e){if(null===e.anchorNode||null===e.focusNode)return al(e);var t=Re.fromDom(e.anchorNode),n=Re.fromDom(e.focusNode);return il(t,e.anchorOffset,n,e.focusOffset)?R.some(Hs(t,e.anchorOffset,n,e.focusOffset)):al(e)},cl=function(e){return function(e){return R.from(e.getSelection())}(e).filter((function(e){return e.rangeCount>0})).bind(ul)},sl=function(e,t){return function(e){var t=e.getClientRects(),n=t.length>0?t[0]:e.getBoundingClientRect();return n.width>0||n.height>0?R.some(n).map(Gs):R.none()}(Js(e,t))},ll=function(e,t){return function(e){var t=e.getBoundingClientRect();return t.width>0||t.height>0?R.some(t).map(Gs):R.none()}(Js(e,t))},fl=function(e,t){return{element:e,offset:t}},dl=function(e,t){var n=_t(e);if(0===n.length)return fl(e,t);if(t"})),Ar()),Gf=Gr("schema",(function(){return[oo("preprocess")]})),Kf=fo("defaults",h({})),Xf=fo("overrides",h({})),Yf=kr([Uf,Wf,$f,qf,Kf,Xf]),Jf=kr([Uf,Wf,$f,Kf,Xf]),Zf=kr([Uf,Wf,$f,qf,Kf,Xf]),Qf=kr([Uf,Gf,$f,Xr("unit"),qf,Kf,Xf]),ed=function(e){return e.fold(R.some,R.none,R.some,R.some)},td=function(e){var t=function(e){return e.name};return e.fold(t,t,t,t)},nd=function(e,t){return function(n){var r=Ur("Converting part type",t,n);return e(r)}},rd=nd(jf.required,Yf),od=nd(jf.external,Jf),id=nd(jf.optional,Zf),ad=nd(jf.group,Qf),ud=h("entirety"),cd=Object.freeze({__proto__:null,required:rd,external:od,optional:id,group:ad,asNamedPart:ed,name:td,asCommon:function(e){return e.fold(v,v,v,v)},original:ud}),sd=function(e,t,n,r){return ur(t.defaults(e,n,r),n,{uid:e.partUids[t.name]},t.overrides(e,n,r))},ld=function(e,t){var n={};return U(t,(function(t){ed(t).each((function(t){var r=fd(e,t.pname);n[t.name]=function(n){var o=Ur("Part: "+t.name+" in "+e,kr(t.schema),n);return O(O({},r),{config:n,validated:o})}}))})),n},fd=function(e,t){return{uiType:Vf(),owner:e,name:t}},dd=function(e,t,n){return{uiType:Vf(),owner:e,name:t,config:n,validated:{}}},md=function(e){return J(e,(function(e){return e.fold(R.none,R.some,R.none,R.none).map((function(e){return to(e.name,e.schema.concat([Nu(ud())]))})).toArray()}))},gd=function(e){return j(e,td)},pd=function(e,t,n){return function(e,t,n){var r={},o={};return U(n,(function(e){e.fold((function(e){r[e.pname]=Lf(!0,(function(t,n,r){return e.factory.sketch(sd(t,e,n,r))}))}),(function(e){var n=t.parts[e.name];o[e.name]=h(e.factory.sketch(sd(t,e,n[ud()]),n))}),(function(e){r[e.pname]=Lf(!1,(function(t,n,r){return e.factory.sketch(sd(t,e,n,r))}))}),(function(e){r[e.pname]=Hf(!0,(function(t,n,r){var o=t[e.name];return j(o,(function(n){return e.factory.sketch(ur(e.defaults(t,n,r),n,e.overrides(t,n)))}))}))}))})),{internals:h(r),externals:h(o)}}(0,t,n)},hd=function(e,t,n){return Ff(R.some(e),t,t.components,n)},vd=function(e,t,n){var r=t.partUids[n];return e.getSystem().getByUid(r).toOptional()},bd=function(e,t,n){return vd(e,t,n).getOrDie("Could not find part: "+n)},yd=function(e,t,n){var r={},o=t.partUids,i=e.getSystem();return U(n,(function(e){r[e]=h(i.getByUid(o[e]))})),r},wd=function(e,t){var n=e.getSystem();return de(t.partUids,(function(e,t){return h(n.getByUid(e))}))},xd=function(e){return se(e.partUids)},Cd=function(e,t,n){var r={},o=t.partUids,i=e.getSystem();return U(n,(function(e){r[e]=h(i.getByUid(o[e]).getOrDie())})),r},Sd=function(e,t){var n=gd(t);return To(j(n,(function(t){return{key:t,value:e+"-"+t}})))},kd=function(e){return qr("partUids","partUids",fr((function(t){return Sd(t.uid,e)})),Ar())},Od=Object.freeze({__proto__:null,generate:ld,generateOne:dd,schemas:md,names:gd,substitutes:pd,components:hd,defaultUids:Sd,defaultUidsSchema:kd,getAllParts:wd,getAllPartNames:xd,getPart:vd,getPartOrDie:bd,getParts:yd,getPartsOrDie:Cd}),Td=function(e,t,n,r,o){var i=function(e,t){return(e.length>0?[to("parts",e)]:[]).concat([Xr("uid"),fo("dom",{}),fo("components",[]),Nu("originalSpec"),fo("debug.sketcher",{})]).concat(t)}(r,o);return Ur(e+" [SpecSchema]",Sr(i.concat(t)),n)},_d=function(e,t,n,r,o){var i=Ed(o),a=md(n),u=kd(n),c=Td(e,t,i,a,[u]),s=pd(0,c,n);return r(c,hd(e,c,s.internals()),i,s.externals())},Ed=function(e){return function(e){return ye(e,"uid")}(e)?e:O(O({},e),{uid:fa("uid")})},Ad=Sr([Xr("name"),Xr("factory"),Xr("configFields"),fo("apis",{}),fo("extraApis",{})]),Dd=Sr([Xr("name"),Xr("factory"),Xr("configFields"),Xr("partFields"),fo("apis",{}),fo("extraApis",{})]),Md=function(e){var t=Ur("Sketcher for "+e.name,Ad,e),n=de(t.apis,ya),r=de(t.extraApis,(function(e,t){return ha(e,t)}));return O(O({name:t.name,configFields:t.configFields,sketch:function(e){return function(e,t,n,r){var o=Ed(r);return n(Td(e,t,o,[],[]),o)}(t.name,t.configFields,t.factory,e)}},n),r)},Nd=function(e){var t=Ur("Sketcher for "+e.name,Dd,e),n=ld(t.name,t.partFields),r=de(t.apis,ya),o=de(t.extraApis,(function(e,t){return ha(e,t)}));return O(O({name:t.name,partFields:t.partFields,configFields:t.configFields,sketch:function(e){return _d(t.name,t.configFields,t.partFields,t.factory,e)},parts:n},r),o)},Rd=function(e){return"input"===Be(e)&&"radio"!==$t(e,"type")||"textarea"===Be(e)},zd=Object.freeze({__proto__:null,getCurrent:function(e,t,n){return t.find(e)}}),Bd=[Xr("find")],Pd=Cc({fields:Bd,name:"composing",apis:zd}),Id=["input","button","textarea","select"],Fd=function(e,t,n){(t.disabled()?Wd:$d)(e,t)},Ld=function(e,t){return!0===t.useNative&&F(Id,Be(e.element))},Hd=function(e){Ut(e.element,"disabled","disabled")},Vd=function(e){Kt(e.element,"disabled")},jd=function(e){Ut(e.element,"aria-disabled","true")},Ud=function(e){Ut(e.element,"aria-disabled","false")},Wd=function(e,t,n){t.disableClass.each((function(t){Ia(e.element,t)})),(Ld(e,t)?Hd:jd)(e),t.onDisabled(e)},$d=function(e,t,n){t.disableClass.each((function(t){La(e.element,t)})),(Ld(e,t)?Vd:Ud)(e),t.onEnabled(e)},qd=function(e,t){return Ld(e,t)?function(e){return Gt(e.element,"disabled")}(e):function(e){return"true"===$t(e.element,"aria-disabled")}(e)},Gd=Object.freeze({__proto__:null,enable:$d,disable:Wd,isDisabled:qd,onLoad:Fd,set:function(e,t,n,r){(r?Wd:$d)(e,t)}}),Kd=Object.freeze({__proto__:null,exhibit:function(e,t){return Sa({classes:t.disabled()?t.disableClass.toArray():[]})},events:function(e,t){return Bi([Pi(ci(),(function(t,n){return qd(t,e)})),hc(e,t,Fd)])}}),Xd=[bo("disabled",C),fo("useNative",!0),oo("disableClass"),_u("onDisabled"),_u("onEnabled")],Yd=Cc({fields:Xd,name:"disabling",active:Kd,apis:Gd}),Jd=function(e,t,n,r){var o=ol(e.element,"."+t.highlightClass);U(o,(function(n){L(r,(function(e){return e.element===n}))||(La(n,t.highlightClass),e.getSystem().getByDom(n).each((function(n){t.onDehighlight(e,n),Ai(n,Ei())})))}))},Zd=function(e,t,n,r){Jd(e,t,0,[r]),Qd(e,t,n,r)||(Ia(r.element,t.highlightClass),t.onHighlight(e,r),Ai(r,_i()))},Qd=function(e,t,n,r){return Ha(r.element,t.highlightClass)},em=function(e,t,n,r){var o=ol(e.element,"."+t.itemClass);return R.from(o[r]).fold((function(){return Wn.error(new Error("No element found with index "+r))}),e.getSystem().getByDom)},tm=function(e,t,n){return su(e.element,"."+t.itemClass).bind((function(t){return e.getSystem().getByDom(t).toOptional()}))},nm=function(e,t,n){var r=ol(e.element,"."+t.itemClass);return(r.length>0?R.some(r[r.length-1]):R.none()).bind((function(t){return e.getSystem().getByDom(t).toOptional()}))},rm=function(e,t,n,r){var o=ol(e.element,"."+t.itemClass),i=X(o,(function(e){return Ha(e,t.highlightClass)}));return i.bind((function(t){var n=Wu(t,r,0,o.length-1);return e.getSystem().getByDom(o[n]).toOptional()}))},om=function(e,t,n){var r=ol(e.element,"."+t.itemClass);return Ce(j(r,(function(t){return e.getSystem().getByDom(t).toOptional()})))},im=Object.freeze({__proto__:null,dehighlightAll:function(e,t,n){return Jd(e,t,0,[])},dehighlight:function(e,t,n,r){Qd(e,t,n,r)&&(La(r.element,t.highlightClass),t.onDehighlight(e,r),Ai(r,Ei()))},highlight:Zd,highlightFirst:function(e,t,n){tm(e,t).each((function(r){Zd(e,t,n,r)}))},highlightLast:function(e,t,n){nm(e,t).each((function(r){Zd(e,t,n,r)}))},highlightAt:function(e,t,n,r){em(e,t,n,r).fold((function(e){throw e}),(function(r){Zd(e,t,n,r)}))},highlightBy:function(e,t,n,r){var o=om(e,t);K(o,r).each((function(r){Zd(e,t,n,r)}))},isHighlighted:Qd,getHighlighted:function(e,t,n){return su(e.element,"."+t.highlightClass).bind((function(t){return e.getSystem().getByDom(t).toOptional()}))},getFirst:tm,getLast:nm,getPrevious:function(e,t,n){return rm(e,t,0,-1)},getNext:function(e,t,n){return rm(e,t,0,1)},getCandidates:om}),am=[Xr("highlightClass"),Xr("itemClass"),_u("onHighlight"),_u("onDehighlight")],um=Cc({fields:am,name:"highlighting",apis:im}),cm=[8],sm=[9],lm=[13],fm=[27],dm=[32],mm=[37],gm=[38],pm=[39],hm=[40],vm=function(e,t,n){var r=Q(e.slice(0,t)),o=Q(e.slice(t+1));return K(r.concat(o),n)},bm=function(e,t,n){var r=Q(e.slice(0,t));return K(r,n)},ym=function(e,t,n){var r=e.slice(0,t),o=e.slice(t+1);return K(o.concat(r),n)},wm=function(e,t,n){var r=e.slice(t+1);return K(r,n)},xm=function(e){return function(t){var n=t.raw;return F(e,n.which)}},Cm=function(e){return function(t){return Z(e,(function(e){return e(t)}))}},Sm=function(e){return!0===e.raw.shiftKey},km=function(e){return!0===e.raw.ctrlKey},Om=w(Sm),Tm=function(e,t){return{matches:e,classification:t}},_m=function(e,t,n){t.exists((function(e){return n.exists((function(t){return bt(t,e)}))}))||Di(e,Si(),{prevFocus:t,newFocus:n})},Em=function(){var e=function(e){return Nc(e.element)};return{get:e,set:function(t,n){var r=e(t);t.getSystem().triggerFocus(n,t.element);var o=e(t);_m(t,r,o)}}},Am=function(){var e=function(e){return um.getHighlighted(e).map((function(e){return e.element}))};return{get:e,set:function(t,n){var r=e(t);t.getSystem().getByDom(n).fold(g,(function(e){um.highlight(t,e)}));var o=e(t);_m(t,r,o)}}};!function(e){e.OnFocusMode="onFocus",e.OnEnterOrSpaceMode="onEnterOrSpace",e.OnApiMode="onApi"}(Zs||(Zs={}));var Dm,Mm=function(e,t,n,r,o){var i=function(e,t,n,r,o){var i,a,u,c=n(e,t,r,o);return(i=c,a=t.event,u=K(i,(function(e){return e.matches(a)})),u.map((function(e){return e.classification}))).bind((function(n){return n(e,t,r,o)}))},a={schema:function(){return e.concat([fo("focusManager",Em()),mo("focusInside","onFocus",Lr((function(e){return F(["onFocus","onEnterOrSpace","onApi"],e)?Wn.value(e):Wn.error("Invalid value for focusInside")}))),Mu("handler",a),Mu("state",t),Mu("sendFocusIn",o)])},processKey:i,toEvents:function(e,t){var a=e.focusInside!==Zs.OnFocusMode?R.none():o(e).map((function(n){return Fi(oi(),(function(r,o){n(r,e,t),o.stop()}))})),u=[Fi(Go(),(function(r,a){i(r,a,n,e,t).fold((function(){!function(n,r){var i=xm(dm.concat(lm))(r.event);e.focusInside===Zs.OnEnterOrSpaceMode&&i&&Mo(n,r)&&o(e).each((function(o){o(n,e,t),r.stop()}))}(r,a)}),(function(e){a.stop()}))})),Fi(Ko(),(function(n,o){i(n,o,r,e,t).each((function(e){o.stop()}))}))];return Bi(a.toArray().concat(u))}};return a},Nm=function(e){var t=[oo("onEscape"),oo("onEnter"),fo("selector",'[data-alloy-tabstop="true"]:not(:disabled)'),fo("firstTabstop",0),fo("useTabstopAt",S),oo("visibilitySelector")].concat([e]),n=function(e,t){var n=e.visibilitySelector.bind((function(e){return lu(t,e)})).getOr(t);return ln(n)>0},r=function(e,t,r){(function(e,t){var r=ol(e.element,t.selector),o=$(r,(function(e){return n(t,e)}));return R.from(o[t.firstTabstop])})(e,t).each((function(n){t.focusManager.set(e,n)}))},o=function(e,t,r,o,i){return i(t,r,(function(e){return function(e,t){return n(e,t)&&e.useTabstopAt(t)}(o,e)})).fold((function(){return o.cyclic?R.some(!0):R.none()}),(function(t){return o.focusManager.set(e,t),R.some(!0)}))},i=function(e,t,n,r){var i=ol(e.element,n.selector);return function(e,t){return t.focusManager.get(e).bind((function(e){return lu(e,t.selector)}))}(e,n).bind((function(t){return X(i,y(bt,t)).bind((function(t){return o(e,i,t,n,r)}))}))},a=h([Tm(Cm([Sm,xm(sm)]),(function(e,t,n){var r=n.cyclic?vm:bm;return i(e,0,n,r)})),Tm(xm(sm),(function(e,t,n){var r=n.cyclic?ym:wm;return i(e,0,n,r)})),Tm(xm(fm),(function(e,t,n){return n.onEscape.bind((function(n){return n(e,t)}))})),Tm(Cm([Om,xm(lm)]),(function(e,t,n){return n.onEnter.bind((function(n){return n(e,t)}))}))]),u=h([]);return Mm(t,wa.init,a,u,(function(){return R.some(r)}))},Rm=Nm(Gr("cyclic",C)),zm=Nm(Gr("cyclic",S)),Bm=function(e,t,n){return Rd(n)&&xm(dm)(t.event)?R.none():function(e,t,n){return Ni(e,n,ci()),R.some(!0)}(e,0,n)},Pm=function(e,t){return R.some(!0)},Im=[fo("execute",Bm),fo("useSpace",!1),fo("useEnter",!0),fo("useControlEnter",!1),fo("useDown",!1)],Fm=function(e,t,n){return n.execute(e,t,e.element)},Lm=Mm(Im,wa.init,(function(e,t,n,r){var o=n.useSpace&&!Rd(e.element)?dm:[],i=n.useEnter?lm:[],a=n.useDown?hm:[],u=o.concat(i).concat(a);return[Tm(xm(u),Fm)].concat(n.useControlEnter?[Tm(Cm([km,xm(lm)]),Fm)]:[])}),(function(e,t,n,r){return n.useSpace&&!Rd(e.element)?[Tm(xm(dm),Pm)]:[]}),(function(){return R.none()})),Hm=function(){var e=Qc();return xa({readState:function(){return e.get().map((function(e){return{numRows:String(e.numRows),numColumns:String(e.numColumns)}})).getOr({numRows:"?",numColumns:"?"})},setGridSize:function(t,n){e.set({numRows:t,numColumns:n})},getNumRows:function(){return e.get().map((function(e){return e.numRows}))},getNumColumns:function(){return e.get().map((function(e){return e.numColumns}))}})},Vm=Object.freeze({__proto__:null,flatgrid:Hm,init:function(e){return e.state(e)}}),jm=function(e){return function(t,n,r,o){var i=e(t.element);return qm(i,t,n,r,o)}},Um=function(e,t){var n=xs(e,t);return jm(n)},Wm=function(e,t){var n=xs(t,e);return jm(n)},$m=function(e){return function(t,n,r,o){return qm(e,t,n,r,o)}},qm=function(e,t,n,r,o){return r.focusManager.get(t).bind((function(n){return e(t.element,n,r,o)})).map((function(e){return r.focusManager.set(t,e),!0}))},Gm=$m,Km=$m,Xm=$m,Ym=function(e){return!function(e){return e.offsetWidth<=0&&e.offsetHeight<=0}(e.dom)},Jm=function(e,t,n){var r=ol(e,n);return function(e,t){return X(e,t).map((function(t){return{index:t,candidates:e}}))}($(r,Ym),(function(e){return bt(e,t)}))},Zm=function(e,t){return X(e,(function(e){return bt(t,e)}))},Qm=function(e,t,n,r){return r(Math.floor(t/n),t%n).bind((function(t){var r=t.row*n+t.column;return r>=0&&r1?R.some(e.slice(1)):R.none()}))},lookupMenu:u,lookupItem:c,otherMenus:function(e){var t=o.get();return ee(se(t),e)},getPrimary:function(){return r.get().bind(a)},getMenus:function(){return t.get()},clear:function(){e.set({}),t.set({}),n.set({}),r.clear()},isClear:function(){return r.get().isNone()},getTriggeringPath:function(e,t){var o=$(c(e).toArray(),(function(e){return a(e).isSome()}));return be(n.get(),e).bind((function(e){var n=Q(o.concat(e));return function(e){for(var t=[],n=0;n0||t.timeout<0),a=function(){o(),Jp.hide(c)},u=eu(Mh.sketch({text:t.text,level:F(["success","error","warning","warn","info"],t.type)?t.type:void 0,progress:!0===t.progressBar,icon:R.from(t.icon),closeButton:!i,onAction:a,iconProvider:r.providers.icons,translationProvider:r.providers.translate})),c=eu(Jp.sketch(O({dom:{tag:"div",classes:["tox-notifications-container"]},lazySink:r.getSink,fireDismissalEventInstead:{}},r.header.isPositionedAtTop()?{}:{fireRepositionEventInstead:{}})));n.add(c),t.timeout>0&&vh.setTimeout((function(){a()}),t.timeout);var s=function(){var t=Ln(Re.fromDom(e.getContentAreaContainer())),n=Vn(),r=$u(n.x,t.x,t.right),o=$u(n.y,t.y,t.bottom),i=Math.max(t.right,n.right),a=Math.max(t.bottom,n.bottom);return R.some(Fn(r,o,i-r,a-o))};return{close:a,moveTo:function(e,t){Jp.showAt(c,tu(u),{anchor:{type:"makeshift",x:e,y:t}})},moveRel:function(e,t){var n=tu(u),o={maxHeightFunction:gs()};if("banner"!==t&&l(e)){var i=function(e){switch(e){case"bc-bc":return lh;case"tc-tc":return sh;case"tc-bc":return oc;default:return ic}}(t),a={type:"node",root:Ht(),node:R.some(Re.fromDom(e)),overrides:o,layouts:{onRtl:function(){return[i]},onLtr:function(){return[i]}}};Jp.showWithinBounds(c,n,{anchor:a},s)}else{var f=O(O({},r.anchors.banner()),{overrides:o});Jp.showWithinBounds(c,n,{anchor:f},s)}},text:function(e){Mh.updateText(u,e)},settings:t,getEl:function(){return u.element.dom},progressBar:{value:function(e){Mh.updateProgress(u,e)}}}},close:function(e){e.close()},reposition:function(e){e.length>0&&U(e,(function(t,n){0===n?t.moveRel(null,"banner"):t.moveRel(e[n-1].getEl(),"bc-tc")}))},getArgs:function(e){return e.settings}}}var Rh,zh=function(e,t){var n=null,r=function(){a(n)||(clearTimeout(n),n=null)};return{cancel:r,throttle:function(){for(var o=[],i=0;i',e.getDoc());return Tn(n,Re.fromDom(t.extractContents())),t.insertNode(n.dom),Ot(n).each((function(e){return e.dom.normalize()})),function(e){return rl(e,nl)}(n).map((function(t){e.selection.setCursorLocation(t.dom,function(e){return"img"===Be(e)?1:el(e).fold((function(){return _t(e).length}),(function(e){return e.length}))}(t))})),n}))},Fh=function(e){return lu(e,"[data-mce-autocompleter]")},Lh=function(e){return e.toString().replace(/\u00A0/g," ").replace(/\uFEFF/g,"")},Hh=function(e){return""!==e&&-1!=="  \f\n\r\t\v".indexOf(e)},Vh=function(e,t){return e.substring(t.length)},jh=function(e,t,n,r){if(void 0===r&&(r=0),!(o=t).collapsed||3!==o.startContainer.nodeType)return R.none();var o,i=e.getParent(t.startContainer,e.isBlock)||e.getRoot();return Ph(e,t.startContainer,t.startOffset,(function(e,t,r){return function(e,t,n){var r;for(r=t-1;r>=0;r--){var o=e.charAt(r);if(Hh(o))return R.none();if(o===n)break}return R.some(r)}(r,t,n).getOr(t)}),i).bind((function(e){var o=t.cloneRange();if(o.setStart(e.container,e.offset),o.setEnd(t.endContainer,t.endOffset),o.collapsed)return R.none();var i=Lh(o);return 0!==i.lastIndexOf(n)||Vh(i,n).length0?Gh(t[t.length-1]):qh(e,t.length)},Kh=function(e,t){var n=e.childNodes;return n.length>0&&t0&&function(e){return 1===e.nodeType}(e)&&n.length===t?Gh(n[n.length-1]):qh(e,t)},Xh=function(e){return function(t){var n=Kh(t.startContainer,t.startOffset);return!function(e,t){return Ph(e,t.container,t.offset,(function(e,t){return 0===t?-1:t}),e.getRoot()).filter((function(e){var t=e.container.data.charAt(e.offset-1);return!Hh(t)})).isSome()}(e,n)}},Yh=function(e,t){var n=t(),r=e.selection.getRng();return function(e,t,n){return ce(n.triggerChars,(function(n){return Uh(e,t,n)}))}(e.dom,r,n).bind((function(n){return Jh(e,t,n)}))},Jh=function(e,t,n,r){void 0===r&&(r={});var o=t(),i=e.selection.getRng().startContainer.nodeValue,a=$(o.lookupByChar(n.triggerChar),(function(t){return n.text.length>=t.minChars&&t.matches.getOrThunk((function(){return Xh(e.dom)}))(n.range,i,n.text)}));if(0===a.length)return R.none();var u=$h.all(j(a,(function(e){return e.fetch(n.text,e.maxResults,r).then((function(t){return{matchText:n.text,items:t,columns:e.columns,onAction:e.onAction,highlightOn:e.highlightOn}}))})));return R.some({lookupData:u,context:n})},Zh=kr([Zr("type"),uo("text")]),Qh=kr([fo("type","autocompleteitem"),fo("active",!1),fo("disabled",!1),fo("meta",{}),Zr("value"),uo("text"),uo("icon")]),ev=kr([Zr("type"),Zr("ch"),go("minChars",1),fo("columns",1),go("maxResults",10),co("matches"),eo("fetch"),eo("onAction"),yo("highlightOn",[],Nr)]),tv=[vo("disabled",!1),uo("tooltip"),uo("icon"),uo("text"),bo("onSetup",(function(){return g}))],nv=kr([Zr("type"),eo("onAction")].concat(tv)),rv=function(e){return Vr("toolbarbutton",nv,e)},ov=[vo("active",!1)].concat(tv),iv=kr(ov.concat([Zr("type"),eo("onAction")])),av=function(e){return Vr("ToggleButton",iv,e)},uv=[bo("predicate",C),ho("scope","node",["node","editor"]),ho("position","selection",["node","selection","line"])],cv=tv.concat([fo("type","contextformbutton"),fo("primary",!1),eo("onAction"),Gr("original",v)]),sv=ov.concat([fo("type","contextformbutton"),fo("primary",!1),eo("onAction"),Gr("original",v)]),lv=tv.concat([fo("type","contextformbutton")]),fv=ov.concat([fo("type","contextformtogglebutton")]),dv=$r("type",{contextformbutton:cv,contextformtogglebutton:sv}),mv=kr([fo("type","contextform"),bo("initValue",h("")),uo("label"),ro("commands",dv),io("launch",$r("type",{contextformbutton:lv,contextformtogglebutton:fv}))].concat(uv)),gv=kr([fo("type","contexttoolbar"),Zr("items")].concat(uv)),pv=function(e){var t=e.ui.registry.getAll().popups,n=de(t,(function(e){return(t=e,Vr("Autocompleter",ev,t)).fold((function(e){throw new Error(Wr(e))}),v);var t})),r=function(e){var t={};return U(e,(function(e){t[e]={}})),se(t)}(pe(n,(function(e){return e.ch}))),o=ve(n);return{dataset:n,triggerChars:r,lookupByChar:function(e){return $(o,(function(t){return t.ch===e}))}}};!function(e){e[e.CLOSE_ON_EXECUTE=0]="CLOSE_ON_EXECUTE",e[e.BUBBLE_TO_SANDBOX=1]="BUBBLE_TO_SANDBOX"}(Rh||(Rh={}));var hv,vv=Rh,bv="tox-menu-nav__js",yv="tox-collection__item",wv="tox-swatch",xv={normal:bv,color:wv},Cv="tox-collection__item--enabled",Sv="tox-collection__item-icon",kv="tox-collection__item-label",Ov="tox-collection__item-caret",Tv="tox-collection__item--active",_v="tox-collection__item-container",Ev="tox-collection__item-container--row",Av=function(e){return be(xv,e).getOr(bv)},Dv=function(e){return"color"===e?"tox-swatches":"tox-menu"},Mv=function(e){return{backgroundMenu:"tox-background-menu",selectedMenu:"tox-selected-menu",selectedItem:"tox-collection__item--active",hasIcons:"tox-menu--has-icons",menu:Dv(e),tieredMenu:"tox-tiered-menu"}},Nv=function(e){var t=Mv(e);return{backgroundMenu:t.backgroundMenu,selectedMenu:t.selectedMenu,menu:t.menu,selectedItem:t.selectedItem,item:Av(e)}},Rv=function(e,t,n){var r=Mv(n);return{tag:"div",classes:Y([[r.menu,"tox-menu-"+t+"-column"],e?[r.hasIcons]:[]])}},zv=[Wp.parts.items({})],Bv=function(e,t,n){var r=Mv(n);return{dom:{tag:"div",classes:Y([[r.tieredMenu]])},markers:Nv(n)}},Pv=function(e,t){return function(n){var r=V(n,t);return j(r,(function(t){return{dom:e,components:t}}))}},Iv=function(e,t){var n=[],r=[];return U(e,(function(e,o){t(e,o)?(r.length>0&&n.push(r),r=[],ye(e.dom,"innerHtml")&&r.push(e)):r.push(e)})),r.length>0&&n.push(r),j(n,(function(e){return{dom:{tag:"div",classes:["tox-collection__group"]},components:e}}))},Fv=function(e,t,n){return{dom:{tag:"div",classes:["tox-menu","tox-collection"].concat(1===e?["tox-collection--list"]:["tox-collection--grid"])},components:[Wp.parts.items({preprocess:function(n){return"auto"!==e&&e>1?Pv({tag:"div",classes:["tox-collection__group"]},e)(n):Iv(n,(function(e,n){return"separator"===t[n].type}))}})]}},Lv=function(e){return L(e,(function(e){return"icon"in e&&void 0!==e.icon}))},Hv=function(e){return console.error(Wr(e)),console.log(e),R.none()},Vv=function(e,t,n,r,o){var i,a=(i=n,{dom:{tag:"div",classes:["tox-collection","tox-collection--horizontal"]},components:[Wp.parts.items({preprocess:function(e){return Iv(e,(function(e,t){return"separator"===i[t].type}))}})]});return{value:e,dom:a.dom,components:a.components,items:n}},jv=function(e,t,n,r,o){if("color"===o){var i=function(e){return{dom:{tag:"div",classes:["tox-menu","tox-swatches-menu"]},components:[{dom:{tag:"div",classes:["tox-swatches"]},components:[Wp.parts.items({preprocess:"auto"!==e?Pv({tag:"div",classes:["tox-swatches__row"]},e):v})]}]}}(r);return{value:e,dom:i.dom,components:i.components,items:n}}if("normal"===o&&"auto"===r)return{value:e,dom:(i=Fv(r,n)).dom,components:i.components,items:n};if("normal"===o&&1===r)return{value:e,dom:(i=Fv(1,n)).dom,components:i.components,items:n};if("normal"===o)return{value:e,dom:(i=Fv(r,n)).dom,components:i.components,items:n};if("listpreview"===o&&"auto"!==r){i=function(e){return{dom:{tag:"div",classes:["tox-menu","tox-collection","tox-collection--toolbar","tox-collection--toolbar-lg"]},components:[Wp.parts.items({preprocess:Pv({tag:"div",classes:["tox-collection__group"]},e)})]}}(r);return{value:e,dom:i.dom,components:i.components,items:n}}return{value:e,dom:Rv(t,r,o),components:zv,items:n}},Uv=[Zr("type"),Zr("src"),uo("alt"),yo("classes",[],Nr)],Wv=kr(Uv),$v=[Zr("type"),Zr("text"),uo("name"),yo("classes",["tox-collection__item-label"],Nr)],qv=kr($v),Gv=xr((function(){return Fr("type",{cardimage:Wv,cardtext:qv,cardcontainer:Kv})})),Kv=kr([Zr("type"),po("direction","horizontal"),po("align","left"),po("valign","middle"),ro("items",Gv)]),Xv=[vo("disabled",!1),uo("text"),uo("shortcut"),qr("value","value",sr((function(){return oa("menuitem-value")})),Ar()),fo("meta",{})],Yv=kr([Zr("type"),uo("label"),ro("items",Gv),bo("onSetup",(function(){return g})),bo("onAction",g)].concat(Xv)),Jv=kr([Zr("type"),vo("active",!1),uo("icon")].concat(Xv)),Zv=[Zr("type"),Zr("fancytype"),bo("onAction",g)],Qv=[fo("initData",{})].concat(Zv),eb=[wo("initData",{},[vo("allowCustomColors",!0),so("colors",Ar())])].concat(Zv),tb=$r("fancytype",{inserttable:Qv,colorswatch:eb}),nb=kr([Zr("type"),bo("onSetup",(function(){return g})),bo("onAction",g),uo("icon")].concat(Xv)),rb=kr([Zr("type"),eo("getSubmenuItems"),bo("onSetup",(function(){return g})),uo("icon")].concat(Xv)),ob=kr([Zr("type"),uo("icon"),vo("active",!1),bo("onSetup",(function(){return g})),eo("onAction")].concat(Xv)),ib=function(e,t,n){var r=ol(e.element,"."+n);if(r.length>0){var o=X(r,(function(e){var n=e.dom.getBoundingClientRect().top,o=r[0].dom.getBoundingClientRect().top;return Math.abs(n-o)>t})).getOr(r.length);return R.some({numColumns:o,numRows:Math.ceil(r.length/o)})}return R.none()},ab=function(e,t){return wc([sp(e,t)])},ub=function(e){return ab(oa("unnamed-events"),e)},cb=oa("tooltip.exclusive"),sb=oa("tooltip.show"),lb=oa("tooltip.hide"),fb=function(e,t,n){e.getSystem().broadcastOn([cb],{})},db=Object.freeze({__proto__:null,hideAllExclusive:fb,setComponents:function(e,t,n,r){n.getTooltip().each((function(e){e.getSystem().isConnected()&&cp.set(e,r)}))}}),mb=Object.freeze({__proto__:null,events:function(e,t){var n=function(n){t.getTooltip().each((function(r){$l(r),e.onHide(n,r),t.clearTooltip()})),t.clearTimer()};return Bi(Y([[Fi(sb,(function(n){t.resetTimer((function(){!function(n){if(!t.isShowing()){fb(n);var r=e.lazySink(n).getOrDie(),o=n.getSystem().build({dom:e.tooltipDom,components:e.tooltipComponents,events:Bi("normal"===e.mode?[Fi(Wo(),(function(e){Ai(n,sb)})),Fi(jo(),(function(e){Ai(n,lb)}))]:[]),behaviours:wc([cp.config({})])});t.setTooltip(o),jl(r,o),e.onShow(n,o),Il.position(r,o,{anchor:e.anchor(n)})}}(n)}),e.delay)})),Fi(lb,(function(r){t.resetTimer((function(){n(r)}),e.delay)})),Fi(ui(),(function(e,t){var r=t;r.universal||F(r.channels,cb)&&n(e)})),Gi((function(e){n(e)}))],"normal"===e.mode?[Fi($o(),(function(e){Ai(e,sb)})),Fi(ii(),(function(e){Ai(e,lb)})),Fi(Wo(),(function(e){Ai(e,sb)})),Fi(jo(),(function(e){Ai(e,lb)}))]:[Fi(_i(),(function(e,t){Ai(e,sb)})),Fi(Ei(),(function(e){Ai(e,lb)}))]]))}}),gb=[Xr("lazySink"),Xr("tooltipDom"),fo("exclusive",!0),fo("tooltipComponents",[]),fo("delay",300),ho("mode","normal",["normal","follow-highlight"]),fo("anchor",(function(e){return{type:"hotspot",hotspot:e,layouts:{onLtr:h([ic,oc,ec,nc,tc,rc]),onRtl:h([ic,oc,ec,nc,tc,rc])}}})),_u("onHide"),_u("onShow")],pb=Cc({fields:gb,name:"tooltipping",active:mb,state:Object.freeze({__proto__:null,init:function(){var e=Qc(),t=Qc(),n=function(){e.on(clearTimeout)},r=h("not-implemented");return xa({getTooltip:t.get,isShowing:t.isSet,setTooltip:t.set,clearTooltip:t.clear,clearTimer:n,resetTimer:function(t,r){n(),e.set(setTimeout(t,r))},readState:r})}}),apis:db}),hb=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),vb=tinymce.util.Tools.resolve("tinymce.EditorManager"),bb=function(e){return e.getParam("height",Math.max(e.getElement().offsetHeight,200))},yb=function(e){return e.getParam("width",hb.DOM.getStyle(e.getElement(),"width"))},wb=function(e){return R.from(e.getParam("min_width")).filter(d)},xb=function(e){return R.from(e.getParam("min_height")).filter(d)},Cb=function(e){return R.from(e.getParam("max_width")).filter(d)},Sb=function(e){return R.from(e.getParam("max_height")).filter(d)},kb=function(e){return!1!==e.getParam("menubar",!0,"boolean")},Ob=function(e){var t=e.getParam("toolbar",!0),n=!0===t,o=r(t),a=i(t)&&t.length>0;return!_b(e)&&(a||o||n)},Tb=function(e){var t=H(9,(function(t){return e.getParam("toolbar"+(t+1),!1,"string")})),n=$(t,(function(e){return"string"==typeof e}));return n.length>0?R.some(n):R.none()},_b=function(e){return Tb(e).fold((function(){return e.getParam("toolbar",[],"string[]").length>0}),S)};!function(e){e.default="wrap",e.floating="floating",e.sliding="sliding",e.scrolling="scrolling"}(hv||(hv={}));var Eb,Ab=function(e){return e.getParam("toolbar_mode","","string")};!function(e){e.auto="auto",e.top="top",e.bottom="bottom"}(Eb||(Eb={}));var Db,Mb,Nb=function(e){return e.getParam("toolbar_location",Eb.auto,"string")},Rb=function(e){return Nb(e)===Eb.bottom},zb=function(e){if(!e.inline)return R.none();var t=function(e){return e.getParam("fixed_toolbar_container","","string")}(e);if(t.length>0)return su(Ht(),t);var n=function(e){return e.getParam("fixed_toolbar_container_target")}(e);return l(n)?R.some(Re.fromDom(n)):R.none()},Bb=function(e){return e.inline&&zb(e).isSome()},Pb=function(e){return zb(e).getOrThunk((function(){return Bt(zt(Re.fromDom(e.getElement())))}))},Ib=function(e){return e.inline&&!kb(e)&&!Ob(e)&&!_b(e)},Fb=function(e){return(e.getParam("toolbar_sticky",!1,"boolean")||e.inline)&&!Bb(e)&&!Ib(e)},Lb=function(e){var t=e.getParam("menu");return t?de(t,(function(e){return O(O({},e),{items:e.items})})):{}},Hb=function(e){return e.getParam("menubar")},Vb=function(e){return e.getParam("anchor_top","#top")},jb=function(e){return e.getParam("anchor_bottom","#bottom")},Ub="silver.readonly",Wb=kr([(Db="readonly",Yr(Db,Rr))]),$b=function(e,t){var n=e.outerContainer.element;t&&(e.mothership.broadcastOn([cf()],{target:n}),e.uiMothership.broadcastOn([cf()],{target:n})),e.mothership.broadcastOn([Ub],{readonly:t}),e.uiMothership.broadcastOn([Ub],{readonly:t})},qb=function(e,t){e.on("init",(function(){e.mode.isReadOnly()&&$b(t,!0)})),e.on("SwitchMode",(function(){return $b(t,e.mode.isReadOnly())})),function(e){return e.getParam("readonly",!1,"boolean")}(e)&&e.setMode("readonly")},Gb=function(){var e;return Tc.config({channels:(e={},e[Ub]={schema:Wb,onReceive:function(e,t){Yd.set(e,t.readonly)}},e)})},Kb=function(e){return Yd.config({disabled:e,disableClass:"tox-collection__item--state-disabled"})},Xb=function(e){return Yd.config({disabled:e})},Yb=function(e){return Yd.config({disabled:e,disableClass:"tox-tbtn--disabled"})},Jb=function(e){return Yd.config({disabled:e,disableClass:"tox-tbtn--disabled",useNative:!1})},Zb=function(e,t){var n=e.getApi(t);return function(e){e(n)}},Qb=function(e,t){return qi((function(n){Zb(e,n)((function(n){var r=e.onSetup(n);f(r)&&t.set(r)}))}))},ey=function(e,t){return Gi((function(n){return Zb(e,n)(t.get())}))},ty=function(e,t){return Xi((function(n,r){Zb(e,n)(e.onAction),e.triggersSubmenu||t!==vv.CLOSE_ON_EXECUTE||(Ai(n,di()),r.stop())}))},ny=((Mb={})[ci()]=["disabling","alloy.base.behaviour","toggling","item-events"],Mb),ry=Ce,oy=function(e,t,n,r){var o=xo(g);return{type:"item",dom:t.dom,components:ry(t.optComponents),data:e.data,eventOrder:ny,hasSubmenu:e.triggersSubmenu,itemBehaviours:wc([sp("item-events",[ty(e,n),Qb(e,o),ey(e,o)]),Kb((function(){return e.disabled||r.isDisabled()})),Gb(),cp.config({})].concat(e.itemBehaviours))}},iy=function(e){return{value:e.value,meta:O({text:e.text.getOr("")},e.meta)}},ay=tinymce.util.Tools.resolve("tinymce.Env"),uy=function(e){var t=ay.mac?{alt:"⌥",ctrl:"⌃",shift:"⇧",meta:"⌘",access:"⌃⌥"}:{meta:"Ctrl",access:"Shift+Alt"},n=e.split("+"),r=j(n,(function(e){var n=e.toLowerCase().trim();return ye(t,n)?t[n]:e}));return ay.mac?r.join(""):r.join("+")},cy=function(e,t,n){return void 0===n&&(n=[Sv]),Ah(e,{tag:"div",classes:n},t)},sy=function(e){return{dom:{tag:"div",classes:[kv]},components:[Ja(wh.translate(e))]}},ly=function(e,t){return{dom:{tag:"div",classes:t,innerHtml:e}}},fy=function(e,t){return{dom:{tag:"div",classes:[kv]},components:[{dom:{tag:e.tag,styles:e.styles},components:[Ja(wh.translate(t))]}]}},dy=function(e){return{dom:{tag:"div",classes:["tox-collection__item-accessory"],innerHtml:uy(e)}}},my=function(e){return cy("checkmark",e,["tox-collection__item-checkmark"])},gy=function(e,t,n){var r,o,i,a=e.ariaLabel,u=e.value,c=e.iconContent.map((function(e){return function(e,t,n){var r=t();return Oh(e,r).or(n).getOrThunk(Sh(r))}(e,t.icons,n)}));return{dom:(r=c.getOr(""),o=a.map((function(e){return{title:t.translate(e)}})).getOr({}),i={tag:"div",attributes:o,classes:["tox-swatch"]},O(O({},i),"custom"===u?{tag:"button",classes:_(_([],i.classes,!0),["tox-swatches__picker-btn"],!1),innerHtml:r}:"remove"===u?{classes:_(_([],i.classes,!0),["tox-swatch--remove"],!1),innerHtml:r}:{attributes:O(O({},i.attributes),{"data-mce-color":u}),styles:{"background-color":u}})),optComponents:[]}},py=function(e){var t=e.map((function(e){return{attributes:{title:wh.translate(e)}}})).getOr({});return O({tag:"div",classes:[bv,yv]},t)},hy=function(e,t,n,r){return void 0===r&&(r=R.none()),"color"===e.presets?gy(e,t,r):function(e,t,n,r){var o={tag:"div",classes:[Sv]},i=n?e.iconContent.map((function(e){return Ah(e,o,t.icons,r)})).orThunk((function(){return R.some({dom:o})})):R.none(),a=e.checkMark,u=R.from(e.meta).fold((function(){return sy}),(function(e){return ye(e,"style")?y(fy,e.style):sy})),c=e.htmlContent.fold((function(){return e.textContent.map(u)}),(function(e){return R.some(ly(e,[kv]))}));return{dom:py(e.ariaLabel),optComponents:[i,c,e.shortcutContent.map(dy),a,e.caret]}}(e,t,n,r)},vy=function(e,t){return be(e,"tooltipWorker").map((function(e){return[pb.config({lazySink:t.getSink,tooltipDom:{tag:"div",classes:["tox-tooltip-worker-container"]},tooltipComponents:[],anchor:function(e){return{type:"submenu",item:e,overrides:{maxHeightFunction:gs}}},mode:"follow-highlight",onShow:function(t,n){e((function(e){pb.setComponents(t,[Za({element:Re.fromDom(e)})])}))}})]})).getOr([])},by=function(e,t){var n=function(e){return hb.DOM.encode(e)}(wh.translate(e));if(t.length>0){var r=new RegExp(function(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}(t),"gi");return n.replace(r,(function(e){return''+e+""}))}return n},yy=function(e,t){return j(e,(function(e){switch(e.type){case"cardcontainer":return function(e,t){var n="vertical"===e.direction?"tox-collection__item-container--column":Ev,r="left"===e.align?"tox-collection__item-container--align-left":"tox-collection__item-container--align-right";return{dom:{tag:"div",classes:[_v,n,r,function(){switch(e.valign){case"top":return"tox-collection__item-container--valign-top";case"middle":return"tox-collection__item-container--valign-middle";case"bottom":return"tox-collection__item-container--valign-bottom"}}()]},components:t}}(e,yy(e.items,t));case"cardimage":return function(e,t,n){return{dom:{tag:"img",classes:t,attributes:{src:e,alt:n.getOr("")}}}}(e.src,e.classes,e.alt);case"cardtext":var n=e.name.exists((function(e){return F(t.cardText.highlightOn,e)})),r=n?R.from(t.cardText.matchText).getOr(""):"";return ly(by(e.text,r),e.classes)}}))},wy=ld(Ip(),Fp()),xy=function(e){return{value:e}},Cy=/^#?([a-f\d])([a-f\d])([a-f\d])$/i,Sy=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,ky=function(e){return Cy.test(e)||Sy.test(e)},Oy=function(e){return function(e,t){return _e(e,t)?function(e,t){return e.substring(t)}(e,t.length):e}(e,"#").toUpperCase()},Ty=function(e){var t=function(e){var t=e.value.replace(Cy,(function(e,t,n,r){return t+t+n+n+r+r}));return{value:t}}(e),n=Sy.exec(t.value);return null===n?["FFFFFF","FF","FF","FF"]:n},_y=function(e){var t=e.toString(16);return(1===t.length?"0"+t:t).toUpperCase()},Ey=function(e){var t=_y(e.red)+_y(e.green)+_y(e.blue);return xy(t)},Ay=Math.min,Dy=Math.max,My=Math.round,Ny=/^rgb\((\d+),\s*(\d+),\s*(\d+)\)/,Ry=/^rgba\((\d+),\s*(\d+),\s*(\d+),\s*(\d?(?:\.\d+)?)\)/,zy=function(e,t,n,r){return{red:e,green:t,blue:n,alpha:r}},By=function(e){var t=parseInt(e,10);return t.toString()===e&&t>=0&&t<=255},Py=function(e){var t,n,r,o=(e.hue||0)%360,i=e.saturation/100,a=e.value/100;if(i=Dy(0,Ay(i,1)),a=Dy(0,Ay(a,1)),0===i)return t=n=r=My(255*a),zy(t,n,r,1);var u=o/60,c=a*i,s=c*(1-Math.abs(u%2-1)),l=a-c;switch(Math.floor(u)){case 0:t=c,n=s,r=0;break;case 1:t=s,n=c,r=0;break;case 2:t=0,n=c,r=s;break;case 3:t=0,n=s,r=c;break;case 4:t=s,n=0,r=c;break;case 5:t=c,n=0,r=s;break;default:t=n=r=0}return t=My(255*(t+l)),n=My(255*(n+l)),r=My(255*(r+l)),zy(t,n,r,1)},Iy=function(e){var t=Ty(e),n=parseInt(t[1],16),r=parseInt(t[2],16),o=parseInt(t[3],16);return zy(n,r,o,1)},Fy=function(e,t,n,r){var o=parseInt(e,10),i=parseInt(t,10),a=parseInt(n,10),u=parseFloat(r);return zy(o,i,a,u)},Ly=function(e){if("transparent"===e)return R.some(zy(0,0,0,0));var t=Ny.exec(e);if(null!==t)return R.some(Fy(t[1],t[2],t[3],"1"));var n=Ry.exec(e);return null!==n?R.some(Fy(n[1],n[2],n[3],n[4])):R.none()},Hy=function(e){return"rgba("+e.red+","+e.green+","+e.blue+","+e.alpha+")"},Vy=zy(255,0,0,1),jy=function(e,t){return e.fire("ResizeContent",t)},Uy=function(e,t,n){return{hue:e,saturation:t,value:n}},Wy=function(e){var t,n=0,r=0,o=e.red/255,i=e.green/255,a=e.blue/255,u=Math.min(o,Math.min(i,a)),c=Math.max(o,Math.max(i,a));return u===c?Uy(0,0,100*(r=u)):(n=60*((n=o===u?3:a===u?1:5)-(o===u?i-a:a===u?o-i:a-o)/(c-u)),t=(c-u)/c,r=c,Uy(Math.round(n),Math.round(100*t),Math.round(100*r)))},$y=function(e){return Ey(Py(e))},qy=function(e){return(t=e,ky(t)?R.some({value:Oy(t)}):R.none()).orThunk((function(){return Ly(e).map(Ey)})).getOrThunk((function(){var t=document.createElement("canvas");t.height=1,t.width=1;var n=t.getContext("2d");n.clearRect(0,0,t.width,t.height),n.fillStyle="#FFFFFF",n.fillStyle=e,n.fillRect(0,0,1,1);var r=n.getImageData(0,0,1,1).data,o=r[0],i=r[1],a=r[2],u=r[3];return Ey(zy(o,i,a,u))}));var t},Gy=tinymce.util.Tools.resolve("tinymce.util.LocalStorage"),Ky="tinymce-custom-colors";var Xy,Yy="choiceitem",Jy=[{type:Yy,text:"Light Green",value:"#BFEDD2"},{type:Yy,text:"Light Yellow",value:"#FBEEB8"},{type:Yy,text:"Light Red",value:"#F8CAC6"},{type:Yy,text:"Light Purple",value:"#ECCAFA"},{type:Yy,text:"Light Blue",value:"#C2E0F4"},{type:Yy,text:"Green",value:"#2DC26B"},{type:Yy,text:"Yellow",value:"#F1C40F"},{type:Yy,text:"Red",value:"#E03E2D"},{type:Yy,text:"Purple",value:"#B96AD9"},{type:Yy,text:"Blue",value:"#3598DB"},{type:Yy,text:"Dark Turquoise",value:"#169179"},{type:Yy,text:"Orange",value:"#E67E23"},{type:Yy,text:"Dark Red",value:"#BA372A"},{type:Yy,text:"Dark Purple",value:"#843FA1"},{type:Yy,text:"Dark Blue",value:"#236FA1"},{type:Yy,text:"Light Gray",value:"#ECF0F1"},{type:Yy,text:"Medium Gray",value:"#CED4D9"},{type:Yy,text:"Gray",value:"#95A5A6"},{type:Yy,text:"Dark Gray",value:"#7E8C8D"},{type:Yy,text:"Navy Blue",value:"#34495E"},{type:Yy,text:"Black",value:"#000000"},{type:Yy,text:"White",value:"#ffffff"}],Zy=function(e){void 0===e&&(e=10);var t,n=Gy.getItem(Ky),o=r(n)?JSON.parse(n):[],i=e-(t=o).length<0?t.slice(0,e):t,a=function(e){i.splice(e,1)};return{add:function(t){(function(e,t){var n=I(e,t);return-1===n?R.none():R.some(n)})(i,t).each(a),i.unshift(t),i.length>e&&i.pop(),Gy.setItem(Ky,JSON.stringify(i))},state:function(){return i.slice(0)}}}(10),Qy=function(e){return!1!==e.getParam("custom_colors")},ew=function(e){var t=function(e){return e.getParam("color_map")}(e);return void 0!==t?function(e){for(var t=[],n=0;n0?s(n,m,i,g):m.text.length-n.matchLength>=10?u():a()}}))}))}))},f={onKeypress:zh((function(e){27!==e.which&&l()}),50),cancelIfNecessary:u,isMenuOpen:function(){return Jp.isOpen(o)},isActive:i,isProcessingAction:r.get,getView:function(){return Jp.getContent(o)}};!1===e.hasPlugin("rtc")&&Wh(f,e)},zw=function(e,t,n){return lu(e,t,n).isSome()},Bw=function(e,t){var n=null;return{cancel:function(){null!==n&&(clearTimeout(n),n=null)},schedule:function(){for(var r=[],o=0;o5||r>5})(e,n)&&t.clear()}))})),R.none()}},{key:Fo(),value:function(o){r.cancel();return t.get().filter((function(e){return bt(e.target,o.target)})).map((function(t){return n.get()?(o.prevent(),!1):e.triggerEvent(li(),o)}))}}]);return{fireIfReady:function(e,t){return be(o,t).bind((function(t){return t(e)}))}}},Fw=function(){return pt().browser.isFirefox()},Lw=function(e,t){var n=O({stopBackspace:!0},t),r=Iw(n),o=j(["touchstart","touchmove","touchend","touchcancel","gesturestart","mousedown","mouseup","mouseover","mousemove","mouseout","click"].concat(["selectstart","input","contextmenu","change","transitionend","transitioncancel","drag","dragstart","dragend","dragenter","dragleave","dragover","drop","keyup"]),(function(t){return ts(e,t,(function(e){r.fireIfReady(e,t).each((function(t){t&&e.kill()})),n.triggerEvent(t,e)&&e.kill()}))})),i=Qc(),a=ts(e,"paste",(function(e){r.fireIfReady(e,"paste").each((function(t){t&&e.kill()})),n.triggerEvent("paste",e)&&e.kill(),i.set(setTimeout((function(){n.triggerEvent(ai(),e)}),0))})),u=ts(e,"keydown",(function(e){n.triggerEvent("keydown",e)?e.kill():n.stopBackspace&&function(e){return e.raw.which===cm[0]&&!F(["input","textarea"],Be(e.target))&&!zw(e.target,'[contenteditable="true"]')}(e)&&e.prevent()})),c=function(e,t){return Fw()?ns(e,"focus",t):ts(e,"focusin",t)}(e,(function(e){n.triggerEvent("focusin",e)&&e.kill()})),s=Qc(),l=function(e,t){return Fw()?ns(e,"blur",t):ts(e,"focusout",t)}(e,(function(e){n.triggerEvent("focusout",e)&&e.kill(),s.set(setTimeout((function(){n.triggerEvent(ii(),e)}),0))}));return{unbind:function(){U(o,(function(e){e.unbind()})),u.unbind(),c.unbind(),l.unbind(),a.unbind(),i.on(clearTimeout),s.on(clearTimeout)}}},Hw=function(e,t){var n=be(e,"target").getOr(t);return xo(n)},Vw=Co([{stopped:[]},{resume:["element"]},{complete:[]}]),jw=function(e,t,n,r,o,i){var a=e(t,r),u=function(e,t){var n=xo(!1),r=xo(!1);return{stop:function(){n.set(!0)},cut:function(){r.set(!0)},isStopped:n.get,isCut:r.get,event:e,setSource:t.set,getSource:t.get}}(n,o);return a.fold((function(){return i.logEventNoHandlers(t,r),Vw.complete()}),(function(e){var n=e.descHandler;return ka(n)(u),u.isStopped()?(i.logEventStopped(t,e.element,n.purpose),Vw.stopped()):u.isCut()?(i.logEventCut(t,e.element,n.purpose),Vw.complete()):Ot(e.element).fold((function(){return i.logNoParent(t,e.element,n.purpose),Vw.complete()}),(function(r){return i.logEventResponse(t,e.element,n.purpose),Vw.resume(r)}))}))},Uw=function(e,t,n,r,o,i){return jw(e,t,n,r,o,i).fold(S,(function(r){return Uw(e,t,n,r,o,i)}),C)},Ww=function(e,t,n){var r=function(e){var t=xo(!1);return{stop:function(){t.set(!0)},cut:g,isStopped:t.get,isCut:C,event:e,setSource:x("Cannot set source of a broadcasted event"),getSource:x("Cannot get source of a broadcasted event")}}(t);return U(e,(function(e){var t=e.descHandler;ka(t)(r)})),r.isStopped()},$w=function(e,t,n,r,o){var i=Hw(n,r);return Uw(e,t,n,r,i,o)},qw=function(){var e={};return{registerId:function(t,n,r){fe(r,(function(r,o){var i=void 0!==e[o]?e[o]:{};i[n]=function(e,t){return n=y.apply(void 0,[e.handler].concat(t)),r=e.purpose,{cHandler:n,purpose:r};var n,r}(r,t),e[o]=i}))},unregisterId:function(t){fe(e,(function(e,n){ye(e,t)&&delete e[t]}))},filterByType:function(t){return be(e,t).map((function(e){return pe(e,(function(e,t){return function(e,t){return{id:e,descHandler:t}}(t,e)}))})).getOr([])},find:function(t,n,r){return be(e,n).bind((function(e){return Do(r,(function(t){return function(e,t){return la(t).bind((function(t){return be(e,t)})).map((function(e){return function(e,t){return{element:e,descHandler:t}}(t,e)}))}(e,t)}),t)}))}}},Gw=function(){var e=qw(),t={},n=function(e){var t=e.element;return la(t).getOrThunk((function(){return function(e,t){var n=oa(ua+e);return sa(t,n),n}("uid-",e.element)}))},r=function(n){la(n.element).each((function(n){delete t[n],e.unregisterId(n)}))};return{find:function(t,n,r){return e.find(t,n,r)},filter:function(t){return e.filterByType(t)},register:function(o){var i=n(o);we(t,i)&&function(e,n){var o=t[n];if(o!==e)throw new Error('The tagId "'+n+'" is already used by: '+ea(o.element)+"\nCannot use it for: "+ea(e.element)+"\nThe conflicting element is"+(Lt(o.element)?" ":" not ")+"already in the DOM");r(e)}(o,i);var a=[o];e.registerId(a,i,o.events),t[i]=o},unregister:r,getById:function(e){return be(t,e)}}},Kw=Md({name:"Container",factory:function(e){var t=e.dom,n=t.attributes,r=T(t,["attributes"]);return{uid:e.uid,dom:O({tag:"div",attributes:O({role:"presentation"},n)},r),components:e.components,behaviours:Af(e.containerBehaviours),events:e.events,domModification:e.domModification,eventOrder:e.eventOrder}},configFields:[fo("components",[]),Ef("containerBehaviours",[]),fo("events",{}),fo("domModification",{}),fo("eventOrder",{})]}),Xw=function(e){var t=function(t){return Ot(e.element).fold(S,(function(e){return bt(t,e)}))},n=Gw(),r=function(e,r){return n.find(t,e,r)},o=Lw(e.element,{triggerEvent:function(e,t){return bu(e,t.target,(function(n){return function(e,t,n,r){return $w(e,t,n,n.target,r)}(r,e,t,n)}))}}),i={debugInfo:h("real"),triggerEvent:function(e,t,n){bu(e,t,(function(o){return $w(r,e,n,t,o)}))},triggerFocus:function(e,t){la(e).fold((function(){Ac(e)}),(function(n){bu(oi(),e,(function(n){return function(e,t,n,r,o){var i=Hw(n,r);jw(e,t,n,r,i,o)}(r,oi(),{originator:t,kill:g,prevent:g,target:e},e,n),!1}))}))},triggerEscape:function(e,t){i.triggerEvent("keydown",e.element,t.event)},getByUid:function(e){return p(e)},getByDom:function(e){return v(e)},build:eu,addToGui:function(e){c(e)},removeFromGui:function(e){s(e)},addToWorld:function(e){a(e)},removeFromWorld:function(e){u(e)},broadcast:function(e){f(e)},broadcastOn:function(e,t){d(e,t)},broadcastEvent:function(e,t){m(e,t)},isConnected:S},a=function(e){e.connect(i),Fe(e.element)||(n.register(e),U(e.components(),a),i.triggerEvent(gi(),e.element,{target:e.element}))},u=function(e){Fe(e.element)||(U(e.components(),u),n.unregister(e)),e.disconnect()},c=function(t){jl(e,t)},s=function(e){$l(e)},l=function(e){var t=n.filter(ui());U(t,(function(t){var n=t.descHandler;ka(n)(e)}))},f=function(e){l({universal:!0,data:e})},d=function(e,t){l({universal:!1,channels:e,data:t})},m=function(e,t){var r=n.filter(e);return Ww(r,t)},p=function(e){return n.getById(e).fold((function(){return Wn.error(new Error('Could not find component with uid: "'+e+'" in system.'))}),Wn.value)},v=function(e){var t=la(e).getOr("not found");return p(t)};return a(e),{root:e,element:e.element,destroy:function(){o.unbind(),An(e.element)},add:c,remove:s,getByUid:p,getByDom:v,addToWorld:a,removeFromWorld:u,broadcast:f,broadcastOn:d,broadcastEvent:m}},Yw=h([fo("prefix","form-field"),Ef("fieldBehaviours",[Pd,_f])]),Jw=h([id({schema:[Xr("dom")],name:"label"}),id({factory:{sketch:function(e){return{uid:e.uid,dom:{tag:"span",styles:{display:"none"},attributes:{"aria-hidden":"true"},innerHtml:e.text}}}},schema:[Xr("text")],name:"aria-descriptor"}),rd({factory:{sketch:function(e){var t=ko(e,["factory"]);return e.factory.sketch(t)}},schema:[Xr("factory")],name:"field"})]),Zw=Nd({name:"FormField",configFields:Yw(),partFields:Jw(),factory:function(e,t,n,r){var o=Df(e.fieldBehaviours,[Pd.config({find:function(t){return vd(t,e,"field")}}),_f.config({store:{mode:"manual",getValue:function(e){return Pd.getCurrent(e).bind(_f.getValue)},setValue:function(e,t){Pd.getCurrent(e).each((function(e){_f.setValue(e,t)}))}}})]),i=Bi([qi((function(t,n){var r=yd(t,e,["label","field","aria-descriptor"]);r.field().each((function(t){var n=oa(e.prefix);r.label().each((function(e){Ut(e.element,"for",n),Ut(t.element,"id",n)})),r["aria-descriptor"]().each((function(n){var r=oa(e.prefix);Ut(n.element,"id",r),Ut(t.element,"aria-describedby",r)}))}))}))]),a={getField:function(t){return vd(t,e,"field")},getLabel:function(t){return vd(t,e,"label")}};return{uid:e.uid,dom:e.dom,components:t,behaviours:o,events:i,apis:a}},apis:{getField:function(e,t){return e.getField(t)},getLabel:function(e,t){return e.getLabel(t)}}}),Qw=Object.freeze({__proto__:null,exhibit:function(e,t){return Sa({attributes:To([{key:t.tabAttr,value:"true"}])})}}),ex=[fo("tabAttr","data-alloy-tabstop")],tx=Cc({fields:ex,name:"tabstopping",active:Qw}),nx=tinymce.util.Tools.resolve("tinymce.html.Entities"),rx=function(e,t,n,r){var o=ox(e,t,n,r);return Zw.sketch(o)},ox=function(e,t,n,r){return{dom:ix(n),components:e.toArray().concat([t]),fieldBehaviours:wc(r)}},ix=function(e){return{tag:"div",classes:["tox-form__group"].concat(e)}},ax=function(e,t){return Zw.parts.label({dom:{tag:"label",classes:["tox-label"],innerHtml:t.translate(e)}})},ux=oa("form-component-change"),cx=oa("form-close"),sx=oa("form-cancel"),lx=oa("form-action"),fx=oa("form-submit"),dx=oa("form-block"),mx=oa("form-unblock"),gx=oa("form-tabchange"),px=oa("form-resize"),hx=function(e,t){var n,r,o,i=e.label.map((function(e){return ax(e,t)})),a=function(e){return function(t,n){lu(n.event.target,"[data-collection-item-value]").each((function(r){e(t,n,r,$t(r,"data-collection-item-value"))}))}},u=a((function(n,r,o,i){r.stop(),t.isDisabled()||Di(n,lx,{name:e.name,value:i})})),c=[Fi(Wo(),a((function(e,t,n){Ac(n)}))),Fi(Jo(),u),Fi(li(),u),Fi($o(),a((function(e,t,n){su(e.element,"."+Tv).each((function(e){La(e,Tv)})),Ia(n,Tv)}))),Fi(qo(),a((function(e){su(e.element,"."+Tv).each((function(e){La(e,Tv)}))}))),Xi(a((function(t,n,r,o){Di(t,lx,{name:e.name,value:o})})))],s=function(e,t){return j(ol(e.element,".tox-collection__item"),t)},l=Zw.parts.field({dom:{tag:"div",classes:["tox-collection"].concat(1!==e.columns?["tox-collection--grid"]:["tox-collection--list"])},components:[],factory:{sketch:v},behaviours:wc([Yd.config({disabled:t.isDisabled,onDisabled:function(e){s(e,(function(e){Ia(e,"tox-collection__item--state-disabled"),Ut(e,"aria-disabled",!0)}))},onEnabled:function(e){s(e,(function(e){La(e,"tox-collection__item--state-disabled"),Kt(e,"aria-disabled")}))}}),Gb(),cp.config({}),_f.config({store:{mode:"memory",initialValue:[]},onSetValue:function(n,r){!function(n,r){var o=j(r,(function(n){var r=wh.translate(n.text),o=1===e.columns?'
    '+r+"
    ":"",i='
    '+n.icon+"
    ",a={_:" "," - ":" ","-":" "},u=r.replace(/\_| \- |\-/g,(function(e){return a[e]}));return'
    '+i+o+"
    "})),i="auto"!==e.columns&&e.columns>1?V(o,e.columns):[o],a=j(i,(function(e){return'
    '+e.join("")+"
    "}));Ji(n.element,a.join(""))}(n,r),"auto"===e.columns&&ib(n,5,"tox-collection__item").each((function(e){var t=e.numRows,r=e.numColumns;np.setGridSize(n,t,r)})),Ai(n,px)}}),tx.config({}),np.config((r=e.columns,o="normal",1===r?{mode:"menu",moveOnTab:!1,selector:".tox-collection__item"}:"auto"===r?{mode:"flatgrid",selector:".tox-collection__item",initSize:{numColumns:1,numRows:1}}:{mode:"matrix",selectors:{row:"color"===o?".tox-swatches__row":".tox-collection__group",cell:"color"===o?".tox-swatch":"."+yv}})),sp("collection-events",c)]),eventOrder:(n={},n[ci()]=["disabling","alloy.base.behaviour","collection-events"],n)});return rx(i,l,["tox-form__group--collection"],[])},vx=h([oo("data"),fo("inputAttributes",{}),fo("inputStyles",{}),fo("tag","input"),fo("inputClasses",[]),_u("onSetValue"),fo("styles",{}),fo("eventOrder",{}),Ef("inputBehaviours",[_f,gp]),fo("selectOnFocus",!0)]),bx=function(e){return wc([gp.config({onFocus:e.selectOnFocus?function(e){var t=e.element,n=Ua(t);t.dom.setSelectionRange(0,n.length)}:g})])},yx=function(e){return O(O({},bx(e)),Df(e.inputBehaviours,[_f.config({store:O(O({mode:"manual"},e.data.map((function(e){return{initialValue:e}})).getOr({})),{getValue:function(e){return Ua(e.element)},setValue:function(e,t){Ua(e.element)!==t&&Wa(e.element,t)}}),onSetValue:e.onSetValue})]))},wx=function(e){return{tag:e.tag,attributes:O({type:"text"},e.inputAttributes),styles:e.inputStyles,classes:e.inputClasses}},xx=Md({name:"Input",configFields:vx(),factory:function(e,t){return{uid:e.uid,dom:wx(e),components:[],behaviours:yx(e),eventOrder:e.eventOrder}}}),Cx={},Sx={exports:Cx};!function(e,t,n,r){!function(r,o){"object"==typeof t&&void 0!==n?n.exports=o():"function"==typeof e&&e.amd?e(o):(r="undefined"!=typeof globalThis?globalThis:r||self).EphoxContactWrapper=o()}(this,(function(){var e="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},t={exports:{}};!function(t){!function(e){var n=setTimeout;function r(){}function o(e){if("object"!=typeof this)throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=void 0,this._deferreds=[],l(e,this)}function i(e,t){for(;3===e._state;)e=e._value;0!==e._state?(e._handled=!0,o._immediateFn((function(){var n=1===e._state?t.onFulfilled:t.onRejected;if(null!==n){var r;try{r=n(e._value)}catch(e){return void u(t.promise,e)}a(t.promise,r)}else(1===e._state?a:u)(t.promise,e._value)}))):e._deferreds.push(t)}function a(e,t){try{if(t===e)throw new TypeError("A promise cannot be resolved with itself.");if(t&&("object"==typeof t||"function"==typeof t)){var n=t.then;if(t instanceof o)return e._state=3,e._value=t,void c(e);if("function"==typeof n)return void l((r=n,i=t,function(){r.apply(i,arguments)}),e)}e._state=1,e._value=t,c(e)}catch(t){u(e,t)}var r,i}function u(e,t){e._state=2,e._value=t,c(e)}function c(e){2===e._state&&0===e._deferreds.length&&o._immediateFn((function(){e._handled||o._unhandledRejectionFn(e._value)}));for(var t=0,n=e._deferreds.length;tn?n:e===t?t-1:Math.max(t,e-r)},iS=function(e,t,n,r){return e>n?e:ed)return p;var h=function(e,t,n){return Math.min(n,Math.max(e,t))-t}(o,f,d),v=aS(h/m*r+t,g,p);return a&&v>=t&&v<=n?function(e,t,n,r,o){return o.fold((function(){var o=e-t,i=Math.round(o/r)*r;return aS(t+i,t-1,n+1)}),(function(t){var o=(e-t)%r,i=Math.round(o/r),a=Math.floor((e-t)/r),u=Math.floor((n-t)/r),c=t+Math.min(u,a+i)*r;return Math.max(t,c)}))}(v,t,n,i,u):c?Math.round(v):v},cS=function(e){var t=e.min,n=e.max,r=e.range,o=e.value,i=e.hasMinEdge,a=e.hasMaxEdge,u=e.maxBound,c=e.maxOffset,s=e.centerMinEdge,l=e.centerMaxEdge;return on?a?u:l:(o-t)/r*c},sS="top",lS="right",fS="bottom",dS="left",mS=function(e){return e.element.dom.getBoundingClientRect()},gS=function(e,t){return e[t]},pS=function(e){var t=mS(e);return gS(t,dS)},hS=function(e){var t=mS(e);return gS(t,lS)},vS=function(e){var t=mS(e);return gS(t,sS)},bS=function(e){var t=mS(e);return gS(t,fS)},yS=function(e){var t=mS(e);return gS(t,"width")},wS=function(e){var t=mS(e);return gS(t,"height")},xS=function(e,t,n){return(e+t)/2-n},CS=function(e,t){var n=mS(e),r=mS(t),o=gS(n,dS),i=gS(n,lS),a=gS(r,dS);return xS(o,i,a)},SS=function(e,t){var n=mS(e),r=mS(t),o=gS(n,sS),i=gS(n,fS),a=gS(r,sS);return xS(o,i,a)},kS=function(e,t){Di(e,AC(),{value:t})},OS=function(e){return{x:e}},TS=function(e,t,n){var r={min:MC(t),max:BC(t),range:HC(t),value:n,step:WC(t),snap:$C(t),snapStart:qC(t),rounded:GC(t),hasMinEdge:XC(t),hasMaxEdge:YC(t),minBound:pS(e),maxBound:hS(e),screenRange:yS(e)};return uS(r)},_S=function(e){return function(t,n){return function(e,t,n){var r=(e>0?iS:oS)(QC(n).x,MC(n),BC(n),WC(n));return kS(t,OS(r)),R.some(r)}(e,t,n).map(S)}},ES=function(e,t,n,r,o,i){var a=function(e,t,n,r,o){var i=yS(e),a=r.bind((function(t){return R.some(CS(t,e))})).getOr(0),u=o.bind((function(t){return R.some(CS(t,e))})).getOr(i),c={min:MC(t),max:BC(t),range:HC(t),value:n,hasMinEdge:XC(t),hasMaxEdge:YC(t),minBound:pS(e),minOffset:0,maxBound:hS(e),maxOffset:i,centerMinEdge:a,centerMaxEdge:u};return cS(c)}(t,i,n,r,o);return pS(t)-pS(e)+a},AS=_S(-1),DS=_S(1),MS=R.none,NS=R.none,RS={"top-left":R.none(),top:R.none(),"top-right":R.none(),right:R.some((function(e,t){rS(e,eS(IC(t)))})),"bottom-right":R.none(),bottom:R.none(),"bottom-left":R.none(),left:R.some((function(e,t){rS(e,eS(RC(t)))}))},zS=Object.freeze({__proto__:null,setValueFrom:function(e,t,n){var r=TS(e,t,n),o=OS(r);return kS(e,o),r},setToMin:function(e,t){var n=MC(t);kS(e,OS(n))},setToMax:function(e,t){var n=BC(t);kS(e,OS(n))},findValueOfOffset:TS,getValueFromEvent:function(e){return DC(e).map((function(e){return e.left}))},findPositionOfValue:ES,setPositionFromValue:function(e,t,n,r){var o=QC(n),i=ES(e,r.getSpectrum(e),o.x,r.getLeftEdge(e),r.getRightEdge(e),n),a=bn(t.element)/2;Jt(t.element,"left",i-a+"px")},onLeft:AS,onRight:DS,onUp:MS,onDown:NS,edgeActions:RS}),BS=function(e,t){Di(e,AC(),{value:t})},PS=function(e){return{y:e}},IS=function(e,t,n){var r={min:NC(t),max:PC(t),range:VC(t),value:n,step:WC(t),snap:$C(t),snapStart:qC(t),rounded:GC(t),hasMinEdge:JC(t),hasMaxEdge:ZC(t),minBound:vS(e),maxBound:bS(e),screenRange:wS(e)};return uS(r)},FS=function(e){return function(t,n){return function(e,t,n){var r=(e>0?iS:oS)(QC(n).y,NC(n),PC(n),WC(n));return BS(t,PS(r)),R.some(r)}(e,t,n).map(S)}},LS=function(e,t,n,r,o,i){var a=function(e,t,n,r,o){var i=wS(e),a=r.bind((function(t){return R.some(SS(t,e))})).getOr(0),u=o.bind((function(t){return R.some(SS(t,e))})).getOr(i),c={min:NC(t),max:PC(t),range:VC(t),value:n,hasMinEdge:JC(t),hasMaxEdge:ZC(t),minBound:vS(e),minOffset:0,maxBound:bS(e),maxOffset:i,centerMinEdge:a,centerMaxEdge:u};return cS(c)}(t,i,n,r,o);return vS(t)-vS(e)+a},HS=R.none,VS=R.none,jS=FS(-1),US=FS(1),WS={"top-left":R.none(),top:R.some((function(e,t){rS(e,tS(zC(t)))})),"top-right":R.none(),right:R.none(),"bottom-right":R.none(),bottom:R.some((function(e,t){rS(e,tS(FC(t)))})),"bottom-left":R.none(),left:R.none()},$S=Object.freeze({__proto__:null,setValueFrom:function(e,t,n){var r=IS(e,t,n),o=PS(r);return BS(e,o),r},setToMin:function(e,t){var n=NC(t);BS(e,PS(n))},setToMax:function(e,t){var n=PC(t);BS(e,PS(n))},findValueOfOffset:IS,getValueFromEvent:function(e){return DC(e).map((function(e){return e.top}))},findPositionOfValue:LS,setPositionFromValue:function(e,t,n,r){var o=QC(n),i=LS(e,r.getSpectrum(e),o.y,r.getTopEdge(e),r.getBottomEdge(e),n),a=ln(t.element)/2;Jt(t.element,"top",i-a+"px")},onLeft:HS,onRight:VS,onUp:jS,onDown:US,edgeActions:WS}),qS=function(e,t){Di(e,AC(),{value:t})},GS=function(e,t){return{x:e,y:t}},KS=function(e,t){return function(n,r){return function(e,t,n,r){var o=e>0?iS:oS,i=t?QC(r).x:o(QC(r).x,MC(r),BC(r),WC(r)),a=t?o(QC(r).y,NC(r),PC(r),WC(r)):QC(r).y;return qS(n,GS(i,a)),R.some(i)}(e,t,n,r).map(S)}},XS=KS(-1,!1),YS=KS(1,!1),JS=KS(-1,!0),ZS=KS(1,!0),QS={"top-left":R.some((function(e,t){rS(e,nS(RC(t),zC(t)))})),top:R.some((function(e,t){rS(e,nS(jC(t),zC(t)))})),"top-right":R.some((function(e,t){rS(e,nS(IC(t),zC(t)))})),right:R.some((function(e,t){rS(e,nS(IC(t),UC(t)))})),"bottom-right":R.some((function(e,t){rS(e,nS(IC(t),FC(t)))})),bottom:R.some((function(e,t){rS(e,nS(jC(t),FC(t)))})),"bottom-left":R.some((function(e,t){rS(e,nS(RC(t),FC(t)))})),left:R.some((function(e,t){rS(e,nS(RC(t),UC(t)))}))},ek=Object.freeze({__proto__:null,setValueFrom:function(e,t,n){var r=TS(e,t,n.left),o=IS(e,t,n.top),i=GS(r,o);return qS(e,i),i},setToMin:function(e,t){var n=MC(t),r=NC(t);qS(e,GS(n,r))},setToMax:function(e,t){var n=BC(t),r=PC(t);qS(e,GS(n,r))},getValueFromEvent:function(e){return DC(e)},setPositionFromValue:function(e,t,n,r){var o=QC(n),i=ES(e,r.getSpectrum(e),o.x,r.getLeftEdge(e),r.getRightEdge(e),n),a=LS(e,r.getSpectrum(e),o.y,r.getTopEdge(e),r.getBottomEdge(e),n),u=bn(t.element)/2,c=ln(t.element)/2;Jt(t.element,"left",i-u+"px"),Jt(t.element,"top",a-c+"px")},onLeft:XS,onRight:YS,onUp:JS,onDown:ZS,edgeActions:QS}),tk=Nd({name:"Slider",configFields:[fo("stepSize",1),fo("onChange",g),fo("onChoose",g),fo("onInit",g),fo("onDragStart",g),fo("onDragEnd",g),fo("snapToGrid",!1),fo("rounded",!0),oo("snapStart"),Yr("model",$r("mode",{x:[fo("minX",0),fo("maxX",100),Gr("value",(function(e){return xo(e.mode.minX)})),Xr("getInitialValue"),Mu("manager",zS)],y:[fo("minY",0),fo("maxY",100),Gr("value",(function(e){return xo(e.mode.minY)})),Xr("getInitialValue"),Mu("manager",$S)],xy:[fo("minX",0),fo("maxX",100),fo("minY",0),fo("maxY",100),Gr("value",(function(e){return xo({x:e.mode.minX,y:e.mode.minY})})),Xr("getInitialValue"),Mu("manager",ek)]})),Ef("sliderBehaviours",[np,_f]),Gr("mouseIsDown",(function(){return xo(!1)}))],partFields:EC,factory:function(e,t,n,r){var o,i=function(t){return bd(t,e,"thumb")},a=function(t){return bd(t,e,"spectrum")},u=function(t){return vd(t,e,"left-edge")},c=function(t){return vd(t,e,"right-edge")},s=function(t){return vd(t,e,"top-edge")},l=function(t){return vd(t,e,"bottom-edge")},f=e.model,d=f.manager,m=function(t,n){d.setPositionFromValue(t,n,e,{getLeftEdge:u,getRightEdge:c,getTopEdge:s,getBottomEdge:l,getSpectrum:a})},g=function(e,t){f.value.set(t);var n=i(e);m(e,n)},p=function(t){var n=e.mouseIsDown.get();e.mouseIsDown.set(!1),n&&vd(t,e,"thumb").each((function(n){var r=f.value.get();e.onChoose(t,n,r)}))},h=function(t,n){n.stop(),e.mouseIsDown.set(!0),e.onDragStart(t,i(t))},v=function(t,n){n.stop(),e.onDragEnd(t,i(t)),p(t)};return{uid:e.uid,dom:e.dom,components:t,behaviours:Df(e.sliderBehaviours,[np.config({mode:"special",focusIn:function(t){return vd(t,e,"spectrum").map(np.focusIn).map(S)}}),_f.config({store:{mode:"manual",getValue:function(e){return f.value.get()}}}),Tc.config({channels:(o={},o[lf()]={onReceive:p},o)})]),events:Bi([Fi(AC(),(function(t,n){!function(t,n){g(t,n);var r=i(t);e.onChange(t,r,n),R.some(!0)}(t,n.event.value)})),qi((function(t,n){var r=f.getInitialValue();f.value.set(r);var o=i(t);m(t,o);var u=a(t);e.onInit(t,o,u,f.value.get())})),Fi(Po(),h),Fi(Fo(),v),Fi(Ho(),h),Fi(Uo(),v)]),apis:{resetToMin:function(t){d.setToMin(t,e)},resetToMax:function(t){d.setToMax(t,e)},setValue:g,refresh:m},domModification:{styles:{position:"relative"}}}},apis:{setValue:function(e,t,n){e.setValue(t,n)},resetToMin:function(e,t){e.resetToMin(t)},resetToMax:function(e,t){e.resetToMax(t)},refresh:function(e,t){e.refresh(t)}}}),nk=oa("rgb-hex-update"),rk=oa("slider-update"),ok=oa("palette-update"),ik="form",ak=[Ef("formBehaviours",[_f])],uk=function(e){return""},ck=function(e,t){return{uid:e.uid,dom:e.dom,components:t,behaviours:Df(e.formBehaviours,[_f.config({store:{mode:"manual",getValue:function(t){var n=wd(t,e);return de(n,(function(e,t){return e().bind((function(e){var n,r,o=Pd.getCurrent(e);return n=o,r=new Error("Cannot find a current component to extract the value from for form part '"+t+"': "+ea(e.element)),n.fold((function(){return Wn.error(r)}),Wn.value)})).map(_f.getValue)}))},setValue:function(t,n){fe(n,(function(n,r){vd(t,e,r).each((function(e){Pd.getCurrent(e).each((function(e){_f.setValue(e,n)}))}))}))}}})]),apis:{getField:function(t,n){return vd(t,e,n).bind(Pd.getCurrent)}}}},sk={getField:ya((function(e,t,n){return e.getField(t,n)})),sketch:function(e){var t=function(){var e=[];return{field:function(t,n){return e.push(t),dd(ik,uk(t),n)},record:h(e)}}(),n=e(t),r=t.record(),o=j(r,(function(e){return rd({name:e,pname:uk(e)})}));return _d(ik,ak,o,ck,n)}},lk=oa("valid-input"),fk=oa("invalid-input"),dk=oa("validating-input"),mk="colorcustom.rgb.",gk=function(e,t,n,r){var o=function(n,r){return Vx.config({invalidClass:t("invalid"),notify:{onValidate:function(e){Di(e,dk,{type:n})},onValid:function(e){Di(e,lk,{type:n,value:_f.getValue(e)})},onInvalid:function(e){Di(e,fk,{type:n,value:_f.getValue(e)})}},validator:{validate:function(t){var n=_f.getValue(t),o=r(n)?Wn.value(!0):Wn.error(e("aria.input.invalid"));return Mx(o)},validateOnLoad:!1}})},i=function(n,r,i,a,u){var c=e("colorcustom.rgb.range"),s=Zw.parts.label({dom:{tag:"label",innerHtml:i,attributes:{"aria-label":a}}}),l=Zw.parts.field({data:u,factory:xx,inputAttributes:O({type:"text"},"hex"===r?{"aria-live":"polite"}:{}),inputClasses:[t("textfield")],inputBehaviours:wc([o(r,n),tx.config({})]),onSetValue:function(e){Vx.isInvalid(e)&&Vx.run(e).get(g)}}),f=[s,l],d="hex"!==r?[Zw.parts["aria-descriptor"]({text:c})]:[];return{dom:{tag:"div",attributes:{role:"presentation"}},components:f.concat(d)}},a=function(e,t){var n=t.red,r=t.green,o=t.blue;_f.setValue(e,{red:n,green:r,blue:o})},u=yh({dom:{tag:"div",classes:[t("rgba-preview")],styles:{"background-color":"white"},attributes:{role:"presentation"}}}),c=function(e,t){u.getOpt(e).each((function(e){Jt(e.element,"background-color","#"+t.value)}))},s=Md({factory:function(){var o={red:xo(R.some(255)),green:xo(R.some(255)),blue:xo(R.some(255)),hex:xo(R.some("ffffff"))},s=function(e){return o[e].get()},l=function(e,t){o[e].set(t)},f=function(e){var t=e.red,n=e.green,r=e.blue;l("red",R.some(t)),l("green",R.some(n)),l("blue",R.some(r))},d=function(e,t){var n=t.event;"hex"!==n.type?l(n.type,R.none()):r(e)},m=function(e,t,n){var r=parseInt(n,10);l(t,R.some(r)),s("red").bind((function(e){return s("green").bind((function(t){return s("blue").map((function(n){return zy(e,t,n,1)}))}))})).each((function(t){var n=function(e,t){var n=Ey(t);return sk.getField(e,"hex").each((function(t){gp.isFocused(t)||_f.setValue(e,{hex:n.value})})),n}(e,t);Di(e,nk,{hex:n}),c(e,n)}))},g=function(e,t){var r=t.event;!function(e){return"hex"===e.type}(r)?m(e,r.type,r.value):function(e,t){n(e);var r=xy(t);l("hex",R.some(t));var o=Iy(r);a(e,o),f(o),Di(e,nk,{hex:r}),c(e,r)}(e,r.value)},p=function(t){return{label:e(mk+t+".label"),description:e(mk+t+".description")}},h=p("red"),v=p("green"),b=p("blue"),y=p("hex");return ur(sk.sketch((function(n){return{dom:{tag:"form",classes:[t("rgb-form")],attributes:{"aria-label":e("aria.color.picker")}},components:[n.field("red",Zw.sketch(i(By,"red",h.label,h.description,255))),n.field("green",Zw.sketch(i(By,"green",v.label,v.description,255))),n.field("blue",Zw.sketch(i(By,"blue",b.label,b.description,255))),n.field("hex",Zw.sketch(i(ky,"hex",y.label,y.description,"ffffff"))),u.asSpec()],formBehaviours:wc([Vx.config({invalidClass:t("form-invalid")}),sp("rgb-form-events",[Fi(lk,g),Fi(fk,d),Fi(dk,d)])])}})),{apis:{updateHex:function(e,t){_f.setValue(e,{hex:t.value}),function(e,t){var n=Iy(t);a(e,n),f(n)}(e,t),c(e,t)}}})},name:"RgbForm",configFields:[],apis:{updateHex:function(e,t,n){e.updateHex(t,n)}},extraApis:{}});return s},pk=function(e,t){var n=tk.parts.spectrum({dom:{tag:"canvas",attributes:{role:"presentation"},classes:[t("sv-palette-spectrum")]}}),r=tk.parts.thumb({dom:{tag:"div",attributes:{role:"presentation"},classes:[t("sv-palette-thumb")],innerHtml:"'}}),o=function(e,t){var n=e.width,r=e.height,o=e.getContext("2d");if(null!==o){o.fillStyle=t,o.fillRect(0,0,n,r);var i=o.createLinearGradient(0,0,n,0);i.addColorStop(0,"rgba(255,255,255,1)"),i.addColorStop(1,"rgba(255,255,255,0)"),o.fillStyle=i,o.fillRect(0,0,n,r);var a=o.createLinearGradient(0,0,0,r);a.addColorStop(0,"rgba(0,0,0,0)"),a.addColorStop(1,"rgba(0,0,0,1)"),o.fillStyle=a,o.fillRect(0,0,n,r)}},i=Md({factory:function(e){var i=h({x:0,y:0}),a=wc([Pd.config({find:R.some}),gp.config({})]);return tk.sketch({dom:{tag:"div",attributes:{role:"presentation"},classes:[t("sv-palette")]},model:{mode:"xy",getInitialValue:i},rounded:!1,components:[n,r],onChange:function(e,t,n){Di(e,ok,{value:n})},onInit:function(e,t,n,r){o(n.element.dom,Hy(Vy))},sliderBehaviours:a})},name:"SaturationBrightnessPalette",configFields:[],apis:{setHue:function(e,t,n){!function(e,t){var n=e.components()[0].element.dom,r=Uy(t,100,100),i=Py(r);o(n,Hy(i))}(t,n)},setThumb:function(e,t,n){!function(e,t){var n=Wy(Iy(t));tk.setValue(e,{x:n.saturation,y:100-n.value})}(t,n)}},extraApis:{}});return i},hk=function(e,t){var n=Md({name:"ColourPicker",configFields:[Xr("dom"),fo("onValidHex",g),fo("onInvalidHex",g)],factory:function(n){var r,o=gk(e,t,n.onValidHex,n.onInvalidHex),i=pk(0,t),a=function(e){return 100-e/360*100},u={paletteRgba:xo(Vy),paletteHue:xo(0)},c=yh(function(e,t){var n=tk.parts.spectrum({dom:{tag:"div",classes:[t("hue-slider-spectrum")],attributes:{role:"presentation"}}}),r=tk.parts.thumb({dom:{tag:"div",classes:[t("hue-slider-thumb")],attributes:{role:"presentation"}}});return tk.sketch({dom:{tag:"div",classes:[t("hue-slider")],attributes:{role:"presentation"}},rounded:!1,model:{mode:"y",getInitialValue:h({y:0})},components:[n,r],sliderBehaviours:wc([gp.config({})]),onChange:function(e,t,n){Di(e,rk,{value:n})}})}(0,t)),s=yh(i.sketch({})),l=yh(o.sketch({})),f=function(e,t,n){s.getOpt(e).each((function(e){i.setHue(e,n)}))},d=function(e,t){l.getOpt(e).each((function(e){o.updateHex(e,t)}))},m=function(e,t,n){c.getOpt(e).each((function(e){tk.setValue(e,{y:a(n)})}))},g=function(e,t){s.getOpt(e).each((function(e){i.setThumb(e,t)}))},p=function(e,t,n,r){!function(e,t){var n=Iy(e);u.paletteRgba.set(n),u.paletteHue.set(t)}(t,n),U(r,(function(r){r(e,t,n)}))};return{uid:n.uid,dom:n.dom,components:[s.asSpec(),c.asSpec(),l.asSpec()],behaviours:wc([sp("colour-picker-events",[Fi(nk,(r=[f,m,g],function(e,t){var n=t.event.hex,o=function(e){return Wy(Iy(e))}(n);p(e,n,o.hue,r)})),Fi(ok,function(){var e=[d];return function(t,n){var r=n.event.value,o=u.paletteHue.get(),i=Uy(o,r.x,100-r.y),a=$y(i);p(t,a,o,e)}}()),Fi(rk,function(){var e=[f,d];return function(t,n){var r=function(e){return(100-e)/100*360}(n.event.value.y),o=u.paletteRgba.get(),i=Wy(o),a=Uy(r,i.saturation,i.value),c=$y(a);p(t,c,r,e)}}())]),Pd.config({find:function(e){return l.getOpt(e)}}),np.config({mode:"acyclic"})])}}});return n},vk=function(){return Pd.config({find:R.some})},bk=function(e){return Pd.config({find:e.getOpt})},yk=function(e){return Pd.config({find:function(t){return Et(t.element,e).bind((function(e){return t.getSystem().getByDom(e).toOptional()}))}})},wk={"colorcustom.rgb.red.label":"R","colorcustom.rgb.red.description":"Red component","colorcustom.rgb.green.label":"G","colorcustom.rgb.green.description":"Green component","colorcustom.rgb.blue.label":"B","colorcustom.rgb.blue.description":"Blue component","colorcustom.rgb.hex.label":"#","colorcustom.rgb.hex.description":"Hex color code","colorcustom.rgb.range":"Range 0 to 255","colorcustom.sb.saturation":"Saturation","colorcustom.sb.brightness":"Brightness","colorcustom.sb.picker":"Saturation and Brightness Picker","colorcustom.sb.palette":"Saturation and Brightness Palette","colorcustom.sb.instructions":"Use arrow keys to select saturation and brightness, on x and y axes","colorcustom.hue.hue":"Hue","colorcustom.hue.slider":"Hue Slider","colorcustom.hue.palette":"Hue Palette","colorcustom.hue.instructions":"Use arrow keys to select a hue","aria.color.picker":"Color Picker","aria.input.invalid":"Invalid input"},xk=function(e){return function(e){return wk[e]}(e)},Ck=tinymce.util.Tools.resolve("tinymce.Resource"),Sk=tinymce.util.Tools.resolve("tinymce.util.Tools"),kk=kr([fo("preprocess",v),fo("postprocess",v)]),Ok=function(e,t,n){return _f.config(ur({store:{mode:"manual",getValue:t,setValue:n}},e.map((function(e){return{store:{initialValue:e}}})).getOr({})))},Tk=function(e,t,n){return Ok(e,(function(e){return t(e.element)}),(function(e,t){return n(e.element,t)}))},_k=function(e,t){var n=Ur("RepresentingConfigs.memento processors",kk,t);return _f.config({store:{mode:"manual",getValue:function(t){var r=e.get(t),o=_f.getValue(r);return n.postprocess(o)},setValue:function(t,r){var o=n.preprocess(r),i=e.get(t);_f.setValue(i,o)}}})},Ek=Ok,Ak=function(e){return Tk(e,Yi,Ji)},Dk=function(e){return _f.config({store:{mode:"memory",initialValue:e}})},Mk=function(e,t){var n=function(e,t){t.stop()},r=function(e){return function(t,n){U(e,(function(e){e(t,n)}))}},o=function(e,t){if(!Yd.isDisabled(e)){var n=t.event.raw;a(e,n.dataTransfer.files)}},i=function(e,t){var n=t.event.raw.target;a(e,n.files)},a=function(n,r){_f.setValue(n,function(e,t){var n=Sk.explode(t.getSetting("images_file_types","jpeg,jpg,jpe,jfi,jif,jfif,png,gif,bmp,webp","string"));return $(ue(e),(function(e){return L(n,(function(t){return Ee(e.name.toLowerCase(),"."+t.toLowerCase())}))}))}(r,t)),Di(n,ux,{name:e.name})},u=yh({dom:{tag:"input",attributes:{type:"file",accept:"image/*"},styles:{display:"none"}},behaviours:wc([sp("input-file-events",[Ui(Jo()),Ui(li())])])}),c=e.label.map((function(e){return ax(e,t)})),s=Zw.parts.field({factory:{sketch:function(e){return{uid:e.uid,dom:{tag:"div",classes:["tox-dropzone-container"]},behaviours:wc([Dk([]),vk(),Yd.config({}),Tp.config({toggleClass:"dragenter",toggleOnExecute:!1}),sp("dropzone-events",[Fi("dragenter",r([n,Tp.toggle])),Fi("dragleave",r([n,Tp.toggle])),Fi("dragover",n),Fi("drop",r([n,o])),Fi(Yo(),i)])]),components:[{dom:{tag:"div",classes:["tox-dropzone"],styles:{}},components:[{dom:{tag:"p",innerHtml:t.translate("Drop an image here")}},bh.sketch({dom:{tag:"button",innerHtml:t.translate("Browse for an image"),styles:{position:"relative"},classes:["tox-button","tox-button--secondary"]},components:[u.asSpec()],action:function(e){u.get(e).element.dom.click()},buttonBehaviours:wc([tx.config({}),Xb(t.isDisabled),Gb()])})]}]}}}});return rx(c,s,["tox-form__group--stretched"],[])},Nk=oa("alloy-fake-before-tabstop"),Rk=oa("alloy-fake-after-tabstop"),zk=function(e){return{dom:{tag:"div",styles:{width:"1px",height:"1px",outline:"none"},attributes:{tabindex:"0"},classes:e},behaviours:wc([gp.config({ignore:!0}),tx.config({})])}},Bk=function(e){return{dom:{tag:"div",classes:["tox-navobj"]},components:[zk([Nk]),e,zk([Rk])],behaviours:wc([yk(1)])}},Pk=function(e,t){Di(e,Go(),{raw:{which:9,shiftKey:t}})},Ik=function(e,t){var n=t.element;Ha(n,Nk)?Pk(e,!0):Ha(n,Rk)&&Pk(e,!1)},Fk=function(e){return zw(e,["."+Nk,"."+Rk].join(","),C)},Lk=!(pt().browser.isIE()||pt().browser.isEdge()),Hk=function(e,t){var n=Lk&&e.sandboxed,r=O(O({},e.label.map((function(e){return{title:e}})).getOr({})),n?{sandbox:"allow-scripts allow-same-origin"}:{}),o=function(e){var t=xo("");return{getValue:function(e){return t.get()},setValue:function(n,r){if(e)Ut(n.element,"srcdoc",r);else{Ut(n.element,"src","javascript:''");var o=n.element.dom.contentWindow.document;o.open(),o.write(r),o.close()}t.set(r)}}}(n),i=e.label.map((function(e){return ax(e,t)})),a=Zw.parts.field({factory:{sketch:function(e){return Bk({uid:e.uid,dom:{tag:"iframe",attributes:r},behaviours:wc([tx.config({}),gp.config({}),Ek(R.none(),o.getValue,o.setValue)])})}}});return rx(i,a,["tox-form__group--stretched"],[])},Vk=function(e,t){return Wk(document.createElement("canvas"),e,t)},jk=function(e){var t=Vk(e.width,e.height);return Uk(t).drawImage(e,0,0),t},Uk=function(e){return e.getContext("2d")},Wk=function(e,t,n){return e.width=t,e.height=n,e},$k=function(e){return e.naturalWidth||e.width},qk=function(e){return e.naturalHeight||e.height},Gk=function(e){return new Ox((function(t,n){(function(e){var t=e.split(","),n=/data:([^;]+)/.exec(t[0]);if(!n)return R.none();for(var r=n[1],o=t[1],i=1024,a=atob(o),u=a.length,c=Math.ceil(u/i),s=new Array(c),l=0;ln?r=n:rn?e=n:e2)&&(i=i<.5?.5:2,u=!0),(a<.5||a>2)&&(a=a<.5?.5:2,u=!0);var c=gO(e,i,a);return u?c.then((function(e){return mO(e,t,n)})):c},gO=function(e,t,n){return new Ox((function(r){var o=$k(e),i=qk(e),a=Math.floor(o*t),u=Math.floor(i*n),c=Vk(a,u);Uk(c).drawImage(e,0,0,o,i,0,0,a,u),r(c)}))},pO=function(e,t){void 0===t&&(t=2);var n=Math.pow(10,t),r=Math.round(e*n);return Math.ceil(r/n)},hO=function(e,t,n){var r=(n<0?360+n:n)*Math.PI/180,o=e.width,i=e.height,a=Math.sin(r),u=Math.cos(r),c=pO(Math.abs(o*u)+Math.abs(i*a)),s=pO(Math.abs(o*a)+Math.abs(i*u)),l=Vk(c,s),f=Uk(l);return f.translate(c/2,s/2),f.rotate(r),f.drawImage(e,-o/2,-i/2),Qk(l,t)},vO=function(e,t,n){var r=Vk(e.width,e.height),o=Uk(r);return"v"===n?(o.scale(1,-1),o.drawImage(e,0,-r.height)):(o.scale(-1,1),o.drawImage(e,-r.width,0)),Qk(r,t)},bO=function(e,t,n,r,o,i){var a=Vk(o,i);return Uk(a).drawImage(e,-n,-r),Qk(a,t)},yO=function(e){return uO(e)},wO=function(e){return fO(e)},xO=function(e,t){return dO(e,t)},CO=function(e,t){return cO(e,t)},SO=function(e,t){return sO(e,t)},kO=function(e,t){return function(e,t){return e.toCanvas().then((function(n){return vO(n,e.getType(),t)}))}(e,t)},OO=function(e,t,n,r,o){return function(e,t,n,r,o){return e.toCanvas().then((function(i){return bO(i,e.getType(),t,n,r,o)}))}(e,t,n,r,o)},TO=function(e,t,n){return function(e,t,n){return e.toCanvas().then((function(r){return mO(r,t,n).then((function(t){return Qk(t,e.getType())}))}))}(e,t,n)},_O=function(e,t){return function(e,t){return e.toCanvas().then((function(n){return hO(n,e.getType(),t)}))}(e,t)},EO=function(e,t,n){return Ah(e,{tag:"span",classes:["tox-icon","tox-tbtn__icon-wrap"],behaviours:n},t)},AO=function(e,t){return EO(e,t,[])},DO=function(e,t){return EO(e,t,[cp.config({})])},MO=function(e,t,n){return{dom:{tag:"span",innerHtml:n.translate(e),classes:[t+"__select-label"]},behaviours:wc([cp.config({})])}},NO=oa("toolbar.button.execute"),RO=((Yx={})[ci()]=["disabling","alloy.base.behaviour","toggling","toolbar-button-events"],Yx),zO=oa("update-menu-text"),BO=oa("update-menu-icon"),PO=function(e,t,n){var r=xo(g),o=e.text.map((function(e){return yh(MO(e,t,n.providers))})),i=e.icon.map((function(e){return yh(DO(e,n.providers.icons))})),a=function(e,t){var n=_f.getValue(e);return gp.focus(n),Di(n,"keydown",{raw:t.event.raw}),sC.close(n),R.some(!0)},u=e.role.fold((function(){return{}}),(function(e){return{role:e}})),c=e.tooltip.fold((function(){return{}}),(function(e){var t=n.providers.translate(e);return{title:t,"aria-label":t}})),s=Ah("chevron-down",{tag:"div",classes:[t+"__select-chevron"]},n.providers.icons);return yh(sC.sketch(O(O(O({},e.uid?{uid:e.uid}:{}),u),{dom:{tag:"button",classes:[t,t+"--select"].concat(j(e.classes,(function(e){return t+"--"+e}))),attributes:O({},c)},components:ry([i.map((function(e){return e.asSpec()})),o.map((function(e){return e.asSpec()})),R.some(s)]),matchWidth:!0,useMinWidth:!0,dropdownBehaviours:wc(_(_([],e.dropdownBehaviours,!0),[Xb((function(){return e.disabled||n.providers.isDisabled()})),Gb(),fC.config({}),cp.config({}),sp("dropdown-events",[Qb(e,r),ey(e,r)]),sp("menubutton-update-display-text",[Fi(zO,(function(e,t){o.bind((function(t){return t.getOpt(e)})).each((function(e){cp.set(e,[Ja(n.providers.translate(t.event.text))])}))})),Fi(BO,(function(e,t){i.bind((function(t){return t.getOpt(e)})).each((function(e){cp.set(e,[DO(t.event.icon,n.providers.icons)])}))}))])],!1)),eventOrder:ur(RO,{mousedown:["focusing","alloy.base.behaviour","item-type-events","normal-dropdown-events"]}),sandboxBehaviours:wc([np.config({mode:"special",onLeft:a,onRight:a})]),lazySink:n.getSink,toggleClass:t+"--active",parts:{menu:Bv(0,e.columns,e.presets)},fetch:function(t){return Dx(y(e.fetch,t))}}))).asSpec()},IO=function(e){return"separator"===e.type},FO={type:"separator"},LO=function(e,t){var n=G(e,(function(e,n){return function(e){return r(e)}(n)?""===n?e:"|"===n?e.length>0&&!IO(e[e.length-1])?e.concat([FO]):e:ye(t,n.toLowerCase())?e.concat([t[n.toLowerCase()]]):e:e.concat([n])}),[]);return n.length>0&&IO(n[n.length-1])&&n.pop(),n},HO=function(e,t){return function(e){return ye(e,"getSubmenuItems")}(e)?function(e,t){var n=e.getSubmenuItems(),r=VO(n,t);return{item:e,menus:ur(r.menus,Oo(e.value,r.items)),expansions:ur(r.expansions,Oo(e.value,e.value))}}(e,t):{item:e,menus:{},expansions:{}}},VO=function(e,t){var n=LO(r(e)?e.split(" "):e,t);return q(n,(function(e,n){var r=function(e){if(IO(e))return e;var t=be(e,"value").getOrThunk((function(){return oa("generated-menu-item")}));return ur({value:t},e)}(n),o=HO(r,t);return{menus:ur(e.menus,o.menus),items:[o.item].concat(e.items),expansions:ur(e.expansions,o.expansions)}}),{menus:{},expansions:{},items:[]})},jO=function(e,t,n,r){var o=oa("primary-menu"),i=VO(e,n.shared.providers.menuItems());if(0===i.items.length)return R.none();var a=Mw(o,i.items,t,n,r),u=de(i.menus,(function(e,r){return Mw(r,e,t,n,!1)})),c=ur(u,Oo(o,a));return R.from(Yp.tieredData(o,c,i.expansions))},UO=function(e){return{isDisabled:function(){return Yd.isDisabled(e)},setDisabled:function(t){return Yd.set(e,t)},setActive:function(t){var n=e.element;t?(Ia(n,"tox-tbtn--enabled"),Ut(n,"aria-pressed",!0)):(La(n,"tox-tbtn--enabled"),Kt(n,"aria-pressed"))},isActive:function(){return Ha(e.element,"tox-tbtn--enabled")}}},WO=function(e,t,n,r){return PO({text:e.text,icon:e.icon,tooltip:e.tooltip,role:r,fetch:function(t,r){e.fetch((function(e){r(jO(e,vv.CLOSE_ON_EXECUTE,n,!1))}))},onSetup:e.onSetup,getApi:UO,columns:1,presets:"normal",classes:[],dropdownBehaviours:[tx.config({})]},t,n.shared)},$O=function(e,t,n){var r=function(e){return function(r){var o=!r.isActive();r.setActive(o),e.storage.set(o),n.shared.getSink().each((function(n){t().getOpt(n).each((function(t){Ac(t.element),Di(t,lx,{name:e.name,value:e.storage.get()})}))}))}},o=function(e){return function(t){t.setActive(e.storage.get())}};return function(t){t(j(e,(function(e){var t=e.text.fold((function(){return{}}),(function(e){return{text:e}}));return O(O({type:e.type,active:!1},t),{onAction:r(e),onSetup:o(e)})})))}},qO=function(e,t,n,r,o,i){void 0===n&&(n=[]);var a=t.fold((function(){return{}}),(function(e){return{action:e}})),u=O({buttonBehaviours:wc([Xb((function(){return e.disabled||i.isDisabled()})),Gb(),tx.config({}),sp("button press",[Ii("click"),Ii("mousedown")])].concat(n)),eventOrder:{click:["button press","alloy.base.behaviour"],mousedown:["button press","alloy.base.behaviour"]}},a),c=ur(u,{dom:r});return ur(c,{components:o})},GO=function(e,t,n,r){void 0===r&&(r=[]);var o={tag:"button",classes:["tox-tbtn"],attributes:e.tooltip.map((function(e){return{"aria-label":n.translate(e),title:n.translate(e)}})).getOr({})},i=e.icon.map((function(e){return AO(e,n.icons)})),a=ry([i]);return qO(e,t,r,o,a,n)},KO=function(e,t,n,r){void 0===r&&(r=[]);var o=GO(e,R.some(t),n,r);return bh.sketch(o)},XO=function(e,t,n,r,o){void 0===r&&(r=[]),void 0===o&&(o=[]);var i=n.translate(e.text),a=e.icon?e.icon.map((function(e){return AO(e,n.icons)})):R.none(),u=a.isSome()?ry([a]):[],c=a.isSome()?{}:{innerHtml:i},s=_(_(_(_([],e.primary||e.borderless?["tox-button"]:["tox-button","tox-button--secondary"],!0),a.isSome()?["tox-button--icon"]:[],!0),e.borderless?["tox-button--naked"]:[],!0),o,!0),l=O(O({tag:"button",classes:s},c),{attributes:{title:i}});return qO(e,t,r,l,u,n)},YO=function(e,t,n,r,o){void 0===r&&(r=[]),void 0===o&&(o=[]);var i=XO(e,R.some(t),n,r,o);return bh.sketch(i)},JO=function(e,t){return function(n){"custom"===t?Di(n,lx,{name:e,value:{}}):"submit"===t?Ai(n,fx):"cancel"===t?Ai(n,sx):console.error("Unknown button type: ",t)}},ZO=function(e,t,n){if(function(e,t){return"menu"===t}(0,t)){var r=e,o=O(O({},e),{onSetup:function(t){return t.setDisabled(e.disabled),g},fetch:$O(r.items,(function(){return i}),n)}),i=yh(WO(o,"tox-tbtn",n,R.none()));return i.asSpec()}if(function(e,t){return"custom"===t||"cancel"===t||"submit"===t}(0,t)){var a=JO(e.name,t),u=O(O({},e),{borderless:!1});return YO(u,a,n.shared.providers,[])}console.error("Unknown footer button type: ",t)},QO=function(e,t){var n,r,o=JO(e.name,"custom");return n=R.none(),r=Zw.parts.field(O({factory:bh},XO(e,R.some(o),t,[Dk(""),vk()]))),rx(n,r,[],[])},eT=h([fo("field1Name","field1"),fo("field2Name","field2"),Au("onLockedChange"),Ou(["lockClass"]),fo("locked",!1),Mf("coupledFieldBehaviours",[Pd,_f])]),tT=function(e,t){return rd({factory:Zw,name:e,overrides:function(e){return{fieldBehaviours:wc([sp("coupled-input-behaviour",[Fi(Xo(),(function(n){(function(e,t,n){return vd(e,t,n).bind(Pd.getCurrent)})(n,e,t).each((function(t){vd(n,e,"lock").each((function(r){Tp.isOn(r)&&e.onLockedChange(n,t,r)}))}))}))])])}}})},nT=h([tT("field1","field2"),tT("field2","field1"),rd({factory:bh,schema:[Xr("dom")],name:"lock",overrides:function(e){return{buttonBehaviours:wc([Tp.config({selected:e.locked,toggleClass:e.markers.lockClass,aria:{mode:"pressed"}})])}}})]),rT=Nd({name:"FormCoupledInputs",configFields:eT(),partFields:nT(),factory:function(e,t,n,r){return{uid:e.uid,dom:e.dom,components:t,behaviours:Nf(e.coupledFieldBehaviours,[Pd.config({find:R.some}),_f.config({store:{mode:"manual",getValue:function(t){var n,r=Cd(t,e,["field1","field2"]);return(n={})[e.field1Name]=_f.getValue(r.field1()),n[e.field2Name]=_f.getValue(r.field2()),n},setValue:function(t,n){var r=Cd(t,e,["field1","field2"]);we(n,e.field1Name)&&_f.setValue(r.field1(),n[e.field1Name]),we(n,e.field2Name)&&_f.setValue(r.field2(),n[e.field2Name])}}})]),apis:{getField1:function(t){return vd(t,e,"field1")},getField2:function(t){return vd(t,e,"field2")},getLock:function(t){return vd(t,e,"lock")}}}},apis:{getField1:function(e,t){return e.getField1(t)},getField2:function(e,t){return e.getField2(t)},getLock:function(e,t){return e.getLock(t)}}}),oT=function(e){var t=/^\s*(\d+(?:\.\d+)?)\s*(|cm|mm|in|px|pt|pc|em|ex|ch|rem|vw|vh|vmin|vmax|%)\s*$/.exec(e);if(null!==t){var n=parseFloat(t[1]),r=t[2];return Wn.value({value:n,unit:r})}return Wn.error(e)},iT=function(e,t){var n={"":96,px:96,pt:72,cm:2.54,pc:12,mm:25.4,in:1},r=function(e){return ye(n,e)};return e.unit===t?R.some(e.value):r(e.unit)&&r(t)?n[e.unit]===n[t]?R.some(e.value):R.some(e.value/n[e.unit]*n[t]):R.none()},aT=function(e){return R.none()},uT=function(e,t){var n=oT(e).toOptional(),r=oT(t).toOptional();return Se(n,r,(function(e,t){return iT(e,t.unit).map((function(e){return t.value/e})).map((function(e){return function(e,t){return function(n){return iT(n,t).map((function(n){return{value:n*e,unit:t}}))}}(e,t.unit)})).getOr(aT)})).getOr(aT)},cT=function(e,t){var n=aT,r=oa("ratio-event"),o=function(e){return Ah(e,{tag:"span",classes:["tox-icon","tox-lock-icon__"+e]},t.icons)},i=rT.parts.lock({dom:{tag:"button",classes:["tox-lock","tox-button","tox-button--naked","tox-button--icon"],attributes:{title:t.translate(e.label.getOr("Constrain proportions"))}},components:[o("lock"),o("unlock")],buttonBehaviours:wc([Yd.config({disabled:function(){return e.disabled||t.isDisabled()}}),Gb(),tx.config({})])}),a=function(e){return{dom:{tag:"div",classes:["tox-form__group"]},components:e}},u=function(n){return Zw.parts.field({factory:xx,inputClasses:["tox-textfield"],inputBehaviours:wc([Yd.config({disabled:function(){return e.disabled||t.isDisabled()}}),Gb(),tx.config({}),sp("size-input-events",[Fi($o(),(function(e,t){Di(e,r,{isField1:n})})),Fi(Yo(),(function(t,n){Di(t,ux,{name:e.name})}))])]),selectOnFocus:!1})},c=function(e){return{dom:{tag:"label",classes:["tox-label"],innerHtml:t.translate(e)}}},s=rT.parts.field1(a([Zw.parts.label(c("Width")),u(!0)])),l=rT.parts.field2(a([Zw.parts.label(c("Height")),u(!1)]));return rT.sketch({dom:{tag:"div",classes:["tox-form__group"]},components:[{dom:{tag:"div",classes:["tox-form__controls-h-stack"]},components:[s,l,a([c(" "),i])]}],field1Name:"width",field2Name:"height",locked:!0,markers:{lockClass:"tox-locked"},onLockedChange:function(e,t,r){oT(_f.getValue(e)).each((function(e){n(e).each((function(e){_f.setValue(t,function(e){var t,n={"":0,px:0,pt:1,mm:1,pc:2,ex:2,em:2,ch:2,rem:2,cm:3,in:4,"%":4},r=e.value.toFixed((t=e.unit)in n?n[t]:1);return-1!==r.indexOf(".")&&(r=r.replace(/\.?0*$/,"")),r+e.unit}(e))}))}))},coupledFieldBehaviours:wc([Yd.config({disabled:function(){return e.disabled||t.isDisabled()},onDisabled:function(e){rT.getField1(e).bind(Zw.getField).each(Yd.disable),rT.getField2(e).bind(Zw.getField).each(Yd.disable),rT.getLock(e).each(Yd.disable)},onEnabled:function(e){rT.getField1(e).bind(Zw.getField).each(Yd.enable),rT.getField2(e).bind(Zw.getField).each(Yd.enable),rT.getLock(e).each(Yd.enable)}}),Gb(),sp("size-input-events2",[Fi(r,(function(e,t){var r=t.event.isField1,o=r?rT.getField1(e):rT.getField2(e),i=r?rT.getField2(e):rT.getField1(e),a=o.map(_f.getValue).getOr(""),u=i.map(_f.getValue).getOr("");n=uT(a,u)}))])])})},sT={undo:h(oa("undo")),redo:h(oa("redo")),zoom:h(oa("zoom")),back:h(oa("back")),apply:h(oa("apply")),swap:h(oa("swap")),transform:h(oa("transform")),tempTransform:h(oa("temp-transform")),transformApply:h(oa("transform-apply"))},lT=h("save-state"),fT=h("disable"),dT=h("enable"),mT={formActionEvent:lx,saveState:lT,disable:fT,enable:dT},gT=function(e,t){var n=function(e,n,r,o){return yh(YO({name:e,text:e,disabled:r,primary:o,icon:R.none(),borderless:!1},n,t))},r=function(e,n,r,o){return yh(KO({name:e,icon:R.some(e),tooltip:R.some(n),disabled:o,primary:!1,borderless:!1},r,t))},o=function(e,t){e.map((function(e){var n=e.get(t);n.hasConfigured(Yd)&&Yd.disable(n)}))},i=function(e,t){e.map((function(e){var n=e.get(t);n.hasConfigured(Yd)&&Yd.enable(n)}))},a={tag:"div",classes:["tox-image-tools__toolbar","tox-image-tools-edit-panel"]},u=g,c=function(e,t,n){Di(e,t,n)},s=function(e){return Ai(e,mT.disable())},l=function(e){return Ai(e,mT.enable())},f=function(e,t){s(e),c(e,sT.transform(),{transform:t}),l(e)},d=function(e){return function(){ee.getOpt(e).each((function(e){cp.set(e,[Z])}))}},m=function(e,t){s(e),c(e,sT.transformApply(),{transform:t,swap:d(e)}),l(e)},p=function(){return n("Back",(function(e){return c(e,sT.back(),{swap:d(e)})}),!1,!1)},v=function(){return yh({dom:{tag:"div",classes:["tox-spacer"]},behaviours:wc([Yd.config({})])})},b=function(){return n("Apply",(function(e){return c(e,sT.apply(),{swap:d(e)})}),!0,!0)},y=[p(),v(),n("Apply",(function(t){var n=function(t){var n=e.getRect();return OO(t,n.x,n.y,n.w,n.h)};m(t,n),e.hideCrop()}),!1,!0)],w=Kw.sketch({dom:a,components:y.map((function(e){return e.asSpec()})),containerBehaviours:wc([sp("image-tools-crop-buttons-events",[Fi(mT.disable(),(function(e,t){o(y,e)})),Fi(mT.enable(),(function(e,t){i(y,e)}))])])}),x=yh(cT({name:"size",label:R.none(),constrain:!0,disabled:!1},t)),C=[p(),v(),x,v(),n("Apply",(function(e){x.getOpt(e).each((function(t){var n=_f.getValue(t),r=function(e,t){return function(n){return TO(n,e,t)}}(parseInt(n.width,10),parseInt(n.height,10));m(e,r)}))}),!1,!0)],S=Kw.sketch({dom:a,components:C.map((function(e){return e.asSpec()})),containerBehaviours:wc([sp("image-tools-resize-buttons-events",[Fi(mT.disable(),(function(e,t){o(C,e)})),Fi(mT.enable(),(function(e,t){i(C,e)}))])])}),k=function(e,t){return function(n){return e(n,t)}},O=k(kO,"h"),T=k(kO,"v"),_=k(_O,-90),E=k(_O,90),A=function(e,t){!function(e,t){s(e),c(e,sT.tempTransform(),{transform:t}),l(e)}(e,t)},D=[p(),v(),r("flip-horizontally","Flip horizontally",(function(e){A(e,O)}),!1),r("flip-vertically","Flip vertically",(function(e){A(e,T)}),!1),r("rotate-left","Rotate counterclockwise",(function(e){A(e,_)}),!1),r("rotate-right","Rotate clockwise",(function(e){A(e,E)}),!1),v(),b()],M=Kw.sketch({dom:a,components:D.map((function(e){return e.asSpec()})),containerBehaviours:wc([sp("image-tools-fliprotate-buttons-events",[Fi(mT.disable(),(function(e,t){o(D,e)})),Fi(mT.enable(),(function(e,t){i(D,e)}))])])}),N=function(e,n,r,o,i){var a=tk.parts.label({dom:{tag:"label",classes:["tox-label"],innerHtml:t.translate(e)}}),u=tk.parts.spectrum({dom:{tag:"div",classes:["tox-slider__rail"],attributes:{role:"presentation"}}}),c=tk.parts.thumb({dom:{tag:"div",classes:["tox-slider__handle"],attributes:{role:"presentation"}}});return yh(tk.sketch({dom:{tag:"div",classes:["tox-slider"],attributes:{role:"presentation"}},model:{mode:"x",minX:r,maxX:i,getInitialValue:h({x:o})},components:[a,u,c],sliderBehaviours:wc([gp.config({})]),onChoose:n}))},z=function(e,t,n,r,o){return N(e,(function(e,n,r){var o=k(t,r.x/100);f(e,o)}),n,r,o)},B=function(e,t,n,r,u){var c=function(e,t,n,r,o){return[p(),z(e,t,n,r,o),b()]}(e,t,n,r,u);return Kw.sketch({dom:a,components:c.map((function(e){return e.asSpec()})),containerBehaviours:wc([sp("image-tools-filter-panel-buttons-events",[Fi(mT.disable(),(function(e,t){o(c,e)})),Fi(mT.enable(),(function(e,t){i(c,e)}))])])})},P=[p(),v(),b()],I=Kw.sketch({dom:a,components:P.map((function(e){return e.asSpec()}))}),F=B("Brightness",CO,-100,0,100),L=B("Contrast",SO,-100,0,100),H=B("Gamma",xO,-100,0,100),V=function(e,t,n){return function(r){return function(e,t,n,r){return lO(e,t,n,r)}(r,e,t,n)}},j=function(e){return N(e,(function(e,t,n){var r=U.getOpt(e),o=$.getOpt(e),i=W.getOpt(e);r.each((function(t){o.each((function(n){i.each((function(r){var o=_f.getValue(t).x/100,i=_f.getValue(r).x/100,a=_f.getValue(n).x/100,u=V(o,i,a);f(e,u)}))}))}))}),0,100,200)},U=j("R"),W=j("G"),$=j("B"),q=[p(),U,W,$,b()],G=Kw.sketch({dom:a,components:q.map((function(e){return e.asSpec()}))}),K=function(e,t,n){return function(r){c(r,sT.swap(),{transform:t,swap:function(){ee.getOpt(r).each((function(t){cp.set(t,[e]),n(t)}))}})}},X=R.some(wO),Y=R.some(yO),J=[r("crop","Crop",K(w,R.none(),(function(t){e.showCrop()})),!1),r("resize","Resize",K(S,R.none(),(function(t){x.getOpt(t).each((function(t){var n=e.getMeasurements(),r=n.width,o=n.height;_f.setValue(t,{width:r,height:o})}))})),!1),r("orientation","Orientation",K(M,R.none(),u),!1),r("brightness","Brightness",K(F,R.none(),u),!1),r("sharpen","Sharpen",K(I,X,u),!1),r("contrast","Contrast",K(L,R.none(),u),!1),r("color-levels","Color levels",K(G,R.none(),u),!1),r("gamma","Gamma",K(H,R.none(),u),!1),r("invert","Invert",K(I,Y,u),!1)],Z=Kw.sketch({dom:a,components:J.map((function(e){return e.asSpec()}))}),Q=Kw.sketch({dom:{tag:"div"},components:[Z],containerBehaviours:wc([cp.config({})])}),ee=yh(Q);return{memContainer:ee,getApplyButton:function(e){return ee.getOpt(e).map((function(e){var t=e.components()[0];return t.components()[t.components().length-1]}))}}},pT=tinymce.util.Tools.resolve("tinymce.geom.Rect"),hT=tinymce.util.Tools.resolve("tinymce.util.Observable"),vT=tinymce.util.Tools.resolve("tinymce.util.VK"),bT=function(e){if(function(e){return l(e.changedTouches)}(e))for(var t="screenX screenY pageX pageY clientX clientY".split(" "),n=0;n=1?r.set(1):r.set(u)}))}(e,o),u(e,o)}))}))},s=Kw.sketch({dom:{tag:"div",classes:["tox-image-tools__image"]},components:[n.asSpec(),{dom:{tag:"img",attributes:{src:e}}},{dom:{tag:"div"},behaviours:wc([sp("image-panel-crop-events",[qi((function(e){l.getOpt(e).each((function(e){var t=e.element.dom,n=xT({x:10,y:10,w:100,h:100},{x:0,y:0,w:200,h:200},{x:0,y:0,w:200,h:200},t,g);n.toggleVisibility(!1),n.on("updateRect",(function(e){var t=e.rect,n=r.get(),o={x:Math.round(t.x/n),y:Math.round(t.y/n),w:Math.round(t.w/n),h:Math.round(t.h/n)};i.set(o)})),o.set(n)}))})),Gi((function(){o.clear()}))])])}],containerBehaviours:wc([cp.config({}),sp("image-panel-events",[qi((function(t){c(t,e)}))])])}),l=yh(s);return{memContainer:l,updateSrc:c,zoom:function(e,t){var n=r.get(),o=t>0?Math.min(2,n+.1):Math.max(.1,n-.1);r.set(o),l.getOpt(e).each((function(e){var t=e.components()[1].element;u(e,t)}))},showCrop:function(){o.run((function(e){e.toggleVisibility(!0)}))},hideCrop:function(){o.run((function(e){e.toggleVisibility(!1)}))},getRect:function(){return i.get()},getMeasurements:function(){var e=a.get();return{width:e.w,height:e.h}}}},ST=function(e,t,n,r,o){return KO({name:e,icon:R.some(t),disabled:n,tooltip:R.some(e),primary:!1,borderless:!1},r,o)},kT=function(e,t){t?Yd.enable(e):Yd.disable(e)};var OT,TT=function(e){var t,n,r,o,i=xo(e),a=Qc(),u=(n=-1,{data:t=[],add:function(e){var r=t.splice(++n);return t.push(e),{state:e,removed:r}},undo:function(){if(r())return t[--n]},redo:function(){if(o())return t[++n]},canUndo:r=function(){return n>0},canRedo:o=function(){return-1!==n&&n=e.minChars){var i=Pd.getCurrent(o).bind((function(e){return um.getHighlighted(e).map(_f.getValue)}));e.previewing.set(!0);Zx(e,a(t),t,o,r,(function(t){Pd.getCurrent(o).each((function(t){i.fold((function(){e.model.selectsOver&&um.highlightFirst(t)}),(function(e){um.highlightBy(t,(function(t){return _f.getValue(t).value===e.value})),um.getHighlighted(t).orThunk((function(){return um.highlightFirst(t),R.none()}))}))}))}),kx.HighlightFirst).get(g)}},cancelEvent:mi()}),np.config({mode:"special",onDown:function(e,t){return o(e,t,um.highlightFirst),R.some(!0)},onEscape:function(e){var t=$x.getCoupled(e,"sandbox");return uf.isOpen(t)?(uf.close(t),R.some(!0)):R.none()},onUp:function(e,t){return o(e,t,um.highlightLast),R.some(!0)},onEnter:function(t){var n=$x.getCoupled(t,"sandbox"),r=uf.isOpen(n);if(r&&!e.previewing.get())return Pd.getCurrent(n).bind((function(e){return um.getHighlighted(e)})).map((function(e){return Di(t,UT(),{item:e}),!0}));var o=_f.getValue(t);return Ai(t,mi()),e.onExecute(n,t,o),r&&uf.close(n),R.some(!0)}}),Tp.config({toggleClass:e.markers.openClass,aria:{mode:"expanded"}}),$x.config({others:{sandbox:function(t){return oC(e,t,{onOpen:function(){return Tp.on(t)},onClose:function(){return Tp.off(t)}})}}}),sp("typeaheadevents",[Xi((function(t){var n=g;eC(e,a(t),t,r,n,kx.HighlightFirst).get(g)})),Fi(UT(),(function(t,n){var r=$x.getCoupled(t,"sandbox");LT(e.model,t,n.event.item),Ai(t,mi()),e.onItemExecute(t,r,n.event.item,_f.getValue(t)),uf.close(r),VT(t)}))].concat(e.dismissOnBlur?[Fi(ii(),(function(e){var t=$x.getCoupled(e,"sandbox");Nc(t.element).isNone()&&uf.close(t)}))]:[]))];return{uid:e.uid,dom:wx(ur(e,{inputAttributes:{role:"combobox","aria-autocomplete":"list","aria-haspopup":"true"}})),behaviours:O(O({},i),Df(e.typeaheadBehaviours,u)),eventOrder:e.eventOrder}}}),GT=function(e){return O(O({},e),{toCached:function(){return GT(e.toCached())},bindFuture:function(t){return GT(e.bind((function(e){return e.fold((function(e){return Mx(Wn.error(e))}),(function(e){return t(e)}))})))},bindResult:function(t){return GT(e.map((function(e){return e.bind(t)})))},mapResult:function(t){return GT(e.map((function(e){return e.map(t)})))},mapError:function(t){return GT(e.map((function(e){return e.mapError(t)})))},foldResult:function(t,n){return e.map((function(e){return e.fold(t,n)}))},withTimeout:function(t,n){return GT(Dx((function(r){var o=!1,i=setTimeout((function(){o=!0,r(Wn.error(n()))}),t);e.get((function(e){o||(clearTimeout(i),r(e))}))})))}})},KT=function(e){return GT(Dx(e))},XT=KT,YT={type:"separator"},JT=function(e){return{type:"menuitem",value:e.url,text:e.title,meta:{attach:e.attach},onAction:g}},ZT=function(e,t){return{type:"menuitem",value:t,text:e,meta:{attach:void 0},onAction:g}},QT=function(e,t){return function(e){return j(e,JT)}(function(e,t){return $(t,(function(t){return t.type===e}))}(e,t))},e_=function(e){return QT("header",e.targets)},t_=function(e){return QT("anchor",e.targets)},n_=function(e){return R.from(e.anchorTop).map((function(e){return ZT("",e)})).toArray()},r_=function(e){return R.from(e.anchorBottom).map((function(e){return ZT("",e)})).toArray()},o_=function(e,t){var n=e.toLowerCase();return $(t,(function(e){var t=void 0!==e.meta&&void 0!==e.meta.text?e.meta.text:e.text;return Te(t.toLowerCase(),n)||Te(e.value.toLowerCase(),n)}))},i_=function(e,t,n){var r=_f.getValue(t),o=void 0!==r.meta.text?r.meta.text:r.value;return n.getLinkInformation().fold((function(){return[]}),(function(t){var r,i=o_(o,function(e){return j(e,(function(e){return ZT(e,e)}))}(n.getHistory(e)));return"file"===e?(r=[i,o_(o,e_(t)),o_(o,Y([n_(t),t_(t),r_(t)]))],G(r,(function(e,t){return 0===e.length||0===t.length?e.concat(t):e.concat(YT,t)}),[])):i}))},a_=oa("aria-invalid"),u_=function(e){return function(t,n,r){return be(n,"name").fold((function(){return e(n,r)}),(function(o){return t.field(o,e(n,r))}))}},c_={bar:u_((function(e,t){return function(e,t){return{dom:{tag:"div",classes:["tox-bar","tox-form__controls-h-stack"]},components:j(e.items,t.interpreter)}}(e,t.shared)})),collection:u_((function(e,t){return hx(e,t.shared.providers)})),alertbanner:u_((function(e,t){return function(e,t){return Kw.sketch({dom:{tag:"div",attributes:{role:"alert"},classes:["tox-notification","tox-notification--in","tox-notification--"+e.level]},components:[{dom:{tag:"div",classes:["tox-notification__icon"]},components:[bh.sketch({dom:{tag:"button",classes:["tox-button","tox-button--naked","tox-button--icon"],innerHtml:Th(e.icon,t.icons),attributes:{title:t.translate(e.iconTooltip)}},action:function(t){Di(t,lx,{name:"alert-banner",value:e.url})},buttonBehaviours:wc([_h()])})]},{dom:{tag:"div",classes:["tox-notification__body"],innerHtml:t.translate(e.text)}}]})}(e,t.shared.providers)})),input:u_((function(e,t){return function(e,t){return RT({name:e.name,multiline:!1,label:e.label,inputMode:e.inputMode,placeholder:e.placeholder,flex:!1,disabled:e.disabled,classname:"tox-textfield",validation:R.none(),maximized:e.maximized},t)}(e,t.shared.providers)})),textarea:u_((function(e,t){return function(e,t){return RT({name:e.name,multiline:!0,label:e.label,inputMode:R.none(),placeholder:e.placeholder,flex:!0,disabled:e.disabled,classname:"tox-textarea",validation:R.none(),maximized:e.maximized},t)}(e,t.shared.providers)})),label:u_((function(e,t){return function(e,t){var n={dom:{tag:"label",innerHtml:t.providers.translate(e.label),classes:["tox-label"]}},r=j(e.items,t.interpreter);return{dom:{tag:"div",classes:["tox-form__group"]},components:[n].concat(r),behaviours:wc([vk(),cp.config({}),Ak(R.none()),np.config({mode:"acyclic"})])}}(e,t.shared)})),iframe:function(e){return function(t,n,r){var o=ur(n,{source:"dynamic"});return u_(e)(t,o,r)}}((function(e,t){return Hk(e,t.shared.providers)})),button:u_((function(e,t){return QO(e,t.shared.providers)})),checkbox:u_((function(e,t){return function(e,t){var n=_f.config({store:{mode:"manual",getValue:function(e){return e.element.dom.checked},setValue:function(e,t){e.element.dom.checked=t}}}),r=function(e){return e.element.dom.click(),R.some(!0)},o=Zw.parts.field({factory:{sketch:v},dom:{tag:"input",classes:["tox-checkbox__input"],attributes:{type:"checkbox"}},behaviours:wc([vk(),Yd.config({disabled:function(){return e.disabled||t.isDisabled()}}),tx.config({}),gp.config({}),n,np.config({mode:"special",onEnter:r,onSpace:r,stopSpaceKeyup:!0}),sp("checkbox-events",[Fi(Yo(),(function(t,n){Di(t,ux,{name:e.name})}))])])}),i=Zw.parts.label({dom:{tag:"span",classes:["tox-checkbox__label"],innerHtml:t.translate(e.label)},behaviours:wc([fC.config({})])}),a=function(e){return Ah("checked"===e?"selected":"unselected",{tag:"span",classes:["tox-icon","tox-checkbox-icon__"+e]},t.icons)},u=yh({dom:{tag:"div",classes:["tox-checkbox__icons"]},components:[a("checked"),a("unchecked")]});return Zw.sketch({dom:{tag:"label",classes:["tox-checkbox"]},components:[o,u.asSpec(),i],fieldBehaviours:wc([Yd.config({disabled:function(){return e.disabled||t.isDisabled()},disableClass:"tox-checkbox--disabled",onDisabled:function(e){Zw.getField(e).each(Yd.disable)},onEnabled:function(e){Zw.getField(e).each(Yd.enable)}}),Gb()])})}(e,t.shared.providers)})),colorinput:u_((function(e,t){return pC(e,t.shared,t.colorinput)})),colorpicker:u_((function(e){var t=function(e){return"tox-"+e},n=hk(xk,t),r=yh(n.sketch({dom:{tag:"div",classes:[t("color-picker-container")],attributes:{role:"presentation"}},onValidHex:function(e){Di(e,lx,{name:"hex-valid",value:!0})},onInvalidHex:function(e){Di(e,lx,{name:"hex-valid",value:!1})}}));return{dom:{tag:"div"},components:[r.asSpec()],behaviours:wc([_f.config({store:{mode:"manual",getValue:function(e){var t=r.get(e);return Pd.getCurrent(t).bind((function(e){return _f.getValue(e).hex})).map((function(e){return"#"+e})).getOr("")},setValue:function(e,t){var n=/^#([a-fA-F0-9]{3}(?:[a-fA-F0-9]{3})?)/.exec(t),o=r.get(e);Pd.getCurrent(o).fold((function(){console.log("Can not find form")}),(function(e){_f.setValue(e,{hex:R.from(n[1]).getOr("")}),sk.getField(e,"hex").each((function(e){Ai(e,Xo())}))}))}}}),vk()])}})),dropzone:u_((function(e,t){return Mk(e,t.shared.providers)})),grid:u_((function(e,t){return function(e,t){return{dom:{tag:"div",classes:["tox-form__grid","tox-form__grid--"+e.columns+"col"]},components:j(e.items,t.interpreter)}}(e,t.shared)})),listbox:u_((function(e,t){return function(e,t){var n=t.shared.providers,r=ie(e.items).filter(ET),o=e.label.map((function(e){return ax(e,n)})),i=Zw.parts.field({dom:{},factory:{sketch:function(n){return PO({uid:n.uid,text:r.map((function(e){return e.text})),icon:R.none(),tooltip:e.label,role:R.none(),fetch:function(n,r){var o=DT(n,e.name,e.items,_f.getValue(n));r(jO(o,vv.CLOSE_ON_EXECUTE,t,!1))},onSetup:h(g),getApi:h({}),columns:1,presets:"normal",classes:[],dropdownBehaviours:[tx.config({}),_f.config({store:{mode:"manual",initialValue:r.map((function(e){return e.value})).getOr(""),getValue:function(e){return $t(e.element,AT)},setValue:function(t,n){MT(e.items,n).each((function(e){Ut(t.element,AT,e.value),Di(t,zO,{text:e.text})}))}}})]},"tox-listbox",t.shared)}}}),a={dom:{tag:"div",classes:["tox-listboxfield"]},components:[i]};return Zw.sketch({dom:{tag:"div",classes:["tox-form__group"]},components:Y([o.toArray(),[a]]),fieldBehaviours:wc([Yd.config({disabled:h(e.disabled),onDisabled:function(e){Zw.getField(e).each(Yd.disable)},onEnabled:function(e){Zw.getField(e).each(Yd.enable)}})])})}(e,t)})),selectbox:u_((function(e,t){return function(e,t){var n=j(e.items,(function(e){return{text:t.translate(e.text),value:e.value}})),r=e.label.map((function(e){return ax(e,t)})),o=Zw.parts.field({dom:{},selectAttributes:{size:e.size},options:n,factory:NT,selectBehaviours:wc([Yd.config({disabled:function(){return e.disabled||t.isDisabled()}}),tx.config({}),sp("selectbox-change",[Fi(Yo(),(function(t,n){Di(t,ux,{name:e.name})}))])])}),i=e.size>1?R.none():R.some(Ah("chevron-down",{tag:"div",classes:["tox-selectfield__icon-js"]},t.icons)),a={dom:{tag:"div",classes:["tox-selectfield"]},components:Y([[o],i.toArray()])};return Zw.sketch({dom:{tag:"div",classes:["tox-form__group"]},components:Y([r.toArray(),[a]]),fieldBehaviours:wc([Yd.config({disabled:function(){return e.disabled||t.isDisabled()},onDisabled:function(e){Zw.getField(e).each(Yd.disable)},onEnabled:function(e){Zw.getField(e).each(Yd.enable)}}),Gb()])})}(e,t.shared.providers)})),sizeinput:u_((function(e,t){return cT(e,t.shared.providers)})),urlinput:u_((function(e,t){return function(e,t,n){var r,o=t.shared.providers,i=function(t){var r=_f.getValue(t);n.addToHistory(r.value,e.filetype)},a=Zw.parts.field({factory:qT,dismissOnBlur:!0,inputClasses:["tox-textfield"],sandboxClasses:["tox-dialog__popups"],inputAttributes:{"aria-errormessage":a_,type:"url"},minChars:0,responseTime:0,fetch:function(r){var o=i_(e.filetype,r,n),i=jO(o,vv.BUBBLE_TO_SANDBOX,t,!1);return Mx(i)},getHotspot:function(e){return d.getOpt(e)},onSetValue:function(e,t){e.hasConfigured(Vx)&&Vx.run(e).get(g)},typeaheadBehaviours:wc(Y([n.getValidationHandler().map((function(t){return Vx.config({getRoot:function(e){return Ot(e.element)},invalidClass:"tox-control-wrap--status-invalid",notify:{onInvalid:function(e,t){c.getOpt(e).each((function(e){Ut(e.element,"title",o.translate(t))}))}},validator:{validate:function(n){var r=_f.getValue(n);return XT((function(n){t({type:e.filetype,url:r.value},(function(e){if("invalid"===e.status){var t=Wn.error(e.message);n(t)}else{var r=Wn.value(e.message);n(r)}}))}))},validateOnLoad:!1}})})).toArray(),[Yd.config({disabled:function(){return e.disabled||o.isDisabled()}}),tx.config({}),sp("urlinput-events",Y(["file"===e.filetype?[Fi(Xo(),(function(t){Di(t,ux,{name:e.name})}))]:[],[Fi(Yo(),(function(t){Di(t,ux,{name:e.name}),i(t)})),Fi(ai(),(function(t){Di(t,ux,{name:e.name}),i(t)}))]]))]])),eventOrder:(r={},r[Xo()]=["streaming","urlinput-events","invalidating"],r),model:{getDisplayText:function(e){return e.value},selectsOver:!1,populateFromBrowse:!1},markers:{openClass:"tox-textfield--popup-open"},lazySink:t.shared.getSink,parts:{menu:Bv(0,0,"normal")},onExecute:function(e,t,n){Di(t,fx,{})},onItemExecute:function(t,n,r,o){i(t),Di(t,ux,{name:e.name})}}),u=e.label.map((function(e){return ax(e,o)})),c=yh(function(e,t,n,r){return void 0===n&&(n=e),void 0===r&&(r=e),Ah(n,{tag:"div",classes:["tox-icon","tox-control-wrap__status-icon-"+e],attributes:O({title:o.translate(r),"aria-live":"polite"},t.fold((function(){return{}}),(function(e){return{id:e}})))},o.icons)}("invalid",R.some(a_),"warning")),s=yh({dom:{tag:"div",classes:["tox-control-wrap__status-icon-wrap"]},components:[c.asSpec()]}),l=n.getUrlPicker(e.filetype),f=oa("browser.url.event"),d=yh({dom:{tag:"div",classes:["tox-control-wrap"]},components:[a,s.asSpec()],behaviours:wc([Yd.config({disabled:function(){return e.disabled||o.isDisabled()}})])}),m=yh(YO({name:e.name,icon:R.some("browse"),text:e.label.getOr(""),disabled:e.disabled,primary:!1,borderless:!0},(function(e){return Ai(e,f)}),o,[],["tox-browse-url"]));return Zw.sketch({dom:ix([]),components:u.toArray().concat([{dom:{tag:"div",classes:["tox-form__controls-h-stack"]},components:Y([[d.asSpec()],l.map((function(){return m.asSpec()})).toArray()])}]),fieldBehaviours:wc([Yd.config({disabled:function(){return e.disabled||o.isDisabled()},onDisabled:function(e){Zw.getField(e).each(Yd.disable),m.getOpt(e).each(Yd.disable)},onEnabled:function(e){Zw.getField(e).each(Yd.enable),m.getOpt(e).each(Yd.enable)}}),Gb(),sp("url-input-events",[Fi(f,(function(t){Pd.getCurrent(t).each((function(n){var r=_f.getValue(n),o=O({fieldname:e.name},r);l.each((function(r){r(o).get((function(r){_f.setValue(n,r),Di(t,ux,{name:e.name})}))}))}))}))])])})}(e,t,t.urlinput)})),customeditor:u_((function(e){var t=Qc(),n=yh({dom:{tag:e.tag}}),r=Qc();return{dom:{tag:"div",classes:["tox-custom-editor"]},behaviours:wc([sp("custom-editor-events",[qi((function(o){n.getOpt(o).each((function(n){(!function(e){return ye(e,"init")}(e)?Ck.load(e.scriptId,e.scriptUrl).then((function(t){return t(n.element.dom,e.settings)})):e.init(n.element.dom)).then((function(e){r.on((function(t){e.setValue(t)})),r.clear(),t.set(e)}))}))}))]),_f.config({store:{mode:"manual",getValue:function(){return t.get().fold((function(){return r.get().getOr("")}),(function(e){return e.getValue()}))},setValue:function(e,n){t.get().fold((function(){r.set(n)}),(function(e){return e.setValue(n)}))}}}),vk()]),components:[n.asSpec()]}})),htmlpanel:u_((function(e){return"presentation"===e.presets?Kw.sketch({dom:{tag:"div",classes:["tox-form__group"],innerHtml:e.html}}):Kw.sketch({dom:{tag:"div",classes:["tox-form__group"],innerHtml:e.html,attributes:{role:"document"}},containerBehaviours:wc([tx.config({}),gp.config({})])})})),imagetools:u_((function(e,t){return _T(e,t.shared.providers)})),table:u_((function(e,t){return function(e,t){var n,r,o=function(e){return{dom:{tag:"th",innerHtml:t.translate(e)}}},i=function(e){return{dom:{tag:"td",innerHtml:t.translate(e)}}},a=function(e){return{dom:{tag:"tr"},components:j(e,i)}};return{dom:{tag:"table",classes:["tox-dialog__table"]},components:[(r=e.header,{dom:{tag:"thead"},components:[{dom:{tag:"tr"},components:j(r,o)}]}),(n=e.cells,{dom:{tag:"tbody"},components:j(n,a)})],behaviours:wc([tx.config({}),gp.config({})])}}(e,t.shared.providers)})),panel:u_((function(e,t){return function(e,t){return{dom:{tag:"div",classes:e.classes},components:j(e.items,t.shared.interpreter)}}(e,t)}))},s_={field:function(e,t){return t}},l_=function(e,t,n){var r=ur(n,{shared:{interpreter:function(t){return f_(e,t,r)}}});return f_(e,t,r)},f_=function(e,t,n){return be(c_,t.type).fold((function(){return console.error('Unknown factory type "'+t.type+'", defaulting to container: ',t),t}),(function(r){return r(e,t,n)}))},d_={valignCentre:[],alignCentre:[],alignLeft:[],alignRight:[],right:[],left:[],bottom:[],top:[]},m_=function(e,t,n){var r={maxHeightFunction:gs()};return function(){return n()?{type:"node",root:Bt(e()),node:R.from(e()),bubble:bs(12,12,d_),layouts:{onRtl:function(){return[ch]},onLtr:function(){return[uh]}},overrides:r}:{type:"hotspot",hotspot:t(),bubble:bs(-12,12,d_),layouts:{onRtl:function(){return[ec]},onLtr:function(){return[tc]}},overrides:r}}},g_=function(e,t,n){return function(){return n()?{type:"node",root:Bt(e()),node:R.from(e()),layouts:{onRtl:function(){return[sh]},onLtr:function(){return[sh]}}}:{type:"hotspot",hotspot:t(),layouts:{onRtl:function(){return[ic]},onLtr:function(){return[ic]}}}}},p_=function(e,t){return function(){return{type:"selection",root:t(),getSelection:function(){var t=e.selection.getRng();return R.some(Ws.range(Re.fromDom(t.startContainer),t.startOffset,Re.fromDom(t.endContainer),t.endOffset))}}}},h_=function(e){return function(t){return{type:"node",root:e(),node:t}}},v_=function(e,t,n){var r=Bb(e),o=function(){return Re.fromDom(e.getBody())},i=function(){return Re.fromDom(e.getContentAreaContainer())},a=function(){return r||!n()};return{inlineDialog:m_(i,t,a),banner:g_(i,t,a),cursor:p_(e,o),node:h_(o)}},b_=function(e){return function(t,n){fw(e)(t,n)}},y_=function(e){return function(){return Qy(e)}},w_=function(e){return function(){return ew(e)}},x_=function(e){return function(){return rw(e)}},C_=function(e){return{colorPicker:b_(e),hasCustomColors:y_(e),getColors:w_(e),getColorCols:x_(e)}},S_=function(e){return function(){return function(e){return e.getParam("draggable_modal",!1,"boolean")}(e)}},k_=function(e){return{isDraggableModal:S_(e)}},O_=[{title:"Headings",items:[{title:"Heading 1",format:"h1"},{title:"Heading 2",format:"h2"},{title:"Heading 3",format:"h3"},{title:"Heading 4",format:"h4"},{title:"Heading 5",format:"h5"},{title:"Heading 6",format:"h6"}]},{title:"Inline",items:[{title:"Bold",format:"bold"},{title:"Italic",format:"italic"},{title:"Underline",format:"underline"},{title:"Strikethrough",format:"strikethrough"},{title:"Superscript",format:"superscript"},{title:"Subscript",format:"subscript"},{title:"Code",format:"code"}]},{title:"Blocks",items:[{title:"Paragraph",format:"p"},{title:"Blockquote",format:"blockquote"},{title:"Div",format:"div"},{title:"Pre",format:"pre"}]},{title:"Align",items:[{title:"Left",format:"alignleft"},{title:"Center",format:"aligncenter"},{title:"Right",format:"alignright"},{title:"Justify",format:"alignjustify"}]}],T_=function(e){return G(e,(function(e,t){if(ye(t,"items")){var n=T_(t.items);return{customFormats:e.customFormats.concat(n.customFormats),formats:e.formats.concat([{title:t.title,items:n.formats}])}}if(function(e){return ye(e,"inline")}(t)||function(e){return ye(e,"block")}(t)||function(e){return ye(e,"selector")}(t)){var o="custom-"+(r(t.name)?t.name:t.title.toLowerCase());return{customFormats:e.customFormats.concat([{name:o,format:t}]),formats:e.formats.concat([{title:t.title,format:o,icon:t.icon}])}}return O(O({},e),{formats:e.formats.concat(t)})}),{customFormats:[],formats:[]})},__=function(e){return function(e){return R.from(e.getParam("style_formats")).filter(i)}(e).map((function(t){var n=function(e,t){var n=T_(t),r=function(t){U(t,(function(t){e.formatter.has(t.name)||e.formatter.register(t.name,t.format)}))};return e.formatter?r(n.customFormats):e.on("init",(function(){r(n.customFormats)})),n.formats}(e,t);return function(e){return e.getParam("style_formats_merge",!1,"boolean")}(e)?O_.concat(n):n})).getOr(O_)},E_=function(e,t,n){var r={type:"formatter",isSelected:t(e.format),getStylePreview:n(e.format)};return ur(e,r)},A_=function(e,t,n,o){var i=function(t){return j(t,(function(t){var a=se(t);if(we(t,"items")){var u=i(t.items);return ur(function(e){return ur(e,{type:"submenu"})}(t),{getStyleItems:h(u)})}return we(t,"format")?function(e){return E_(e,n,o)}(t):1===a.length&&F(a,"title")?ur(t,{type:"separator"}):function(t){var i=r(t.name)?t.name:oa(t.title),a="custom-"+i,u={type:"formatter",format:a,isSelected:n(a),getStylePreview:o(a)},c=ur(t,u);return e.formatter.register(i,c),c}(t)}))};return i(t)},D_=function(e){var t=function(t){return function(){return e.formatter.match(t)}},n=function(t){return function(){var n=e.formatter.get(t);return void 0!==n?R.some({tag:n.length>0&&(n[0].inline||n[0].block)||"div",styles:e.dom.parseStyle(e.formatter.getCssText(t))}):R.none()}},r=function(e){var t=e.items;return void 0!==t&&t.length>0?J(t,r):[e.format]},o=xo([]),i=xo([]),a=xo([]),u=xo([]),c=xo(!1);e.on("PreInit",(function(a){var u=__(e),c=A_(e,u,t,n);o.set(c),i.set(J(c,r))})),e.on("addStyleModifications",(function(o){var i=A_(e,o.items,t,n);a.set(i),c.set(o.replace),u.set(J(i,r))}));return{getData:function(){var e=c.get()?[]:o.get(),t=a.get();return e.concat(t)},getFlattenedKeys:function(){var e=c.get()?[]:i.get(),t=u.get();return e.concat(t)}}},M_=Sk.trim,N_=function(e){return function(t){if(function(e){return l(e)&&1===e.nodeType}(t)){if(t.contentEditable===e)return!0;if(t.getAttribute("data-mce-contenteditable")===e)return!0}return!1}},R_=N_("true"),z_=N_("false"),B_=function(e,t,n,r,o){return{type:e,title:t,url:n,level:r,attach:o}},P_=function(e){return e.innerText||e.textContent},I_=function(e){return function(e){return e&&"A"===e.nodeName&&void 0!==(e.id||e.name)}(e)&&L_(e)},F_=function(e){return e&&/^(H[1-6])$/.test(e.nodeName)},L_=function(e){return function(e){for(;e=e.parentNode;){var t=e.contentEditable;if(t&&"inherit"!==t)return R_(e)}return!1}(e)&&!z_(e)},H_=function(e){return F_(e)&&L_(e)},V_=function(e){var t=function(e){return e.id?e.id:oa("h")}(e);return B_("header",P_(e),"#"+t,function(e){return F_(e)?parseInt(e.nodeName.substr(1),10):0}(e),(function(){e.id=t}))},j_=function(e){var t=e.id||e.name,n=P_(e);return B_("anchor",n||"#"+t,"#"+t,0,g)},U_=function(e){var t,n,r=(t="h1,h2,h3,h4,h5,h6,a:not([href])",n=e,j(ol(Re.fromDom(n),t),(function(e){return e.dom})));return r},W_=function(e){return M_(e.title).length>0},$_=function(e){var t=U_(e);return $(function(e){return j($(e,H_),V_)}(t).concat(function(e){return j($(e,I_),j_)}(t)),W_)},q_="tinymce-url-history",G_=function(e){return r(e)&&/^https?/.test(e)},K_=function(e){return o(e)&&he(e,(function(e){return!(i(t=e)&&t.length<=5&&Z(t,G_));var t})).isNone()},X_=function(){var e,t=Gy.getItem(q_);if(null===t)return{};try{e=JSON.parse(t)}catch(e){if(e instanceof SyntaxError)return console.log("Local storage "+q_+" was not valid JSON",e),{};throw e}return K_(e)?e:(console.log("Local storage "+q_+" was not valid format",e),{})},Y_=function(e){var t=X_();return be(t,e).getOr([])},J_=function(e,t){if(G_(e)){var n=X_(),r=be(n,t).getOr([]),o=$(r,(function(t){return t!==e}));n[t]=[e].concat(o).slice(0,5),function(e){if(!K_(e))throw new Error("Bad format for history:\n"+JSON.stringify(e));Gy.setItem(q_,JSON.stringify(e))}(n)}},Z_=function(e){return!!e},Q_=function(e){return de(Sk.makeMap(e,/[, ]/),Z_)},eE=function(e){return R.from(function(e){return e.getParam("file_picker_callback")}(e)).filter(f)},tE=function(e,t){var n=function(e){var t=R.some(function(e){return e.getParam("file_picker_types")}(e)).filter(Z_),n=R.some(function(e){return e.getParam("file_browser_callback_types")}(e)).filter(Z_),r=t.or(n).map(Q_);return eE(e).fold(C,(function(e){return r.fold(S,(function(e){return se(e).length>0&&e}))}))}(e);return u(n)?n?eE(e):R.none():n[t]?eE(e):R.none()},nE=function(e){return R.from(e).filter(r).getOrUndefined()},rE=function(e){return{getHistory:Y_,addToHistory:J_,getLinkInformation:function(){return function(e){return function(e){return!1===e.getParam("typeahead_urls")}(e)?R.none():R.some({targets:$_(e.getBody()),anchorTop:nE(Vb(e)),anchorBottom:nE(jb(e))})}(e)},getValidationHandler:function(){return function(e){return R.from(function(e){var t=e.getParam("file_picker_validator_handler",void 0,"function");return void 0===t?e.getParam("filepicker_validator_handler",void 0,"function"):t}(e))}(e)},getUrlPicker:function(t){return function(e,t){return tE(e,t).map((function(n){return function(i){return Dx((function(a){var u=O({filetype:t,fieldname:i.fieldname},R.from(i.meta).getOr({}));n.call(e,(function(e,t){if(!r(e))throw new Error("Expected value to be string");if(void 0!==t&&!o(t))throw new Error("Expected meta to be a object");a({value:e,meta:t})}),i.value,u)}))}}))}(e,t)}}},oE=function(e,t,n){var r=xo(!1),o=function(e){var t=xo(Rb(e)?"bottom":"top");return{isPositionedAtTop:function(){return"top"===t.get()},getDockingMode:t.get,setDockingMode:t.set}}(t),i={shared:{providers:{icons:function(){return t.ui.registry.getAll().icons},menuItems:function(){return t.ui.registry.getAll().menuItems},translate:wh.translate,isDisabled:function(){return t.mode.isReadOnly()||t.ui.isDisabled()},getSetting:t.getParam.bind(t)},interpreter:function(e){return function(e,t){return f_(s_,e,t)}(e,i)},anchors:v_(t,n,o.isPositionedAtTop),header:o,getSink:function(){return Wn.value(e)}},urlinput:rE(t),styleselect:D_(t),colorinput:C_(t),dialog:k_(t),isContextMenuOpen:function(){return r.get()},setContextMenuState:function(e){return r.set(e)}};return i},iE=Od,aE=cd,uE=h([fo("shell",!1),Xr("makeItem"),fo("setupItem",g),Mf("listBehaviours",[cp])]),cE=id({name:"items",overrides:function(){return{behaviours:wc([cp.config({})])}}}),sE=h([cE]),lE=h("CustomList"),fE=Nd({name:lE(),configFields:uE(),partFields:sE(),factory:function(e,t,n,r){var o=e.shell?{behaviours:[cp.config({})],components:[]}:{behaviours:[],components:t},i=function(t){return e.shell?R.some(t):vd(t,e,"items")};return{uid:e.uid,dom:e.dom,components:o.components,behaviours:Df(e.listBehaviours,o.behaviours),apis:{setItems:function(t,n){i(t).fold((function(){throw console.error("Custom List was defined to not be a shell, but no item container was specified in components"),new Error("Custom List was defined to not be a shell, but no item container was specified in components")}),(function(r){var o=cp.contents(r),i=n.length,a=i-o.length,u=a>0?H(a,(function(){return e.makeItem()})):[],c=o.slice(i);U(c,(function(e){return cp.remove(r,e)})),U(u,(function(e){return cp.append(r,e)}));var s=cp.contents(r);U(s,(function(r,o){e.setupItem(t,r,n[o],o)}))}))}}}},apis:{setItems:function(e,t,n){e.setItems(t,n)}}}),dE=h([Xr("dom"),fo("shell",!0),Ef("toolbarBehaviours",[cp])]),mE=h([id({name:"groups",overrides:function(){return{behaviours:wc([cp.config({})])}}})]),gE=Nd({name:"Toolbar",configFields:dE(),partFields:mE(),factory:function(e,t,n,r){var o=function(t){return e.shell?R.some(t):vd(t,e,"groups")},i=e.shell?{behaviours:[cp.config({})],components:[]}:{behaviours:[],components:t};return{uid:e.uid,dom:e.dom,components:i.components,behaviours:Df(e.toolbarBehaviours,i.behaviours),apis:{setGroups:function(e,t){o(e).fold((function(){throw console.error("Toolbar was defined to not be a shell, but no groups container was specified in components"),new Error("Toolbar was defined to not be a shell, but no groups container was specified in components")}),(function(e){cp.set(e,t)}))}},domModification:{attributes:{role:"group"}}}},apis:{setGroups:function(e,t,n){e.setGroups(t,n)}}}),pE=g,hE=C,vE=h([]),bE=Object.freeze({__proto__:null,setup:pE,isDocked:hE,getBehaviours:vE}),yE=function(e){return(xe(nn(e,"position"),"fixed")?R.none():Tt(e)).orThunk((function(){var t=Re.fromTag("span");return Ot(e).bind((function(e){Tn(e,t);var n=Tt(t);return An(t),n}))}))},wE=function(e){return yE(e).map(pn).getOrThunk((function(){return mn(0,0)}))},xE=Co([{static:[]},{absolute:["positionCss"]},{fixed:["positionCss"]}]),CE=function(e,t){var n=e.element;Ia(n,t.transitionClass),La(n,t.fadeOutClass),Ia(n,t.fadeInClass),t.onShow(e)},SE=function(e,t){var n=e.element;Ia(n,t.transitionClass),La(n,t.fadeInClass),Ia(n,t.fadeOutClass),t.onHide(e)},kE=function(e,t,n){return Z(e,(function(e){switch(e){case"bottom":return function(e,t){return e.bottom<=t.bottom}(t,n);case"top":return function(e,t){return e.y>=t.y}(t,n)}}))},OE=function(e,t){return t.getInitialPos().map((function(t){return Fn(t.bounds.x,t.bounds.y,bn(e),ln(e))}))},TE=function(e,t,n){return n.getInitialPos().bind((function(r){switch(n.clearInitialPos(),r.position){case"static":return R.some(xE.static());case"absolute":var o=yE(e).map(Ln).getOrThunk((function(){return Ln(Ht())}));return R.some(xE.absolute(zc("absolute",be(r.style,"left").map((function(e){return t.x-o.x})),be(r.style,"top").map((function(e){return t.y-o.y})),be(r.style,"right").map((function(e){return o.right-t.right})),be(r.style,"bottom").map((function(e){return o.bottom-t.bottom})))));default:return R.none()}}))},_E=function(e,t,n){var r=Ln(e);if(kE(n.getModes(),r,t))return R.none();!function(e,t,n){n.setInitialPos({style:rn(e),position:en(e,"position")||"static",bounds:t})}(e,r,n);var o=Vn(),i=r.x-o.x,a=t.y-o.y,u=o.bottom-t.bottom,c=r.y<=t.y;return R.some(xE.fixed(zc("fixed",R.some(i),c?R.some(a):R.none(),R.none(),c?R.none():R.some(u))))},EE=function(e,t,n){var r=e.element;return xe(nn(r,"position"),"fixed")?function(e,t,n){return OE(e,n).filter((function(e){return kE(n.getModes(),e,t)})).bind((function(t){return TE(e,t,n)}))}(r,t,n):_E(r,t,n)},AE=function(e,t,n){n.setDocked(!1),U(["left","right","top","bottom","position"],(function(t){return an(e.element,t)})),t.onUndocked(e)},DE=function(e,t,n,r){var o="fixed"===r.position;n.setDocked(o),Bc(e.element,r),(o?t.onDocked:t.onUndocked)(e)},ME=function(e,t,n,r,o){void 0===o&&(o=!1),t.contextual.each((function(t){t.lazyContext(e).each((function(i){var a=function(e,t){return e.yt.y}(i,r);a!==n.isVisible()&&(n.setVisible(a),o&&!a?(Va(e.element,[t.fadeOutClass]),t.onHide(e)):(a?CE:SE)(e,t))}))}))},NE=function(e,t,n){var r=e.element;n.setDocked(!1),function(e,t){var n=e.element;return OE(n,t).bind((function(e){return TE(n,e,t)}))}(e,n).each((function(r){r.fold((function(){return AE(e,t,n)}),(function(r){return DE(e,t,n,r)}),g)})),n.setVisible(!0),t.contextual.each((function(t){ja(r,[t.fadeInClass,t.fadeOutClass,t.transitionClass]),t.onShow(e)})),RE(e,t,n)},RE=function(e,t,n){e.getSystem().isConnected()&&function(e,t,n){var r=t.lazyViewport(e);n.isDocked()&&ME(e,t,n,r),EE(e,r,n).each((function(o){o.fold((function(){return AE(e,t,n)}),(function(r){return DE(e,t,n,r)}),(function(o){ME(e,t,n,r,!0),DE(e,t,n,o)}))}))}(e,t,n)},zE=function(e,t,n){n.isDocked()&&NE(e,t,n)},BE=Object.freeze({__proto__:null,refresh:RE,reset:zE,isDocked:function(e,t,n){return n.isDocked()},getModes:function(e,t,n){return n.getModes()},setModes:function(e,t,n,r){return n.setModes(r)}}),PE=Object.freeze({__proto__:null,events:function(e,t){return Bi([$i(Qo(),(function(n,r){e.contextual.each((function(e){Ha(n.element,e.transitionClass)&&(ja(n.element,[e.transitionClass,e.fadeInClass]),(t.isVisible()?e.onShown:e.onHidden)(n));r.stop()}))})),Fi(vi(),(function(n,r){RE(n,e,t)})),Fi(bi(),(function(n,r){zE(n,e,t)}))])}}),IE=[lo("contextual",[Zr("fadeInClass"),Zr("fadeOutClass"),Zr("transitionClass"),eo("lazyContext"),_u("onShow"),_u("onShown"),_u("onHide"),_u("onHidden")]),bo("lazyViewport",Vn),yo("modes",["top","bottom"],Nr),_u("onDocked"),_u("onUndocked")],FE=Cc({fields:IE,name:"docking",active:PE,apis:BE,state:Object.freeze({__proto__:null,init:function(e){var t=xo(!1),n=xo(!0),r=Qc(),o=xo(e.modes);return xa({isDocked:t.get,setDocked:t.set,getInitialPos:r.get,setInitialPos:r.set,clearInitialPos:r.clear,isVisible:n.get,setVisible:n.set,getModes:o.get,setModes:o.set,readState:function(){return"docked: "+t.get()+", visible: "+n.get()+", modes: "+o.get().join(",")}})}})}),LE=h(oa("toolbar-height-change")),HE={fadeInClass:"tox-editor-dock-fadein",fadeOutClass:"tox-editor-dock-fadeout",transitionClass:"tox-editor-dock-transition"},VE="tox-tinymce--toolbar-sticky-on",jE="tox-tinymce--toolbar-sticky-off",UE=function(e,t){return F(FE.getModes(e),t)},WE=function(e){var t=e.element;Ot(t).each((function(n){var r="padding-"+FE.getModes(e)[0];if(FE.isDocked(e)){var o=bn(n);Jt(t,"width",o+"px"),Jt(n,r,function(e){return fn(e)+(parseInt(en(e,"margin-top"),10)||0)+(parseInt(en(e,"margin-bottom"),10)||0)}(t)+"px")}else an(t,"width"),an(n,r)}))},$E=function(e,t){t?(La(e,HE.fadeOutClass),Va(e,[HE.transitionClass,HE.fadeInClass])):(La(e,HE.fadeInClass),Va(e,[HE.fadeOutClass,HE.transitionClass]))},qE=function(e,t){var n=Re.fromDom(e.getContainer());t?(Ia(n,VE),La(n,jE)):(Ia(n,jE),La(n,VE))},GE=function(e,t){var n=Qc(),r=t.getSink,o=function(e){r().each((function(t){return e(t.element)}))},i=function(t){e.inline||WE(t),qE(e,FE.isDocked(t)),t.getSystem().broadcastOn([sf()],{}),r().each((function(e){return e.getSystem().broadcastOn([sf()],{})}))},a=e.inline?[]:function(){var e;return[Tc.config({channels:(e={},e[LE()]={onReceive:WE},e)})]}();return _([gp.config({}),FE.config({contextual:O({lazyContext:function(t){var n=fn(t.element),r=e.inline?e.getContentAreaContainer():e.getContainer(),o=Ln(Re.fromDom(r)),i=o.height-n,a=o.y+(UE(t,"top")?0:n);return R.some(Fn(o.x,a,o.width,i))},onShow:function(){o((function(e){return $E(e,!0)}))},onShown:function(e){o((function(e){return ja(e,[HE.transitionClass,HE.fadeInClass])})),n.get().each((function(t){var r,o,i;r=e.element,i=xt(o=t),Mc(i).filter((function(e){return!bt(o,e)})).filter((function(e){return bt(e,Re.fromDom(i.dom.body))||wt(r,e)})).each((function(){return Ac(o)})),n.clear()}))},onHide:function(e){(function(e,t){return Nc(e).orThunk((function(){return t().toOptional().bind((function(e){return Nc(e.element)}))}))})(e.element,r).fold(n.clear,n.set),o((function(e){return $E(e,!1)}))},onHidden:function(){o((function(e){return ja(e,[HE.transitionClass])}))}},HE),lazyViewport:function(t){var n=Vn(),r=function(e){return e.getParam("toolbar_sticky_offset",0,"number")}(e),o=n.y+(UE(t,"top")?r:0),i=n.height-(UE(t,"bottom")?r:0);return Fn(n.x,o,n.width,i)},modes:[t.header.getDockingMode()],onDocked:i,onUndocked:i})],a,!0)},KE=Object.freeze({__proto__:null,setup:function(e,t,n){e.inline||(t.header.isPositionedAtTop()||e.on("ResizeEditor",(function(){n().each(FE.reset)})),e.on("ResizeWindow ResizeEditor",(function(){n().each(WE)})),e.on("SkinLoaded",(function(){n().each((function(e){FE.isDocked(e)?FE.reset(e):FE.refresh(e)}))})),e.on("FullscreenStateChanged",(function(){n().each(FE.reset)}))),e.on("AfterScrollIntoView",(function(e){n().each((function(t){FE.refresh(t);var n=t.element;Ym(n)&&function(e,t){var n=xt(t),r=n.dom.defaultView.innerHeight,o=Mn(n),i=Re.fromDom(e.elm),a=Hn(i),u=ln(i),c=a.y,s=c+u,l=pn(t),f=ln(t),d=l.top,m=d+f,g=Math.abs(d-o.top)<2,p=Math.abs(m-(o.top+r))<2;if(g&&cd){var h=c-r+u+f;Nn(o.left,h,n)}}(e,n)}))})),e.on("PostRender",(function(){qE(e,!1)}))},isDocked:function(e){return e().map(FE.isDocked).getOr(!1)},getBehaviours:GE}),XE=kr([Zr("type"),Yr("items",Tr([Er([Zr("name"),ro("items",Nr)]),Nr]))].concat(tv)),YE=[uo("text"),uo("tooltip"),uo("icon"),eo("fetch"),bo("onSetup",(function(){return g}))],JE=kr(_([Zr("type")],YE,!0)),ZE=function(e){return Vr("menubutton",JE,e)},QE=kr([Zr("type"),uo("tooltip"),uo("icon"),uo("text"),co("select"),eo("fetch"),bo("onSetup",(function(){return g})),ho("presets","normal",["normal","color","listpreview"]),fo("columns",1),eo("onAction"),eo("onItemAction")]),eA=Md({factory:function(e,t){var n={focus:np.focusIn,setMenus:function(e,n){var r=j(n,(function(e){var n={type:"menubutton",text:e.text,fetch:function(t){t(e.getItems())}},r=ZE(n).mapError((function(e){return Wr(e)})).getOrDie();return WO(r,"tox-mbtn",t.backstage,R.some("menuitem"))}));cp.set(e,r)}};return{uid:e.uid,dom:e.dom,components:[],behaviours:wc([cp.config({}),sp("menubar-events",[qi((function(t){e.onSetup(t)})),Fi(Wo(),(function(e,t){su(e.element,".tox-mbtn--active").each((function(n){lu(t.event.target,".tox-mbtn").each((function(t){bt(n,t)||e.getSystem().getByDom(n).each((function(n){e.getSystem().getByDom(t).each((function(e){sC.expand(e),sC.close(n),gp.focus(e)}))}))}))}))})),Fi(Si(),(function(e,t){t.event.prevFocus.bind((function(t){return e.getSystem().getByDom(t).toOptional()})).each((function(n){t.event.newFocus.bind((function(t){return e.getSystem().getByDom(t).toOptional()})).each((function(e){sC.isOpen(n)&&(sC.expand(e),sC.close(n))}))}))}))]),np.config({mode:"flow",selector:".tox-mbtn",onEscape:function(t){return e.onEscape(t),R.some(!0)}}),tx.config({})]),apis:n,domModification:{attributes:{role:"menubar"}}}},name:"silver.Menubar",configFields:[Xr("dom"),Xr("uid"),Xr("onEscape"),Xr("backstage"),fo("onSetup",g)],apis:{focus:function(e,t){e.focus(t)},setMenus:function(e,t,n){e.setMenus(t,n)}}}),tA=function(e,t){return t.getAnimationRoot.fold((function(){return e.element}),(function(t){return t(e)}))},nA=function(e){return e.dimension.property},rA=function(e,t){return e.dimension.getDimension(t)},oA=function(e,t){var n=tA(e,t);ja(n,[t.shrinkingClass,t.growingClass])},iA=function(e,t){La(e.element,t.openClass),Ia(e.element,t.closedClass),Jt(e.element,nA(t),"0px"),un(e.element)},aA=function(e,t){La(e.element,t.closedClass),Ia(e.element,t.openClass),an(e.element,nA(t))},uA=function(e,t,n,r){n.setCollapsed(),Jt(e.element,nA(t),rA(t,e.element)),un(e.element),oA(e,t),iA(e,t),t.onStartShrink(e),t.onShrunk(e)},cA=function(e,t,n,r){var o=r.getOrThunk((function(){return rA(t,e.element)}));n.setCollapsed(),Jt(e.element,nA(t),o),un(e.element);var i=tA(e,t);La(i,t.growingClass),Ia(i,t.shrinkingClass),iA(e,t),t.onStartShrink(e)},sA=function(e,t,n){var r=rA(t,e.element);("0px"===r?uA:cA)(e,t,n,R.some(r))},lA=function(e,t,n){var r=tA(e,t),o=Ha(r,t.shrinkingClass),i=rA(t,e.element);aA(e,t);var a=rA(t,e.element);(o?function(){Jt(e.element,nA(t),i),un(e.element)}:function(){iA(e,t)})(),La(r,t.shrinkingClass),Ia(r,t.growingClass),aA(e,t),Jt(e.element,nA(t),a),n.setExpanded(),t.onStartGrow(e)},fA=function(e,t,n){var r=tA(e,t);return!0===Ha(r,t.growingClass)},dA=function(e,t,n){var r=tA(e,t);return!0===Ha(r,t.shrinkingClass)},mA=Object.freeze({__proto__:null,refresh:function(e,t,n){if(n.isExpanded()){an(e.element,nA(t));var r=rA(t,e.element);Jt(e.element,nA(t),r)}},grow:function(e,t,n){n.isExpanded()||lA(e,t,n)},shrink:function(e,t,n){n.isExpanded()&&sA(e,t,n)},immediateShrink:function(e,t,n){n.isExpanded()&&uA(e,t,n)},hasGrown:function(e,t,n){return n.isExpanded()},hasShrunk:function(e,t,n){return n.isCollapsed()},isGrowing:fA,isShrinking:dA,isTransitioning:function(e,t,n){return fA(e,t)||dA(e,t)},toggleGrow:function(e,t,n){(n.isExpanded()?sA:lA)(e,t,n)},disableTransitions:oA}),gA=Object.freeze({__proto__:null,exhibit:function(e,t,n){var r=t.expanded;return Sa(r?{classes:[t.openClass],styles:{}}:{classes:[t.closedClass],styles:Oo(t.dimension.property,"0px")})},events:function(e,t){return Bi([$i(Qo(),(function(n,r){r.event.raw.propertyName===e.dimension.property&&(oA(n,e),t.isExpanded()&&an(n.element,e.dimension.property),(t.isExpanded()?e.onGrown:e.onShrunk)(n))}))])}}),pA=[Xr("closedClass"),Xr("openClass"),Xr("shrinkingClass"),Xr("growingClass"),oo("getAnimationRoot"),_u("onShrunk"),_u("onStartShrink"),_u("onGrown"),_u("onStartGrow"),fo("expanded",!1),Yr("dimension",$r("property",{width:[Mu("property","width"),Mu("getDimension",(function(e){return bn(e)+"px"}))],height:[Mu("property","height"),Mu("getDimension",(function(e){return ln(e)+"px"}))]}))],hA=Cc({fields:pA,name:"sliding",active:gA,apis:mA,state:Object.freeze({__proto__:null,init:function(e){var t=xo(e.expanded);return xa({isExpanded:function(){return!0===t.get()},isCollapsed:function(){return!1===t.get()},setCollapsed:y(t.set,!1),setExpanded:y(t.set,!0),readState:function(){return"expanded: "+t.get()}})}})}),vA="container",bA=[Ef("slotBehaviours",[])],yA=function(e){return""},wA=function(e,t){var n,r=function(t){return xd(e)},o=function(t,n){return function(r,o){return vd(r,e,o).map((function(e){return t(e,o)})).getOr(n)}},i=function(e,t){return"true"!==$t(e.element,"aria-hidden")},a=o(i,!1),u=o((function(e,t){if(i(e)){var n=e.element;Jt(n,"display","none"),Ut(n,"aria-hidden","true"),Di(e,ki(),{name:t,visible:!1})}})),c=(n=u,function(e,t){U(t,(function(t){return n(e,t)}))}),s=o((function(e,t){if(!i(e)){var n=e.element;an(n,"display"),Kt(n,"aria-hidden"),Di(e,ki(),{name:t,visible:!0})}})),l={getSlotNames:r,getSlot:function(t,n){return vd(t,e,n)},isShowing:a,hideSlot:u,hideAllSlots:function(e){return c(e,r())},showSlot:s};return{uid:e.uid,dom:e.dom,components:t,behaviours:Af(e.slotBehaviours),apis:l}},xA=de({getSlotNames:function(e,t){return e.getSlotNames(t)},getSlot:function(e,t,n){return e.getSlot(t,n)},isShowing:function(e,t,n){return e.isShowing(t,n)},hideSlot:function(e,t,n){return e.hideSlot(t,n)},hideAllSlots:function(e,t){return e.hideAllSlots(t)},showSlot:function(e,t,n){return e.showSlot(t,n)}},(function(e){return ya(e)})),CA=O(O({},xA),{sketch:function(e){var t=function(){var e=[];return{slot:function(t,n){return e.push(t),dd(vA,yA(t),n)},record:h(e)}}(),n=e(t),r=t.record(),o=j(r,(function(e){return rd({name:e,pname:yA(e)})}));return _d(vA,bA,o,wA,n)}}),SA=kr([uo("icon"),uo("tooltip"),bo("onShow",g),bo("onHide",g),bo("onSetup",(function(){return g}))]),kA=function(e){return{element:function(){return e.element.dom}}},OA=function(e,t){var n=j(se(t),(function(e){var n=t[e],r=jr(function(e){return Vr("sidebar",SA,e)}(n));return{name:e,getApi:kA,onSetup:r.onSetup,onShow:r.onShow,onHide:r.onHide}}));return j(n,(function(t){var r=xo(g);return e.slot(t.name,{dom:{tag:"div",classes:["tox-sidebar__pane"]},behaviours:ub([Qb(t,r),ey(t,r),Fi(ki(),(function(e,t){var r=t.event,o=K(n,(function(e){return e.name===r.name}));o.each((function(t){(r.visible?t.onShow:t.onHide)(t.getApi(e))}))}))])})}))},TA=function(e){return CA.sketch((function(t){return{dom:{tag:"div",classes:["tox-sidebar__pane-container"]},components:OA(t,e),slotBehaviours:ub([qi((function(e){return CA.hideAllSlots(e)}))])}}))},_A=function(e){return Pd.getCurrent(e).bind((function(e){return hA.isGrowing(e)||hA.hasGrown(e)?Pd.getCurrent(e).bind((function(e){return K(CA.getSlotNames(e),(function(t){return CA.isShowing(e,t)}))})):R.none()}))},EA=oa("FixSizeEvent"),AA=oa("AutoSizeEvent"),DA=Object.freeze({__proto__:null,block:function(e,t,n,r){Ut(e.element,"aria-busy",!0);var o=t.getRoot(e).getOr(e),i=wc([np.config({mode:"special",onTab:function(){return R.some(!0)},onShiftTab:function(){return R.some(!0)}}),gp.config({})]),a=r(o,i),u=o.getSystem().build(a);cp.append(o,tu(u)),u.hasConfigured(np)&&t.focus&&np.focusIn(u),n.isBlocked()||t.onBlock(e),n.blockWith((function(){return cp.remove(o,u)}))},unblock:function(e,t,n){Kt(e.element,"aria-busy"),n.isBlocked()&&t.onUnblock(e),n.clear()}}),MA=[bo("getRoot",R.none),vo("focus",!0),_u("onBlock"),_u("onUnblock")],NA=Cc({fields:MA,name:"blocking",apis:DA,state:Object.freeze({__proto__:null,init:function(){var e=Jc();return xa({readState:e.isSet,blockWith:function(t){e.set({destroy:t})},clear:e.clear,isBlocked:e.isSet})}})}),RA=function(e){var t=Re.fromHtml(e),n=_t(t),r=function(e){var t=void 0!==e.dom.attributes?e.dom.attributes:[];return G(t,(function(e,t){var n;return"class"===t.name?e:O(O({},e),((n={})[t.name]=t.value,n))}),{})}(t),o=function(e){return Array.prototype.slice.call(e.dom.classList,0)}(t),i=0===n.length?{}:{innerHtml:Yi(t)};return O({tag:Be(t),classes:o,attributes:r},i)},zA=function(e){return Pd.getCurrent(e).each((function(e){return Ac(e.element)}))},BA=function(e,t,n,r){var o=t.element;if(function(e,t){var n="tabindex",r="data-mce-tabindex";R.from(e.iframeElement).map(Re.fromDom).each((function(e){t?(qt(e,n).each((function(t){return Ut(e,r,t)})),Ut(e,n,-1)):(Kt(e,n),qt(e,r).each((function(t){Ut(e,n,t),Kt(e,r)})))}))}(e,n),n)NA.block(t,function(e){return function(t,n){return{dom:{tag:"div",attributes:{"aria-label":e.translate("Loading..."),tabindex:"0"},classes:["tox-throbber__busy-spinner"]},components:[{dom:RA('
    ')}]}}}(r)),an(o,"display"),Kt(o,"aria-hidden"),e.hasFocus()&&zA(t);else{var i=Pd.getCurrent(t).exists((function(e){return Dc(e.element)}));NA.unblock(t),Jt(o,"display","none"),Ut(o,"aria-hidden","true"),i&&e.focus()}},PA=function(e,t,n){var r=xo(!1),o=Qc(),i=function(n){var o;!r.get()||function(e){return"focusin"===e.type}(o=n)&&(o.composed?ie(o.composedPath()):R.from(o.target)).map(Re.fromDom).filter(Ie).exists((function(e){return Ha(e,"mce-pastebin")}))||(n.preventDefault(),zA(t()),e.editorManager.setActive(e))};e.inline||e.on("PreInit",(function(){e.dom.bind(e.getWin(),"focusin",i),e.on("BeforeExecCommand",(function(e){"mcefocus"===e.command.toLowerCase()&&!0!==e.value&&i(e)}))}));var a=function(o){o!==r.get()&&(r.set(o),BA(e,t(),o,n.providers),e.fire("AfterProgressState",{state:o}))};e.on("ProgressState",(function(t){if(o.on(vh.clearTimeout),d(t.time)){var n=vh.setEditorTimeout(e,(function(){return a(t.state)}),t.time);o.set(n)}else a(t.state),o.clear()}))},IA=function(e,t,n){return{within:e,extra:t,withinWidth:n}},FA=function(e,t,n){var r=function(e,t){var n=G(e,(function(e,n){return t(n,e.len).fold(h(e),(function(t){return{len:t.finish,list:e.list.concat([t])}}))}),{len:0,list:[]});return n.list}(e,(function(e,t){var r=n(e);return R.some({element:e,start:t,finish:t+r,width:r})})),o=$(r,(function(e){return e.finish<=t})),i=q(o,(function(e,t){return e+t.width}),0);return{within:o,extra:r.slice(o.length),withinWidth:i}},LA=function(e){return j(e,(function(e){return e.element}))},HA=function(e,t,n,r){var o=function(e,t,n){var r=FA(t,e,n);return 0===r.extra.length?R.some(r):R.none()}(e,t,n).getOrThunk((function(){return FA(t,e-n(r),n)})),i=o.within,a=o.extra,u=o.withinWidth;return 1===a.length&&a[0].width<=n(r)?function(e,t,n){var r=LA(e.concat(t));return IA(r,[],n)}(i,a,u):a.length>=1?function(e,t,n,r){var o=LA(e).concat([n]);return IA(o,LA(t),r)}(i,a,r,u):function(e,t,n){return IA(LA(e),[],n)}(i,0,u)},VA=function(e,t){var n=j(t,(function(e){return tu(e)}));gE.setGroups(e,n)},jA=function(e,t,n){var r=t.builtGroups.get();if(0!==r.length){var o=bd(e,t,"primary"),i=$x.getCoupled(e,"overflowGroup");Jt(o.element,"visibility","hidden");var a=r.concat([i]),u=ce(a,(function(e){return Nc(e.element).bind((function(t){return e.getSystem().getByDom(t).toOptional()}))}));n([]),VA(o,a);var c=bn(o.element),s=HA(c,t.builtGroups.get(),(function(e){return bn(e.element)}),i);0===s.extra.length?(cp.remove(o,i),n([])):(VA(o,s.within),n(s.extra)),an(o.element,"visibility"),un(o.element),u.each(gp.focus)}},UA=h([Ef("splitToolbarBehaviours",[$x]),Gr("builtGroups",(function(){return xo([])}))]),WA=h([Ou(["overflowToggledClass"]),co("getOverflowBounds"),Xr("lazySink"),Gr("overflowGroups",(function(){return xo([])}))].concat(UA())),$A=h([rd({factory:gE,schema:dE(),name:"primary"}),od({schema:dE(),name:"overflow"}),od({name:"overflow-button"}),od({name:"overflow-group"})]),qA=h((function(e,t){!function(e,t){var n=vn.max(e,t,["margin-left","border-left-width","padding-left","padding-right","border-right-width","margin-right"]);Jt(e,"max-width",n+"px")}(e,Math.floor(t))})),GA=h([Ou(["toggledClass"]),Xr("lazySink"),eo("fetch"),co("getBounds"),lo("fireDismissalEventInstead",[fo("event",xi())]),Os()]),KA=h([od({name:"button",overrides:function(e){return{dom:{attributes:{"aria-haspopup":"true"}},buttonBehaviours:wc([Tp.config({toggleClass:e.markers.toggledClass,aria:{mode:"expanded"},toggleOnExecute:!1})])}}}),od({factory:gE,schema:dE(),name:"toolbar",overrides:function(e){return{toolbarBehaviours:wc([np.config({mode:"cyclic",onEscape:function(t){return vd(t,e,"button").each(gp.focus),R.none()}})])}}})]),XA=function(e,t){var n=$x.getCoupled(e,"toolbarSandbox");uf.isOpen(n)?uf.close(n):uf.open(n,t.toolbar())},YA=function(e,t,n,r){var o=n.getBounds.map((function(e){return e()})),i=n.lazySink(e).getOrDie();Il.positionWithinBounds(i,t,{anchor:{type:"hotspot",hotspot:e,layouts:r,overrides:{maxWidthFunction:qA()}}},o)},JA=function(e,t,n,r,o){gE.setGroups(t,o),YA(e,t,n,r),Tp.on(e)},ZA=Nd({name:"FloatingToolbarButton",factory:function(e,t,n,r){return O(O({},bh.sketch(O(O({},r.button()),{action:function(e){XA(e,r)},buttonBehaviours:Nf({dump:r.button().buttonBehaviours},[$x.config({others:{toolbarSandbox:function(t){return function(e,t,n){var r=fu();return{dom:{tag:"div",attributes:{id:r.id}},behaviours:wc([np.config({mode:"special",onEscape:function(e){return uf.close(e),R.some(!0)}}),uf.config({onOpen:function(o,i){n.fetch().get((function(o){JA(e,i,n,t.layouts,o),r.link(e.element),np.focusIn(i)}))},onClose:function(){Tp.off(e),gp.focus(e),r.unlink(e.element)},isPartOf:function(t,n,r){return mu(n,r)||mu(e,r)},getAttachPoint:function(){return n.lazySink(e).getOrDie()}}),Tc.config({channels:O(O({},df(O({isExtraPart:C},n.fireDismissalEventInstead.map((function(e){return{fireEventInstead:{event:e.event}}})).getOr({})))),gf({doReposition:function(){uf.getState($x.getCoupled(e,"toolbarSandbox")).each((function(r){YA(e,r,n,t.layouts)}))}}))})])}}(t,n,e)}}})])}))),{apis:{setGroups:function(t,r){uf.getState($x.getCoupled(t,"toolbarSandbox")).each((function(o){JA(t,o,e,n.layouts,r)}))},reposition:function(t){uf.getState($x.getCoupled(t,"toolbarSandbox")).each((function(r){YA(t,r,e,n.layouts)}))},toggle:function(e){XA(e,r)},getToolbar:function(e){return uf.getState($x.getCoupled(e,"toolbarSandbox"))},isOpen:function(e){return uf.isOpen($x.getCoupled(e,"toolbarSandbox"))}}})},configFields:GA(),partFields:KA(),apis:{setGroups:function(e,t,n){e.setGroups(t,n)},reposition:function(e,t){e.reposition(t)},toggle:function(e,t){e.toggle(t)},getToolbar:function(e,t){return e.getToolbar(t)},isOpen:function(e,t){return e.isOpen(t)}}}),QA=h([Xr("items"),Ou(["itemSelector"]),Ef("tgroupBehaviours",[np])]),eD=h([ad({name:"items",unit:"item"})]),tD=Nd({name:"ToolbarGroup",configFields:QA(),partFields:eD(),factory:function(e,t,n,r){return{uid:e.uid,dom:e.dom,components:t,behaviours:Df(e.tgroupBehaviours,[np.config({mode:"flow",selector:e.markers.itemSelector})]),domModification:{attributes:{role:"toolbar"}}}}}),nD=function(e){return j(e,(function(e){return tu(e)}))},rD=function(e,t,n){jA(e,n,(function(r){n.overflowGroups.set(r),t.getOpt(e).each((function(e){ZA.setGroups(e,nD(r))}))}))},oD=Nd({name:"SplitFloatingToolbar",configFields:WA(),partFields:$A(),factory:function(e,t,n,r){var o=yh(ZA.sketch({fetch:function(){return Dx((function(t){t(nD(e.overflowGroups.get()))}))},layouts:{onLtr:function(){return[tc,ec]},onRtl:function(){return[ec,tc]},onBottomLtr:function(){return[rc,nc]},onBottomRtl:function(){return[nc,rc]}},getBounds:n.getOverflowBounds,lazySink:e.lazySink,fireDismissalEventInstead:{},markers:{toggledClass:e.markers.overflowToggledClass},parts:{button:r["overflow-button"](),toolbar:r.overflow()}}));return{uid:e.uid,dom:e.dom,components:t,behaviours:Df(e.splitToolbarBehaviours,[$x.config({others:{overflowGroup:function(){return tD.sketch(O(O({},r["overflow-group"]()),{items:[o.asSpec()]}))}}})]),apis:{setGroups:function(t,n){e.builtGroups.set(j(n,t.getSystem().build)),rD(t,o,e)},refresh:function(t){return rD(t,o,e)},toggle:function(e){o.getOpt(e).each((function(e){ZA.toggle(e)}))},isOpen:function(e){return o.getOpt(e).map(ZA.isOpen).getOr(!1)},reposition:function(e){o.getOpt(e).each((function(e){ZA.reposition(e)}))},getOverflow:function(e){return o.getOpt(e).bind(ZA.getToolbar)}},domModification:{attributes:{role:"group"}}}},apis:{setGroups:function(e,t,n){e.setGroups(t,n)},refresh:function(e,t){e.refresh(t)},reposition:function(e,t){e.reposition(t)},toggle:function(e,t){e.toggle(t)},isOpen:function(e,t){return e.isOpen(t)},getOverflow:function(e,t){return e.getOverflow(t)}}}),iD=h([Ou(["closedClass","openClass","shrinkingClass","growingClass","overflowToggledClass"]),_u("onOpened"),_u("onClosed")].concat(UA())),aD=h([rd({factory:gE,schema:dE(),name:"primary"}),rd({factory:gE,schema:dE(),name:"overflow",overrides:function(e){return{toolbarBehaviours:wc([hA.config({dimension:{property:"height"},closedClass:e.markers.closedClass,openClass:e.markers.openClass,shrinkingClass:e.markers.shrinkingClass,growingClass:e.markers.growingClass,onShrunk:function(t){vd(t,e,"overflow-button").each((function(e){Tp.off(e),gp.focus(e)})),e.onClosed(t)},onGrown:function(t){np.focusIn(t),e.onOpened(t)},onStartGrow:function(t){vd(t,e,"overflow-button").each(Tp.on)}}),np.config({mode:"acyclic",onEscape:function(t){return vd(t,e,"overflow-button").each(gp.focus),R.some(!0)}})])}}}),od({name:"overflow-button",overrides:function(e){return{buttonBehaviours:wc([Tp.config({toggleClass:e.markers.overflowToggledClass,aria:{mode:"pressed"},toggleOnExecute:!1})])}}}),od({name:"overflow-group"})]),uD=function(e,t){vd(e,t,"overflow-button").bind((function(){return vd(e,t,"overflow")})).each((function(n){cD(e,t),hA.toggleGrow(n)}))},cD=function(e,t){vd(e,t,"overflow").each((function(n){jA(e,t,(function(e){var t=j(e,(function(e){return tu(e)}));gE.setGroups(n,t)})),vd(e,t,"overflow-button").each((function(e){hA.hasGrown(n)&&Tp.on(e)})),hA.refresh(n)}))},sD=Nd({name:"SplitSlidingToolbar",configFields:iD(),partFields:aD(),factory:function(e,t,n,r){var o="alloy.toolbar.toggle";return{uid:e.uid,dom:e.dom,components:t,behaviours:Df(e.splitToolbarBehaviours,[$x.config({others:{overflowGroup:function(e){return tD.sketch(O(O({},r["overflow-group"]()),{items:[bh.sketch(O(O({},r["overflow-button"]()),{action:function(t){Ai(e,o)}}))]}))}}}),sp("toolbar-toggle-events",[Fi(o,(function(t){uD(t,e)}))])]),apis:{setGroups:function(t,n){!function(t,n){var r=j(n,t.getSystem().build);e.builtGroups.set(r)}(t,n),cD(t,e)},refresh:function(t){return cD(t,e)},toggle:function(t){return uD(t,e)},isOpen:function(t){return function(e,t){return vd(e,t,"overflow").map(hA.hasGrown).getOr(!1)}(t,e)}},domModification:{attributes:{role:"group"}}}},apis:{setGroups:function(e,t,n){e.setGroups(t,n)},refresh:function(e,t){e.refresh(t)},toggle:function(e,t){e.toggle(t)},isOpen:function(e,t){return e.isOpen(t)}}}),lD=function(e){var t=e.title.fold((function(){return{}}),(function(e){return{attributes:{title:e}}}));return{dom:O({tag:"div",classes:["tox-toolbar__group"]},t),components:[tD.parts.items({})],items:e.items,markers:{itemSelector:"*:not(.tox-split-button) > .tox-tbtn:not([disabled]), .tox-split-button:not([disabled]), .tox-toolbar-nav-js:not([disabled])"},tgroupBehaviours:wc([tx.config({}),gp.config({})])}},fD=function(e){return tD.sketch(lD(e))},dD=function(e,t){var n=qi((function(t){var n=j(e.initGroups,fD);gE.setGroups(t,n)}));return wc([Jb(e.providers.isDisabled),Gb(),np.config({mode:t,onEscape:e.onEscape,selector:".tox-toolbar__group"}),sp("toolbar-events",[n])])},mD=function(e){var t=e.cyclicKeying?"cyclic":"acyclic";return{uid:e.uid,dom:{tag:"div",classes:["tox-toolbar-overlord"]},parts:{"overflow-group":lD({title:R.none(),items:[]}),"overflow-button":GO({name:"more",icon:R.some("more-drawer"),disabled:!1,tooltip:R.some("More..."),primary:!1,borderless:!1},R.none(),e.providers)},splitToolbarBehaviours:dD(e,t)}},gD=function(e){var t=mD(e),n=oD.parts.primary({dom:{tag:"div",classes:["tox-toolbar__primary"]}});return oD.sketch(O(O({},t),{lazySink:e.getSink,getOverflowBounds:function(){var t=e.moreDrawerData.lazyHeader().element,n=Hn(t),r=St(t),o=Hn(r),i=Math.max(r.dom.scrollHeight,o.height);return Fn(n.x+4,o.y,n.width-8,i)},parts:O(O({},t.parts),{overflow:{dom:{tag:"div",classes:["tox-toolbar__overflow"],attributes:e.attributes}}}),components:[n],markers:{overflowToggledClass:"tox-tbtn--enabled"}}))},pD=function(e){var t=sD.parts.primary({dom:{tag:"div",classes:["tox-toolbar__primary"]}}),n=sD.parts.overflow({dom:{tag:"div",classes:["tox-toolbar__overflow"]}}),r=mD(e);return sD.sketch(O(O({},r),{components:[t,n],markers:{openClass:"tox-toolbar__overflow--open",closedClass:"tox-toolbar__overflow--closed",growingClass:"tox-toolbar__overflow--growing",shrinkingClass:"tox-toolbar__overflow--shrinking",overflowToggledClass:"tox-tbtn--enabled"},onOpened:function(e){e.getSystem().broadcastOn([LE()],{type:"opened"})},onClosed:function(e){e.getSystem().broadcastOn([LE()],{type:"closed"})}}))},hD=function(e){var t=e.cyclicKeying?"cyclic":"acyclic";return gE.sketch({uid:e.uid,dom:{tag:"div",classes:["tox-toolbar"].concat(e.type===hv.scrolling?["tox-toolbar--scrolling"]:[])},components:[gE.parts.groups({})],toolbarBehaviours:dD(e,t)})},vD=aE.optional({factory:eA,name:"menubar",schema:[Xr("backstage")]}),bD=aE.optional({factory:{sketch:function(e){return fE.sketch({uid:e.uid,dom:e.dom,listBehaviours:wc([np.config({mode:"acyclic",selector:".tox-toolbar"})]),makeItem:function(){return hD({type:e.type,uid:oa("multiple-toolbar-item"),cyclicKeying:!1,initGroups:[],providers:e.providers,onEscape:function(){return e.onEscape(),R.some(!0)}})},setupItem:function(e,t,n,r){gE.setGroups(t,n)},shell:!0})}},name:"multiple-toolbar",schema:[Xr("dom"),Xr("onEscape")]}),yD=aE.optional({factory:{sketch:function(e){var t=function(e){return e.type===hv.sliding?pD:e.type===hv.floating?gD:hD}(e);return t({type:e.type,uid:e.uid,onEscape:function(){return e.onEscape(),R.some(!0)},cyclicKeying:!1,initGroups:[],getSink:e.getSink,providers:e.providers,moreDrawerData:{lazyToolbar:e.lazyToolbar,lazyMoreButton:e.lazyMoreButton,lazyHeader:e.lazyHeader},attributes:e.attributes})}},name:"toolbar",schema:[Xr("dom"),Xr("onEscape"),Xr("getSink")]}),wD=aE.optional({factory:{sketch:function(e){var t=e.editor,n=e.sticky?GE:vE;return{uid:e.uid,dom:e.dom,components:e.components,behaviours:wc(n(t,e.sharedBackstage))}}},name:"header",schema:[Xr("dom")]}),xD=aE.optional({name:"socket",schema:[Xr("dom")]}),CD=aE.optional({factory:{sketch:function(e){return{uid:e.uid,dom:{tag:"div",classes:["tox-sidebar"],attributes:{role:"complementary"}},components:[{dom:{tag:"div",classes:["tox-sidebar__slider"]},components:[],behaviours:wc([tx.config({}),gp.config({}),hA.config({dimension:{property:"width"},closedClass:"tox-sidebar--sliding-closed",openClass:"tox-sidebar--sliding-open",shrinkingClass:"tox-sidebar--sliding-shrinking",growingClass:"tox-sidebar--sliding-growing",onShrunk:function(e){Pd.getCurrent(e).each(CA.hideAllSlots),Ai(e,AA)},onGrown:function(e){Ai(e,AA)},onStartGrow:function(e){Di(e,EA,{width:nn(e.element,"width").getOr("")})},onStartShrink:function(e){Di(e,EA,{width:bn(e.element)+"px"})}}),cp.config({}),Pd.config({find:function(e){var t=cp.contents(e);return ie(t)}})])}],behaviours:wc([yk(0),sp("sidebar-sliding-events",[Fi(EA,(function(e,t){Jt(e.element,"width",t.event.width)})),Fi(AA,(function(e,t){an(e.element,"width")}))])])}}},name:"sidebar",schema:[Xr("dom")]}),SD=aE.optional({factory:{sketch:function(e){return{uid:e.uid,dom:{tag:"div",attributes:{"aria-hidden":"true"},classes:["tox-throbber"],styles:{display:"none"}},behaviours:wc([cp.config({}),NA.config({focus:!1}),Pd.config({find:function(e){return ie(e.components())}})]),components:[]}}},name:"throbber",schema:[Xr("dom")]}),kD=Nd({name:"OuterContainer",factory:function(e,t,n){var r={getSocket:function(t){return iE.getPart(t,e,"socket")},setSidebar:function(t,n){iE.getPart(t,e,"sidebar").each((function(e){return function(e,t){Pd.getCurrent(e).each((function(e){return cp.set(e,[TA(t)])}))}(e,n)}))},toggleSidebar:function(t,n){iE.getPart(t,e,"sidebar").each((function(e){return function(e,t){Pd.getCurrent(e).each((function(e){Pd.getCurrent(e).each((function(n){hA.hasGrown(e)?CA.isShowing(n,t)?hA.shrink(e):(CA.hideAllSlots(n),CA.showSlot(n,t)):(CA.hideAllSlots(n),CA.showSlot(n,t),hA.grow(e))}))}))}(e,n)}))},whichSidebar:function(t){return iE.getPart(t,e,"sidebar").bind(_A).getOrNull()},getHeader:function(t){return iE.getPart(t,e,"header")},getToolbar:function(t){return iE.getPart(t,e,"toolbar")},setToolbar:function(t,n){iE.getPart(t,e,"toolbar").each((function(e){e.getApis().setGroups(e,n)}))},setToolbars:function(t,n){iE.getPart(t,e,"multiple-toolbar").each((function(e){fE.setItems(e,n)}))},refreshToolbar:function(t){iE.getPart(t,e,"toolbar").each((function(e){return e.getApis().refresh(e)}))},toggleToolbarDrawer:function(t){iE.getPart(t,e,"toolbar").each((function(e){var t,n;t=e.getApis().toggle,n=function(t){return t(e)},null!=t?R.some(n(t)):R.none()}))},isToolbarDrawerToggled:function(t){return iE.getPart(t,e,"toolbar").bind((function(e){return R.from(e.getApis().isOpen).map((function(t){return t(e)}))})).getOr(!1)},getThrobber:function(t){return iE.getPart(t,e,"throbber")},focusToolbar:function(t){iE.getPart(t,e,"toolbar").orThunk((function(){return iE.getPart(t,e,"multiple-toolbar")})).each((function(e){np.focusIn(e)}))},setMenubar:function(t,n){iE.getPart(t,e,"menubar").each((function(e){eA.setMenus(e,n)}))},focusMenubar:function(t){iE.getPart(t,e,"menubar").each((function(e){eA.focus(e)}))}};return{uid:e.uid,dom:e.dom,components:t,apis:r,behaviours:e.behaviours}},configFields:[Xr("dom"),Xr("behaviours")],partFields:[wD,vD,yD,bD,xD,CD,SD],apis:{getSocket:function(e,t){return e.getSocket(t)},setSidebar:function(e,t,n){e.setSidebar(t,n)},toggleSidebar:function(e,t,n){e.toggleSidebar(t,n)},whichSidebar:function(e,t){return e.whichSidebar(t)},getHeader:function(e,t){return e.getHeader(t)},getToolbar:function(e,t){return e.getToolbar(t)},setToolbar:function(e,t,n){var r=j(n,(function(e){return fD(e)}));e.setToolbar(t,r)},setToolbars:function(e,t,n){var r=j(n,(function(e){return j(e,fD)}));e.setToolbars(t,r)},refreshToolbar:function(e,t){return e.refreshToolbar(t)},toggleToolbarDrawer:function(e,t){e.toggleToolbarDrawer(t)},isToolbarDrawerToggled:function(e,t){return e.isToolbarDrawerToggled(t)},getThrobber:function(e,t){return e.getThrobber(t)},setMenubar:function(e,t,n){e.setMenubar(t,n)},focusMenubar:function(e,t){e.focusMenubar(t)},focusToolbar:function(e,t){e.focusToolbar(t)}}}),OD={file:{title:"File",items:"newdocument restoredraft | preview | export print | deleteallconversations"},edit:{title:"Edit",items:"undo redo | cut copy paste pastetext | selectall | searchreplace"},view:{title:"View",items:"code | visualaid visualchars visualblocks | spellchecker | preview fullscreen | showcomments"},insert:{title:"Insert",items:"image link media addcomment pageembed template codesample inserttable | charmap emoticons hr | pagebreak nonbreaking anchor toc | insertdatetime"},format:{title:"Format",items:"bold italic underline strikethrough superscript subscript codeformat | formats blockformats fontformats fontsizes align lineheight | forecolor backcolor | language | removeformat"},tools:{title:"Tools",items:"spellchecker spellcheckerlanguage | a11ycheck code wordcount"},table:{title:"Table",items:"inserttable | cell row column | advtablesort | tableprops deletetable"},help:{title:"Help",items:"help"}},TD=function(e){return"string"==typeof e?e.split(" "):e},_D=function(e,t){var n=O(O({},OD),t.menus),r=se(t.menus).length>0,o=void 0===t.menubar||!0===t.menubar?TD("file edit view insert format tools table help"):TD(!1===t.menubar?"":t.menubar),i=$(o,(function(e){var n=ye(OD,e);return r?n||be(t.menus,e).exists((function(e){return ye(e,"items")})):n})),a=j(i,(function(r){var o=n[r];return function(e,t,n){var r=function(e){return e.getParam("removed_menuitems","")}(n).split(/[ ,]/);return{text:e.title,getItems:function(){return J(e.items,(function(e){var n=e.toLowerCase();return 0===n.trim().length||L(r,(function(e){return e===n}))?[]:"separator"===n||"|"===n?[{type:"separator"}]:t.menuItems[n]?[t.menuItems[n]]:[]}))}}}({title:o.title,items:TD(o.items)},t,e)}));return $(a,(function(e){return e.getItems().length>0&&L(e.getItems(),(function(e){return"separator"!==e.type}))}))},ED=function(e){var t=function(){e._skinLoaded=!0,function(e){e.fire("SkinLoaded")}(e)};return function(){e.initialized?t():e.on("init",t)}},AD=function(e,t,n){return new $h((function(r,o){n.load(t,r,o),e.on("remove",(function(){return n.unload(t)}))}))},DD=function(e,t){return AD(e,t+"/skin.min.css",e.ui.styleSheetLoader)},MD=function(e,t){var n;return(n=Re.fromDom(e.getElement()),Pt(n).isSome())?AD(e,t+"/skin.shadowdom.min.css",hb.DOM.styleSheetLoader):$h.resolve()},ND=function(e,t){var n=function(e){var t=e.getParam("skin"),n=e.getParam("skin_url");if(!1!==t){var r=t||"oxide";n=n?e.documentBaseURI.toAbsolute(n):vb.baseURL+"/skins/ui/"+r}return n}(t);n&&t.contentCSS.push(n+(e?"/content.inline":"/content")+".min.css"),!1===function(e){return!1===e.getParam("skin")}(t)&&r(n)?$h.all([DD(t,n),MD(t,n)]).then(ED(t),function(e,t){return function(){return function(e,t){return e.fire("SkinLoadError",t)}(e,{message:t})}}(t,"Skin could not be loaded")):ED(t)()},RD=y(ND,!1),zD=y(ND,!0),BD=function(e,t){return function(n){var r=Zc(),o=function(){n.setActive(e.formatter.match(t));var o=e.formatter.formatChanged(t,n.setActive);r.set(o)};return e.initialized?o():e.once("init",o),function(){e.off("init",o),r.clear()}}},PD=function(e,t,n){return function(r){var o=function(){return n(r)},i=function(){n(r),e.on(t,o)};return e.initialized?i():e.once("init",i),function(){e.off("init",i),e.off(t,o)}}},ID=function(e){return function(t){return function(){e.undoManager.transact((function(){e.focus(),e.execCommand("mceToggleFormat",!1,t.format)}))}}},FD=function(e,t){return function(){return e.execCommand(t)}},LD=function(e,t,n){var r=function(e,r,i,a){var u=t.shared.providers.translate(e.title);if("separator"===e.type)return R.some({type:"separator",text:u});if("submenu"===e.type){var c=J(e.getStyleItems(),(function(e){return o(e,r,a)}));return 0===r&&c.length<=0?R.none():R.some({type:"nestedmenuitem",text:u,disabled:c.length<=0,getSubmenuItems:function(){return J(e.getStyleItems(),(function(e){return o(e,r,a)}))}})}return R.some(O({type:"togglemenuitem",text:u,icon:e.icon,active:e.isSelected(a),disabled:i,onAction:n.onAction(e)},e.getStylePreview().fold((function(){return{}}),(function(e){return{meta:{style:e}}}))))},o=function(e,t,o){var i="formatter"===e.type&&n.isInvalid(e);return 0===t?i?[]:r(e,t,!1,o).toArray():r(e,t,i,o).toArray()},i=function(e){var t=n.getCurrentValue(),r=n.shouldHide?0:1;return J(e,(function(e){return o(e,r,t)}))};return{validateItems:i,getFetch:function(e,t){return function(n,r){var o=t(),a=i(o);r(jO(a,vv.CLOSE_ON_EXECUTE,e,!1))}}}},HD=function(e,t,n){var r=n.dataset,o="basic"===r.type?function(){return j(r.data,(function(e){return E_(e,n.isSelectedFor,n.getPreviewFor)}))}:r.getData;return{items:LD(0,t,n),getStyleItems:o}},VD=function(e,t,n){var r=HD(0,t,n),o=r.items,i=r.getStyleItems,a=PD(e,"NodeChange",(function(e){var t=e.getComponent();n.updateText(t)}));return PO({text:n.icon.isSome()?R.none():n.text,icon:n.icon,tooltip:R.from(n.tooltip),role:R.none(),fetch:o.getFetch(t,i),onSetup:a,getApi:function(e){return{getComponent:h(e)}},columns:1,presets:"normal",classes:n.icon.isSome()?[]:["bespoke"],dropdownBehaviours:[]},"tox-tbtn",t.shared)};!function(e){e[e.SemiColon=0]="SemiColon",e[e.Space=1]="Space"}(OT||(OT={}));var jD,UD,WD,$D,qD,GD=function(e,t,n,r){var o=function(e){return j(e,(function(e){var t=e,n=e,r=e.split("=");return r.length>1&&(t=r[0],n=r[1]),{title:t,format:n}}))}(function(e,t){return t===OT.SemiColon?e.replace(/;$/,"").split(";"):e.split(" ")}(e.getParam(t,n,"string"),r));return{type:"basic",data:o}},KD=[{title:"Left",icon:"align-left",format:"alignleft",command:"JustifyLeft"},{title:"Center",icon:"align-center",format:"aligncenter",command:"JustifyCenter"},{title:"Right",icon:"align-right",format:"alignright",command:"JustifyRight"},{title:"Justify",icon:"align-justify",format:"alignjustify",command:"JustifyFull"}],XD=function(e){var t={type:"basic",data:KD};return{tooltip:"Align",text:R.none(),icon:R.some("align-left"),isSelectedFor:function(t){return function(){return e.formatter.match(t)}},getCurrentValue:R.none,getPreviewFor:function(e){return R.none},onAction:function(t){return function(){return K(KD,(function(e){return e.format===t.format})).each((function(t){return e.execCommand(t.command)}))}},updateText:function(t){var n=K(KD,(function(t){return e.formatter.match(t.format)})),r=n.fold(h("left"),(function(e){return e.title.toLowerCase()}));Di(t,BO,{icon:"align-"+r})},dataset:t,shouldHide:!1,isInvalid:function(t){return!e.formatter.canApply(t.format)}}},YD=["-apple-system","Segoe UI","Roboto","Helvetica Neue","sans-serif"],JD=function(e){var t=e.split(/\s*,\s*/);return j(t,(function(e){return e.replace(/^['"]+|['"]+$/g,"")}))},ZD=function(e){var t="System Font",n=function(){var n=function(e){return e?JD(e)[0]:""},o=e.queryCommandValue("FontName"),i=r.data,a=o?o.toLowerCase():"",u=K(i,(function(e){var t=e.format;return t.toLowerCase()===a||n(t).toLowerCase()===n(a).toLowerCase()})).orThunk((function(){return ke(function(e){var t;return 0===e.indexOf("-apple-system")&&(t=JD(e.toLowerCase()),Z(YD,(function(e){return t.indexOf(e.toLowerCase())>-1})))}(a),{title:t,format:a})}));return{matchOpt:u,font:o}},r=GD(e,"font_formats","Andale Mono=andale mono,monospace;Arial=arial,helvetica,sans-serif;Arial Black=arial black,sans-serif;Book Antiqua=book antiqua,palatino,serif;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,palatino,serif;Helvetica=helvetica,arial,sans-serif;Impact=impact,sans-serif;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco,monospace;Times New Roman=times new roman,times,serif;Trebuchet MS=trebuchet ms,geneva,sans-serif;Verdana=verdana,geneva,sans-serif;Webdings=webdings;Wingdings=wingdings,zapf dingbats",OT.SemiColon);return{tooltip:"Fonts",text:R.some(t),icon:R.none(),isSelectedFor:function(e){return function(t){return t.exists((function(t){return t.format===e}))}},getCurrentValue:function(){return n().matchOpt},getPreviewFor:function(e){return function(){return R.some({tag:"div",styles:-1===e.indexOf("dings")?{"font-family":e}:{}})}},onAction:function(t){return function(){e.undoManager.transact((function(){e.focus(),e.execCommand("FontName",!1,t.format)}))}},updateText:function(e){var t=n(),r=t.matchOpt,o=t.font,i=r.fold(h(o),(function(e){return e.title}));Di(e,zO,{text:i})},dataset:r,shouldHide:!1,isInvalid:C}},QD={"8pt":"1","10pt":"2","12pt":"3","14pt":"4","18pt":"5","24pt":"6","36pt":"7"},eM={"xx-small":"7pt","x-small":"8pt",small:"10pt",medium:"12pt",large:"14pt","x-large":"18pt","xx-large":"24pt"},tM=function(e,t){return/[0-9.]+px$/.test(e)?function(e,t){var n=Math.pow(10,t);return Math.round(e*n)/n}(72*parseInt(e,10)/96,t||0)+"pt":be(eM,e).getOr(e)},nM=function(e){var t=function(){var t=R.none(),n=r.data,o=e.queryCommandValue("FontSize");if(o)for(var i=function(e){var r=tM(o,e),i=function(e){return be(QD,e).getOr("")}(r);t=K(n,(function(e){return e.format===o||e.format===r||e.format===i}))},a=3;t.isNone()&&a>=0;a--)i(a);return{matchOpt:t,size:o}},n=h(R.none),r=GD(e,"fontsize_formats","8pt 10pt 12pt 14pt 18pt 24pt 36pt",OT.Space);return{tooltip:"Font sizes",text:R.some("12pt"),icon:R.none(),isSelectedFor:function(e){return function(t){return t.exists((function(t){return t.format===e}))}},getPreviewFor:n,getCurrentValue:function(){return t().matchOpt},onAction:function(t){return function(){e.undoManager.transact((function(){e.focus(),e.execCommand("FontSize",!1,t.format)}))}},updateText:function(e){var n=t(),r=n.matchOpt,o=n.size,i=r.fold(h(o),(function(e){return e.title}));Di(e,zO,{text:i})},dataset:r,shouldHide:!1,isInvalid:C}},rM=function(e,t){var n=t(),r=j(n,(function(e){return e.format}));return R.from(e.formatter.closest(r)).bind((function(e){return K(n,(function(t){return t.format===e}))})).orThunk((function(){return ke(e.formatter.match("p"),{title:"Paragraph",format:"p"})}))},oM=function(e){var t="Paragraph",n=GD(e,"block_formats","Paragraph=p;Heading 1=h1;Heading 2=h2;Heading 3=h3;Heading 4=h4;Heading 5=h5;Heading 6=h6;Preformatted=pre",OT.SemiColon);return{tooltip:"Blocks",text:R.some(t),icon:R.none(),isSelectedFor:function(t){return function(){return e.formatter.match(t)}},getCurrentValue:R.none,getPreviewFor:function(t){return function(){var n=e.formatter.get(t);return R.some({tag:n.length>0&&(n[0].inline||n[0].block)||"div",styles:e.dom.parseStyle(e.formatter.getCssText(t))})}},onAction:ID(e),updateText:function(r){var o=rM(e,(function(){return n.data})).fold(h(t),(function(e){return e.title}));Di(r,zO,{text:o})},dataset:n,shouldHide:!1,isInvalid:function(t){return!e.formatter.canApply(t.format)}}},iM=function(e,t){var n="Paragraph";return{tooltip:"Formats",text:R.some(n),icon:R.none(),isSelectedFor:function(t){return function(){return e.formatter.match(t)}},getCurrentValue:R.none,getPreviewFor:function(t){return function(){var n=e.formatter.get(t);return void 0!==n?R.some({tag:n.length>0&&(n[0].inline||n[0].block)||"div",styles:e.dom.parseStyle(e.formatter.getCssText(t))}):R.none()}},onAction:ID(e),updateText:function(t){var r=function(e){var t=e.items;return void 0!==t&&t.length>0?J(t,r):[{title:e.title,format:e.format}]},o=J(__(e),r),i=rM(e,h(o)).fold(h(n),(function(e){return e.title}));Di(t,zO,{text:i})},shouldHide:e.getParam("style_formats_autohide",!1,"boolean"),isInvalid:function(t){return!e.formatter.canApply(t.format)},dataset:t}},aM=Object.freeze({__proto__:null,events:function(e,t){var n=function(n,r){e.updateState.each((function(e){var o=e(n,r);t.set(o)})),e.renderComponents.each((function(e){var o=e(r,t.get()),i=j(o,n.getSystem().build);Vl(n,i)}))};return Bi([Fi(ui(),(function(t,r){var o=r;if(!o.universal){var i=e.channel;F(o.channels,i)&&n(t,o.data)}})),qi((function(t,r){e.initialData.each((function(e){n(t,e)}))}))])}}),uM=Object.freeze({__proto__:null,getState:function(e,t,n){return n}}),cM=[Xr("channel"),oo("renderComponents"),oo("updateState"),oo("initialData")],sM=Object.freeze({__proto__:null,init:function(){var e=xo(R.none());return{readState:function(){return e.get().getOr("none")},get:e.get,set:e.set,clear:function(){return e.set(R.none())}}}}),lM=Cc({fields:cM,name:"reflecting",active:aM,apis:uM,state:sM}),fM=h([Xr("toggleClass"),Xr("fetch"),Au("onExecute"),fo("getHotspot",R.some),fo("getAnchorOverrides",h({})),Os(),Au("onItemExecute"),oo("lazySink"),Xr("dom"),_u("onOpen"),Ef("splitDropdownBehaviours",[$x,np,gp]),fo("matchWidth",!1),fo("useMinWidth",!1),fo("eventOrder",{}),oo("role")].concat(aC())),dM=rd({factory:bh,schema:[Xr("dom")],name:"arrow",defaults:function(){return{buttonBehaviours:wc([gp.revoke()])}},overrides:function(e){return{dom:{tag:"span",attributes:{role:"presentation"}},action:function(t){t.getSystem().getByUid(e.uid).each(Mi)},buttonBehaviours:wc([Tp.config({toggleOnExecute:!1,toggleClass:e.toggleClass})])}}}),mM=rd({factory:bh,schema:[Xr("dom")],name:"button",defaults:function(){return{buttonBehaviours:wc([gp.revoke()])}},overrides:function(e){return{dom:{tag:"span",attributes:{role:"presentation"}},action:function(t){t.getSystem().getByUid(e.uid).each((function(n){e.onExecute(n,t)}))}}}}),gM=h([dM,mM,id({factory:{sketch:function(e){return{uid:e.uid,dom:{tag:"span",styles:{display:"none"},attributes:{"aria-hidden":"true"},innerHtml:e.text}}}},schema:[Xr("text")],name:"aria-descriptor"}),od({schema:[ku()],name:"menu",defaults:function(e){return{onExecute:function(t,n){t.getSystem().getByUid(e.uid).each((function(r){e.onItemExecute(r,t,n)}))}}}}),Gx()]),pM=Nd({name:"SplitDropdown",configFields:fM(),partFields:gM(),factory:function(e,t,n,r){var o,i=function(e){Pd.getCurrent(e).each((function(e){um.highlightFirst(e),np.focusIn(e)}))},a=function(t){eC(e,v,t,r,i,kx.HighlightFirst).get(g)},u=function(t){var n=bd(t,e,"button");return Mi(n),R.some(!0)},c=O(O({},Bi([qi((function(t,n){vd(t,e,"aria-descriptor").each((function(e){var n=oa("aria");Ut(e.element,"id",n),Ut(t.element,"aria-describedby",n)}))}))])),Ep(R.some(a))),s={repositionMenus:function(e){Tp.isOn(e)&&iC(e)}};return{uid:e.uid,dom:e.dom,components:t,apis:s,eventOrder:O(O({},e.eventOrder),(o={},o[ci()]=["disabling","toggling","alloy.base.behaviour"],o)),events:c,behaviours:Df(e.splitDropdownBehaviours,[$x.config({others:{sandbox:function(t){var n=bd(t,e,"arrow");return oC(e,t,{onOpen:function(){Tp.on(n),Tp.on(t)},onClose:function(){Tp.off(n),Tp.off(t)}})}}}),np.config({mode:"special",onSpace:u,onEnter:u,onDown:function(e){return a(e),R.some(!0)}}),gp.config({}),Tp.config({toggleOnExecute:!1,aria:{mode:"expanded"}})]),domModification:{attributes:{role:e.role.getOr("button"),"aria-haspopup":!0}}}},apis:{repositionMenus:function(e,t){return e.repositionMenus(t)}}}),hM=function(e){return{isDisabled:function(){return Yd.isDisabled(e)},setDisabled:function(t){return Yd.set(e,t)}}},vM=function(e){return{setActive:function(t){Tp.set(e,t)},isActive:function(){return Tp.isOn(e)},isDisabled:function(){return Yd.isDisabled(e)},setDisabled:function(t){return Yd.set(e,t)}}},bM=function(e,t){return e.map((function(e){return{"aria-label":t.translate(e),title:t.translate(e)}})).getOr({})},yM=oa("focus-button"),wM=function(e,t,n,r,o,i){var a;return{dom:{tag:"button",classes:["tox-tbtn"].concat(t.isSome()?["tox-tbtn--select"]:[]),attributes:bM(n,i)},components:ry([e.map((function(e){return AO(e,i.icons)})),t.map((function(e){return MO(e,"tox-tbtn",i)}))]),eventOrder:(a={},a[Ho()]=["focusing","alloy.base.behaviour","common-button-display-events"],a),buttonBehaviours:wc([Jb(i.isDisabled),Gb(),sp("common-button-display-events",[Fi(Ho(),(function(e,t){t.event.prevent(),Ai(e,yM)}))])].concat(r.map((function(n){return lM.config({channel:n,initialData:{icon:e,text:t},renderComponents:function(e,t){return ry([e.icon.map((function(e){return AO(e,i.icons)})),e.text.map((function(e){return MO(e,"tox-tbtn",i)}))])}})})).toArray()).concat(o.getOr([])))}},xM=function(e,t,n){var r,o=xo(g),i=wM(e.icon,e.text,e.tooltip,R.none(),R.none(),n);return bh.sketch({dom:i.dom,components:i.components,eventOrder:RO,buttonBehaviours:wc([sp("toolbar-button-events",[(r={onAction:e.onAction,getApi:t.getApi},Xi((function(e,t){Zb(r,e)((function(t){Di(e,NO,{buttonApi:t}),r.onAction(t)}))}))),Qb(t,o),ey(t,o)]),Jb((function(){return e.disabled||n.isDisabled()})),Gb()].concat(t.toolbarButtonBehaviours))})},CM=function(e,t,n){return xM(e,{toolbarButtonBehaviours:[].concat(n.length>0?[sp("toolbarButtonWith",n)]:[]),getApi:hM,onSetup:e.onSetup},t)},SM=function(e,t,n){return ur(xM(e,{toolbarButtonBehaviours:[cp.config({}),Tp.config({toggleClass:"tox-tbtn--enabled",aria:{mode:"pressed"},toggleOnExecute:!1})].concat(n.length>0?[sp("toolbarToggleButtonWith",n)]:[]),getApi:vM,onSetup:e.onSetup},t))},kM=function(e,t,n){return function(r){return Dx((function(e){return t.fetch(e)})).map((function(o){return R.from(Nw(ur(dw(oa("menu-value"),o,(function(n){t.onItemAction(e(r),n)}),t.columns,t.presets,vv.CLOSE_ON_EXECUTE,t.select.getOr(C),n),{movement:gw(t.columns,t.presets),menuBehaviours:ub("auto"!==t.columns?[]:[qi((function(e,n){ib(e,4,Av(t.presets)).each((function(t){var n=t.numRows,r=t.numColumns;np.setGridSize(e,n,r)}))}))])})))}))}},OM=[{name:"history",items:["undo","redo"]},{name:"styles",items:["styleselect"]},{name:"formatting",items:["bold","italic"]},{name:"alignment",items:["alignleft","aligncenter","alignright","alignjustify"]},{name:"indentation",items:["outdent","indent"]},{name:"permanent pen",items:["permanentpen"]},{name:"comments",items:["addcomment"]}],TM=function(e,t){return function(n,r,o){var i=e(n).mapError((function(e){return Wr(e)})).getOrDie();return t(i,r,o)}},_M={button:TM(rv,(function(e,t){return n=e,r=t.backstage.shared.providers,CM(n,r,[]);var n,r})),togglebutton:TM(av,(function(e,t){return n=e,r=t.backstage.shared.providers,SM(n,r,[]);var n,r})),menubutton:TM(ZE,(function(e,t){return WO(e,"tox-tbtn",t.backstage,R.none())})),splitbutton:TM((function(e){return Vr("SplitButton",QE,e)}),(function(e,t){return function(e,t){var n,r=oa("channel-update-split-dropdown-display"),o=function(e){return{isDisabled:function(){return Yd.isDisabled(e)},setDisabled:function(t){return Yd.set(e,t)},setIconFill:function(t,n){su(e.element,'svg path[id="'+t+'"], rect[id="'+t+'"]').each((function(e){Ut(e,"fill",n)}))},setIconStroke:function(t,n){su(e.element,'svg path[id="'+t+'"], rect[id="'+t+'"]').each((function(e){Ut(e,"stroke",n)}))},setActive:function(t){Ut(e.element,"aria-pressed",t),su(e.element,"span").each((function(n){e.getSystem().getByDom(n).each((function(e){return Tp.set(e,t)}))}))},isActive:function(){return su(e.element,"span").exists((function(t){return e.getSystem().getByDom(t).exists(Tp.isOn)}))}}},i=xo(g),a={getApi:o,onSetup:e.onSetup};return pM.sketch({dom:{tag:"div",classes:["tox-split-button"],attributes:O({"aria-pressed":!1},bM(e.tooltip,t.providers))},onExecute:function(t){e.onAction(o(t))},onItemExecute:function(e,t,n){},splitDropdownBehaviours:wc([Yb(t.providers.isDisabled),Gb(),sp("split-dropdown-events",[Fi(yM,gp.focus),Qb(a,i),ey(a,i)]),fC.config({})]),eventOrder:(n={},n[yi()]=["alloy.base.behaviour","split-dropdown-events"],n),toggleClass:"tox-tbtn--enabled",lazySink:t.getSink,fetch:kM(o,e,t.providers),parts:{menu:Bv(0,e.columns,e.presets)},components:[pM.parts.button(wM(e.icon,e.text,R.none(),R.some(r),R.some([Tp.config({toggleClass:"tox-tbtn--enabled",toggleOnExecute:!1})]),t.providers)),pM.parts.arrow({dom:{tag:"button",classes:["tox-tbtn","tox-split-button__chevron"],innerHtml:Th("chevron-down",t.providers.icons)},buttonBehaviours:wc([Yb(t.providers.isDisabled),Gb(),_h()])}),pM.parts["aria-descriptor"]({text:t.providers.translate("To open the popup, press Shift+Enter")})]})}(e,t.backstage.shared)})),grouptoolbarbutton:TM((function(e){return Vr("GroupToolbarButton",XE,e)}),(function(e,t,n){var r,o=n.ui.registry.getAll().buttons,i=((r={})[Ss]=t.backstage.shared.header.isPositionedAtTop()?jc.TopToBottom:jc.BottomToTop,r);if(Ab(n)===hv.floating)return function(e,t,n,r){var o=t.shared;return ZA.sketch({lazySink:o.getSink,fetch:function(){return Dx((function(t){t(j(n(e.items),fD))}))},markers:{toggledClass:"tox-tbtn--enabled"},parts:{button:wM(e.icon,e.text,e.tooltip,R.none(),R.none(),o.providers),toolbar:{dom:{tag:"div",classes:["tox-toolbar__overflow"],attributes:r}}}})}(e,t.backstage,(function(e){return MM(n,{buttons:o,toolbar:e,allowToolbarGroups:!1},t,R.none())}),i);throw new Error("Toolbar groups are only supported when using floating toolbar mode")})),styleSelectButton:function(e,t){return function(e,t){var n=O({type:"advanced"},t.styleselect);return VD(e,t,iM(e,n))}(e,t.backstage)},fontsizeSelectButton:function(e,t){return function(e,t){return VD(e,t,nM(e))}(e,t.backstage)},fontSelectButton:function(e,t){return function(e,t){return VD(e,t,ZD(e))}(e,t.backstage)},formatButton:function(e,t){return function(e,t){return VD(e,t,oM(e))}(e,t.backstage)},alignMenuButton:function(e,t){return function(e,t){return VD(e,t,XD(e))}(e,t.backstage)}},EM={styleselect:_M.styleSelectButton,fontsizeselect:_M.fontsizeSelectButton,fontselect:_M.fontSelectButton,formatselect:_M.formatButton,align:_M.alignMenuButton},AM=function(e){var t,n=e.toolbar,o=e.buttons;return!1===n?[]:void 0===n||!0===n?function(e){var t=j(OM,(function(t){var n=$(t.items,(function(t){return ye(e,t)||ye(EM,t)}));return{name:t.name,items:n}}));return $(t,(function(e){return e.items.length>0}))}(o):r(n)?(t=n.split("|"),j(t,(function(e){return{items:e.trim().split(" ")}}))):function(e){return m(e,(function(e){return ye(e,"name")&&ye(e,"items")}))}(n)?n:(console.error("Toolbar type should be string, string[], boolean or ToolbarGroup[]"),[])},DM=function(e,t,n,r,o,i){return be(t,n.toLowerCase()).orThunk((function(){return i.bind((function(e){return ce(e,(function(e){return be(t,e+n.toLowerCase())}))}))})).fold((function(){return be(EM,n.toLowerCase()).map((function(t){return t(e,o)})).orThunk((function(){return R.none()}))}),(function(t){return"grouptoolbarbutton"!==t.type||r?function(e,t,n){return be(_M,e.type).fold((function(){return console.error("skipping button defined by",e),R.none()}),(function(r){return R.some(r(e,t,n))}))}(t,o,e):(console.warn("Ignoring the '"+n+"' toolbar button. Group toolbar buttons are only supported when using floating toolbar mode and cannot be nested."),R.none())}))},MM=function(e,t,n,r){var o=AM(t),i=j(o,(function(o){var i=J(o.items,(function(o){return 0===o.trim().length?[]:DM(e,t.buttons,o,t.allowToolbarGroups,n,r).toArray()}));return{title:R.from(e.translate(o.name)),items:i}}));return $(i,(function(e){return e.items.length>0}))},NM=function(e,t,n,o){var i=t.outerContainer,a=n.toolbar,u=n.buttons;if(m(a,r)){var c=a.map((function(t){var r={toolbar:t,buttons:u,allowToolbarGroups:n.allowToolbarGroups};return MM(e,r,{backstage:o},R.none())}));kD.setToolbars(i,c)}else kD.setToolbar(i,MM(e,n,{backstage:o},R.none()))},RM=pt(),zM=RM.os.isiOS()&&RM.os.version.major<=12,BM=Object.freeze({__proto__:null,render:function(e,t,n,r,o){var i=xo(0),u=t.outerContainer;RD(e);var c=Re.fromDom(o.targetNode),s=Bt(zt(c));!function(e,t){Kl(e,t,kn)}(c,t.mothership),Gl(s,t.uiMothership),e.on("PostRender",(function(){NM(e,t,n,r),i.set(e.getWin().innerWidth),kD.setMenubar(u,_D(e,n)),kD.setSidebar(u,n.sidebar),function(e,t){var n=e.dom,r=e.getWin(),o=e.getDoc().documentElement,i=xo(mn(r.innerWidth,r.innerHeight)),a=xo(mn(o.offsetWidth,o.offsetHeight)),u=function(){var t=i.get();t.left===r.innerWidth&&t.top===r.innerHeight||(i.set(mn(r.innerWidth,r.innerHeight)),jy(e))},c=function(){var t=e.getDoc().documentElement,n=a.get();n.left===t.offsetWidth&&n.top===t.offsetHeight||(a.set(mn(t.offsetWidth,t.offsetHeight)),jy(e))},s=function(t){return function(e,t){return e.fire("ScrollContent",t)}(e,t)};n.bind(r,"resize",u),n.bind(r,"scroll",s);var l=ns(Re.fromDom(e.getBody()),"load",c),f=t.uiMothership.element;e.on("hide",(function(){Jt(f,"display","none")})),e.on("show",(function(){an(f,"display")})),e.on("NodeChange",c),e.on("remove",(function(){l.unbind(),n.unbind(r,"resize",u),n.unbind(r,"scroll",s),r=null}))}(e,t)}));var l,f,d,m=kD.getSocket(u).getOrDie("Could not find expected socket element");if(zM){Zt(m.element,{overflow:"scroll","-webkit-overflow-scrolling":"touch"});var g=(l=function(){e.fire("ScrollContent")},f=20,d=null,{cancel:function(){a(d)||(clearTimeout(d),d=null)},throttle:function(){for(var e=[],t=0;tt}));return r.or(o).getOr(e)},LM=function(e){var t=function(e){var t=bb(e),n=xb(e),r=Sb(e);return PM(t).map((function(e){return FM(e,n,r)}))}(e);return t.getOr(bb(e))},HM=function(e){var t=yb(e),n=wb(e),r=Cb(e);return PM(t).map((function(e){return FM(e,n,r)}))},VM=function(e,t,n,r,o){var i=n.uiMothership,a=n.outerContainer,u=hb.DOM,c=Bb(e),s=Fb(e),l=Cb(e).or(HM(e)),f=r.shared.header,d=f.isPositionedAtTop,m=Ab(e),g=m===hv.sliding||m===hv.floating,p=xo(!1),v=function(){return p.get()&&!e.removed},b=function(e){return g?e.fold(h(0),(function(e){return e.components().length>1?ln(e.components()[1].element):0})):0},y=function(){i.broadcastOn([sf()],{})},w=function(e){if(void 0===e&&(e=!1),v()){var n;if(c||(n=l.getOrThunk((function(){var e=PM(en(Ht(),"margin-left")).getOr(0);return bn(Ht())-pn(t).left+e})),Jt(o.get().element,"max-width",n+"px")),g&&kD.refreshToolbar(a),c||function(){var e=kD.getToolbar(a),n=b(e),r=Ln(t),i=d()?Math.max(r.y-ln(o.get().element)+n,0):r.bottom;Zt(a.element,{position:"absolute",top:Math.round(i)+"px",left:Math.round(r.x)+"px"})}(),s){var r=o.get();e?FE.reset(r):FE.refresh(r)}y()}},x=function(n){if(void 0===n&&(n=!0),!c&&s&&v()){var r=f.getDockingMode(),i=function(n){switch(Nb(e)){case Eb.auto:var r=kD.getToolbar(a),o=b(r),i=ln(n.element)-o,u=Ln(t);if(u.y>i)return"top";var c=St(t),s=Math.max(c.dom.scrollHeight,ln(c));return u.bottom=n&&e.bottom-t.y>=n},YM=function(e){var t=function(e){var t=e.getBoundingClientRect();if(t.height<=0&&t.width<=0){var n=Dt(Re.fromDom(e.startContainer),e.startOffset).element;return(Fe(n)?Ot(n):R.some(n)).filter(Ie).map((function(e){return e.dom.getBoundingClientRect()})).getOr(t)}return t}(e.selection.getRng());if(e.inline){var n=Mn();return Fn(n.left+t.left,n.top+t.top,t.width,t.height)}var r=Hn(Re.fromDom(e.getBody()));return Fn(r.x+t.left,r.y+t.top,t.width,t.height)},JM=function(e,t,n,r){void 0===r&&(r=0);var o=zn(window),i=Ln(Re.fromDom(e.getContentAreaContainer())),a=kb(e)||Ob(e)||_b(e),u=function(e,t,n){var r=Math.max(e.x+n,t.x);return{x:r,width:Math.min(e.right-n,t.right)-r}}(i,o,r),c=u.x,s=u.width;if(e.inline&&!a)return Fn(c,o.y,s,o.height);var l=function(e,t,n,r,o,i){var a=Re.fromDom(e.getContainer()),u=su(a,".tox-editor-header").getOr(a),c=Ln(u),s=c.y>=t.bottom,l=r&&!s;if(e.inline&&l)return{y:Math.max(c.bottom+i,n.y),bottom:n.bottom};if(e.inline&&!l)return{y:n.y,bottom:Math.min(c.y-i,n.bottom)};var f="line"===o?Ln(a):t;return l?{y:Math.max(c.bottom+i,n.y),bottom:Math.min(f.bottom-i,n.bottom)}:{y:Math.max(f.y+i,n.y),bottom:Math.min(c.y-i,n.bottom)}}(e,i,o,t.header.isPositionedAtTop(),n,r),f=l.y,d=l.bottom;return Fn(c,f,s,d-f)},ZM={valignCentre:[],alignCentre:[],alignLeft:["tox-pop--align-left"],alignRight:["tox-pop--align-right"],right:["tox-pop--right"],left:["tox-pop--left"],bottom:["tox-pop--bottom"],top:["tox-pop--top"],inset:["tox-pop--inset"]},QM={maxHeightFunction:gs(),maxWidthFunction:qA()},eN=function(e){return"node"===e},tN=function(e,t,n,r,o){var i=YM(e),a=r.lastElement().exists((function(e){return bt(n,e)}));return function(e,t){var n=e.selection.getRng(),r=Dt(Re.fromDom(n.startContainer),n.startOffset);return n.startContainer===n.endContainer&&n.startOffset===n.endOffset-1&&bt(r.element,t)}(e,n)?a?gh:sh:a?function(e,t,n){var r=nn(e,"position");Jt(e,"position",t);var o=n(e);return r.each((function(t){return Jt(e,"position",t)})),o}(t,r.getMode(),(function(){return XM(i,Ln(t))&&!r.isReposition()?hh:gh})):("fixed"===r.getMode()?o.y+Mn().top:o.y)+(ln(t)+12)<=i.y?sh:lh},nN=function(e,t,n,r){var o=function(t){return function(r,o,i,a,u){var c=tN(e,a,t,n,u),s=O(O({},r),{y:u.y,height:u.height});return O(O({},c(s,o,i,a,u)),{alwaysFit:!0})}},i=function(e){return eN(r)?[o(e)]:[]};return t?{onLtr:function(e){return[ic,ec,tc,nc,rc,oc].concat(i(e))},onRtl:function(e){return[ic,tc,ec,rc,nc,oc].concat(i(e))}}:{onLtr:function(e){return[oc,ic,nc,ec,rc,tc].concat(i(e))},onRtl:function(e){return[oc,ic,rc,tc,nc,ec].concat(i(e))}}},rN=function(e,t){var n=$(t,(function(t){return t.predicate(e.dom)})),r=W(n,(function(e){return"contexttoolbar"===e.type}));return{contextToolbars:r.pass,contextForms:r.fail}},oN=function(e,t,n){var r=rN(e,t);if(r.contextForms.length>0)return R.some({elem:e,toolbars:[r.contextForms[0]]});var o=rN(e,n);if(o.contextForms.length>0)return R.some({elem:e,toolbars:[o.contextForms[0]]});if(r.contextToolbars.length>0||o.contextToolbars.length>0){var i=function(e){if(e.length<=1)return e;var t=function(t){return L(e,(function(e){return e.position===t}))},n=function(t){return $(e,(function(e){return e.position===t}))},r=t("selection"),o=t("node");if(r||o){if(o&&r){var i=n("node"),a=j(n("selection"),(function(e){return O(O({},e),{position:"node"})}));return i.concat(a)}return n(r?"selection":"node")}return n("line")}(r.contextToolbars.concat(o.contextToolbars));return R.some({elem:e,toolbars:i})}return R.none()},iN=function(e,t,n){return e(t)?R.none():Ao(t,(function(e){if(Ie(e)){var t=rN(e,n.inNodeScope),r=t.contextToolbars,o=t.contextForms,i=o.length>0?o:function(e){if(e.length<=1)return e;var t=function(t){return K(e,(function(e){return e.position===t}))},n=t("selection").orThunk((function(){return t("node")})).orThunk((function(){return t("line")})).map((function(e){return e.position}));return n.fold((function(){return[]}),(function(t){return $(e,(function(e){return e.position===t}))}))}(r);return i.length>0?R.some({elem:e,toolbars:i}):R.none()}return R.none()}),e)},aN=function(e,t){var n={},r=[],o=[],i={},a={},u=function(e,u){var c=jr(Vr("ContextForm",mv,u));n[e]=c,c.launch.map((function(n){i["form:"+e]=O(O({},u.launch),{type:"contextformtogglebutton"===n.type?"togglebutton":"button",onAction:function(){t(c)}})})),"editor"===c.scope?o.push(c):r.push(c),a[e]=c},c=function(e,t){var n;(n=t,Vr("ContextToolbar",gv,n)).each((function(n){"editor"===t.scope?o.push(n):r.push(n),a[e]=n}))},s=se(e);return U(s,(function(t){var n=e[t];"contextform"===n.type?u(t,n):"contexttoolbar"===n.type&&c(t,n)})),{forms:n,inNodeScope:r,inEditorScope:o,lookupTable:a,formNavigators:i}},uN=oa("forward-slide"),cN=oa("backward-slide"),sN=oa("change-slide-event"),lN="tox-pop--resizing",fN="tox-pop--transition",dN=function(e,t,n,r){var o,i,a=r.backstage,u=a.shared,c=pt().deviceType.isTouch,s=Qc(),l=Qc(),f=Qc(),d=eu((o={sink:n,onEscape:function(){return e.focus(),R.some(!0)}},i=xo([]),Jp.sketch({dom:{tag:"div",classes:["tox-pop"]},fireDismissalEventInstead:{event:"doNotDismissYet"},onShow:function(e){i.set([]),Jp.getContent(e).each((function(e){an(e.element,"visibility")})),La(e.element,lN),an(e.element,"width")},inlineBehaviours:wc([sp("context-toolbar-events",[$i(Qo(),(function(e,t){"width"===t.event.raw.propertyName&&(La(e.element,lN),an(e.element,"width"))})),Fi(sN,(function(e,t){var n=e.element;an(n,"width");var r=bn(n);Jp.setContent(e,t.event.contents),Ia(n,lN);var o=bn(n);Jt(n,"width",r+"px"),Jp.getContent(e).each((function(e){t.event.focus.bind((function(e){return Ac(e),Nc(n)})).orThunk((function(){return np.focusIn(e),Mc(zt(n))}))})),vh.setTimeout((function(){Jt(e.element,"width",o+"px")}),0)})),Fi(uN,(function(e,t){Jp.getContent(e).each((function(t){i.set(i.get().concat([{bar:t,focus:Mc(zt(e.element))}]))})),Di(e,sN,{contents:t.event.forwardContents,focus:R.none()})})),Fi(cN,(function(e,t){ae(i.get()).each((function(t){i.set(i.get().slice(0,i.get().length-1)),Di(e,sN,{contents:tu(t.bar),focus:t.focus})}))}))]),np.config({mode:"special",onEscape:function(e){return ae(i.get()).fold((function(){return o.onEscape()}),(function(t){return Ai(e,cN),R.some(!0)}))}})]),lazySink:function(){return Wn.value(o.sink)}}))),m=function(){var t=f.get().getOr("node"),n=eN(t)?1:0;return JM(e,u,t,n)},p=function(){return!(e.removed||c()&&a.isContextMenuOpen())},h=function(){if(p()){var t=m(),n=xe(f.get(),"node")?function(e,t){return t.filter(Lt).map(Hn).getOrThunk((function(){return YM(e)}))}(e,s.get()):YM(e);return t.height<=0||!XM(n,t)}return!0},v=function(){s.clear(),l.clear(),f.clear(),Jp.hide(d)},b=function(){if(Jp.isOpen(d)){var e=d.element;an(e,"display"),h()?Jt(e,"display","none"):(l.set(0),Jp.reposition(d))}},y=function(t){return{dom:{tag:"div",classes:["tox-pop__dialog"]},components:[t],behaviours:wc([np.config({mode:"acyclic"}),sp("pop-dialog-wrap-events",[qi((function(t){e.shortcuts.add("ctrl+F9","focus statusbar",(function(){return np.focusIn(t)}))})),Gi((function(t){e.shortcuts.remove("ctrl+F9")}))])])}},w=Ve((function(){return aN(t,(function(e){var t=x([e]);Di(d,uN,{forwardContents:y(t)})}))})),x=function(t){var n=e.ui.registry.getAll().buttons,o=w(),i=O(O({},n),o.formNavigators),a=Ab(e)===hv.scrolling?hv.scrolling:hv.default,c=Y(j(t,(function(t){return"contexttoolbar"===t.type?function(t,n){return MM(e,{buttons:t,toolbar:n.items,allowToolbarGroups:!1},r,R.some(["form:"]))}(i,t):function(e,t){return KM(e,t)}(t,u.providers)})));return hD({type:a,uid:oa("context-toolbar"),initGroups:c,onEscape:R.none,cyclicKeying:!0,providers:u.providers})},C=function(t,r){var o="node"===t?u.anchors.node(r):u.anchors.cursor(),i=function(e,t,n,r){return"line"===t?{bubble:bs(12,0,ZM),layouts:{onLtr:function(){return[ac]},onRtl:function(){return[uc]}},overrides:QM}:{bubble:bs(0,12,ZM,1/12),layouts:nN(e,n,r,t),overrides:QM}}(e,t,c(),{lastElement:s.get,isReposition:function(){return xe(l.get(),0)},getMode:function(){return Il.getMode(n)}});return ur(o,i)},S=function(e,t){if(k.cancel(),p()){var r=x(e),o=e[0].position,i=C(o,t);f.set(o),l.set(1);var a=d.element;an(a,"display"),function(e){return xe(Se(e,s.get(),bt),!0)}(t)||(La(a,fN),Il.reset(n,d)),Jp.showWithinBounds(d,y(r),{anchor:i,transition:{classes:[fN],mode:"placement"}},(function(){return R.some(m())})),t.fold(s.clear,s.set),h()&&Jt(a,"display","none")}},k=zh((function(){e.hasFocus()&&!e.removed&&(Ha(d.element,fN)?k.throttle():function(e,t){var n=Re.fromDom(t.getBody()),r=function(e){return bt(e,n)},o=Re.fromDom(t.selection.getNode());return function(e){return!r(e)&&!wt(n,e)}(o)?R.none():oN(o,e.inNodeScope,e.inEditorScope).orThunk((function(){return iN(r,o,e)}))}(w(),e).fold(v,(function(e){S(e.toolbars,R.some(e.elem))})))}),17);e.on("init",(function(){e.on("remove",v),e.on("ScrollContent ScrollWindow ObjectResized ResizeEditor longpress",b),e.on("click keyup focus SetContent",k.throttle),e.on(WM,v),e.on("contexttoolbar-show",(function(t){var n=w();be(n.lookupTable,t.toolbarKey).each((function(n){S([n],ke(t.target!==e,t.target)),Jp.getContent(d).each(np.focusIn)}))})),e.on("focusout",(function(t){vh.setEditorTimeout(e,(function(){Nc(n.element).isNone()&&Nc(d.element).isNone()&&v()}),0)})),e.on("SwitchMode",(function(){e.mode.isReadOnly()&&v()})),e.on("AfterProgressState",(function(t){t.state?v():e.hasFocus()&&k.throttle()})),e.on("NodeChange",(function(e){Nc(d.element).fold(k.throttle,g)}))}))},mN={unsupportedLength:["em","ex","cap","ch","ic","rem","lh","rlh","vw","vh","vi","vb","vmin","vmax","cm","mm","Q","in","pc","pt","px"],fixed:["px","pt"],relative:["%"],empty:[""]},gN=(UD="[eE][+-]?[0-9]+",WD=function(e){return"(?:"+e+")?"},$D=["Infinity","[0-9]+\\."+WD(jD="[0-9]+")+WD(UD),"\\.[0-9]+"+WD(UD),jD+WD(UD)].join("|"),new RegExp("^([+-]?(?:"+$D+"))(.*)$")),pN=function(e,t){return R.from(gN.exec(e)).bind((function(e){var n=Number(e[1]),r=e[2];return function(e,t){return L(t,(function(t){return L(mN[t],(function(t){return e===t}))}))}(r,t)?R.some({value:n,unit:r}):R.none()}))},hN=function(e,t){var n=function(){var n=t.getOptions(e),r=t.getCurrent(e).map(t.hash),o=Qc();return j(n,(function(n){return{type:"togglemenuitem",text:t.display(n),onSetup:function(i){var a=function(e){e&&(o.on((function(e){return e.setActive(!1)})),o.set(i)),i.setActive(e)};a(xe(r,t.hash(n)));var u=t.watcher(e,n,a);return function(){o.clear(),u()}},onAction:function(){return t.setCurrent(e,n)}}}))};e.ui.registry.addMenuButton(t.name,{tooltip:t.text,icon:t.icon,fetch:function(e){return e(n())},onSetup:t.onToolbarSetup}),e.ui.registry.addNestedMenuItem(t.name,{type:"nestedmenuitem",text:t.text,getSubmenuItems:n,onSetup:t.onMenuSetup})},vN={name:"lineheight",text:"Line height",icon:"line-height",getOptions:function(e){return e.getParam("lineheight_formats","1 1.1 1.2 1.3 1.4 1.5 2","string").split(" ")},hash:function(e){return function(e,t){return pN(e,t).map((function(e){return e.value+e.unit}))}(e,["fixed","relative","empty"]).getOr(e)},display:v,watcher:function(e,t,n){return e.formatter.formatChanged("lineheight",n,!1,{value:t}).unbind},getCurrent:function(e){return R.from(e.queryCommandValue("LineHeight"))},setCurrent:function(e,t){return e.execCommand("LineHeight",!1,t)}},bN=function(e){hN(e,vN),function(e){var t=R.from(function(e){return e.getParam("content_langs",void 0,"array")}(e));return t.map((function(t){return{name:"language",text:"Language",icon:"language",getOptions:h(t),hash:function(e){return c(e.customCode)?e.code:e.code+"/"+e.customCode},display:function(e){return e.title},watcher:function(e,t,n){return e.formatter.formatChanged("lang",n,!1,{value:t.code,customValue:t.customCode}).unbind},getCurrent:function(e){var t=Re.fromDom(e.selection.getNode());return Do(t,(function(e){return R.some(e).filter(Ie).bind((function(e){return qt(e,"lang").map((function(t){return{code:t,customCode:qt(e,"data-mce-lang").getOrUndefined(),title:""}}))}))}))},setCurrent:function(e,t){return e.execCommand("Lang",!1,t)},onToolbarSetup:function(t){var n=Zc();return t.setActive(e.formatter.match("lang",{},void 0,!0)),n.set(e.formatter.formatChanged("lang",t.setActive,!0)),n.clear}}}))}(e).each((function(t){return hN(e,t)}))},yN=function(e,t){!function(e,t){var n=HD(0,t,XD(e));e.ui.registry.addNestedMenuItem("align",{text:t.shared.providers.translate("Align"),getSubmenuItems:function(){return n.items.validateItems(n.getStyleItems())}})}(e,t),function(e,t){var n=HD(0,t,ZD(e));e.ui.registry.addNestedMenuItem("fontformats",{text:t.shared.providers.translate("Fonts"),getSubmenuItems:function(){return n.items.validateItems(n.getStyleItems())}})}(e,t),function(e,t){var n=O({type:"advanced"},t.styleselect),r=HD(0,t,iM(e,n));e.ui.registry.addNestedMenuItem("formats",{text:"Formats",getSubmenuItems:function(){return r.items.validateItems(r.getStyleItems())}})}(e,t),function(e,t){var n=HD(0,t,oM(e));e.ui.registry.addNestedMenuItem("blockformats",{text:"Blocks",getSubmenuItems:function(){return n.items.validateItems(n.getStyleItems())}})}(e,t),function(e,t){var n=HD(0,t,nM(e));e.ui.registry.addNestedMenuItem("fontsizes",{text:"Font sizes",getSubmenuItems:function(){return n.items.validateItems(n.getStyleItems())}})}(e,t)},wN=function(e){return PD(e,"NodeChange",(function(t){t.setDisabled(!e.queryCommandState("outdent"))}))},xN=function(e){!function(e){e.ui.registry.addButton("outdent",{tooltip:"Decrease indent",icon:"outdent",onSetup:wN(e),onAction:FD(e,"outdent")}),e.ui.registry.addButton("indent",{tooltip:"Increase indent",icon:"indent",onAction:FD(e,"indent")})}(e)},CN=function(e,t){return function(){e.execCommand("mceToggleFormat",!1,t)}},SN=function(e){!function(e){Sk.each([{name:"bold",text:"Bold",icon:"bold"},{name:"italic",text:"Italic",icon:"italic"},{name:"underline",text:"Underline",icon:"underline"},{name:"strikethrough",text:"Strikethrough",icon:"strike-through"},{name:"subscript",text:"Subscript",icon:"subscript"},{name:"superscript",text:"Superscript",icon:"superscript"}],(function(t,n){e.ui.registry.addToggleButton(t.name,{tooltip:t.text,icon:t.icon,onSetup:BD(e,t.name),onAction:CN(e,t.name)})}));for(var t=1;t<=6;t++){var n="h"+t;e.ui.registry.addToggleButton(n,{text:n.toUpperCase(),tooltip:"Heading "+t,onSetup:BD(e,n),onAction:CN(e,n)})}}(e),function(e){Sk.each([{name:"cut",text:"Cut",action:"Cut",icon:"cut"},{name:"copy",text:"Copy",action:"Copy",icon:"copy"},{name:"paste",text:"Paste",action:"Paste",icon:"paste"},{name:"help",text:"Help",action:"mceHelp",icon:"help"},{name:"selectall",text:"Select all",action:"SelectAll",icon:"select-all"},{name:"newdocument",text:"New document",action:"mceNewDocument",icon:"new-document"},{name:"removeformat",text:"Clear formatting",action:"RemoveFormat",icon:"remove-formatting"},{name:"remove",text:"Remove",action:"Delete",icon:"remove"}],(function(t){e.ui.registry.addButton(t.name,{tooltip:t.text,icon:t.icon,onAction:FD(e,t.action)})}))}(e),function(e){Sk.each([{name:"blockquote",text:"Blockquote",action:"mceBlockQuote",icon:"quote"}],(function(t){e.ui.registry.addToggleButton(t.name,{tooltip:t.text,icon:t.icon,onAction:FD(e,t.action),onSetup:BD(e,t.name)})}))}(e)},kN=function(e){SN(e),function(e){Sk.each([{name:"bold",text:"Bold",action:"Bold",icon:"bold",shortcut:"Meta+B"},{name:"italic",text:"Italic",action:"Italic",icon:"italic",shortcut:"Meta+I"},{name:"underline",text:"Underline",action:"Underline",icon:"underline",shortcut:"Meta+U"},{name:"strikethrough",text:"Strikethrough",action:"Strikethrough",icon:"strike-through",shortcut:""},{name:"subscript",text:"Subscript",action:"Subscript",icon:"subscript",shortcut:""},{name:"superscript",text:"Superscript",action:"Superscript",icon:"superscript",shortcut:""},{name:"removeformat",text:"Clear formatting",action:"RemoveFormat",icon:"remove-formatting",shortcut:""},{name:"newdocument",text:"New document",action:"mceNewDocument",icon:"new-document",shortcut:""},{name:"cut",text:"Cut",action:"Cut",icon:"cut",shortcut:"Meta+X"},{name:"copy",text:"Copy",action:"Copy",icon:"copy",shortcut:"Meta+C"},{name:"paste",text:"Paste",action:"Paste",icon:"paste",shortcut:"Meta+V"},{name:"selectall",text:"Select all",action:"SelectAll",icon:"select-all",shortcut:"Meta+A"}],(function(t){e.ui.registry.addMenuItem(t.name,{text:t.text,icon:t.icon,shortcut:t.shortcut,onAction:FD(e,t.action)})})),e.ui.registry.addMenuItem("codeformat",{text:"Code",icon:"sourcecode",onAction:CN(e,"code")})}(e)},ON=function(e,t){return PD(e,"Undo Redo AddUndo TypingUndo ClearUndos SwitchMode",(function(n){n.setDisabled(e.mode.isReadOnly()||!e.undoManager[t]())}))},TN=function(e){!function(e){e.ui.registry.addMenuItem("undo",{text:"Undo",icon:"undo",shortcut:"Meta+Z",onSetup:ON(e,"hasUndo"),onAction:FD(e,"undo")}),e.ui.registry.addMenuItem("redo",{text:"Redo",icon:"redo",shortcut:"Meta+Y",onSetup:ON(e,"hasRedo"),onAction:FD(e,"redo")})}(e),function(e){e.ui.registry.addButton("undo",{tooltip:"Undo",icon:"undo",disabled:!0,onSetup:ON(e,"hasUndo"),onAction:FD(e,"undo")}),e.ui.registry.addButton("redo",{tooltip:"Redo",icon:"redo",disabled:!0,onSetup:ON(e,"hasRedo"),onAction:FD(e,"redo")})}(e)},_N=function(e){return PD(e,"VisualAid",(function(t){t.setActive(e.hasVisual)}))},EN=function(e){!function(e){e.ui.registry.addButton("visualaid",{tooltip:"Visual aids",text:"Visual aids",onAction:FD(e,"mceToggleVisualAid")})}(e),function(e){e.ui.registry.addToggleMenuItem("visualaid",{text:"Visual aids",onSetup:_N(e),onAction:FD(e,"mceToggleVisualAid")})}(e)},AN=function(e,t){!function(e){U([{name:"alignleft",text:"Align left",cmd:"JustifyLeft",icon:"align-left"},{name:"aligncenter",text:"Align center",cmd:"JustifyCenter",icon:"align-center"},{name:"alignright",text:"Align right",cmd:"JustifyRight",icon:"align-right"},{name:"alignjustify",text:"Justify",cmd:"JustifyFull",icon:"align-justify"}],(function(t){e.ui.registry.addToggleButton(t.name,{tooltip:t.text,icon:t.icon,onAction:FD(e,t.cmd),onSetup:BD(e,t.name)})})),e.ui.registry.addButton("alignnone",{tooltip:"No alignment",icon:"align-none",onAction:FD(e,"JustifyNone")})}(e),kN(e),yN(e,t),TN(e),function(e){!function(e){e.addCommand("mceApplyTextcolor",(function(t,n){!function(e,t,n){e.undoManager.transact((function(){e.focus(),e.formatter.apply(t,{value:n}),e.nodeChanged()}))}(e,t,n)})),e.addCommand("mceRemoveTextcolor",(function(t){!function(e,t){e.undoManager.transact((function(){e.focus(),e.formatter.remove(t,{value:null},null,!0),e.nodeChanged()}))}(e,t)}))}(e);var t=xo(nw),n=xo(nw);sw(e,"forecolor","forecolor","Text color",t),sw(e,"backcolor","hilitecolor","Background color",n),lw(e,"forecolor","forecolor","Text color"),lw(e,"backcolor","hilitecolor","Background color")}(e),EN(e),xN(e),bN(e)},DN=function(e,t){return{type:"makeshift",x:e,y:t}},MN=function(e){return"longpress"===e.type||0===e.type.indexOf("touch")},NN=function(e,t){var n=hb.DOM.getPos(e);return function(e,t,n){return DN(e.x+t,e.y+n)}(t,n.x,n.y)},RN=function(e,t){return"contextmenu"===t.type||"longpress"===t.type?e.inline?function(e){if(MN(e)){var t=e.touches[0];return DN(t.pageX,t.pageY)}return DN(e.pageX,e.pageY)}(t):NN(e.getContentAreaContainer(),function(e){if(MN(e)){var t=e.touches[0];return DN(t.clientX,t.clientY)}return DN(e.clientX,e.clientY)}(t)):zN(e)},zN=function(e){return{type:"selection",root:Re.fromDom(e.selection.getNode())}},BN=function(e,t,n){switch(n){case"node":return function(e){return{type:"node",node:R.some(Re.fromDom(e.selection.getNode())),root:Re.fromDom(e.getBody())}}(e);case"point":return RN(e,t);case"selection":return zN(e)}},PN=function(e,t,n,r,o,i){var a=n(),u=BN(e,t,i);jO(a,vv.CLOSE_ON_EXECUTE,r,!1).map((function(e){t.preventDefault(),Jp.showMenuAt(o,{anchor:u},{menu:{markers:Nv("normal")},data:e})}))},IN={onLtr:function(){return[ic,ec,tc,nc,rc,oc,sh,lh,ch,ah,uh,ih]},onRtl:function(){return[ic,tc,ec,rc,nc,oc,sh,lh,uh,ih,ch,ah]}},FN={valignCentre:[],alignCentre:[],alignLeft:["tox-pop--align-left"],alignRight:["tox-pop--align-right"],right:["tox-pop--right"],left:["tox-pop--left"],bottom:["tox-pop--bottom"],top:["tox-pop--top"]},LN=function(e,t,n,r,o,i,a){var u=function(e,t,n){var r=BN(e,t,n);return O({bubble:bs(0,"point"===n?12:0,FN),layouts:IN,overrides:{maxWidthFunction:qA(),maxHeightFunction:gs()}},r)}(e,t,i);jO(n,vv.CLOSE_ON_EXECUTE,r,!0).map((function(n){t.preventDefault(),Jp.showMenuWithinBounds(o,{anchor:u},{menu:{markers:Nv("normal"),highlightImmediately:a},data:n,type:"horizontal"},(function(){return R.some(JM(e,r.shared,"node"===i?"node":"selection"))})),e.fire(WM)}))},HN=function(e,t,n,r,o,i){var a=pt(),u=a.os.isiOS(),c=a.os.isOSX(),s=a.os.isAndroid(),l=a.deviceType.isTouch(),f=function(){var a=n();LN(e,t,a,r,o,i,!(s||u||c&&l))};if((c||u)&&"node"!==i){var d=function(){!function(e){var t=e.selection.getRng(),n=function(){vh.setEditorTimeout(e,(function(){e.selection.setRng(t)}),10),i()};e.once("touchend",n);var r=function(e){e.preventDefault(),e.stopImmediatePropagation()};e.on("mousedown",r,!0);var o=function(){return i()};e.once("longpresscancel",o);var i=function(){e.off("touchend",n),e.off("longpresscancel",o),e.off("mousedown",r)}}(e),f()};!function(e,t){var n=e.selection;if(n.isCollapsed()||t.touches.length<1)return!1;var r=t.touches[0],o=n.getRng();return sl(e.getWin(),Ws.domRange(o)).exists((function(e){return e.left<=r.clientX&&e.right>=r.clientX&&e.top<=r.clientY&&e.bottom>=r.clientY}))}(e,t)?(e.once("selectionchange",d),e.once("touchend",(function(){return e.off("selectionchange",d)}))):d()}else f()},VN=function(e){return"string"==typeof e?e.split(/[ ,]/):e},jN=function(e){return e.getParam("contextmenu_never_use_native",!1,"boolean")},UN=function(e){return function(e,t,n){var r=e.ui.registry.getAll().contextMenus;return R.from(e.getParam(t)).map(VN).getOrThunk((function(){return $(VN(n),(function(e){return ye(r,e)}))}))}(e,"contextmenu","link linkchecker image imagetools table spellchecker configurepermanentpen")},WN=function(e){return r(e)?"|"===e:"separator"===e.type},$N={type:"separator"},qN=function(e){var t,n=function(e){return{text:e.text,icon:e.icon,disabled:e.disabled,shortcut:e.shortcut}};if(r(e))return e;switch(e.type){case"separator":return $N;case"submenu":return O(O({type:"nestedmenuitem"},n(e)),{getSubmenuItems:function(){var t=e.getSubmenuItems();return r(t)?t:j(t,qN)}});default:return O(O({type:"menuitem"},n(e)),{onAction:(t=e.onAction,function(){return t()})})}},GN=function(e,t){if(0===t.length)return e;var n=ae(e).filter((function(e){return!WN(e)})),r=n.fold((function(){return[]}),(function(e){return[$N]}));return e.concat(r).concat(t).concat([$N])},KN=function(e,t){return"longpress"!==t.type&&(2!==t.button||t.target===e.getBody()&&""===t.pointerType)},XN=function(e,t){return KN(e,t)?e.selection.getStart(!0):t.target},YN=function(e,t,n){var o=pt().deviceType.isTouch,i=eu(Jp.sketch({dom:{tag:"div"},lazySink:t,onEscape:function(){return e.focus()},onShow:function(){return n.setContextMenuState(!0)},onHide:function(){return n.setContextMenuState(!1)},fireDismissalEventInstead:{},inlineBehaviours:wc([sp("dismissContextMenu",[Fi(xi(),(function(t,n){uf.close(t),e.focus()}))])])})),a=function(e){return Jp.hide(i)},u=function(t){if(jN(e)&&t.preventDefault(),!function(e,t){return t.ctrlKey&&!jN(e)}(e,t)&&!function(e){return!1===e.getParam("contextmenu")}(e)){var a=function(e,t){var n=function(e){return e.getParam("contextmenu_avoid_overlap","","string")}(e),r=KN(e,t)?"selection":"point";if(De(n)){var o=XN(e,t);return zw(Re.fromDom(o),n)?"node":r}return r}(e,t);(o()?HN:PN)(e,t,(function(){var n=XN(e,t),o=e.ui.registry.getAll(),i=UN(e);return function(e,t,n){var o=G(t,(function(t,o){return be(e,o.toLowerCase()).map((function(e){var o=e.update(n);if(r(o))return GN(t,o.split(" "));if(o.length>0){var i=j(o,qN);return GN(t,i)}return t})).getOrThunk((function(){return t.concat([o])}))}),[]);return o.length>0&&WN(o[o.length-1])&&o.pop(),o}(o.contextMenus,i,n)}),n,i,a)}};e.on("init",(function(){var t="ResizeEditor ScrollContent ScrollWindow longpresscancel"+(o()?"":" ResizeWindow");e.on(t,a),e.on("longpress contextmenu",u)}))},JN=Co([{offset:["x","y"]},{absolute:["x","y"]},{fixed:["x","y"]}]),ZN=function(e){return function(t){return t.translate(-e.left,-e.top)}},QN=function(e){return function(t){return t.translate(e.left,e.top)}},eR=function(e){return function(t,n){return G(e,(function(e,t){return t(e)}),mn(t,n))}},tR=function(e,t,n){return e.fold(eR([QN(n),ZN(t)]),eR([ZN(t)]),eR([]))},nR=function(e,t,n){return e.fold(eR([QN(n)]),eR([]),eR([QN(t)]))},rR=function(e,t,n){return e.fold(eR([]),eR([ZN(n)]),eR([QN(t),ZN(n)]))},oR=function(e,t,n){var r=e.fold((function(e,t){return{position:R.some("absolute"),left:R.some(e+"px"),top:R.some(t+"px")}}),(function(e,t){return{position:R.some("absolute"),left:R.some(e-n.left+"px"),top:R.some(t-n.top+"px")}}),(function(e,t){return{position:R.some("fixed"),left:R.some(e+"px"),top:R.some(t+"px")}}));return O({right:R.none(),bottom:R.none()},r)},iR=function(e,t,n,r){var o=function(e,o){return function(i,a){var u=e(t,n,r);return o(i.getOr(u.left),a.getOr(u.top))}};return e.fold(o(rR,aR),o(nR,uR),o(tR,cR))},aR=JN.offset,uR=JN.absolute,cR=JN.fixed,sR=function(e,t){var n=$t(e,t);return c(n)?NaN:parseInt(n,10)},lR=function(e,t,n,r){return function(e,t){var n=e.element,r=sR(n,t.leftAttr),o=sR(n,t.topAttr);return isNaN(r)||isNaN(o)?R.none():R.some(mn(r,o))}(e,t).fold((function(){return n}),(function(e){return cR(e.left+r.left,e.top+r.top)}))},fR=function(e,t,n,r,o,i){var a=lR(e,t,n,r),u=t.mustSnap?gR(e,t,a,o,i):pR(e,t,a,o,i),c=tR(a,o,i);return function(e,t,n){var r=e.element;Ut(r,t.leftAttr,n.left+"px"),Ut(r,t.topAttr,n.top+"px")}(e,t,c),u.fold((function(){return{coord:cR(c.left,c.top),extra:R.none()}}),(function(e){return{coord:e.output,extra:e.extra}}))},dR=function(e,t){!function(e,t){var n=e.element;Kt(n,t.leftAttr),Kt(n,t.topAttr)}(e,t)},mR=function(e,t,n,r){return ce(e,(function(e){var o=e.sensor,i=function(e,t,n,r,o,i){var a=nR(e,o,i),u=nR(t,o,i);return Math.abs(a.left-u.left)<=n&&Math.abs(a.top-u.top)<=r}(t,o,e.range.left,e.range.top,n,r);return i?R.some({output:iR(e.output,t,n,r),extra:e.extra}):R.none()}))},gR=function(e,t,n,r,o){var i=t.getSnapPoints(e);return mR(i,n,r,o).orThunk((function(){var e=G(i,(function(e,t){var i=t.sensor,a=function(e,t,n,r,o,i){var a=nR(e,o,i),u=nR(t,o,i),c=Math.abs(a.left-u.left),s=Math.abs(a.top-u.top);return mn(c,s)}(n,i,t.range.left,t.range.top,r,o);return e.deltas.fold((function(){return{deltas:R.some(a),snap:R.some(t)}}),(function(n){return(a.left+a.top)/2<=(n.left+n.top)/2?{deltas:R.some(a),snap:R.some(t)}:e}))}),{deltas:R.none(),snap:R.none()});return e.snap.map((function(e){return{output:iR(e.output,n,r,o),extra:e.extra}}))}))},pR=function(e,t,n,r,o){var i=t.getSnapPoints(e);return mR(i,n,r,o)},hR=Object.freeze({__proto__:null,snapTo:function(e,t,n,r){var o=t.getTarget(e.element);if(t.repositionTarget){var i=xt(e.element),a=Mn(i),u=wE(o),c=function(e,t,n){return{coord:iR(e.output,e.output,t,n),extra:e.extra}}(r,a,u),s=oR(c.coord,0,u);Qt(o,s)}}}),vR="data-initial-z-index",bR=function(e,t){e.getSystem().addToGui(t),function(e){Ot(e.element).filter(Ie).each((function(t){nn(t,"z-index").each((function(e){Ut(t,vR,e)})),Jt(t,"z-index",en(e.element,"z-index"))}))}(t)},yR=function(e){!function(e){Ot(e.element).filter(Ie).each((function(e){qt(e,vR).fold((function(){return an(e,"z-index")}),(function(t){return Jt(e,"z-index",t)})),Kt(e,vR)}))}(e),e.getSystem().removeFromGui(e)},wR=function(e,t,n){return e.getSystem().build(Kw.sketch({dom:{styles:{left:"0px",top:"0px",width:"100%",height:"100%",position:"fixed","z-index":"1000000000000000"},classes:[t]},events:n}))},xR=lo("snaps",[Xr("getSnapPoints"),_u("onSensor"),Xr("leftAttr"),Xr("topAttr"),fo("lazyViewport",Vn),fo("mustSnap",!1)]),CR=[fo("useFixed",C),Xr("blockerClass"),fo("getTarget",v),fo("onDrag",g),fo("repositionTarget",!0),fo("onDrop",g),bo("getBounds",Vn),xR],SR=function(e){return(t=nn(e,"left"),n=nn(e,"top"),r=nn(e,"position"),o=function(e,t,n){return("fixed"===n?cR:aR)(parseInt(e,10),parseInt(t,10))},t.isSome()&&n.isSome()&&r.isSome()?R.some(o(t.getOrDie(),n.getOrDie(),r.getOrDie())):R.none()).getOrThunk((function(){var t=pn(e);return uR(t.left,t.top)}));var t,n,r,o},kR=function(e,t,n,r,o,i,a){return function(e,t,n,r,o){var i=o.bounds,a=nR(t,n,r),u=$u(a.left,i.x,i.x+i.width-o.width),c=$u(a.top,i.y,i.y+i.height-o.height),s=uR(u,c);return t.fold((function(){var e=rR(s,n,r);return aR(e.left,e.top)}),h(s),(function(){var e=tR(s,n,r);return cR(e.left,e.top)}))}(0,t.fold((function(){var e,t,a,u=(e=n,t=i.left,a=i.top,e.fold((function(e,n){return aR(e+t,n+a)}),(function(e,n){return uR(e+t,n+a)}),(function(e,n){return cR(e+t,n+a)}))),c=tR(u,r,o);return cR(c.left,c.top)}),(function(t){var a=fR(e,t,n,i,r,o);return a.extra.each((function(n){t.onSensor(e,n)})),a.coord})),r,o,a)},OR=function(e,t){return{bounds:e.getBounds(),height:fn(t.element),width:yn(t.element)}},TR=function(e,t,n,r,o){var i=n.update(r,o),a=n.getStartData().getOrThunk((function(){return OR(t,e)}));i.each((function(n){!function(e,t,n,r){var o=t.getTarget(e.element);if(t.repositionTarget){var i=xt(e.element),a=Mn(i),u=wE(o),c=SR(o),s=kR(e,t.snaps,c,a,u,r,n),l=oR(s,0,u);Qt(o,l)}t.onDrag(e,o,r)}(e,t,a,n)}))},_R=function(e,t,n,r){t.each(yR),n.snaps.each((function(t){dR(e,t)}));var o=n.getTarget(e.element);r.reset(),n.onDrop(e,o)},ER=function(e){return function(t,n){var r=function(e){n.setStartData(OR(t,e))};return Bi(_([Fi(vi(),(function(e){n.getStartData().each((function(){return r(e)}))}))],e(t,n,r),!0))}},AR=Object.freeze({__proto__:null,getData:function(e){return R.from(mn(e.x,e.y))},getDelta:function(e,t){return mn(t.left-e.left,t.top-e.top)}}),DR=function(e,t,n){return[Fi(Ho(),(function(r,o){if(0===o.event.raw.button){o.stop();var i=function(){return _R(r,R.some(c),e,t)},a=Bw(i,200),u={drop:i,delayDrop:a.schedule,forceDrop:i,move:function(n){a.cancel(),TR(r,e,t,AR,n)}},c=wR(r,e.blockerClass,function(e){return Bi([Fi(Ho(),e.forceDrop),Fi(Uo(),e.drop),Fi(Vo(),(function(t,n){e.move(n.event)})),Fi(jo(),e.delayDrop)])}(u));n(r),bR(r,c)}}))]},MR=_(_([],CR,!0),[Mu("dragger",{handlers:ER(DR)})],!1),NR=Object.freeze({__proto__:null,getData:function(e){var t=e.raw.touches;return 1===t.length?function(e){var t=e[0];return R.some(mn(t.clientX,t.clientY))}(t):R.none()},getDelta:function(e,t){return mn(t.left-e.left,t.top-e.top)}}),RR=function(e,t,n){var r=Qc(),o=function(n){_R(n,r.get(),e,t),r.clear()};return[Fi(Po(),(function(i,a){a.stop();var u=function(){return o(i)},c={drop:u,delayDrop:g,forceDrop:u,move:function(n){TR(i,e,t,NR,n)}},s=wR(i,e.blockerClass,function(e){return Bi([Fi(Po(),e.forceDrop),Fi(Fo(),e.drop),Fi(Lo(),e.drop),Fi(Io(),(function(t,n){e.move(n.event)}))])}(c));r.set(s);n(i),bR(i,s)})),Fi(Io(),(function(n,r){r.stop(),TR(n,e,t,NR,r.event)})),Fi(Fo(),(function(e,t){t.stop(),o(e)})),Fi(Lo(),o)]},zR=MR,BR=_(_([],CR,!0),[Mu("dragger",{handlers:ER(RR)})],!1),PR=_(_([],CR,!0),[Mu("dragger",{handlers:ER((function(e,t,n){return _(_([],DR(e,t,n),!0),RR(e,t,n),!0)}))})],!1),IR=Object.freeze({__proto__:null,mouse:zR,touch:BR,mouseOrTouch:PR}),FR=Object.freeze({__proto__:null,init:function(){var e=R.none(),t=R.none(),n=h({});return xa({readState:n,reset:function(){e=R.none(),t=R.none()},update:function(t,n){return t.getData(n).bind((function(n){return function(t,n){var r=e.map((function(e){return t.getDelta(e,n)}));return e=R.some(n),r}(t,n)}))},getStartData:function(){return t},setStartData:function(e){t=R.some(e)}})}}),LR=kc({branchKey:"mode",branches:IR,name:"dragging",active:{events:function(e,t){return e.dragger.handlers(e,t)}},extra:{snap:function(e){return{sensor:e.sensor,range:e.range,output:e.output,extra:R.from(e.extra)}}},state:FR,apis:hR}),HR=function(e,t,n,r,o,i){return e.fold((function(){return LR.snap({sensor:uR(n-20,r-20),range:mn(o,i),output:uR(R.some(n),R.some(r)),extra:{td:t}})}),(function(e){var o=n-20,i=r-20,a=e.element.dom.getBoundingClientRect();return LR.snap({sensor:uR(o,i),range:mn(40,40),output:uR(R.some(n-a.width/2),R.some(r-a.height/2)),extra:{td:t}})}))},VR=function(e,t,n){return{getSnapPoints:e,leftAttr:"data-drag-left",topAttr:"data-drag-top",onSensor:function(e,r){var o=r.td;(function(e,t){return e.exists((function(e){return bt(e,t)}))})(t.get(),o)||(t.set(o),n(o))},mustSnap:!0}},jR=function(e){return yh(bh.sketch({dom:{tag:"div",classes:["tox-selector"]},buttonBehaviours:wc([LR.config({mode:"mouseOrTouch",blockerClass:"blocker",snaps:e}),fC.config({})]),eventOrder:{mousedown:["dragging","alloy.base.behaviour"],touchstart:["dragging","alloy.base.behaviour"]}}))},UR=function(e,t){var n=xo([]),r=xo([]),o=xo(!1),i=Qc(),a=Qc(),u=function(e){var n=Hn(e);return HR(f.getOpt(t),e,n.x,n.y,n.width,n.height)},c=function(e){var n=Hn(e);return HR(d.getOpt(t),e,n.right,n.bottom,n.width,n.height)},s=VR((function(){return j(n.get(),(function(e){return u(e)}))}),i,(function(t){a.get().each((function(n){e.fire("TableSelectorChange",{start:t,finish:n})}))})),l=VR((function(){return j(r.get(),(function(e){return c(e)}))}),a,(function(t){i.get().each((function(n){e.fire("TableSelectorChange",{start:n,finish:t})}))})),f=jR(s),d=jR(l),m=eu(f.asSpec()),g=eu(d.asSpec()),p=function(t,n,r,o){var i=r(n);LR.snapTo(t,i);!function(t,n,r,o){var i=n.dom.getBoundingClientRect();an(t.element,"display");var a=kt(Re.fromDom(e.getBody())).dom.innerHeight,u=r(i),c=o(i,a);(u||c)&&Jt(t.element,"display","none")}(t,n,(function(e){return e[o]<0}),(function(e,t){return e[o]>t}))},h=function(e){return p(m,e,u,"top")},v=function(e){return p(g,e,c,"bottom")};pt().deviceType.isTouch()&&(e.on("TableSelectionChange",(function(e){o.get()||(jl(t,m),jl(t,g),o.set(!0)),i.set(e.start),a.set(e.finish),e.otherCells.each((function(t){n.set(t.upOrLeftCells),r.set(t.downOrRightCells),h(e.start),v(e.finish)}))})),e.on("ResizeEditor ResizeWindow ScrollContent",(function(){i.get().each(h),a.get().each(v)})),e.on("TableSelectionClear",(function(){o.get()&&($l(m),$l(g),o.set(!1)),i.clear(),a.clear()})))},WR=function(e){if(1===e.nodeType){if("BR"===e.nodeName||e.getAttribute("data-mce-bogus"))return!0;if("bookmark"===e.getAttribute("data-mce-type"))return!0}return!1},$R=function(e,t,n){t.delimiter||(t.delimiter="»");return{dom:{tag:"div",classes:["tox-statusbar__path"],attributes:{role:"navigation"}},behaviours:wc([np.config({mode:"flow",selector:"div[role=button]"}),Yd.config({disabled:n.isDisabled}),Gb(),tx.config({}),cp.config({}),sp("elementPathEvents",[qi((function(r,o){e.shortcuts.add("alt+F11","focus statusbar elementpath",(function(){return np.focusIn(r)})),e.on("NodeChange",(function(o){var i,a,u=function(t){for(var n=[],r=t.length;r-- >0;){var o=t[r];if(1===o.nodeType&&!WR(o)){var i=e.fire("ResolveName",{name:o.nodeName.toLowerCase(),target:o});if(i.isDefaultPrevented()||n.push({name:i.name,element:o}),i.isPropagationStopped())break}}return n}(o.parents);u.length>0?cp.set(r,(i=j(u||[],(function(t,r){return bh.sketch({dom:{tag:"div",classes:["tox-statusbar__path-item"],attributes:{role:"button","data-index":r,"tab-index":-1,"aria-level":r+1},innerHtml:t.name},action:function(n){e.focus(),e.selection.select(t.element),e.nodeChanged()},buttonBehaviours:wc([Xb(n.isDisabled),Gb()])})})),a={dom:{tag:"div",classes:["tox-statusbar__path-divider"],attributes:{"aria-hidden":!0},innerHtml:" "+t.delimiter+" "}},G(i.slice(1),(function(e,t){var n=e;return n.push(a),n.push(t),n}),[i[0]]))):cp.set(r,[])}))}))])]),components:[]}};!function(e){e[e.None=0]="None",e[e.Both=1]="Both",e[e.Vertical=2]="Vertical"}(qD||(qD={}));var qR=function(e,t,n){var r=Re.fromDom(e.getContainer()),o=function(e,t,n,r,o){var i={};return i.height=FM(r+t.top,xb(e),Sb(e)),n===qD.Both&&(i.width=FM(o+t.left,wb(e),Cb(e))),i}(e,t,n,ln(r),bn(r));fe(o,(function(e,t){return Jt(r,t,IM(e))})),function(e){e.fire("ResizeEditor")}(e)},GR=function(e,t,n,r){var o=mn(20*n,20*r);return qR(e,o,t),R.some(!0)},KR=function(e,t){var n=function(e){var t=!e.hasPlugin("autoresize"),n=e.getParam("resize",t);return!1===n?qD.None:"both"===n?qD.Both:qD.Vertical}(e);return n===qD.None?R.none():R.some(Ah("resize-handle",{tag:"div",classes:["tox-statusbar__resize-handle"],attributes:{title:t.translate("Resize")},behaviours:[LR.config({mode:"mouse",repositionTarget:!1,onDrag:function(t,r,o){return qR(e,o,n)},blockerClass:"tox-blocker"}),np.config({mode:"special",onLeft:function(){return GR(e,n,-1,0)},onRight:function(){return GR(e,n,1,0)},onUp:function(){return GR(e,n,0,-1)},onDown:function(){return GR(e,n,0,1)}}),tx.config({}),gp.config({})]},t.icons))},XR=function(e,t){var n=function(){var n,r=[];return e.getParam("elementpath",!0,"boolean")&&r.push($R(e,{},t)),e.hasPlugin("wordcount")&&r.push(function(e,t){var n,r=function(e,n,r){return cp.set(e,[Ja(t.translate(["{0} "+r,n[r]]))])};return bh.sketch({dom:{tag:"button",classes:["tox-statusbar__wordcount"]},components:[],buttonBehaviours:wc([Xb(t.isDisabled),Gb(),tx.config({}),cp.config({}),_f.config({store:{mode:"memory",initialValue:{mode:"words",count:{words:0,characters:0}}}}),sp("wordcount-events",[Xi((function(e){var t=_f.getValue(e),n="words"===t.mode?"characters":"words";_f.setValue(e,{mode:n,count:t.count}),r(e,t.count,n)})),qi((function(t){e.on("wordCountUpdate",(function(e){var n=_f.getValue(t).mode;_f.setValue(t,{mode:n,count:e.wordCount}),r(t,e.wordCount,n)}))}))])]),eventOrder:(n={},n[ci()]=["disabling","alloy.base.behaviour","wordcount-events"],n)})}(e,t)),e.getParam("branding",!0,"boolean")&&r.push({dom:{tag:"span",classes:["tox-statusbar__branding"],innerHtml:''+n+""}}),r.length>0?[{dom:{tag:"div",classes:["tox-statusbar__text-container"]},components:r}]:[]};return{dom:{tag:"div",classes:["tox-statusbar"]},components:function(){var r=n(),o=KR(e,t);return r.concat(o.toArray())}()}},YR=function(e){var t,n,r,o,i=e.inline,a=i?UM:BM,u=Fb(e)?KE:bE,c=R.none(),s=pt(),l=s.browser.isIE()?["tox-platform-ie"]:[],f=s.deviceType.isTouch()?["tox-platform-touch"]:[],d=Rb(e),m=Pb(e),p=wh.isRtl()?{attributes:{dir:"rtl"}}:{},h={attributes:(t={},t[Ss]=d?jc.BottomToTop:jc.TopToBottom,t)},v=function(){return c.bind(kD.getHeader)},b=function(){Jt(q.element,"width",document.body.clientWidth+"px")},y=eu((n=bt(Ht(),m)&&"grid"===en(m,"display"),r={dom:O({tag:"div",classes:["tox","tox-silver-sink","tox-tinymce-aux"].concat(l).concat(f)},p),behaviours:wc([Il.config({useFixed:function(){return u.isDocked(v)}})])},o={dom:{styles:{width:document.body.clientWidth+"px"}},events:Bi([Fi(bi(),b)])},ur(r,n?o:{}))),w=function(){return Wn.value(y)},x=yh({dom:{tag:"div",classes:["tox-anchorbar"]}}),C=function(){return c.bind((function(e){return kD.getThrobber(e)})).getOrDie("Could not find throbber element")},S=oE(y,e,(function(){return c.bind((function(e){return x.getOpt(e)})).getOrDie("Could not find a anchor bar element")})),k=kD.parts.menubar({dom:{tag:"div",classes:["tox-menubar"]},backstage:S,onEscape:function(){e.focus()}}),T=Ab(e),_=kD.parts.toolbar(O({dom:{tag:"div",classes:["tox-toolbar"]},getSink:w,providers:S.shared.providers,onEscape:function(){e.focus()},type:T,lazyToolbar:function(){return c.bind((function(e){return kD.getToolbar(e)})).getOrDie("Could not find more toolbar element")},lazyHeader:function(){return v().getOrDie("Could not find header element")}},h)),E=kD.parts["multiple-toolbar"]({dom:{tag:"div",classes:["tox-toolbar-overlord"]},providers:S.shared.providers,onEscape:function(){e.focus()},type:T}),A=kD.parts.socket({dom:{tag:"div",classes:["tox-edit-area"]}}),D=kD.parts.sidebar({dom:{tag:"div",classes:["tox-sidebar"]}}),M=kD.parts.throbber({dom:{tag:"div",classes:["tox-throbber"]},backstage:S}),N=e.getParam("statusbar",!0,"boolean")&&!i?R.some(XR(e,S.shared.providers)):R.none(),z={dom:{tag:"div",classes:["tox-sidebar-wrap"]},components:[A,D]},B=_b(e),P=Ob(e),I=kb(e),F=kD.parts.header({dom:O({tag:"div",classes:["tox-editor-header"]},h),components:Y([I?[k]:[],B?[E]:P?[_]:[],Bb(e)?[]:[x.asSpec()]]),sticky:Fb(e),editor:e,sharedBackstage:S.shared}),L=Y([d?[]:[F],i?[]:[z],d?[F]:[]]),H=Y([[{dom:{tag:"div",classes:["tox-editor-container"]},components:L}],i?[]:N.toArray(),[M]]),V=Ib(e),j=O(O({role:"application"},wh.isRtl()?{dir:"rtl"}:{}),V?{"aria-hidden":"true"}:{}),W=eu(kD.sketch({dom:{tag:"div",classes:["tox","tox-tinymce"].concat(i?["tox-tinymce-inline"]:[]).concat(d?["tox-tinymce--toolbar-bottom"]:[]).concat(f).concat(l),styles:O({visibility:"hidden"},V?{opacity:"0",border:"0"}:{}),attributes:j},components:H,behaviours:wc([Gb(),Yd.config({disableClass:"tox-tinymce--disabled"}),np.config({mode:"cyclic",selector:".tox-menubar, .tox-toolbar, .tox-toolbar__primary, .tox-toolbar__overflow--open, .tox-sidebar__overflow--open, .tox-statusbar__path, .tox-statusbar__wordcount, .tox-statusbar__branding a, .tox-statusbar__resize-handle"})])}));c=R.some(W),e.shortcuts.add("alt+F9","focus menubar",(function(){kD.focusMenubar(W)})),e.shortcuts.add("alt+F10","focus toolbar",(function(){kD.focusToolbar(W)})),e.addCommand("ToggleToolbarDrawer",(function(){kD.toggleToolbarDrawer(W)})),e.addQueryStateHandler("ToggleToolbarDrawer",(function(){return kD.isToolbarDrawerToggled(W)}));var $=Xw(W),q=Xw(y);!function(e,t,n){var r=function(e,r){U([t,n],(function(t){t.broadcastEvent(e,r)}))},o=function(e,r){U([t,n],(function(t){t.broadcastOn([e],r)}))},i=function(e){return o(cf(),{target:e.target})},a=Ec(),u=ts(a,"touchstart",i),c=ts(a,"touchmove",(function(e){return r(pi(),e)})),s=ts(a,"touchend",(function(e){return r(hi(),e)})),l=ts(a,"mousedown",i),f=ts(a,"mouseup",(function(e){0===e.raw.button&&o(lf(),{target:e.target})})),d=function(e){return o(cf(),{target:Re.fromDom(e.target)})},m=function(e){0===e.button&&o(lf(),{target:Re.fromDom(e.target)})},g=function(){U(e.editorManager.get(),(function(t){e!==t&&t.fire("DismissPopups",{relatedTarget:e})}))},p=function(e){return r(vi(),rs(e))},h=function(e){o(sf(),{}),r(bi(),rs(e))},v=function(){return o(sf(),{})},b=function(t){t.state&&o(cf(),{target:Re.fromDom(e.getContainer())})},y=function(e){o(cf(),{target:Re.fromDom(e.relatedTarget.getContainer())})};e.on("PostRender",(function(){e.on("click",d),e.on("tap",d),e.on("mouseup",m),e.on("mousedown",g),e.on("ScrollWindow",p),e.on("ResizeWindow",h),e.on("ResizeEditor",v),e.on("AfterProgressState",b),e.on("DismissPopups",y)})),e.on("remove",(function(){e.off("click",d),e.off("tap",d),e.off("mouseup",m),e.off("mousedown",g),e.off("ScrollWindow",p),e.off("ResizeWindow",h),e.off("ResizeEditor",v),e.off("AfterProgressState",b),e.off("DismissPopups",y),l.unbind(),u.unbind(),c.unbind(),s.unbind(),f.unbind()})),e.on("detach",(function(){Xl(t),Xl(n),t.destroy(),n.destroy()}))}(e,$,q);var G=function(){var t=IM(LM(e)),n=IM(function(e){return HM(e).getOr(yb(e))}(e));return e.inline||(on("div","width",n)&&Jt(W.element,"width",n),on("div","height",t)?Jt(W.element,"height",t):Jt(W.element,"height","200px")),t};return{mothership:$,uiMothership:q,backstage:S,renderUI:function(){u.setup(e,S.shared,v),AN(e,S),YN(e,w,S),function(e){var t=e.ui.registry.getAll().sidebars;U(se(t),(function(n){var r=t[n],o=function(){return xe(R.from(e.queryCommandValue("ToggleSidebar")),n)};e.ui.registry.addToggleButton(n,{icon:r.icon,tooltip:r.tooltip,onAction:function(t){e.execCommand("ToggleSidebar",!1,n),t.setActive(o())},onSetup:function(t){var n=function(){return t.setActive(o())};return e.on("ToggleSidebar",n),function(){e.off("ToggleSidebar",n)}}})}))}(e),PA(e,C,S.shared),de(function(e){return e.getParam("toolbar_groups",{},"object")}(e),(function(t,n){e.ui.registry.addGroupToolbarButton(n,t)}));var t=e.ui.registry.getAll(),n=t.buttons,r=t.menuItems,o=t.contextToolbars,i=t.sidebars,c=Tb(e),s={menuItems:r,menus:Lb(e),menubar:Hb(e),toolbar:c.getOrThunk((function(){return function(e){return e.getParam("toolbar",!0)}(e)})),allowToolbarGroups:T===hv.floating,buttons:n,sidebar:i};dN(e,o,y,{backstage:S}),UR(e,y);var l=e.getElement(),f=G(),d={mothership:$,uiMothership:q,outerContainer:W},m={targetNode:l,height:f};return a.render(e,d,s,S,m)},getUi:function(){return{channels:{broadcastAll:q.broadcast,broadcastOn:q.broadcastOn,register:g}}}}},JR=h([Xr("lazySink"),oo("dragBlockClass"),bo("getBounds",Vn),fo("useTabstopAt",S),fo("eventOrder",{}),Ef("modalBehaviours",[np]),Eu("onExecute"),Du("onEscape")]),ZR={sketch:v},QR=h([id({name:"draghandle",overrides:function(e,t){return{behaviours:wc([LR.config({mode:"mouse",getTarget:function(e){return uu(e,'[role="dialog"]').getOr(e)},blockerClass:e.dragBlockClass.getOrDie(new Error("The drag blocker class was not specified for a dialog with a drag handle: \n"+JSON.stringify(t,null,2)).message),getBounds:e.getDragBounds})])}}}),rd({schema:[Xr("dom")],name:"title"}),rd({factory:ZR,schema:[Xr("dom")],name:"close"}),rd({factory:ZR,schema:[Xr("dom")],name:"body"}),id({factory:ZR,schema:[Xr("dom")],name:"footer"}),od({factory:{sketch:function(e,t){return O(O({},e),{dom:t.dom,components:t.components})}},schema:[fo("dom",{tag:"div",styles:{position:"fixed",left:"0px",top:"0px",right:"0px",bottom:"0px"}}),fo("components",[])],name:"blocker"})]),ez=Nd({name:"ModalDialog",configFields:JR(),partFields:QR(),factory:function(e,t,n,r){var o,i=Qc(),a=oa("modal-events"),u=O(O({},e.eventOrder),((o={})[yi()]=[a].concat(e.eventOrder["alloy.system.attached"]||[]),o));return{uid:e.uid,dom:e.dom,components:t,apis:{show:function(t){i.set(t);var n=e.lazySink(t).getOrDie(),o=r.blocker(),a=n.getSystem().build(O(O({},o),{components:o.components.concat([tu(t)]),behaviours:wc([gp.config({}),sp("dialog-blocker-events",[$i($o(),(function(){np.focusIn(t)}))])])}));jl(n,a),np.focusIn(t)},hide:function(e){i.clear(),Ot(e.element).each((function(t){e.getSystem().getByDom(t).each((function(e){$l(e)}))}))},getBody:function(t){return bd(t,e,"body")},getFooter:function(t){return bd(t,e,"footer")},setIdle:function(e){NA.unblock(e)},setBusy:function(e,t){NA.block(e,t)}},eventOrder:u,domModification:{attributes:{role:"dialog","aria-modal":"true"}},behaviours:Df(e.modalBehaviours,[cp.config({}),np.config({mode:"cyclic",onEnter:e.onExecute,onEscape:e.onEscape,useTabstopAt:e.useTabstopAt}),NA.config({getRoot:i.get}),sp(a,[qi((function(t){var n,r,o,i,a,u;n=t.element,r=bd(t,e,"title").element,o=qt(n,"id").fold((function(){var e=oa("dialog-label");return Ut(r,"id",e),e}),v),Ut(n,"aria-labelledby",o),i=t.element,a=bd(t,e,"body").element,u=R.from($t(i,"id")).fold((function(){var e=oa("dialog-describe");return Ut(a,"id",e),e}),v),Ut(i,"aria-describedby",u)}))])])}},apis:{show:function(e,t){e.show(t)},hide:function(e,t){e.hide(t)},getBody:function(e,t){return e.getBody(t)},getFooter:function(e,t){return e.getFooter(t)},setBusy:function(e,t,n){e.setBusy(t,n)},setIdle:function(e,t){e.setIdle(t)}}}),tz=kr([Zr("type"),Zr("name")].concat(Xv)),nz=Rr,rz=[qr("name","name",sr((function(){return oa("button-name")})),Nr),uo("icon"),ho("align","end",["start","end"]),vo("primary",!1),vo("disabled",!1)],oz=_(_([],rz,!0),[Zr("text")],!1),iz=_([Qr("type",["submit","cancel","custom"])],oz,!0),az=_([Qr("type",["menu"]),uo("text"),uo("tooltip"),uo("icon"),ro("items",tz)],rz,!0),uz=$r("type",{submit:iz,cancel:iz,custom:iz,menu:az}),cz=[Zr("type"),Zr("text"),Qr("level",["info","warn","error","success"]),Zr("icon"),fo("url","")],sz=kr(cz),lz=[Zr("type"),Zr("text"),vo("disabled",!1),vo("primary",!1),qr("name","name",sr((function(){return oa("button-name")})),Nr),uo("icon"),vo("borderless",!1)],fz=kr(lz),dz=[Zr("type"),Zr("name"),Zr("label"),vo("disabled",!1)],mz=kr(dz),gz=Rr,pz=[Zr("type"),Zr("name")],hz=pz.concat([uo("label")]),vz=hz.concat([fo("columns","auto")]),bz=kr(vz),yz=Er([Zr("value"),Zr("text"),Zr("icon")]),wz=kr(hz),xz=Nr,Cz=kr(hz),Sz=Nr,kz=pz.concat([po("tag","textarea"),Zr("scriptId"),Zr("scriptUrl"),function(e,t){return mo(e,t,Pr)}("settings",void 0)]),Oz=pz.concat([po("tag","textarea"),eo("init")]),Tz=Lr((function(e){return Vr("customeditor.old",Sr(Oz),e).orThunk((function(){return Vr("customeditor.new",Sr(kz),e)}))})),_z=Nr,Ez=kr(hz),Az=Or(vr),Dz=function(e){return[Zr("type"),Jr("columns"),e]},Mz=[Zr("type"),Zr("html"),ho("presets","presentation",["presentation","document"])],Nz=kr(Mz),Rz=hz.concat([vo("sandboxed",!0)]),zz=kr(Rz),Bz=Nr,Pz=hz.concat([Yr("currentState",kr([Xr("blob"),Zr("url")]))]),Iz=kr(Pz),Fz=hz.concat([uo("inputMode"),uo("placeholder"),vo("maximized",!1),vo("disabled",!1)]),Lz=kr(Fz),Hz=Nr,Vz=function(e){return[Zr("type"),Zr("label"),e]},jz=[Zr("text"),Zr("value")],Uz=[Zr("text"),ro("items",function(e,t){return n=Ve(t),{extract:function(e,t){return n().extract(e,t)},toString:function(){return n().toString()}};var n}(0,(function(){return Wz})))],Wz=Tr([kr(jz),kr(Uz)]),$z=hz.concat([ro("items",Wz),vo("disabled",!1)]),qz=kr($z),Gz=Nr,Kz=hz.concat([no("items",[Zr("text"),Zr("value")]),go("size",1),vo("disabled",!1)]),Xz=kr(Kz),Yz=Nr,Jz=hz.concat([vo("constrain",!0),vo("disabled",!1)]),Zz=kr(Jz),Qz=kr([Zr("width"),Zr("height")]),eB=[Zr("type"),ro("header",Nr),ro("cells",Or(Nr))],tB=kr(eB),nB=hz.concat([uo("placeholder"),vo("maximized",!1),vo("disabled",!1)]),rB=kr(nB),oB=Nr,iB=hz.concat([ho("filetype","file",["image","media","file"]),fo("disabled",!1)]),aB=kr(iB),uB=kr([Zr("value"),fo("meta",{})]),cB=function(e){return qr("items","items",{tag:"required",process:{}},Or(Lr((function(t){return Vr("Checking item of "+e,sB,t).fold((function(e){return Wn.error(Wr(e))}),(function(e){return Wn.value(e)}))}))))},sB=xr((function(){return Fr("type",{alertbanner:sz,bar:kr((e=cB("bar"),[Zr("type"),e])),button:fz,checkbox:mz,colorinput:wz,colorpicker:Cz,dropzone:Ez,grid:kr(Dz(cB("grid"))),iframe:zz,input:Lz,listbox:qz,selectbox:Xz,sizeinput:Zz,textarea:rB,urlinput:aB,customeditor:Tz,htmlpanel:Nz,imagetools:Iz,collection:bz,label:kr(Vz(cB("label"))),table:tB,panel:fB});var e})),lB=[Zr("type"),fo("classes",[]),ro("items",sB)],fB=kr(lB),dB=[qr("name","name",sr((function(){return oa("tab-name")})),Nr),Zr("title"),ro("items",sB)],mB=[Zr("type"),no("tabs",dB)],gB=kr(mB),pB=oz,hB=uz,vB=kr([Zr("title"),Yr("body",Fr("type",{panel:fB,tabpanel:gB})),po("size","normal"),ro("buttons",hB),fo("initialData",{}),bo("onAction",g),bo("onChange",g),bo("onSubmit",g),bo("onClose",g),bo("onCancel",g),fo("onTabChange",g)]),bB=kr(_([Qr("type",["cancel","custom"])],pB,!0)),yB=kr([Zr("title"),Zr("url"),ao("height"),ao("width"),so("buttons",bB),bo("onAction",g),bo("onCancel",g),bo("onClose",g),bo("onMessage",g)]),wB=function(e){return o(e)?[e].concat(J(ve(e),wB)):i(e)?J(e,wB):[]},xB=function(e){return r(e.type)&&r(e.name)},CB={checkbox:gz,colorinput:xz,colorpicker:Sz,dropzone:Az,input:Hz,iframe:Bz,sizeinput:Qz,selectbox:Yz,listbox:Gz,size:Qz,textarea:oB,urlinput:uB,customeditor:_z,collection:yz,togglemenuitem:nz},SB=function(e){var t=function(e){return $(wB(e),xB)}(e),n=J(t,(function(e){return function(e){return R.from(CB[e.type])}(e).fold((function(){return[]}),(function(t){return[Yr(e.name,t)]}))}));return kr(n)},kB=function(e){return{internalDialog:jr(Vr("dialog",vB,e)),dataValidator:SB(e),initialData:e.initialData}},OB={open:function(e,t){var n=kB(t);return e(n.internalDialog,n.initialData,n.dataValidator)},openUrl:function(e,t){return e(jr(Vr("dialog",yB,t)))},redial:function(e){return kB(e)}},TB=function(e){var t=[],n={};return fe(e,(function(e,r){e.fold((function(){t.push(r)}),(function(e){n[r]=e}))})),t.length>0?Wn.error(t):Wn.value(n)},_B=function(e,t){var n=yh(sk.sketch((function(n){return{dom:{tag:"div",classes:["tox-form"].concat(e.classes)},components:j(e.items,(function(e){return l_(n,e,t)}))}})));return{dom:{tag:"div",classes:["tox-dialog__body"]},components:[{dom:{tag:"div",classes:["tox-dialog__body-content"]},components:[n.asSpec()]}],behaviours:wc([np.config({mode:"acyclic",useTabstopAt:w(Fk)}),bk(n),_k(n,{postprocess:function(e){return TB(e).fold((function(e){return console.error(e),{}}),v)}})])}},EB=Md({name:"TabButton",configFields:[fo("uid",void 0),Xr("value"),qr("dom","dom",fr((function(){return{attributes:{role:"tab",id:oa("aria"),"aria-selected":"false"}}})),Ar()),oo("action"),fo("domModification",{}),Ef("tabButtonBehaviours",[gp,np,_f]),Xr("view")],factory:function(e,t){return{uid:e.uid,dom:e.dom,components:e.components,events:Ep(e.action),behaviours:Df(e.tabButtonBehaviours,[gp.config({}),np.config({mode:"execution",useSpace:!0,useEnter:!0}),_f.config({store:{mode:"memory",initialValue:e.value}})]),domModification:e.domModification}}}),AB=h([Xr("tabs"),Xr("dom"),fo("clickToDismiss",!1),Ef("tabbarBehaviours",[um,np]),Ou(["tabClass","selectedClass"])]),DB=ad({factory:EB,name:"tabs",unit:"tab",overrides:function(e){var t=function(e,t){um.dehighlight(e,t),Di(e,Ti(),{tabbar:e,button:t})},n=function(e,t){um.highlight(e,t),Di(e,Oi(),{tabbar:e,button:t})};return{action:function(r){var o=r.getSystem().getByUid(e.uid).getOrDie(),i=um.isHighlighted(o,r);(i&&e.clickToDismiss?t:i?g:n)(o,r)},domModification:{classes:[e.markers.tabClass]}}}}),MB=h([DB]),NB=Nd({name:"Tabbar",configFields:AB(),partFields:MB(),factory:function(e,t,n,r){return{uid:e.uid,dom:e.dom,components:t,"debug.sketcher":"Tabbar",domModification:{attributes:{role:"tablist"}},behaviours:Df(e.tabbarBehaviours,[um.config({highlightClass:e.markers.selectedClass,itemClass:e.markers.tabClass,onHighlight:function(e,t){Ut(t.element,"aria-selected","true")},onDehighlight:function(e,t){Ut(t.element,"aria-selected","false")}}),np.config({mode:"flow",getInitial:function(e){return um.getHighlighted(e).map((function(e){return e.element}))},selector:"."+e.markers.tabClass,executeOnMove:!0})])}}}),RB=Md({name:"Tabview",configFields:[Ef("tabviewBehaviours",[cp])],factory:function(e,t){return{uid:e.uid,dom:e.dom,behaviours:Df(e.tabviewBehaviours,[cp.config({})]),domModification:{attributes:{role:"tabpanel"}}}}}),zB=h([fo("selectFirst",!0),_u("onChangeTab"),_u("onDismissTab"),fo("tabs",[]),Ef("tabSectionBehaviours",[])]),BB=rd({factory:NB,schema:[Xr("dom"),to("markers",[Xr("tabClass"),Xr("selectedClass")])],name:"tabbar",defaults:function(e){return{tabs:e.tabs}}}),PB=rd({factory:RB,name:"tabview"}),IB=h([BB,PB]),FB=Nd({name:"TabSection",configFields:zB(),partFields:IB(),factory:function(e,t,n,r){var o=function(t,n){vd(t,e,"tabbar").each((function(e){n(e).each(Mi)}))};return{uid:e.uid,dom:e.dom,components:t,behaviours:Af(e.tabSectionBehaviours),events:Bi(Y([e.selectFirst?[qi((function(e,t){o(e,um.getFirst)}))]:[],[Fi(Oi(),(function(t,n){!function(t){var n=_f.getValue(t);vd(t,e,"tabview").each((function(r){var o=K(e.tabs,(function(e){return e.value===n}));o.each((function(n){var o=n.view();qt(t.element,"id").each((function(e){Ut(r.element,"aria-labelledby",e)})),cp.set(r,o),e.onChangeTab(r,t,o)}))}))}(n.event.button)})),Fi(Ti(),(function(t,n){var r=n.event.button;e.onDismissTab(t,r)}))]])),apis:{getViewItems:function(t){return vd(t,e,"tabview").map((function(e){return cp.contents(e)})).getOr([])},showTab:function(e,t){o(e,(function(e){var n=um.getCandidates(e);return K(n,(function(e){return _f.getValue(e)===t})).filter((function(t){return!um.isHighlighted(e,t)}))}))}}}},apis:{getViewItems:function(e,t){return e.getViewItems(t)},showTab:function(e,t,n){e.showTab(t,n)}}}),LB=function(e,t){Jt(e,"height",t+"px"),pt().browser.isIE()?an(e,"flex-basis"):Jt(e,"flex-basis",t+"px")},HB=function(e,t,n){uu(e,'[role="dialog"]').each((function(e){su(e,'[role="tablist"]').each((function(r){n.get().map((function(n){return Jt(t,"height","0"),Jt(t,"flex-basis","0"),Math.min(n,function(e,t,n){var r,o=St(e).dom,i=uu(e,".tox-dialog-wrap").getOr(e);r="fixed"===en(i,"position")?Math.max(o.clientHeight,window.innerHeight):Math.max(o.offsetHeight,o.scrollHeight);var a=ln(t),u=t.dom.offsetLeft>=n.dom.offsetLeft+bn(n)?Math.max(ln(n),a):a,c=parseInt(en(e,"margin-top"),10)||0,s=parseInt(en(e,"margin-bottom"),10)||0;return r-(ln(e)+c+s-u)}(e,t,r))})).each((function(e){LB(t,e)}))}))}))},VB=function(e){return su(e,'[role="tabpanel"]')},jB=function(e){var t,n,r=(t=Qc(),n=[qi((function(n){var r=n.element;VB(r).each((function(o){Jt(o,"visibility","hidden"),n.getSystem().getByDom(o).toOptional().each((function(n){var r=function(e,t,n){return j(e,(function(r,o){cp.set(n,e[o].view());var i=t.dom.getBoundingClientRect();return cp.set(n,[]),i.height}))}(e,o,n),i=function(e){return ie(re(e,(function(e,t){return e>t?-1:ee}))?(t.set(i),HB(r,e,t)):o.each((function(t){LB(e,t)})),an(e,"visibility"),n.each(Ac)}))}))],{extraEvents:n,selectFirst:!1});return{smartTabHeight:r,naiveTabHeight:{extraEvents:[],selectFirst:!0}}},UB="send-data-to-section",WB="send-data-to-view",$B=function(e,t){var n=xo({}),r=function(e){var t=_f.getValue(e),r=TB(t).getOr({}),o=n.get(),i=ur(o,r);n.set(i)},o=function(e){var t=n.get();_f.setValue(e,t)},i=xo(null),a=j(e.tabs,(function(e){return{value:e.name,dom:{tag:"div",classes:["tox-dialog__body-nav-item"],innerHtml:t.shared.providers.translate(e.title)},view:function(){return[sk.sketch((function(n){return{dom:{tag:"div",classes:["tox-form"]},components:j(e.items,(function(e){return l_(n,e,t)})),formBehaviours:wc([np.config({mode:"acyclic",useTabstopAt:w(Fk)}),sp("TabView.form.events",[qi(o),Gi(r)]),Tc.config({channels:To([{key:UB,value:{onReceive:r}},{key:WB,value:{onReceive:o}}])})])}}))]}}})),u=jB(a).smartTabHeight;return FB.sketch({dom:{tag:"div",classes:["tox-dialog__body"]},onChangeTab:function(e,t,n){var r=_f.getValue(t);Di(e,gx,{name:r,oldName:i.get()}),i.set(r)},tabs:a,components:[FB.parts.tabbar({dom:{tag:"div",classes:["tox-dialog__body-nav"]},components:[NB.parts.tabs({})],markers:{tabClass:"tox-tab",selectedClass:"tox-dialog__body-nav-item--active"},tabbarBehaviours:wc([tx.config({})])}),FB.parts.tabview({dom:{tag:"div",classes:["tox-dialog__body-content"]}})],selectFirst:u.selectFirst,tabSectionBehaviours:wc([sp("tabpanel",u.extraEvents),np.config({mode:"acyclic"}),Pd.config({find:function(e){return ie(FB.getViewItems(e))}}),_f.config({store:{mode:"manual",getValue:function(e){return e.getSystem().broadcastOn([UB],{}),n.get()},setValue:function(e,t){n.set(t),e.getSystem().broadcastOn([WB],{})}}})])})},qB=oa("update-dialog"),GB=oa("update-title"),KB=oa("update-body"),XB=oa("update-footer"),YB=oa("body-send-message"),JB=function(e,t,n,r){return{dom:{tag:"div",classes:["tox-dialog__content-js"],attributes:O(O({},t.map((function(e){return{id:e}})).getOr({})),r?{"aria-live":"polite"}:{})},components:[],behaviours:wc([yk(0),lM.config({channel:KB,updateState:function(e,t){return R.some({isTabPanel:function(){return"tabpanel"===t.body.type}})},renderComponents:function(e){return"tabpanel"===e.body.type?[$B(e.body,n)]:[_B(e.body,n)]},initialData:e})])}},ZB=ay.deviceType.isTouch(),QB=function(e,t){return{dom:{tag:"div",styles:{display:"none"},classes:["tox-dialog__header"]},components:[e,t]}},eP=function(e,t){return ez.parts.close(bh.sketch({dom:{tag:"button",classes:["tox-button","tox-button--icon","tox-button--naked"],attributes:{type:"button","aria-label":t.translate("Close")}},action:e,buttonBehaviours:wc([tx.config({})])}))},tP=function(){return ez.parts.title({dom:{tag:"div",classes:["tox-dialog__title"],innerHtml:"",styles:{display:"none"}}})},nP=function(e,t){return ez.parts.body({dom:{tag:"div",classes:["tox-dialog__body"]},components:[{dom:{tag:"div",classes:["tox-dialog__body-content"]},components:[{dom:RA("

    "+t.translate(e)+"

    ")}]}]})},rP=function(e){return ez.parts.footer({dom:{tag:"div",classes:["tox-dialog__footer"]},components:e})},oP=function(e,t){return[Kw.sketch({dom:{tag:"div",classes:["tox-dialog__footer-start"]},components:e}),Kw.sketch({dom:{tag:"div",classes:["tox-dialog__footer-end"]},components:t})]},iP=function(e){var t,n="tox-dialog",r=n+"-wrap",o=r+"__backdrop",i=n+"__disable-scroll";return ez.sketch({lazySink:e.lazySink,onEscape:function(t){return e.onEscape(t),R.some(!0)},useTabstopAt:function(e){return!Fk(e)},dom:{tag:"div",classes:[n].concat(e.extraClasses),styles:O({position:"relative"},e.extraStyles)},components:_([e.header,e.body],e.footer.toArray(),!0),parts:{blocker:{dom:RA('
    '),components:[{dom:{tag:"div",classes:ZB?[o,o+"--opaque"]:[o]}}]}},dragBlockClass:r,modalBehaviours:wc(_([gp.config({}),sp("dialog-events",e.dialogEvents.concat([$i($o(),(function(e,t){np.focusIn(e)}))])),sp("scroll-lock",[qi((function(){Ia(Ht(),i)})),Gi((function(){La(Ht(),i)}))])],e.extraBehaviours,!0)),eventOrder:O((t={},t[ci()]=["dialog-events"],t[yi()]=["scroll-lock","dialog-events","alloy.base.behaviour"],t[wi()]=["alloy.base.behaviour","dialog-events","scroll-lock"],t),e.eventOrder)})},aP=function(e){return bh.sketch({dom:{tag:"button",classes:["tox-button","tox-button--icon","tox-button--naked"],attributes:{type:"button","aria-label":e.translate("Close"),title:e.translate("Close")}},components:[Ah("close",{tag:"div",classes:["tox-icon"]},e.icons)],action:function(e){Ai(e,sx)}})},uP=function(e,t,n){var r=function(e){return[Ja(n.translate(e.title))]};return{dom:{tag:"div",classes:["tox-dialog__title"],attributes:O({},t.map((function(e){return{id:e}})).getOr({}))},components:r(e),behaviours:wc([lM.config({channel:GB,renderComponents:r})])}},cP=function(){return{dom:RA('
    ')}},sP=function(e,t){return function(e,t){var n=ez.parts.title(uP(e,R.none(),t)),r=ez.parts.draghandle(cP()),o=ez.parts.close(aP(t)),i=[n].concat(e.draggable?[r]:[]).concat([o]);return Kw.sketch({dom:RA('
    '),components:i})}({title:t.shared.providers.translate(e),draggable:t.dialog.isDraggableModal()},t.shared.providers)},lP=function(e,t,n){return{dom:{tag:"div",classes:["tox-dialog__busy-spinner"],attributes:{"aria-label":n.translate(e)},styles:{left:"0px",right:"0px",bottom:"0px",top:"0px",position:"absolute"}},behaviours:t,components:[{dom:RA('
    ')}]}},fP=function(e,t,n){return{onClose:function(){return n.closeWindow()},onBlock:function(n){ez.setBusy(e(),(function(e,r){return lP(n.message,r,t)}))},onUnblock:function(){ez.setIdle(e())}}},dP=function(e,t,n,r){var o;return eu(iP(O(O({},e),{lazySink:r.shared.getSink,extraBehaviours:_([lM.config({channel:qB,updateState:function(e,t){return R.some(t)},initialData:t}),Dk({})],e.extraBehaviours,!0),onEscape:function(e){Ai(e,sx)},dialogEvents:n,eventOrder:(o={},o[ui()]=[lM.name(),Tc.name()],o[yi()]=["scroll-lock",lM.name(),"messages","dialog-events","alloy.base.behaviour"],o[wi()]=["alloy.base.behaviour","dialog-events","messages",lM.name(),"scroll-lock"],o)})))},mP=function(e){return j(e,(function(e){return"menu"===e.type?function(e){var t=j(e.items,(function(e){var t=xo(!1);return O(O({},e),{storage:t})}));return O(O({},e),{items:t})}(e):e}))},gP=function(e){return G(e,(function(e,t){return"menu"===t.type?G(t.items,(function(e,t){return e[t.name]=t.storage,e}),e):e}),{})},pP=function(e,t){return[ji($o(),Ik),e(cx,(function(e,n){t.onClose(),n.onClose()})),e(sx,(function(e,t,n,r){t.onCancel(e),Ai(r,cx)})),Fi(mx,(function(e,n){return t.onUnblock()})),Fi(dx,(function(e,n){return t.onBlock(n.event)}))]},hP=function(e,t){var n=function(t,n){return Fi(t,(function(t,o){r(t,(function(r,i){n(e(),r,o.event,t)}))}))},r=function(e,t){lM.getState(e).get().each((function(n){t(n,e)}))};return _(_([],pP(n,t),!0),[n(lx,(function(e,t,n){t.onAction(e,{name:n.name})}))],!1)},vP=function(e,t,n){var r=function(t,n){return Fi(t,(function(t,r){o(t,(function(o,i){n(e(),o,r.event,t)}))}))},o=function(e,t){lM.getState(e).get().each((function(n){t(n.internalDialog,e)}))};return _(_([],pP(r,t),!0),[r(fx,(function(e,t){return t.onSubmit(e)})),r(ux,(function(e,t,n){t.onChange(e,{name:n.name})})),r(lx,(function(e,t,r,o){var i=function(){return np.focusIn(o)},a=function(e){return Gt(e,"disabled")||qt(e,"aria-disabled").exists((function(e){return"true"===e}))},u=zt(o.element),c=Mc(u);t.onAction(e,{name:r.name,value:r.value}),Mc(u).fold(i,(function(e){a(e)||c.exists((function(t){return wt(e,t)&&a(t)}))?i():n().toOptional().filter((function(t){return!wt(t.element,e)})).each(i)}))})),r(gx,(function(e,t,n){t.onTabChange(e,{newTabName:n.name,oldTabName:n.oldName})})),Gi((function(t){var n=e();_f.setValue(t,n.getData())}))],!1)},bP=function(e,t){var n=t.map((function(e){return e.footerButtons})).getOr([]),r=W(n,(function(e){return"start"===e.align})),o=function(e,t){return Kw.sketch({dom:{tag:"div",classes:["tox-dialog__footer-"+e]},components:j(t,(function(e){return e.memento.asSpec()}))})};return[o("start",r.pass),o("end",r.fail)]},yP=function(e,t){return{dom:RA(''),components:[],behaviours:wc([lM.config({channel:XB,initialData:e,updateState:function(e,n){var r=j(n.buttons,(function(e){var n=yh(function(e,t){return ZO(e,e.type,t)}(e,t));return{name:e.name,align:e.align,memento:n}}));return R.some({lookupByName:function(e,t){return function(e,t,n){return K(t,(function(e){return e.name===n})).bind((function(t){return t.memento.getOpt(e)}))}(e,r,t)},footerButtons:r})},renderComponents:bP})])}},wP=function(e,t){return ez.parts.footer(yP(e,t))},xP=function(e,t){if(e.getRoot().getSystem().isConnected()){var n=Pd.getCurrent(e.getFormWrapper()).getOr(e.getFormWrapper());return sk.getField(n,t).fold((function(){var r=e.getFooter();return lM.getState(r).get().bind((function(e){return e.lookupByName(n,t)}))}),(function(e){return R.some(e)}))}return R.none()},CP=function(e,t,n){var o=function(t){var n=e.getRoot();n.getSystem().isConnected()&&t(n)},i={getData:function(){var t=e.getRoot(),r=t.getSystem().isConnected()?e.getFormWrapper():t,o=_f.getValue(r),i=de(n,(function(e){return e.get()}));return O(O({},o),i)},setData:function(t){o((function(r){var o=i.getData(),a=O(O({},o),t),u=function(e,t){var n=e.getRoot();return lM.getState(n).get().map((function(e){return jr(Vr("data",e.dataValidator,t))})).getOr(t)}(e,a),c=e.getFormWrapper();_f.setValue(c,u),fe(n,(function(e,t){ye(a,t)&&e.set(a[t])}))}))},disable:function(t){xP(e,t).each(Yd.disable)},enable:function(t){xP(e,t).each(Yd.enable)},focus:function(t){xP(e,t).each(gp.focus)},block:function(e){if(!r(e))throw new Error("The dialogInstanceAPI.block function should be passed a blocking message of type string as an argument");o((function(t){Di(t,dx,{message:e})}))},unblock:function(){o((function(e){Ai(e,mx)}))},showTab:function(t){o((function(n){var r=e.getBody();lM.getState(r).get().exists((function(e){return e.isTabPanel()}))&&Pd.getCurrent(r).each((function(e){FB.showTab(e,t)}))}))},redial:function(e){o((function(n){var r=t(e);n.getSystem().broadcastOn([qB],r),n.getSystem().broadcastOn([GB],r.internalDialog),n.getSystem().broadcastOn([KB],r.internalDialog),n.getSystem().broadcastOn([XB],r.internalDialog),i.setData(r.initialData)}))},close:function(){o((function(e){Ai(e,cx)}))}};return i},SP=function(e,t,n){var r=sP(e.internalDialog.title,n),o=function(e,t){var n=JB(e,R.none(),t,!1);return ez.parts.body(n)}({body:e.internalDialog.body},n),i=mP(e.internalDialog.buttons),a=gP(i),u=wP({buttons:i},n),c=vP((function(){return m}),fP((function(){return f}),n.shared.providers,t),n.shared.getSink),s=function(e){switch(e){case"large":return["tox-dialog--width-lg"];case"medium":return["tox-dialog--width-md"];default:return[]}}(e.internalDialog.size),l={header:r,body:o,footer:R.some(u),extraClasses:s,extraBehaviours:[],extraStyles:{}},f=dP(l,e,c,n),d={getRoot:h(f),getBody:function(){return ez.getBody(f)},getFooter:function(){return ez.getFooter(f)},getFormWrapper:function(){var e=ez.getBody(f);return Pd.getCurrent(e).getOr(e)}},m=CP(d,t.redial,a);return{dialog:f,instanceApi:m}},kP=function(e,t,n,r){var o,i,a,u,c,s=oa("dialog-label"),l=oa("dialog-content"),f=yh((a={title:e.internalDialog.title,draggable:!0},u=s,c=n.shared.providers,Kw.sketch({dom:RA('
    '),components:[uP(a,R.some(u),c),cP(),aP(c)],containerBehaviours:wc([LR.config({mode:"mouse",blockerClass:"blocker",getTarget:function(e){return lu(e,'[role="dialog"]').getOrDie()},snaps:{getSnapPoints:function(){return[]},leftAttr:"data-drag-left",topAttr:"data-drag-top"}})])}))),d=yh(function(e,t,n,r){return JB(e,R.some(t),n,r)}({body:e.internalDialog.body},l,n,r)),m=mP(e.internalDialog.buttons),g=gP(m),p=yh(function(e,t){return yP(e,t)}({buttons:m},n)),v=vP((function(){return y}),{onBlock:function(e){NA.block(b,(function(t,r){return lP(e.message,r,n.shared.providers)}))},onUnblock:function(){NA.unblock(b)},onClose:function(){return t.closeWindow()}},n.shared.getSink),b=eu({dom:{tag:"div",classes:["tox-dialog","tox-dialog-inline"],attributes:(o={role:"dialog"},o["aria-labelledby"]=s,o["aria-describedby"]=l,o)},eventOrder:(i={},i[ui()]=[lM.name(),Tc.name()],i[ci()]=["execute-on-form"],i[yi()]=["reflecting","execute-on-form"],i),behaviours:wc([np.config({mode:"cyclic",onEscape:function(e){return Ai(e,cx),R.some(!0)},useTabstopAt:function(e){return!Fk(e)&&("button"!==Be(e)||"disabled"!==$t(e,"disabled"))}}),lM.config({channel:qB,updateState:function(e,t){return R.some(t)},initialData:e}),gp.config({}),sp("execute-on-form",v.concat([$i($o(),(function(e,t){np.focusIn(e)}))])),NA.config({getRoot:function(){return R.some(b)}}),cp.config({}),Dk({})]),components:[f.asSpec(),d.asSpec(),p.asSpec()]}),y=CP({getRoot:h(b),getFooter:function(){return p.get(b)},getBody:function(){return d.get(b)},getFormWrapper:function(){var e=d.get(b);return Pd.getCurrent(e).getOr(e)}},t.redial,g);return{dialog:b,instanceApi:y}},OP=tinymce.util.Tools.resolve("tinymce.util.URI"),TP=["insertContent","setContent","execCommand","close","block","unblock"],_P=function(e){return o(e)&&-1!==TP.indexOf(e.mceAction)},EP=function(e,t,n,i){var a,c,s,l=sP(e.title,i),f=function(e){var t={dom:{tag:"div",classes:["tox-dialog__content-js"]},components:[{dom:{tag:"div",classes:["tox-dialog__body-iframe"]},components:[Bk({dom:{tag:"iframe",attributes:{src:e.url}},behaviours:wc([tx.config({}),gp.config({})])})]}],behaviours:wc([np.config({mode:"acyclic",useTabstopAt:w(Fk)})])};return ez.parts.body(t)}(e),d=e.buttons.bind((function(e){return 0===e.length?R.none():R.some(wP({buttons:e},i))})),m=hP((function(){return C}),fP((function(){return x}),i.shared.providers,t)),g=O(O({},e.height.fold((function(){return{}}),(function(e){return{height:e+"px","max-height":e+"px"}}))),e.width.fold((function(){return{}}),(function(e){return{width:e+"px","max-width":e+"px"}}))),p=e.width.isNone()&&e.height.isNone()?["tox-dialog--width-lg"]:[],h=new OP(e.url,{base_uri:new OP(window.location.href)}),v=h.protocol+"://"+h.host+(h.port?":"+h.port:""),b=Zc(),y=[sp("messages",[qi((function(){var t=ts(Re.fromDom(window),"message",(function(t){if(h.isSameOrigin(new OP(t.raw.origin))){var r=t.raw.data;_P(r)?function(e,t,n){switch(n.mceAction){case"insertContent":e.insertContent(n.content);break;case"setContent":e.setContent(n.content);break;case"execCommand":var r=!!u(n.ui)&&n.ui;e.execCommand(n.cmd,r,n.value);break;case"close":t.close();break;case"block":t.block(n.message);break;case"unblock":t.unblock()}}(n,C,r):function(e){return!_P(e)&&o(e)&&ye(e,"mceAction")}(r)&&e.onMessage(C,r)}}));b.set(t)})),Gi(b.clear)]),Tc.config({channels:(a={},a[YB]={onReceive:function(e,t){su(e.element,"iframe").each((function(e){e.dom.contentWindow.postMessage(t,v)}))}},a)})],x=dP({header:l,body:f,footer:d,extraClasses:p,extraBehaviours:y,extraStyles:g},e,m,i),C=(c=x,s=function(e){c.getSystem().isConnected()&&e(c)},{block:function(e){if(!r(e))throw new Error("The urlDialogInstanceAPI.block function should be passed a blocking message of type string as an argument");s((function(t){Di(t,dx,{message:e})}))},unblock:function(){s((function(e){Ai(e,mx)}))},close:function(){s((function(e){Ai(e,cx)}))},sendMessage:function(e){s((function(t){t.getSystem().broadcastOn([YB],e)}))}});return{dialog:x,instanceApi:C}},AP=function(e,t,n){return t&&n?[]:[FE.config({contextual:{lazyContext:function(){return R.some(Ln(Re.fromDom(e.getContentAreaContainer())))},fadeInClass:"tox-dialog-dock-fadein",fadeOutClass:"tox-dialog-dock-fadeout",transitionClass:"tox-dialog-dock-transition"},modes:["top"]})]},DP=function(e){var t=e.backstage,n=e.editor,r=Fb(n),o=function(e){var t=e.backstage.shared;return{open:function(n,r){var o=function(){ez.hide(c),r()},i=yh(ZO({name:"close-alert",text:"OK",primary:!0,align:"end",disabled:!1,icon:R.none()},"cancel",e.backstage)),a=tP(),u=eP(o,t.providers),c=eu(iP({lazySink:function(){return t.getSink()},header:QB(a,u),body:nP(n,t.providers),footer:R.some(rP(oP([],[i.asSpec()]))),onEscape:o,extraClasses:["tox-alert-dialog"],extraBehaviours:[],extraStyles:{},dialogEvents:[Fi(sx,o)],eventOrder:{}}));ez.show(c);var s=i.get(c);gp.focus(s)}}}(e),i=function(e){var t=e.backstage.shared;return{open:function(n,r){var o=function(e){ez.hide(s),r(e)},i=yh(ZO({name:"yes",text:"Yes",primary:!0,align:"end",disabled:!1,icon:R.none()},"submit",e.backstage)),a=ZO({name:"no",text:"No",primary:!1,align:"end",disabled:!1,icon:R.none()},"cancel",e.backstage),u=tP(),c=eP((function(){return o(!1)}),t.providers),s=eu(iP({lazySink:function(){return t.getSink()},header:QB(u,c),body:nP(n,t.providers),footer:R.some(rP(oP([],[a,i.asSpec()]))),onEscape:function(){return o(!1)},extraClasses:["tox-confirm-dialog"],extraBehaviours:[],extraStyles:{},dialogEvents:[Fi(sx,(function(){return o(!1)})),Fi(fx,(function(){return o(!0)}))],eventOrder:{}}));ez.show(s);var l=i.get(s);gp.focus(l)}}}(e),a=function(e,r){return OB.openUrl((function(e){var o=EP(e,{closeWindow:function(){ez.hide(o.dialog),r(o.instanceApi)}},n,t);return ez.show(o.dialog),o.instanceApi}),e)},u=function(e,n){return OB.open((function(e,r,o){var i=r,a=SP({dataValidator:o,initialData:i,internalDialog:e},{redial:OB.redial,closeWindow:function(){ez.hide(a.dialog),n(a.instanceApi)}},t);return ez.show(a.dialog),a.instanceApi.setData(i),a.instanceApi}),e)},c=function(e,o,i,a){return OB.open((function(e,u,c){var s=jr(Vr("data",c,u)),l=Qc(),f=t.shared.header.isPositionedAtTop(),d=function(){return l.on((function(e){Jp.reposition(e),FE.refresh(e)}))},m=kP({dataValidator:c,initialData:s,internalDialog:e},{redial:OB.redial,closeWindow:function(){l.on(Jp.hide),n.off("ResizeEditor",d),l.clear(),i(m.instanceApi)}},t,a),g=eu(Jp.sketch(O(O({lazySink:t.shared.getSink,dom:{tag:"div",classes:[]},fireDismissalEventInstead:{}},f?{}:{fireRepositionEventInstead:{}}),{inlineBehaviours:wc(_([sp("window-manager-inline-events",[Fi(xi(),(function(e,t){Ai(m.dialog,sx)}))])],AP(n,r,f),!0)),isExtraPart:function(e,t){return function(e){return zw(e,".tox-alert-dialog")||zw(e,".tox-confirm-dialog")}(t)}})));return l.set(g),Jp.showWithin(g,tu(m.dialog),{anchor:o},R.some(Ht())),r&&f||(FE.refresh(g),n.on("ResizeEditor",d)),m.instanceApi.setData(s),np.focusIn(m.dialog),m.instanceApi}),e)};return{open:function(e,n,r){return void 0!==n&&"toolbar"===n.inline?c(e,t.shared.anchors.inlineDialog(),r,n.ariaAttrs):void 0!==n&&"cursor"===n.inline?c(e,t.shared.anchors.cursor(),r,n.ariaAttrs):u(e,r)},openUrl:function(e,t){return a(e,t)},alert:function(e,t){o.open(e,(function(){t()}))},close:function(e){e.close()},confirm:function(e,t){i.open(e,(function(e){t(e)}))}}};k.add("silver",(function(e){var t=YR(e),n=t.uiMothership,r=t.backstage,o=t.renderUI,i=t.getUi;Rw(e,r.shared);var a=DP({editor:e,backstage:r});return{renderUI:o,getWindowManagerImpl:h(a),getNotificationManagerImpl:function(){return Nh(e,{backstage:r},n)},ui:i()}}))}(),function(){"use strict";var e=function(){return e=Object.assign||function(e){for(var t,n=1,r=arguments.length;n-1},I=function(e,t){for(var n=0,r=e.length;n=0;n--)t(e[n],n)}(e,(function(e,r){n=t(n,e,r)})),n},j=function(e,t,n){return L(e,(function(e,r){n=t(n,e,r)})),n},U=function(e,t){return function(e,t,n){for(var r=0,o=e.length;r=0&&t1)throw console.error("HTML does not have a single root node",e),new Error("HTML must have a single root node");return ft(n.childNodes[0])},fromTag:function(e,t){var n=(t||document).createElement(e);return ft(n)},fromText:function(e,t){var n=(t||document).createTextNode(e);return ft(n)},fromDom:ft,fromPoint:function(e,t,n){return M.from(e.dom.elementFromPoint(t,n)).map(ft)}},mt=function(e,t){var n=e.dom;if(1!==n.nodeType)return!1;var r=n;if(void 0!==r.matches)return r.matches(t);if(void 0!==r.msMatchesSelector)return r.msMatchesSelector(t);if(void 0!==r.webkitMatchesSelector)return r.webkitMatchesSelector(t);if(void 0!==r.mozMatchesSelector)return r.mozMatchesSelector(t);throw new Error("Browser lacks native selectors")},gt=function(e){return 1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType||0===e.childElementCount},pt=function(e,t){var n=void 0===t?document:t.dom;return gt(n)?[]:F(n.querySelectorAll(e),dt.fromDom)},ht=function(e,t){var n=void 0===t?document:t.dom;return gt(n)?M.none():M.from(n.querySelector(e)).map(dt.fromDom)},vt=function(e,t){return e.dom===t.dom};"undefined"!=typeof window?window:Function("return this;")();var bt,yt=function(e){return e.dom.nodeName.toLowerCase()},wt=function(e){return function(t){return function(e){return e.dom.nodeType}(t)===e}},xt=wt(1),Ct=wt(3),St=wt(9),kt=wt(11),Ot=function(e){return dt.fromDom(e.dom.ownerDocument)},Tt=function(e){return St(e)?e:Ot(e)},_t=function(e){return M.from(e.dom.parentNode).map(dt.fromDom)},Et=function(e){return F(e.dom.childNodes,dt.fromDom)},At=function(e,t){var n=e.dom.childNodes;return M.from(n[t]).map(dt.fromDom)},Dt=function(e,t){_t(e).each((function(n){n.dom.insertBefore(t.dom,e.dom)}))},Mt=function(e,t){var n=function(e){return M.from(e.dom.nextSibling).map(dt.fromDom)}(e);n.fold((function(){_t(e).each((function(e){Rt(e,t)}))}),(function(e){Dt(e,t)}))},Nt=function(e,t){var n=function(e){return At(e,0)}(e);n.fold((function(){Rt(e,t)}),(function(n){e.dom.insertBefore(t.dom,n.dom)}))},Rt=function(e,t){e.dom.appendChild(t.dom)},zt=function(e,t){L(t,(function(t){Rt(e,t)}))},Bt=function(e){e.dom.textContent="",L(Et(e),(function(e){Pt(e)}))},Pt=function(e){var t=e.dom;null!==t.parentNode&&t.parentNode.removeChild(t)},It=function(e){return kt(e)&&d(e.dom.host)},Ft=m(Element.prototype.attachShadow)&&m(Node.prototype.getRootNode),Lt=v(Ft),Ht=Ft?function(e){return dt.fromDom(e.dom.getRootNode())}:Tt,Vt=function(e){return dt.fromDom(e.dom.host)},jt=function(e){return d(e.dom.shadowRoot)},Ut=function(e){var t=Ct(e)?e.dom.parentNode:e.dom;if(null==t||null===t.ownerDocument)return!1;var n,r,o=t.ownerDocument;return function(e){var t=Ht(e);return It(t)?M.some(t):M.none()}(dt.fromDom(t)).fold((function(){return o.body.contains(t)}),(n=Ut,r=Vt,function(e){return n(r(e))}))},Wt=function(){return $t(dt.fromDom(document))},$t=function(e){var t=e.dom.body;if(null==t)throw new Error("Body is not available yet");return dt.fromDom(t)},qt=function(e){at(e,nt());var t=e.components();L(t,qt)},Gt=function(e){var t=e.components();L(t,Gt),at(e,tt())},Kt=function(e,t){Rt(e.element,t.element)},Xt=function(e,t){var n=e.components();!function(e){L(e.components(),(function(e){return Pt(e.element)})),Bt(e.element),e.syncComponents()}(e);var r=X(n,t);L(r,(function(t){qt(t),e.getSystem().removeFromWorld(t)})),L(t,(function(t){t.getSystem().isConnected()?Kt(e,t):(e.getSystem().addToWorld(t),Kt(e,t),Ut(e.element)&&Gt(t)),e.syncComponents()}))},Yt=function(e,t,n){e.getSystem().addToWorld(t),n(e.element,t.element),Ut(e.element)&&Gt(t),e.syncComponents()},Jt=function(e){var t=_t(e.element).bind((function(t){return e.getSystem().getByDom(t).toOptional()}));!function(e){qt(e),Pt(e.element),e.getSystem().removeFromWorld(e)}(e),t.each((function(e){e.syncComponents()}))},Zt=function(e,t,n){n(e,t.element);var r=Et(t.element);L(r,(function(e){t.getByDom(e).each(Gt)}))},Qt=Object.keys,en=Object.hasOwnProperty,tn=function(e,t){for(var n=Qt(e),r=0,o=n.length;r0?fn(e,t,r.join(" ")):hn(e,t),!1}(e,"class",t)},xn=function(e,t){bn(e)?e.dom.classList.add(t):yn(e,t)},Cn=function(e){var t=bn(e)?e.dom.classList:function(e){return vn(e,"class")}(e);0===t.length&&hn(e,"class")},Sn=function(e,t){bn(e)?e.dom.classList.remove(t):wn(e,t);Cn(e)},kn=function(e,t){return bn(e)&&e.dom.classList.contains(t)},On=function(e,t,n){Sn(e,n),xn(e,t)},Tn=Object.freeze({__proto__:null,toAlpha:function(e,t,n){On(e.element,t.alpha,t.omega)},toOmega:function(e,t,n){On(e.element,t.omega,t.alpha)},isAlpha:function(e,t,n){return kn(e.element,t.alpha)},isOmega:function(e,t,n){return kn(e.element,t.omega)},clear:function(e,t,n){Sn(e.element,t.alpha),Sn(e.element,t.omega)}}),_n=function(e){return{isValue:_,isError:T,getOr:v(e),getOrThunk:v(e),getOrDie:v(e),or:function(t){return _n(e)},orThunk:function(t){return _n(e)},fold:function(t,n){return n(e)},map:function(t){return _n(t(e))},mapError:function(t){return _n(e)},each:function(t){t(e)},bind:function(t){return t(e)},exists:function(t){return t(e)},forall:function(t){return t(e)},toOptional:function(){return M.some(e)}}},En=function(e){return{isValue:T,isError:_,getOr:b,getOrThunk:function(e){return e()},getOrDie:function(){return k(String(e))()},or:b,orThunk:function(e){return e()},fold:function(t,n){return t(e)},map:function(t){return En(e)},mapError:function(t){return En(t(e))},each:p,bind:function(t){return En(e)},exists:T,forall:_,toOptional:M.none}},An={value:_n,error:En,fromOption:function(e,t){return e.fold((function(){return En(t)}),_n)}};!function(e){e[e.Error=0]="Error",e[e.Value=1]="Value"}(bt||(bt={}));var Dn,Mn,Nn=function(e,t,n){return e.stype===bt.Error?t(e.serror):n(e.svalue)},Rn=function(e){return{stype:bt.Value,svalue:e}},zn=function(e){return{stype:bt.Error,serror:e}},Bn=function(e){return e.fold(zn,Rn)},Pn=function(e){return Nn(e,An.error,An.value)},In=Rn,Fn=function(e){var t=[],n=[];return L(e,(function(e){Nn(e,(function(e){return n.push(e)}),(function(e){return t.push(e)}))})),{values:t,errors:n}},Ln=zn,Hn=function(e,t){return e.stype===bt.Value?t(e.svalue):e},Vn=function(e,t){return e.stype===bt.Error?t(e.serror):e},jn=function(e,t){return e.stype===bt.Value?{stype:bt.Value,svalue:t(e.svalue)}:e},Un=function(e,t){return e.stype===bt.Error?{stype:bt.Error,serror:t(e.serror)}:e},Wn=Nn,$n=function(e,t,n,r){return{tag:"field",key:e,newKey:t,presence:n,prop:r}},qn=function(e,t,n){switch(e.tag){case"field":return t(e.key,e.newKey,e.presence,e.prop);case"custom":return n(e.newKey,e.instantiator)}},Gn=function(e){return function(){for(var t=[],n=0;n0?Qn(t.errors):In(t.values)},tr=function(e){return u(e)&&Qt(e).length>100?" removed due to size":JSON.stringify(e,null,2)},nr=function(e,t){return Ln([{path:e,getErrorInfo:t}])},rr=function(e){return{extract:function(t,n){return Vn(e(n),(function(e){return function(e,t){return nr(e,v(t))}(t,e)}))},toString:v("val")}},or=rr(In),ir=function(e,t,n,r){return un(t,n).fold((function(){return function(e,t,n){return nr(e,(function(){return'Could not find valid *required* value for "'+t+'" in '+tr(n)}))}(e,n,t)}),r)},ar=function(e,t,n,r){return r(un(e,t).getOrThunk((function(){return n(e)})))},ur=function(e,t,n,r,o){var i=function(e){return o.extract(t.concat([r]),e)},a=function(e){return e.fold((function(){return In(M.none())}),(function(e){var n=o.extract(t.concat([r]),e);return jn(n,M.some)}))};switch(e.tag){case"required":return ir(t,n,r,i);case"defaultedThunk":return ar(n,r,e.process,i);case"option":return function(e,t,n){return n(un(e,t))}(n,r,a);case"defaultedOptionThunk":return function(e,t,n,r){return r(un(e,t).map((function(t){return!0===t?n(e):t})))}(n,r,e.process,a);case"mergeWithThunk":return ar(n,r,v({}),(function(t){var r=Kn(e.process(n),t);return i(r)}))}},cr=function(e){return Qt(on(e,d))},sr=function(e){var t=lr(e),n=V(e,(function(e,t){return qn(t,(function(t){var n;return Kn(e,((n={})[t]=!0,n))}),v(e))}),{});return{extract:function(e,r){var o=l(r)?[]:cr(r),i=H(o,(function(e){return!sn(n,e)}));return 0===i.length?t.extract(e,r):function(e,t){return nr(e,(function(){return"There are unsupported fields: ["+t.join(", ")+"] specified"}))}(e,i)},toString:t.toString}},lr=function(e){return{extract:function(t,n){return function(e,t,n){for(var r={},o=[],i=0,a=n;i0?Ln(o):In(r)}(t,n,e)},toString:function(){var t=F(e,(function(e){return qn(e,(function(e,t,n,r){return e+" -> "+r.toString()}),(function(e,t){return"state("+e+")"}))}));return"obj{\n"+t.join("\n")+"}"}}},fr=function(e,t){var n=function(t,n){return function(e){return{extract:function(t,n){var r=F(n,(function(n,r){return e.extract(t.concat(["["+r+"]"]),n)}));return er(r)},toString:function(){return"array("+e.toString()+")"}}}(rr(e)).extract(t,n)};return{extract:function(e,r){var o=Qt(r),i=n(e,o);return Hn(i,(function(n){var o=F(n,(function(e){return $n(e,e,{tag:"required",process:{}},t)}));return lr(o).extract(e,r)}))},toString:function(){return"setOf("+t.toString()+")"}}},dr=v(or),mr=(Dn=m,Mn="function",rr((function(e){var t=typeof e;return Dn(e)?In(e):Ln("Expected type: "+Mn+" but got: "+t)}))),gr=function(e,t,n,r){return un(n,r).fold((function(){return function(e,t,n){return nr(e,(function(){return'The chosen schema: "'+n+'" did not exist in branches: '+tr(t)}))}(e,n,r)}),(function(n){return n.extract(e.concat(["branch: "+r]),t)}))},pr=function(e,t){return{extract:function(n,r){return un(r,e).fold((function(){return function(e,t){return nr(e,(function(){return'Choice schema did not contain choice key: "'+t+'"'}))}(n,e)}),(function(e){return gr(n,r,t,e)}))},toString:function(){return"chooseOn("+e+"). Possible values: "+Qt(t)}}},hr=function(e){return rr((function(t){return e(t).fold(Ln,In)}))},vr=function(e,t){return fr((function(t){return Bn(e(t))}),t)},br=function(e,t,n){return Pn(function(e,t,n){var r=t.extract([e],n);return Un(r,(function(e){return{input:n,errors:e}}))}(e,t,n))},yr=function(e){return e.fold((function(e){throw new Error(xr(e))}),b)},wr=function(e,t,n){return yr(br(e,t,n))},xr=function(e){return"Errors: \n"+(t=e.errors,n=t.length>10?t.slice(0,10).concat([{path:[],getErrorInfo:v("... (only showing first ten failures)")}]):t,F(n,(function(e){return"Failed path: ("+e.path.join(" > ")+")\n"+e.getErrorInfo()}))).join("\n")+"\n\nInput object: "+tr(e.input);var t,n},Cr=function(e,t){return pr(e,nn(t,lr))},Sr=$n,kr=function(e,t){return{tag:"custom",newKey:e,instantiator:t}},Or=function(e){return Sr(e,e,{tag:"required",process:{}},dr())},Tr=function(e,t){return Sr(e,e,{tag:"required",process:{}},t)},_r=function(e,t){return Sr(e,e,{tag:"required",process:{}},lr(t))},Er=function(e){return Sr(e,e,{tag:"option",process:{}},dr())},Ar=function(e,t){return Sr(e,e,{tag:"option",process:{}},t)},Dr=function(e,t){return Ar(e,lr(t))},Mr=function(e,t){return Ar(e,sr(t))},Nr=function(e,t){return Sr(e,e,Jn(t),dr())},Rr=function(e,t,n){return Sr(e,e,Jn(t),n)},zr=[Or("alpha"),Or("omega")],Br=function(e){if(!c(e))throw new Error("cases must be an array");if(0===e.length)throw new Error("there must be at least one case");var t=[],n={};return L(e,(function(r,o){var i=Qt(r);if(1!==i.length)throw new Error("one and only one name per case");var a=i[0],u=r[a];if(void 0!==n[a])throw new Error("duplicate key detected:"+a);if("cata"===a)throw new Error("cannot have a case named cata (sorry)");if(!c(u))throw new Error("case arguments must be an array");t.push(a),n[a]=function(){for(var n=[],r=0;r0?(n=r.errors,An.error($(n))):function(e,t){return 0===e.length?An.value(t):An.value(Kn(t,Xn.apply(void 0,e)))}(r.values,t)},Vr=function(e,t,n){return void 0===n&&(n=y),e.exists((function(e){return n(e,t)}))},jr=function(e){for(var t=[],n=function(e){t.push(e)},r=0;r=t.length&&e.substr(n,n+t.length)===t}(t=e,n="/*",t.length-n.length)?e.substring(0,e.length-"/*".length):e;var t,n}))},so=function(e,t){var n=e.toString(),r=n.indexOf(")")+1,o=n.indexOf("("),i=n.substring(o+1,r-1).split(/,\s*/);return e.toFunctionAnnotation=function(){return{name:t,parameters:co(i)}},e},lo=function(e){return{classes:f(e.classes)?[]:e.classes,attributes:f(e.attributes)?{}:e.attributes,styles:f(e.styles)?{}:e.styles}},fo=function(e,t,n){return ao((function(r,o){n(r,e,t)}))},mo=function(e,t,n){return function(e,t,n){var r=n.toString(),o=r.indexOf(")")+1,i=r.indexOf("("),a=r.substring(i+1,o-1).split(/,\s*/);return e.toFunctionAnnotation=function(){return{name:t,parameters:co(a.slice(0,1).concat(a.slice(3)))}},e}((function(r){for(var o=[],i=1;i-1?M.some(Uo.get()[t]):M.none()}))})).getOr(Pr.NORMAL)){case Pr.NORMAL:return n(Go());case Pr.LOGGING:var r=function(e,t){var n=[],r=(new Date).getTime();return{logEventCut:function(e,t,r){n.push({outcome:"cut",target:t,purpose:r})},logEventStopped:function(e,t,r){n.push({outcome:"stopped",target:t,purpose:r})},logNoParent:function(e,t,r){n.push({outcome:"no-parent",target:t,purpose:r})},logEventNoHandlers:function(e,t){n.push({outcome:"no-handlers-left",target:t})},logEventResponse:function(e,t,r){n.push({outcome:"response",purpose:r,target:t})},write:function(){var o=(new Date).getTime();P(["mousemove","mouseover","mouseout",et()],e)||console.log(e,{event:e,time:o-r,target:t.dom,sequence:F(n,(function(e){return P(["cut","stopped","response"],e.outcome)?"{"+e.purpose+"} "+e.outcome+" at ("+Ho(e.target)+")":e.outcome}))})}}}(e,t),o=n(r);return r.write(),o;case Pr.STOP:return!0}},$o=["alloy/data/Fields","alloy/debugging/Debugging"],qo=function(e,t,n){return Wo(e,t,n)},Go=v({logEventCut:p,logEventStopped:p,logNoParent:p,logEventNoHandlers:p,logEventResponse:p,write:p}),Ko=v([Or("menu"),Or("selectedMenu")]),Xo=v([Or("item"),Or("selectedItem")]);v(lr(Xo().concat(Ko())));var Yo,Jo=v(lr(Xo())),Zo=_r("initSize",[Or("numColumns"),Or("numRows")]),Qo=function(e,t,n){return function(){var e=new Error;if(void 0!==e.stack){var t=e.stack.split("\n");return U(t,(function(e){return e.indexOf("alloy")>0&&!I($o,(function(t){return e.indexOf(t)>-1}))})).getOr(jo)}}(),Sr(t,t,n,hr((function(e){return An.value((function(){for(var t=[],n=0;n0}))},Li=function(e,t){!function(e,t){Ni(e)&&e.style.removeProperty(t)}(e.dom,t),Vr(gn(e,"style").map(oe),"")&&hn(e,"style")},Hi=function(e){return e.dom.offsetWidth},Vi=function(e,t){var n=function(n){var r=t(n);if(r<=0||null===r){var o=Pi(n,e);return parseFloat(o)||0}return r},r=function(e,t){return j(t,(function(t,n){var r=Pi(e,n),o=void 0===r?0:parseInt(r,10);return isNaN(o)?t:t+o}),0)};return{set:function(t,n){if(!g(n)&&!n.match(/^[0-9]+$/))throw new Error(e+".set accepts only positive integer values. Value was "+n);var r=t.dom;Ni(r)&&(r.style[e]=n+"px")},get:n,getOuter:n,aggregate:r,max:function(e,t,n){var o=r(e,n);return t>o?t-o:0}}},ji=Vi("height",(function(e){var t=e.dom;return Ut(e)?t.getBoundingClientRect().height:t.offsetHeight})),Ui=function(e){return ji.get(e)},Wi=function(e,t,n){return H(function(e,t){for(var n=m(t)?t:T,r=e.dom,o=[];null!==r.parentNode&&void 0!==r.parentNode;){var i=r.parentNode,a=dt.fromDom(i);if(o.push(a),!0===n(a))break;r=i}return o}(e,n),t)},$i=function(e,t){return H(function(e){return _t(e).map(Et).map((function(t){return H(t,(function(t){return!vt(e,t)}))})).getOr([])}(e),t)},qi=function(e,t,n){return Wi(e,(function(e){return mt(e,t)}),n)},Gi=function(e,t){return $i(e,(function(e){return mt(e,t)}))},Ki=function(e,t){return pt(t,e)};function Xi(e,t,n,r,o){return e(n,r)?M.some(n):m(o)&&o(n)?M.none():t(n,r,o)}var Yi,Ji=function(e,t,n){for(var r=e.dom,o=m(n)?n:T;r.parentNode;){r=r.parentNode;var i=dt.fromDom(r);if(t(i))return M.some(i);if(o(i))break}return M.none()},Zi=function(e){return ht(e)},Qi=function(e,t,n){return Ji(e,(function(e){return mt(e,t)}),n)},ea=function(e,t){return ht(t,e)},ta=function(e,t,n){return Xi((function(e,t){return mt(e,t)}),Qi,e,t,n)},na=[8],ra=[9],oa=[13],ia=[27],aa=[32],ua=[37],ca=[38],sa=[39],la=[40],fa=function(e,t,n){var r=K(e.slice(0,t)),o=K(e.slice(t+1));return U(r.concat(o),n)},da=function(e,t,n){var r=K(e.slice(0,t));return U(r,n)},ma=function(e,t,n){var r=e.slice(0,t),o=e.slice(t+1);return U(o.concat(r),n)},ga=function(e,t,n){var r=e.slice(t+1);return U(r,n)},pa=function(e){return function(t){var n=t.raw;return P(e,n.which)}},ha=function(e){return function(t){return G(e,(function(e){return e(t)}))}},va=function(e){return!0===e.raw.shiftKey},ba=function(e){return!0===e.raw.ctrlKey},ya=S(va),wa=function(e,t){return{matches:e,classification:t}},xa=function(e,t,n,r){var o=e+t;return o>r?n:o0?M.some(r[r.length-1]):M.none()).bind((function(t){return e.getSystem().getByDom(t).toOptional()}))},Aa=function(e,t,n,r){var o=Ki(e.element,"."+t.itemClass);return W(o,(function(e){return kn(e,t.highlightClass)})).bind((function(t){var n=xa(t,r,0,o.length-1);return e.getSystem().getByDom(o[n]).toOptional()}))},Da=function(e,t,n){var r=Ki(e.element,"."+t.itemClass);return jr(F(r,(function(t){return e.getSystem().getByDom(t).toOptional()})))},Ma=Object.freeze({__proto__:null,dehighlightAll:function(e,t,n){return Sa(e,t,0,[])},dehighlight:function(e,t,n,r){Oa(e,t,n,r)&&(Sn(r.element,t.highlightClass),t.onDehighlight(e,r),at(r,it()))},highlight:ka,highlightFirst:function(e,t,n){_a(e,t).each((function(r){ka(e,t,n,r)}))},highlightLast:function(e,t,n){Ea(e,t).each((function(r){ka(e,t,n,r)}))},highlightAt:function(e,t,n,r){Ta(e,t,n,r).fold((function(e){throw e}),(function(r){ka(e,t,n,r)}))},highlightBy:function(e,t,n,r){var o=Da(e,t);U(o,r).each((function(r){ka(e,t,n,r)}))},isHighlighted:Oa,getHighlighted:function(e,t,n){return ea(e.element,"."+t.highlightClass).bind((function(t){return e.getSystem().getByDom(t).toOptional()}))},getFirst:_a,getLast:Ea,getPrevious:function(e,t,n){return Aa(e,t,0,-1)},getNext:function(e,t,n){return Aa(e,t,0,1)},getCandidates:Da}),Na=[Or("highlightClass"),Or("itemClass"),ei("onHighlight"),ei("onDehighlight")],Ra=wo({fields:Na,name:"highlighting",apis:Ma}),za=function(e,t,n){t.exists((function(e){return n.exists((function(t){return vt(t,e)}))}))||ut(e,rt(),{prevFocus:t,newFocus:n})},Ba=function(){var e=function(e){return Eo(e.element)};return{get:e,set:function(t,n){var r=e(t);t.getSystem().triggerFocus(n,t.element);var o=e(t);za(t,r,o)}}},Pa=function(){var e=function(e){return Ra.getHighlighted(e).map((function(e){return e.element}))};return{get:e,set:function(t,n){var r=e(t);t.getSystem().getByDom(n).fold(p,(function(e){Ra.highlight(t,e)}));var o=e(t);za(t,r,o)}}};!function(e){e.OnFocusMode="onFocus",e.OnEnterOrSpaceMode="onEnterOrSpace",e.OnApiMode="onApi"}(Yi||(Yi={}));var Ia=function(e,t,n,r,o){var i=function(e,t,n,r,o){var i,a,u,c=n(e,t,r,o);return(i=c,a=t.event,u=U(i,(function(e){return e.matches(a)})),u.map((function(e){return e.classification}))).bind((function(n){return n(e,t,r,o)}))},a={schema:function(){return e.concat([Nr("focusManager",Ba()),Rr("focusInside","onFocus",hr((function(e){return P(["onFocus","onEnterOrSpace","onApi"],e)?An.value(e):An.error("Invalid value for focusInside")}))),oi("handler",a),oi("state",t),oi("sendFocusIn",o)])},processKey:i,toEvents:function(e,t){var a=e.focusInside!==Yi.OnFocusMode?M.none():o(e).map((function(n){return Jr(qe(),(function(r,o){n(r,e,t),o.stop()}))})),u=[Jr(Ie(),(function(r,a){i(r,a,n,e,t).fold((function(){!function(n,r){var i=pa(aa.concat(oa))(r.event);e.focusInside===Yi.OnEnterOrSpaceMode&&i&&$r(n,r)&&o(e).each((function(o){o(n,e,t),r.stop()}))}(r,a)}),(function(e){a.stop()}))})),Jr(Fe(),(function(n,o){i(n,o,r,e,t).each((function(e){o.stop()}))}))];return Xr(a.toArray().concat(u))}};return a},Fa=function(e){var t=[Er("onEscape"),Er("onEnter"),Nr("selector",'[data-alloy-tabstop="true"]:not(:disabled)'),Nr("firstTabstop",0),Nr("useTabstopAt",_),Er("visibilitySelector")].concat([e]),n=function(e,t){var n=e.visibilitySelector.bind((function(e){return ta(t,e)})).getOr(t);return Ui(n)>0},r=function(e,t,r){(function(e,t){var r=Ki(e.element,t.selector),o=H(r,(function(e){return n(t,e)}));return M.from(o[t.firstTabstop])})(e,t).each((function(n){t.focusManager.set(e,n)}))},o=function(e,t,r,o,i){return i(t,r,(function(e){return function(e,t){return n(e,t)&&e.useTabstopAt(t)}(o,e)})).fold((function(){return o.cyclic?M.some(!0):M.none()}),(function(t){return o.focusManager.set(e,t),M.some(!0)}))},i=function(e,t,n,r){var i=Ki(e.element,n.selector);return function(e,t){return t.focusManager.get(e).bind((function(e){return ta(e,t.selector)}))}(e,n).bind((function(t){return W(i,w(vt,t)).bind((function(t){return o(e,i,t,n,r)}))}))},a=v([wa(ha([va,pa(ra)]),(function(e,t,n){var r=n.cyclic?fa:da;return i(e,0,n,r)})),wa(pa(ra),(function(e,t,n){var r=n.cyclic?ma:ga;return i(e,0,n,r)})),wa(pa(ia),(function(e,t,n){return n.onEscape.bind((function(n){return n(e,t)}))})),wa(ha([ya,pa(oa)]),(function(e,t,n){return n.onEnter.bind((function(n){return n(e,t)}))}))]),u=v([]);return Ia(t,ho.init,a,u,(function(){return M.some(r)}))},La=Fa(kr("cyclic",T)),Ha=Fa(kr("cyclic",_)),Va=function(e){return"input"===yt(e)&&"radio"!==mn(e,"type")||"textarea"===yt(e)},ja=function(e,t,n){return Va(n)&&pa(aa)(t.event)?M.none():function(e,t,n){return st(e,n,Ye()),M.some(!0)}(e,0,n)},Ua=function(e,t){return M.some(!0)},Wa=[Nr("execute",ja),Nr("useSpace",!1),Nr("useEnter",!0),Nr("useControlEnter",!1),Nr("useDown",!1)],$a=function(e,t,n){return n.execute(e,t,e.element)},qa=Ia(Wa,ho.init,(function(e,t,n,r){var o=n.useSpace&&!Va(e.element)?aa:[],i=n.useEnter?oa:[],a=n.useDown?la:[],u=o.concat(i).concat(a);return[wa(pa(u),$a)].concat(n.useControlEnter?[wa(ha([ba,pa(oa)]),$a)]:[])}),(function(e,t,n,r){return n.useSpace&&!Va(e.element)?[wa(pa(aa),Ua)]:[]}),(function(){return M.none()})),Ga=function(e){var t=ko(M.none()),n=function(){return t.get().each(e)};return{clear:function(){n(),t.set(M.none())},isSet:function(){return t.get().isSome()},get:function(){return t.get()},set:function(e){n(),t.set(M.some(e))}}},Ka=function(){var t=Ga((function(e){return e.destroy()}));return e(e({},t),{run:function(e){return t.get().each(e)}})},Xa=function(){var t=Ga(p);return e(e({},t),{on:function(e){return t.get().each(e)}})},Ya=function(){var e=Xa();return vo({readState:function(){return e.get().map((function(e){return{numRows:String(e.numRows),numColumns:String(e.numColumns)}})).getOr({numRows:"?",numColumns:"?"})},setGridSize:function(t,n){e.set({numRows:t,numColumns:n})},getNumRows:function(){return e.get().map((function(e){return e.numRows}))},getNumColumns:function(){return e.get().map((function(e){return e.numColumns}))}})},Ja=Object.freeze({__proto__:null,flatgrid:Ya,init:function(e){return e.state(e)}}),Za=function(e,t){return function(n){return"rtl"===Qa(n)?t:e}},Qa=function(e){return"rtl"===Pi(e,"direction")?"rtl":"ltr"},eu=function(e){return function(t,n,r,o){var i=e(t.element);return ou(i,t,n,r,o)}},tu=function(e,t){var n=Za(e,t);return eu(n)},nu=function(e,t){var n=Za(t,e);return eu(n)},ru=function(e){return function(t,n,r,o){return ou(e,t,n,r,o)}},ou=function(e,t,n,r,o){return r.focusManager.get(t).bind((function(n){return e(t.element,n,r,o)})).map((function(e){return r.focusManager.set(t,e),!0}))},iu=ru,au=ru,uu=ru,cu=function(e){return!function(e){return e.offsetWidth<=0&&e.offsetHeight<=0}(e.dom)},su=function(e,t,n){var r=Ki(e,n);return function(e,t){return W(e,t).map((function(t){return{index:t,candidates:e}}))}(H(r,cu),(function(e){return vt(e,t)}))},lu=function(e,t){return W(e,(function(e){return vt(t,e)}))},fu=function(e,t,n,r){return r(Math.floor(t/n),t%n).bind((function(t){var r=t.row*n+t.column;return r>=0&&r"})),dr()),Pc=kr("schema",(function(){return[Er("preprocess")]})),Ic=Nr("defaults",v({})),Fc=Nr("overrides",v({})),Lc=lr([Nc,Rc,zc,Bc,Ic,Fc]),Hc=lr([Nc,Rc,zc,Ic,Fc]),Vc=lr([Nc,Rc,zc,Bc,Ic,Fc]),jc=lr([Nc,Pc,zc,Or("unit"),Bc,Ic,Fc]),Uc=function(e){var t=function(e){return e.name};return e.fold(t,t,t,t)},Wc=function(e,t){return function(n){var r=wr("Converting part type",t,n);return e(r)}},$c=Wc(Mc.required,Lc);Wc(Mc.external,Hc);var qc=Wc(Mc.optional,Vc),Gc=Wc(Mc.group,jc),Kc=v("entirety"),Xc=function(e,t,n,r){return Kn(t.defaults(e,n,r),n,{uid:e.partUids[t.name]},t.overrides(e,n,r))},Yc=function(t,n){var r={};return L(n,(function(n){(function(e){return e.fold(M.some,M.none,M.some,M.some)})(n).each((function(n){var o=Jc(t,n.pname);r[n.name]=function(r){var i=wr("Part: "+n.name+" in "+t,lr(n.schema),r);return e(e({},o),{config:r,validated:i})}}))})),r},Jc=function(e,t){return{uiType:Ec(),owner:e,name:t}},Zc=function(e,t,n){return function(e,t,n){var r={},o={};return L(n,(function(e){e.fold((function(e){r[e.pname]=Tc(!0,(function(t,n,r){return e.factory.sketch(Xc(t,e,n,r))}))}),(function(e){var n=t.parts[e.name];o[e.name]=v(e.factory.sketch(Xc(t,e,n[Kc()]),n))}),(function(e){r[e.pname]=Tc(!1,(function(t,n,r){return e.factory.sketch(Xc(t,e,n,r))}))}),(function(e){r[e.pname]=_c(!0,(function(t,n,r){var o=t[e.name];return F(o,(function(n){return e.factory.sketch(Kn(e.defaults(t,n,r),n,e.overrides(t,n)))}))}))}))})),{internals:v(r),externals:v(o)}}(0,t,n)},Qc=function(e,t,n){return Oc(M.some(e),t,t.components,n)},es=function(e,t,n){var r=t.partUids[n];return e.getSystem().getByUid(r).toOptional()},ts=function(e,t,n){return es(e,t,n).getOrDie("Could not find part: "+n)},ns=function(e,t){var n=function(e){return F(e,Uc)}(t);return Lr(F(n,(function(t){return{key:t,value:e+"-"+t}})))},rs=function(e){return Sr("partUids","partUids",Zn((function(t){return ns(t.uid,e)})),dr())},os=Dc("alloy-premade"),is=function(e){return Fr(os,e)},as=function(e){return function(e,t){var n=t.toString(),r=n.indexOf(")")+1,o=n.indexOf("("),i=n.substring(o+1,r-1).split(/,\s*/);return e.toFunctionAnnotation=function(){return{name:"OVERRIDE",parameters:co(i.slice(1))}},e}((function(t){for(var r=[],o=1;o0?[_r("parts",e)]:[]).concat([Or("uid"),Nr("dom",{}),Nr("components",[]),ii("originalSpec"),Nr("debug.sketcher",{})]).concat(t)}(r,o);return wr(e+" [SpecSchema]",sr(i.concat(t)),n)},ps=function(e,t,n,r,o){var i=hs(o),a=function(e){return q(e,(function(e){return e.fold(M.none,M.some,M.none,M.none).map((function(e){return _r(e.name,e.schema.concat([ii(Kc())]))})).toArray()}))}(n),u=rs(n),c=gs(e,t,i,a,[u]),s=Zc(0,c,n);return r(c,Qc(e,c,s.internals()),i,s.externals())},hs=function(t){return function(e){return cn(e,"uid")}(t)?t:e(e({},t),{uid:ms("uid")})},vs=sr([Or("name"),Or("factory"),Or("configFields"),Nr("apis",{}),Nr("extraApis",{})]),bs=sr([Or("name"),Or("factory"),Or("configFields"),Or("partFields"),Nr("apis",{}),Nr("extraApis",{})]),ys=function(t){var n=wr("Sketcher for "+t.name,vs,t),r=nn(n.apis,as),o=nn(n.extraApis,(function(e,t){return so(e,t)}));return e(e({name:n.name,configFields:n.configFields,sketch:function(e){return function(e,t,n,r){var o=hs(r);return n(gs(e,t,o,[],[]),o)}(n.name,n.configFields,n.factory,e)}},r),o)},ws=function(t){var n=wr("Sketcher for "+t.name,bs,t),r=Yc(n.name,n.partFields),o=nn(n.apis,as),i=nn(n.extraApis,(function(e,t){return so(e,t)}));return e(e({name:n.name,partFields:n.partFields,configFields:n.configFields,sketch:function(e){return ps(n.name,n.configFields,n.partFields,n.factory,e)},parts:r},o),i)},xs=ys({name:"Button",factory:function(t){var n,r=(n=t.action,Xr($([n.map((function(e){return uo((function(t,n){e(t),n.stop()}))})).toArray(),Ti()]))),o=t.dom.tag,i=function(e){return un(t.dom,"attributes").bind((function(t){return un(t,e)}))};return{uid:t.uid,dom:t.dom,components:t.components,events:r,behaviours:yc(t.buttonBehaviours,[Mi.config({}),gc.config({mode:"execution",useSpace:!0,useEnter:!0})]),domModification:{attributes:function(){if("button"===o){var t=i("type").getOr("button"),n=i("role").map((function(e){return{role:e}})).getOr({});return e({type:t},n)}return{role:i("role").getOr("button")}}()},eventOrder:t.eventOrder}},configFields:[Nr("uid",void 0),Or("dom"),Nr("components",[]),bc("buttonBehaviours",[Mi,gc]),Er("action"),Er("role"),Nr("eventOrder",{})]}),Cs=Object.freeze({__proto__:null,events:function(){return Xr([Yr(Ue(),_)])},exhibit:function(){return lo({styles:{"-webkit-user-select":"none","user-select":"none","-ms-user-select":"none","-moz-user-select":"-moz-none"},attributes:{unselectable:"on"}})}}),Ss=wo({fields:[],name:"unselecting",active:Cs}),ks=function(t){var n=dt.fromHtml(t),r=Et(n),o=function(t){var n=void 0!==t.dom.attributes?t.dom.attributes:[];return j(n,(function(t,n){var r;return"class"===n.name?t:e(e({},t),((r={})[n.name]=n.value,r))}),{})}(n),i=function(e){return Array.prototype.slice.call(e.dom.classList,0)}(n),a=0===r.length?{}:{innerHtml:Po(n)};return e({tag:yt(n),classes:i,attributes:o},a)},Os=function(e){var t,n=(t={prefix:ki},e.replace(/\$\{([^{}]*)\}/g,(function(e,n){var r=t[n];return function(e){var t=typeof e;return"string"===t||"number"===t}(r)?r.toString():e})));return ks(n)},Ts=function(e){return{dom:Os(e)}},_s=function(e){return bo([wi.config({toggleClass:Oi("toolbar-button-selected"),toggleOnExecute:!1,aria:{mode:"pressed"}}),xi(e,(function(e,t){(t?wi.on:wi.off)(e)}))])},Es=function(e,t,n,r){var o=_s(n);return Ds(t,r,o,e)},As=function(e,t){var n=t.ui.registry.getAll().icons;return M.from(n[e]).fold((function(){return Os('')}),(function(e){return Os(''+e+"")}))},Ds=function(e,t,n,r){return xs.sketch({dom:As(e,r),action:t,buttonBehaviours:Kn(bo([Ss.config({})]),n)})},Ms=qc({schema:[Or("dom")],name:"label"}),Ns=function(e){return qc({name:e+"-edge",overrides:function(t){return t.model.manager.edgeActions[e].fold((function(){return{}}),(function(e){return{events:Xr([Zr(De(),(function(t,n,r){return e(t,r)}),[t]),Zr(Re(),(function(t,n,r){return e(t,r)}),[t]),Zr(ze(),(function(t,n,r){r.mouseIsDown.get()&&e(t,r)}),[t])])}}))}})},Rs=Ns("top-left"),zs=Ns("top"),Bs=Ns("top-right"),Ps=Ns("right"),Is=Ns("bottom-right"),Fs=Ns("bottom"),Ls=Ns("bottom-left"),Hs=Ns("left"),Vs=$c({name:"thumb",defaults:v({dom:{styles:{position:"absolute"}}}),overrides:function(e){return{events:Xr([eo(De(),e,"spectrum"),eo(Me(),e,"spectrum"),eo(Ne(),e,"spectrum"),eo(Re(),e,"spectrum"),eo(ze(),e,"spectrum"),eo(Be(),e,"spectrum")])}}}),js=$c({schema:[kr("mouseIsDown",(function(){return ko(!1)}))],name:"spectrum",overrides:function(e){var t=e.model.manager,n=function(n,r){return t.getValueFromEvent(r).map((function(r){return t.setValueFrom(n,e,r)}))};return{behaviours:bo([gc.config({mode:"special",onLeft:function(n){return t.onLeft(n,e)},onRight:function(n){return t.onRight(n,e)},onUp:function(n){return t.onUp(n,e)},onDown:function(n){return t.onDown(n,e)}}),Mi.config({})]),events:Xr([Jr(De(),n),Jr(Me(),n),Jr(Re(),n),Jr(ze(),(function(t,r){e.mouseIsDown.get()&&n(t,r)}))])}}}),Us=[Ms,Hs,Ps,zs,Fs,Rs,Bs,Ls,Is,Vs,js],Ws=function(e,t,n){t.store.manager.onLoad(e,t,n)},$s=function(e,t,n){t.store.manager.onUnload(e,t,n)},qs=Object.freeze({__proto__:null,onLoad:Ws,onUnload:$s,setValue:function(e,t,n,r){t.store.manager.setValue(e,t,n,r)},getValue:function(e,t,n){return t.store.manager.getValue(e,t,n)},getState:function(e,t,n){return n}}),Gs=Object.freeze({__proto__:null,events:function(e,t){var n=e.resetOnDom?[oo((function(n,r){Ws(n,e,t)})),io((function(n,r){$s(n,e,t)}))]:[fo(e,t,Ws)];return Xr(n)}}),Ks=function(){var e=ko(null);return vo({set:e.set,get:e.get,isNotSet:function(){return null===e.get()},clear:function(){e.set(null)},readState:function(){return{mode:"memory",value:e.get()}}})},Xs=function(){var t=ko({}),n=ko({});return vo({readState:function(){return{mode:"dataset",dataByValue:t.get(),dataByText:n.get()}},lookup:function(e){return un(t.get(),e).orThunk((function(){return un(n.get(),e)}))},update:function(r){var o=t.get(),i=n.get(),a={},u={};L(r,(function(e){a[e.value]=e,un(e,"meta").each((function(t){un(t,"text").each((function(t){u[t]=e}))}))})),t.set(e(e({},o),a)),n.set(e(e({},i),u))},clear:function(){t.set({}),n.set({})}})},Ys=Object.freeze({__proto__:null,memory:Ks,dataset:Xs,manual:function(){return vo({readState:p})},init:function(e){return e.store.manager.state(e)}}),Js=function(e,t,n,r){var o=t.store;n.update([r]),o.setValue(e,r),t.onSetValue(e,r)},Zs=[Er("initialValue"),Or("getFallbackEntry"),Or("getDataKey"),Or("setValue"),oi("manager",{setValue:Js,getValue:function(e,t,n){var r=t.store,o=r.getDataKey(e);return n.lookup(o).getOrThunk((function(){return r.getFallbackEntry(o)}))},onLoad:function(e,t,n){t.store.initialValue.each((function(r){Js(e,t,n,r)}))},onUnload:function(e,t,n){n.clear()},state:Xs})],Qs=[Or("getValue"),Nr("setValue",p),Er("initialValue"),oi("manager",{setValue:function(e,t,n,r){t.store.setValue(e,r),t.onSetValue(e,r)},getValue:function(e,t,n){return t.store.getValue(e)},onLoad:function(e,t,n){t.store.initialValue.each((function(n){t.store.setValue(e,n)}))},onUnload:p,state:ho.init})],el=[Er("initialValue"),oi("manager",{setValue:function(e,t,n,r){n.set(r),t.onSetValue(e,r)},getValue:function(e,t,n){return n.get()},onLoad:function(e,t,n){t.store.initialValue.each((function(e){n.isNotSet()&&n.set(e)}))},onUnload:function(e,t,n){n.clear()},state:Ks})],tl=[Rr("store",{mode:"memory"},Cr("mode",{memory:el,manual:Qs,dataset:Zs})),ei("onSetValue"),Nr("resetOnDom",!1)],nl=wo({fields:tl,name:"representing",active:Gs,apis:qs,extra:{setValueFrom:function(e,t){var n=nl.getValue(t);nl.setValue(e,n)}},state:Ys}),rl=Vi("width",(function(e){return e.dom.offsetWidth})),ol=function(e,t){return rl.set(e,t)},il=function(e){return rl.get(e)},al=function(e,t){return{left:e,top:t,translate:function(n,r){return al(e+n,t+r)}}},ul=al,cl=v("slider.change.value"),sl=function(e){var t=e.event.raw;if(function(e){return-1!==e.type.indexOf("touch")}(t)){var n=t;return void 0!==n.touches&&1===n.touches.length?M.some(n.touches[0]).map((function(e){return ul(e.clientX,e.clientY)})):M.none()}var r=t;return void 0!==r.clientX?M.some(r).map((function(e){return ul(e.clientX,e.clientY)})):M.none()},ll=function(e){return e.model.minX},fl=function(e){return e.model.minY},dl=function(e){return e.model.minX-1},ml=function(e){return e.model.minY-1},gl=function(e){return e.model.maxX},pl=function(e){return e.model.maxY},hl=function(e){return e.model.maxX+1},vl=function(e){return e.model.maxY+1},bl=function(e,t,n){return t(e)-n(e)},yl=function(e){return bl(e,gl,ll)},wl=function(e){return bl(e,pl,fl)},xl=function(e){return yl(e)/2},Cl=function(e){return wl(e)/2},Sl=function(e){return e.stepSize},kl=function(e){return e.snapToGrid},Ol=function(e){return e.snapStart},Tl=function(e){return e.rounded},_l=function(e,t){return void 0!==e[t+"-edge"]},El=function(e){return _l(e,"left")},Al=function(e){return _l(e,"right")},Dl=function(e){return _l(e,"top")},Ml=function(e){return _l(e,"bottom")},Nl=function(e){return e.model.value.get()},Rl=function(e){return{x:e}},zl=function(e){return{y:e}},Bl=function(e,t){return{x:e,y:t}},Pl=function(e,t){ut(e,cl(),{value:t})},Il=function(e,t,n,r){return en?n:e===t?t-1:Math.max(t,e-r)},Fl=function(e,t,n,r){return e>n?e:ed)return p;var h=function(e,t,n){return Math.min(n,Math.max(e,t))-t}(o,f,d),v=Ll(h/m*r+t,g,p);return a&&v>=t&&v<=n?function(e,t,n,r,o){return o.fold((function(){var o=e-t,i=Math.round(o/r)*r;return Ll(t+i,t-1,n+1)}),(function(t){var o=(e-t)%r,i=Math.round(o/r),a=Math.floor((e-t)/r),u=Math.floor((n-t)/r),c=t+Math.min(u,a+i)*r;return Math.max(t,c)}))}(v,t,n,i,u):c?Math.round(v):v},Vl=function(e){var t=e.min,n=e.max,r=e.range,o=e.value,i=e.hasMinEdge,a=e.hasMaxEdge,u=e.maxBound,c=e.maxOffset,s=e.centerMinEdge,l=e.centerMaxEdge;return on?a?u:l:(o-t)/r*c},jl="top",Ul="right",Wl="bottom",$l="left",ql=function(e){return e.element.dom.getBoundingClientRect()},Gl=function(e,t){return e[t]},Kl=function(e){var t=ql(e);return Gl(t,$l)},Xl=function(e){var t=ql(e);return Gl(t,Ul)},Yl=function(e){var t=ql(e);return Gl(t,jl)},Jl=function(e){var t=ql(e);return Gl(t,Wl)},Zl=function(e){var t=ql(e);return Gl(t,"width")},Ql=function(e){var t=ql(e);return Gl(t,"height")},ef=function(e,t,n){return(e+t)/2-n},tf=function(e,t){var n=ql(e),r=ql(t),o=Gl(n,$l),i=Gl(n,Ul),a=Gl(r,$l);return ef(o,i,a)},nf=function(e,t){var n=ql(e),r=ql(t),o=Gl(n,jl),i=Gl(n,Wl),a=Gl(r,jl);return ef(o,i,a)},rf=function(e,t){ut(e,cl(),{value:t})},of=function(e){return{x:e}},af=function(e,t,n){var r={min:ll(t),max:gl(t),range:yl(t),value:n,step:Sl(t),snap:kl(t),snapStart:Ol(t),rounded:Tl(t),hasMinEdge:El(t),hasMaxEdge:Al(t),minBound:Kl(e),maxBound:Xl(e),screenRange:Zl(e)};return Hl(r)},uf=function(e){return function(t,n){return function(e,t,n){var r=(e>0?Fl:Il)(Nl(n).x,ll(n),gl(n),Sl(n));return rf(t,of(r)),M.some(r)}(e,t,n).map(_)}},cf=function(e,t,n,r,o,i){var a=function(e,t,n,r,o){var i=Zl(e),a=r.bind((function(t){return M.some(tf(t,e))})).getOr(0),u=o.bind((function(t){return M.some(tf(t,e))})).getOr(i),c={min:ll(t),max:gl(t),range:yl(t),value:n,hasMinEdge:El(t),hasMaxEdge:Al(t),minBound:Kl(e),minOffset:0,maxBound:Xl(e),maxOffset:i,centerMinEdge:a,centerMaxEdge:u};return Vl(c)}(t,i,n,r,o);return Kl(t)-Kl(e)+a},sf=uf(-1),lf=uf(1),ff=M.none,df=M.none,mf={"top-left":M.none(),top:M.none(),"top-right":M.none(),right:M.some((function(e,t){Pl(e,Rl(hl(t)))})),"bottom-right":M.none(),bottom:M.none(),"bottom-left":M.none(),left:M.some((function(e,t){Pl(e,Rl(dl(t)))}))},gf=Object.freeze({__proto__:null,setValueFrom:function(e,t,n){var r=af(e,t,n),o=of(r);return rf(e,o),r},setToMin:function(e,t){var n=ll(t);rf(e,of(n))},setToMax:function(e,t){var n=gl(t);rf(e,of(n))},findValueOfOffset:af,getValueFromEvent:function(e){return sl(e).map((function(e){return e.left}))},findPositionOfValue:cf,setPositionFromValue:function(e,t,n,r){var o=Nl(n),i=cf(e,r.getSpectrum(e),o.x,r.getLeftEdge(e),r.getRightEdge(e),n),a=il(t.element)/2;zi(t.element,"left",i-a+"px")},onLeft:sf,onRight:lf,onUp:ff,onDown:df,edgeActions:mf}),pf=function(e,t){ut(e,cl(),{value:t})},hf=function(e){return{y:e}},vf=function(e,t,n){var r={min:fl(t),max:pl(t),range:wl(t),value:n,step:Sl(t),snap:kl(t),snapStart:Ol(t),rounded:Tl(t),hasMinEdge:Dl(t),hasMaxEdge:Ml(t),minBound:Yl(e),maxBound:Jl(e),screenRange:Ql(e)};return Hl(r)},bf=function(e){return function(t,n){return function(e,t,n){var r=(e>0?Fl:Il)(Nl(n).y,fl(n),pl(n),Sl(n));return pf(t,hf(r)),M.some(r)}(e,t,n).map(_)}},yf=function(e,t,n,r,o,i){var a=function(e,t,n,r,o){var i=Ql(e),a=r.bind((function(t){return M.some(nf(t,e))})).getOr(0),u=o.bind((function(t){return M.some(nf(t,e))})).getOr(i),c={min:fl(t),max:pl(t),range:wl(t),value:n,hasMinEdge:Dl(t),hasMaxEdge:Ml(t),minBound:Yl(e),minOffset:0,maxBound:Jl(e),maxOffset:i,centerMinEdge:a,centerMaxEdge:u};return Vl(c)}(t,i,n,r,o);return Yl(t)-Yl(e)+a},wf=M.none,xf=M.none,Cf=bf(-1),Sf=bf(1),kf={"top-left":M.none(),top:M.some((function(e,t){Pl(e,zl(ml(t)))})),"top-right":M.none(),right:M.none(),"bottom-right":M.none(),bottom:M.some((function(e,t){Pl(e,zl(vl(t)))})),"bottom-left":M.none(),left:M.none()},Of=Object.freeze({__proto__:null,setValueFrom:function(e,t,n){var r=vf(e,t,n),o=hf(r);return pf(e,o),r},setToMin:function(e,t){var n=fl(t);pf(e,hf(n))},setToMax:function(e,t){var n=pl(t);pf(e,hf(n))},findValueOfOffset:vf,getValueFromEvent:function(e){return sl(e).map((function(e){return e.top}))},findPositionOfValue:yf,setPositionFromValue:function(e,t,n,r){var o=Nl(n),i=yf(e,r.getSpectrum(e),o.y,r.getTopEdge(e),r.getBottomEdge(e),n),a=Ui(t.element)/2;zi(t.element,"top",i-a+"px")},onLeft:wf,onRight:xf,onUp:Cf,onDown:Sf,edgeActions:kf}),Tf=function(e,t){ut(e,cl(),{value:t})},_f=function(e,t){return{x:e,y:t}},Ef=function(e,t){return function(n,r){return function(e,t,n,r){var o=e>0?Fl:Il,i=t?Nl(r).x:o(Nl(r).x,ll(r),gl(r),Sl(r)),a=t?o(Nl(r).y,fl(r),pl(r),Sl(r)):Nl(r).y;return Tf(n,_f(i,a)),M.some(i)}(e,t,n,r).map(_)}},Af=Ef(-1,!1),Df=Ef(1,!1),Mf=Ef(-1,!0),Nf=Ef(1,!0),Rf={"top-left":M.some((function(e,t){Pl(e,Bl(dl(t),ml(t)))})),top:M.some((function(e,t){Pl(e,Bl(xl(t),ml(t)))})),"top-right":M.some((function(e,t){Pl(e,Bl(hl(t),ml(t)))})),right:M.some((function(e,t){Pl(e,Bl(hl(t),Cl(t)))})),"bottom-right":M.some((function(e,t){Pl(e,Bl(hl(t),vl(t)))})),bottom:M.some((function(e,t){Pl(e,Bl(xl(t),vl(t)))})),"bottom-left":M.some((function(e,t){Pl(e,Bl(dl(t),vl(t)))})),left:M.some((function(e,t){Pl(e,Bl(dl(t),Cl(t)))}))},zf=Object.freeze({__proto__:null,setValueFrom:function(e,t,n){var r=af(e,t,n.left),o=vf(e,t,n.top),i=_f(r,o);return Tf(e,i),i},setToMin:function(e,t){var n=ll(t),r=fl(t);Tf(e,_f(n,r))},setToMax:function(e,t){var n=gl(t),r=pl(t);Tf(e,_f(n,r))},getValueFromEvent:function(e){return sl(e)},setPositionFromValue:function(e,t,n,r){var o=Nl(n),i=cf(e,r.getSpectrum(e),o.x,r.getLeftEdge(e),r.getRightEdge(e),n),a=yf(e,r.getSpectrum(e),o.y,r.getTopEdge(e),r.getBottomEdge(e),n),u=il(t.element)/2,c=Ui(t.element)/2;zi(t.element,"left",i-u+"px"),zi(t.element,"top",a-c+"px")},onLeft:Af,onRight:Df,onUp:Mf,onDown:Nf,edgeActions:Rf}),Bf=[Nr("stepSize",1),Nr("onChange",p),Nr("onChoose",p),Nr("onInit",p),Nr("onDragStart",p),Nr("onDragEnd",p),Nr("snapToGrid",!1),Nr("rounded",!0),Er("snapStart"),Tr("model",Cr("mode",{x:[Nr("minX",0),Nr("maxX",100),kr("value",(function(e){return ko(e.mode.minX)})),Or("getInitialValue"),oi("manager",gf)],y:[Nr("minY",0),Nr("maxY",100),kr("value",(function(e){return ko(e.mode.minY)})),Or("getInitialValue"),oi("manager",Of)],xy:[Nr("minX",0),Nr("maxX",100),Nr("minY",0),Nr("maxY",100),kr("value",(function(e){return ko({x:e.mode.minX,y:e.mode.minY})})),Or("getInitialValue"),oi("manager",zf)]})),pc("sliderBehaviours",[gc,nl]),kr("mouseIsDown",(function(){return ko(!1)}))],Pf=v("mouse.released"),If=ws({name:"Slider",configFields:Bf,partFields:Us,factory:function(e,t,n,r){var o,i=function(t){return ts(t,e,"thumb")},a=function(t){return ts(t,e,"spectrum")},u=function(t){return es(t,e,"left-edge")},c=function(t){return es(t,e,"right-edge")},s=function(t){return es(t,e,"top-edge")},l=function(t){return es(t,e,"bottom-edge")},f=e.model,d=f.manager,m=function(t,n){d.setPositionFromValue(t,n,e,{getLeftEdge:u,getRightEdge:c,getTopEdge:s,getBottomEdge:l,getSpectrum:a})},g=function(e,t){f.value.set(t);var n=i(e);m(e,n)},p=function(t){var n=e.mouseIsDown.get();e.mouseIsDown.set(!1),n&&es(t,e,"thumb").each((function(n){var r=f.value.get();e.onChoose(t,n,r)}))},h=function(t,n){n.stop(),e.mouseIsDown.set(!0),e.onDragStart(t,i(t))},v=function(t,n){n.stop(),e.onDragEnd(t,i(t)),p(t)};return{uid:e.uid,dom:e.dom,components:t,behaviours:vc(e.sliderBehaviours,[gc.config({mode:"special",focusIn:function(t){return es(t,e,"spectrum").map(gc.focusIn).map(_)}}),nl.config({store:{mode:"manual",getValue:function(e){return f.value.get()}}}),ci.config({channels:(o={},o[Pf()]={onReceive:p},o)})]),events:Xr([Jr(cl(),(function(t,n){!function(t,n){g(t,n);var r=i(t);e.onChange(t,r,n),M.some(!0)}(t,n.event.value)})),oo((function(t,n){var r=f.getInitialValue();f.value.set(r);var o=i(t);m(t,o);var u=a(t);e.onInit(t,o,u,f.value.get())})),Jr(De(),h),Jr(Ne(),v),Jr(Re(),h),Jr(Be(),v)]),apis:{resetToMin:function(t){d.setToMin(t,e)},resetToMax:function(t){d.setToMax(t,e)},setValue:g,refresh:m},domModification:{styles:{position:"relative"}}}},apis:{setValue:function(e,t,n){e.setValue(t,n)},resetToMin:function(e,t){e.resetToMin(t)},resetToMax:function(e,t){e.resetToMax(t)},refresh:function(e,t){e.refresh(t)}}}),Ff=function(e,t,n,r){return Ds(t,(function(){var r=n();e.setContextToolbar([{label:t+" group",items:r}])}),{},r)},Lf=function(e){var t=function(e){return e<0?"black":e>360?"white":"hsl("+e+", 100%, 50%)"};return If.sketch({dom:Os('
    '),components:[If.parts["left-edge"](Ts('
    ')),If.parts.spectrum({dom:Os('
    '),components:[Ts('
    ')],behaviours:bo([wi.config({toggleClass:Oi("thumb-active")})])}),If.parts["right-edge"](Ts('
    ')),If.parts.thumb({dom:Os('
    '),behaviours:bo([wi.config({toggleClass:Oi("thumb-active")})])})],onChange:function(n,r,o){var i=t(o.x());zi(r.element,"background-color",i),e.onChange(n,r,i)},onDragStart:function(e,t){wi.on(t)},onDragEnd:function(e,t){wi.off(t)},onInit:function(e,n,r,o){var i=t(o.x());zi(n.element,"background-color",i)},stepSize:10,model:{mode:"x",minX:0,maxX:360,getInitialValue:function(){return{x:e.getInitialValue()}}},sliderBehaviours:bo([Ci(If.refresh)])})},Hf=function(e,t){var n={onChange:function(e,n,r){t.undoManager.transact((function(){t.formatter.apply("forecolor",{value:r}),t.nodeChanged()}))},getInitialValue:v(-1)};return Ff(e,"color-levels",(function(){return function(e){return[Lf(e)]}(n)}),t)},Vf=["9px","10px","11px","12px","14px","16px","18px","20px","24px","32px","36px"],jf=function(e,t){return(xt(t)?M.some(t):_t(t).filter(xt)).map((function(t){var n=function(e,t,n){return Xi((function(e,t){return t(e)}),Ji,e,t,n)}(t,(function(e){return Fi(e,"font-size").isSome()}),e).bind((function(e){return Fi(e,"font-size")}));return n.getOrThunk((function(){return Pi(t,"font-size")}))})).getOr("")},Uf=function(e){var t=e.selection.getStart(),n=dt.fromDom(t),r=dt.fromDom(e.getBody()),o=jf((function(e){return vt(r,e)}),n);return U(Vf,(function(e){return o===e})).getOr("medium")},Wf=function(e){return function(e){return W(Vf,(function(t){return t===e}))}(Uf(e)).getOr(2)},$f=function(e,t){(function(e){return M.from(Vf[e])})(t).each((function(t){!function(e,t){Uf(e)!==t&&e.execCommand("fontSize",!1,t)}(e,t)}))},qf=v(Vf),Gf=sr([Or("getInitialValue"),Or("onChange"),Or("category"),Or("sizes")]),Kf=function(e){var t=wr("SizeSlider",Gf,e);return If.sketch({dom:{tag:"div",classes:[Oi("slider-"+t.category+"-size-container"),Oi("slider"),Oi("slider-size-container")]},onChange:function(e,n,r){var o=r.x();(function(e){return e>=0&&e'),components:[Ts('
    ')]}),If.parts.thumb({dom:Os('
    '),behaviours:bo([wi.config({toggleClass:Oi("thumb-active")})])})]})},Xf=qf(),Yf=function(e){return Kf({onChange:e.onChange,sizes:Xf,category:"font",getInitialValue:e.getInitialValue})},Jf=function(e){return[Ts(''),Yf(e),Ts('')]},Zf=function(t){var n=function(e){return void 0!==e.uid}(t)&&sn(t,"uid")?t.uid:ms("memento");return{get:function(e){return e.getSystem().getByUid(n).getOrDie()},getOpt:function(e){return e.getSystem().getByUid(n).toOptional()},asSpec:function(){return e(e({},t),{uid:n})}}},Qf={},ed={exports:Qf};!function(e,t,n,r){!function(r,o){"object"==typeof t&&void 0!==n?n.exports=o():"function"==typeof e&&e.amd?e(o):(r="undefined"!=typeof globalThis?globalThis:r||self).EphoxContactWrapper=o()}(this,(function(){var e="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},t={exports:{}};!function(t){!function(e){var n=setTimeout;function r(){}function o(e){if("object"!=typeof this)throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=void 0,this._deferreds=[],l(e,this)}function i(e,t){for(;3===e._state;)e=e._value;0!==e._state?(e._handled=!0,o._immediateFn((function(){var n=1===e._state?t.onFulfilled:t.onRejected;if(null!==n){var r;try{r=n(e._value)}catch(e){return void u(t.promise,e)}a(t.promise,r)}else(1===e._state?a:u)(t.promise,e._value)}))):e._deferreds.push(t)}function a(e,t){try{if(t===e)throw new TypeError("A promise cannot be resolved with itself.");if(t&&("object"==typeof t||"function"==typeof t)){var n=t.then;if(t instanceof o)return e._state=3,e._value=t,void c(e);if("function"==typeof n)return void l((r=n,i=t,function(){r.apply(i,arguments)}),e)}e._state=1,e._value=t,c(e)}catch(t){u(e,t)}var r,i}function u(e,t){e._state=2,e._value=t,c(e)}function c(e){2===e._state&&0===e._deferreds.length&&o._immediateFn((function(){e._handled||o._unhandledRejectionFn(e._value)}));for(var t=0,n=e._deferreds.length;t0},ld=function(e){return null==e?"":e},fd=function(e){return gd(e).fold((function(){return function(e){return{url:"",text:e.selection.getContent({format:"text"}),title:"",target:"",link:M.none()}}(e)}),(function(e){return function(e){var t=cd(e),n=mn(e,"href"),r=mn(e,"title"),o=mn(e,"target");return{url:ld(n),text:t!==n?ld(t):"",title:ld(r),target:ld(o),link:M.some(e)}}(e)}))},dd=function(e,t,n){return n.text.toOptional().filter(sd).fold((function(){return function(e){return mn(e,"href")===cd(e)}(e)?M.some(t):M.none()}),M.some)},md=function(e,t){t.url.toOptional().filter(sd).fold((function(){!function(e,t){t.link.bind(b).each((function(t){e.execCommand("unlink")}))}(e,t)}),(function(n){var r=function(e,t){var n={};return n.href=e,t.title.toOptional().filter(sd).each((function(e){n.title=e})),t.target.toOptional().filter(sd).each((function(e){n.target=e})),n}(n,t);t.link.bind(b).fold((function(){var o=t.text.toOptional().filter(sd).getOr(n);e.insertContent(e.dom.createHTML("a",r,e.dom.encode(o)))}),(function(e){var o=dd(e,n,t);dn(e,r),o.each((function(t){!function(e,t){e.dom.textContent=t}(e,t)}))}))}))},gd=function(e){var t=dt.fromDom(e.selection.getStart());return ta(t,"a")},pd=Ee(),hd=function(e,t){var n=t.selection.getRng();e(),t.selection.setRng(n)},vd=function(e,t){var n=function(e,t){var n=Xr(t);return wo({fields:[Or("enabled")],name:e,active:{events:v(n)}})}(e,t);return{key:e,value:{config:{},me:n,configAsRaw:v({}),initialConfig:{},state:ho}}},bd=Object.freeze({__proto__:null,getCurrent:function(e,t,n){return t.find(e)}}),yd=[Or("find")],wd=wo({fields:yd,name:"composing",apis:bd}),xd=ys({name:"Container",factory:function(n){var r=n.dom,o=r.attributes,i=t(r,["attributes"]);return{uid:n.uid,dom:e({tag:"div",attributes:e({role:"presentation"},o)},i),components:n.components,behaviours:hc(n.containerBehaviours),events:n.events,domModification:n.domModification,eventOrder:n.eventOrder}},configFields:[Nr("components",[]),pc("containerBehaviours",[]),Nr("events",{}),Nr("domModification",{}),Nr("eventOrder",{})]}),Cd=ys({name:"DataField",factory:function(e){return{uid:e.uid,dom:e.dom,behaviours:yc(e.dataBehaviours,[nl.config({store:{mode:"memory",initialValue:e.getInitialValue()}}),wd.config({find:M.some})]),events:Xr([oo((function(t,n){nl.setValue(t,e.getInitialValue())}))])}},configFields:[Or("uid"),Or("dom"),Or("getInitialValue"),bc("dataBehaviours",[nl,wd])]}),Sd=function(e){return e.dom.value},kd=function(e,t){if(void 0===t)throw new Error("Value.set was undefined");e.dom.value=t},Od=v([Er("data"),Nr("inputAttributes",{}),Nr("inputStyles",{}),Nr("tag","input"),Nr("inputClasses",[]),ei("onSetValue"),Nr("styles",{}),Nr("eventOrder",{}),pc("inputBehaviours",[nl,Mi]),Nr("selectOnFocus",!0)]),Td=function(t){return e(e({},function(e){return bo([Mi.config({onFocus:e.selectOnFocus?function(e){var t=e.element,n=Sd(t);t.dom.setSelectionRange(0,n.length)}:p})])}(t)),vc(t.inputBehaviours,[nl.config({store:e(e({mode:"manual"},t.data.map((function(e){return{initialValue:e}})).getOr({})),{getValue:function(e){return Sd(e.element)},setValue:function(e,t){Sd(e.element)!==t&&kd(e.element,t)}}),onSetValue:t.onSetValue})]))},_d=function(t){return{tag:t.tag,attributes:e({type:"text"},t.inputAttributes),styles:t.inputStyles,classes:t.inputClasses}},Ed=ys({name:"Input",configFields:Od(),factory:function(e,t){return{uid:e.uid,dom:_d(e),components:[],behaviours:Td(e),eventOrder:e.eventOrder}}}),Ad=Object.freeze({__proto__:null,exhibit:function(e,t){return lo({attributes:Lr([{key:t.tabAttr,value:"true"}])})}}),Dd=[Nr("tabAttr","data-alloy-tabstop")],Md=wo({fields:Dd,name:"tabstopping",active:Ad}),Nd=tinymce.util.Tools.resolve("tinymce.util.I18n"),Rd=function(e,t){var n=Zf(Ed.sketch({inputAttributes:{placeholder:Nd.translate(t)},onSetValue:function(e,t){at(e,Le())},inputBehaviours:bo([wd.config({find:M.some}),Md.config({}),gc.config({mode:"execution"})]),selectOnFocus:!1})),r=Zf(xs.sketch({dom:Os(''),action:function(e){var t=n.get(e);nl.setValue(t,"")}}));return{name:e,spec:xd.sketch({dom:Os('
    '),components:[n.asSpec(),r.asSpec()],containerBehaviours:bo([wi.config({toggleClass:Oi("input-container-empty")}),wd.config({find:function(e){return M.some(n.get(e))}}),vd("input-clearing",[Jr(Le(),(function(e){var t=n.get(e);(nl.getValue(t).length>0?wi.off:wi.on)(e)}))])])})}},zd=function(e){return{name:e,spec:Cd.sketch({dom:{tag:"span",styles:{display:"none"}},getInitialValue:function(){return M.none()}})}},Bd=["input","button","textarea","select"],Pd=function(e,t,n){(t.disabled()?jd:Ud)(e,t)},Id=function(e,t){return!0===t.useNative&&P(Bd,yt(e.element))},Fd=function(e){fn(e.element,"disabled","disabled")},Ld=function(e){hn(e.element,"disabled")},Hd=function(e){fn(e.element,"aria-disabled","true")},Vd=function(e){fn(e.element,"aria-disabled","false")},jd=function(e,t,n){t.disableClass.each((function(t){xn(e.element,t)})),(Id(e,t)?Fd:Hd)(e),t.onDisabled(e)},Ud=function(e,t,n){t.disableClass.each((function(t){Sn(e.element,t)})),(Id(e,t)?Ld:Vd)(e),t.onEnabled(e)},Wd=function(e,t){return Id(e,t)?function(e){return pn(e.element,"disabled")}(e):function(e){return"true"===mn(e.element,"aria-disabled")}(e)},$d=Object.freeze({__proto__:null,enable:Ud,disable:jd,isDisabled:Wd,onLoad:Pd,set:function(e,t,n,r){(r?jd:Ud)(e,t)}}),qd=Object.freeze({__proto__:null,exhibit:function(e,t){return lo({classes:t.disabled()?t.disableClass.toArray():[]})},events:function(e,t){return Xr([Yr(Ye(),(function(t,n){return Wd(t,e)})),fo(e,t,Pd)])}}),Gd=[(td="disabled",nd=T,Rr(td,nd,mr)),Nr("useNative",!0),Er("disableClass"),ei("onDisabled"),ei("onEnabled")],Kd=wo({fields:Gd,name:"disabling",active:qd,apis:$d}),Xd="form",Yd=[pc("formBehaviours",[nl])],Jd=function(e){return""},Zd=function(e,t){return{uid:e.uid,dom:e.dom,components:t,behaviours:vc(e.formBehaviours,[nl.config({store:{mode:"manual",getValue:function(t){var n=function(e,t){var n=e.getSystem();return nn(t.partUids,(function(e,t){return v(n.getByUid(e))}))}(t,e);return nn(n,(function(e,t){return e().bind((function(e){var n,r,o=wd.getCurrent(e);return n=o,r=new Error("Cannot find a current component to extract the value from for form part '"+t+"': "+Ho(e.element)),n.fold((function(){return An.error(r)}),An.value)})).map(nl.getValue)}))},setValue:function(t,n){tn(n,(function(n,r){es(t,e,r).each((function(e){wd.getCurrent(e).each((function(e){nl.setValue(e,n)}))}))}))}}})]),apis:{getField:function(t,n){return es(t,e,n).bind(wd.getCurrent)}}}},Qd=(as((function(e,t,n){return e.getField(t,n)})),function(e){var t=function(){var e=[];return{field:function(t,n){return e.push(t),function(e,t,n){return{uiType:Ec(),owner:e,name:t,config:n,validated:{}}}(Xd,Jd(t),n)},record:v(e)}}(),n=e(t),r=t.record(),o=F(r,(function(e){return $c({name:e,pname:Jd(e)})}));return ps(Xd,Yd,o,Zd,n)}),em=function(e){var t="navigateEvent",n=lr([Or("fields"),Nr("maxFieldIndex",e.fields.length-1),Or("onExecute"),Or("getInitialValue"),kr("state",(function(){return{dialogSwipeState:Xa(),currentScreen:ko(0)}}))]),r=wr("SerialisedDialog",n,e),o=function(e,n,r){return xs.sketch({dom:Os(''),action:function(n){ut(n,t,{direction:e})},buttonBehaviours:bo([Kd.config({disableClass:Oi("toolbar-navigation-disabled"),disabled:function(){return!r}})])})},i=function(e,t){var n=Ki(e.element,"."+Oi("serialised-dialog-screen"));ea(e.element,"."+Oi("serialised-dialog-chain")).each((function(e){r.state.currentScreen.get()+t>=0&&r.state.currentScreen.get()+t'),components:[xd.sketch({dom:Os('
    '),components:F(r.fields,(function(t,n){return n<=r.maxFieldIndex?xd.sketch({dom:Os('
    '),components:[o(-1,"previous",n>0),e.field(t.name,t.spec),o(1,"next",n'),behaviours:bo([Ra.config({highlightClass:Oi("dot-active"),itemClass:Oi("dot-item")})]),components:q(r.fields,(function(e,t){return t<=r.maxFieldIndex?[Ts('
    ')]:[]}))});return{dom:Os('
    '),components:[u.asSpec(),c.asSpec()],behaviours:bo([gc.config({mode:"special",focusIn:function(e){var t=u.get(e);gc.focusIn(t)}}),vd("serializer-wrapper-events",[Jr(De(),(function(e,t){var n=t.event;r.state.dialogSwipeState.set(function(e){return{xValue:e,points:[]}}(n.raw.touches[0].clientX))})),Jr(Me(),(function(e,t){var n=t.event;r.state.dialogSwipeState.on((function(e){t.event.prevent(),r.state.dialogSwipeState.set(function(e,t){if(t===e.xValue)return e;var n=t-e.xValue>0?1:-1,r={direction:n,xValue:t};return{xValue:t,points:(0===e.points.length?[]:e.points[e.points.length-1].direction===n?e.points.slice(0,e.points.length-1):e.points).concat([r])}}(e,n.raw.touches[0].clientX))}))})),Jr(Ne(),(function(e,t){r.state.dialogSwipeState.on((function(t){var n=u.get(e),r=-1*function(e){if(0===e.points.length)return 0;var t=e.points[0].direction,n=e.points[e.points.length-1].direction;return-1===t&&-1===n?-1:1===t&&1===n?1:0}(t);i(n,r)}))}))])])}},tm=N((function(e,t){return[{label:"the link group",items:[em({fields:[Rd("url","Type or paste URL"),Rd("text","Link text"),Rd("title","Link title"),Rd("target","Link target"),zd("link")],maxFieldIndex:["url","text","title","target"].length-1,getInitialValue:function(){return M.some(fd(t))},onExecute:function(n,r){var o=nl.getValue(n);md(t,o),e.restoreToolbar(),t.focus()}})]}]})),nm=function(e,t){return Es(t,"link","link",(function(){var n=tm(e,t);e.setContextToolbar(n),function(e,t){(pd.os.isAndroid()?hd:O)(t,e)}(t,(function(){e.focusToolbar()})),gd(t).each((function(e){t.selection.select(e.dom)}))}))},rm=Xr([function(e,t){return{key:e,value:Gr({can:t})}}(qe(),(function(e,t){var n=t.event,r=n.originator,o=n.target;return!function(e,t,n){return vt(t,e.element)&&!vt(t,n)}(e,r,o)||(console.warn(qe()+" did not get interpreted by the desired target. \nOriginator: "+Ho(r)+"\nTarget: "+Ho(o)+"\nCheck the "+qe()+" event handlers"),!1)}))]),om=Object.freeze({__proto__:null,events:rm}),im=b,am=function(e){var t=function(t){return"The component must be in a context to execute: "+t+(e?"\n"+Ho(e().element)+" is not in context.":"")},n=function(e){return function(){throw new Error(t(e))}},r=function(e){return function(){console.warn(t(e))}};return{debugInfo:v("fake"),triggerEvent:r("triggerEvent"),triggerFocus:r("triggerFocus"),triggerEscape:r("triggerEscape"),broadcast:r("broadcast"),broadcastOn:r("broadcastOn"),broadcastEvent:r("broadcastEvent"),build:n("build"),addToWorld:n("addToWorld"),removeFromWorld:n("removeFromWorld"),addToGui:n("addToGui"),removeFromGui:n("removeFromGui"),getByUid:n("getByUid"),getByDom:n("getByDom"),isConnected:T}},um=am(),cm=function(e,t){var n={};return tn(e,(function(e,r){tn(e,(function(e,o){var i=un(n,o).getOr([]);n[o]=i.concat([t(r,e)])}))})),n},sm=function(e,t,n,r){try{var o=(i=n,a=function(n,o){var i=n[t],a=o[t],u=r.indexOf(i),c=r.indexOf(a);if(-1===u)throw new Error("The ordering for "+e+" does not have an entry for "+i+".\nOrder specified: "+JSON.stringify(r,null,2));if(-1===c)throw new Error("The ordering for "+e+" does not have an entry for "+a+".\nOrder specified: "+JSON.stringify(r,null,2));return u1?H(t[n],(function(t){return I(e,(function(e){return e.name===t}))})).join(" > "):e[0].name;return Fr(n,function(e,t){return{handler:e,purpose:t}}(o,i))}))}));return Hr(n,{})},hm="alloy.base.behaviour",vm=lr([Sr("dom","dom",{tag:"required",process:{}},lr([Or("tag"),Nr("styles",{}),Nr("classes",[]),Nr("attributes",{}),Er("value"),Er("innerHtml")])),Or("components"),Or("uid"),Nr("events",{}),Nr("apis",{}),Sr("eventOrder","eventOrder",function(e){return Zn(v(e))}((rd={},rd[Ye()]=["disabling",hm,"toggling","typeaheadevents"],rd[qe()]=[hm,"focusing","keying"],rd[et()]=[hm,"disabling","toggling","representing"],rd[Le()]=[hm,"representing","streaming","invalidating"],rd[nt()]=[hm,"representing","item-events","tooltipping"],rd[Re()]=["focusing",hm,"item-type-events"],rd[De()]=["focusing",hm,"item-type-events"],rd[Pe()]=["item-type-events","tooltipping"],rd[Xe()]=["receiving","reflecting","tooltipping"],rd)),dr()),Er("domModification")]),bm=function(e){return e.events},ym=function(e,t){L(t,(function(t){xn(e,t)}))},wm=function(e,t){L(t,(function(t){Sn(e,t)}))},xm=function(e,t){return function(e,t){var n=F(t,(function(e){return Dr(e.name(),[Or("config"),Nr("state",ho)])})),r=br("component.behaviours",lr(n),e.behaviours).fold((function(t){throw new Error(xr(t)+"\nComplete spec:\n"+JSON.stringify(e,null,2))}),b);return{list:t,data:nn(r,(function(e){var t=e.map((function(e){return{config:e.config,state:e.state.init(e.config)}}));return v(t)}))}}(e,t)},Cm=function(e){var t=function(e){var t=un(e,"behaviours").getOr({});return q(Qt(t),(function(e){var n=t[e];return d(n)?[n.me]:[]}))}(e);return xm(e,t)},Sm=function(t,n,r){var o,i,a,u=e(e({},(o=t).dom),{uid:o.uid,domChildren:F(o.components,(function(e){return e.element}))}),c=function(e){return e.domModification.fold((function(){return lo({})}),lo)}(t),s={"alloy.base.modification":c},l=n.length>0?function(t,n,r,o){var i=e({},n);L(r,(function(e){i[e.name()]=e.exhibit(t,o)}));var a=cm(i,(function(e,t){return{name:e,modification:t}})),u=function(t){return V(t,(function(t,n){return e(e({},n.modification),t)}),{})},c=V(a.classes,(function(e,t){return t.modification.concat(e)}),[]),s=u(a.attributes),l=u(a.styles);return lo({classes:c,attributes:s,styles:l})}(r,s,n,u):c;return a=l,e(e({},i=u),{attributes:e(e({},i.attributes),a.attributes),styles:e(e({},i.styles),a.styles),classes:i.classes.concat(a.classes)})},km=function(e,t,n){var r={"alloy.base.behaviour":bm(e)};return function(e,t,n,r){var o=dm(e,n,r);return pm(o,t)}(n,e.eventOrder,t,r).getOrDie()},Om=function(e){var t=function(){return l},n=ko(um),r=yr(function(e){return br("custom.definition",vm,e)}(e)),o=Cm(e),i=function(e){return e.list}(o),a=function(e){return e.data}(o),u=function(e){var t=dt.fromTag(e.tag);dn(t,e.attributes),ym(t,e.classes),Bi(t,e.styles),e.innerHtml.each((function(e){return Io(t,e)}));var n=e.domChildren;return zt(t,n),e.value.each((function(e){kd(t,e)})),e.uid,fs(t,e.uid),t}(Sm(r,i,a)),c=km(r,i,a),s=ko(r.components),l={uid:e.uid,getSystem:n.get,config:function(t){var n=a;return(m(n[t.name()])?n[t.name()]:function(){throw new Error("Could not find "+t.name()+" in "+JSON.stringify(e,null,2))})()},hasConfigured:function(e){return m(a[e.name()])},spec:e,readState:function(e){return a[e]().map((function(e){return e.state.readState()})).getOr("not enabled")},getApis:function(){return r.apis},connect:function(e){n.set(e)},disconnect:function(){n.set(am(t))},element:u,syncComponents:function(){var e=Et(u),t=q(e,(function(e){return n.get().getByDom(e).fold((function(){return[]}),Y)}));s.set(t)},components:s.get,events:c};return l},Tm=function(n){var r=im(n),o=r.events,i=t(r,["events"]),a=function(e){var t=un(e,"components").getOr([]);return F(t,Dm)}(i),u=e(e({},i),{events:e(e({},om),o),components:a});return An.value(Om(u))},_m=function(e){var t=dt.fromText(e);return Em({element:t})},Em=function(e){var t=wr("external.component",sr([Or("element"),Er("uid")]),e),n=ko(am()),r=t.uid.getOrThunk((function(){return ms("external")}));fs(t.element,r);var o={uid:r,getSystem:n.get,config:M.none,hasConfigured:T,connect:function(e){n.set(e)},disconnect:function(){n.set(am((function(){return o})))},getApis:function(){return{}},element:t.element,spec:e,readState:v("No state"),syncComponents:p,components:v([]),events:{}};return is(o)},Am=ms,Dm=function(t){return function(e){return un(e,os)}(t).getOrThunk((function(){var n=function(e){return cn(e,"uid")}(t)?t:e({uid:Am("")},t);return Tm(n).getOrDie()}))},Mm=is,Nm="alloy.item-hover",Rm="alloy.item-focus",zm=function(e){(Eo(e.element).isNone()||Mi.isFocused(e))&&(Mi.isFocused(e)||Mi.focus(e),ut(e,Nm,{item:e}))},Bm=function(e){ut(e,Rm,{item:e})},Pm=v(Nm),Im=v(Rm),Fm=[Or("data"),Or("components"),Or("dom"),Nr("hasSubmenu",!1),Er("toggling"),bc("itemBehaviours",[wi,Mi,gc,nl]),Nr("ignoreFocus",!1),Nr("domModification",{}),oi("builder",(function(t){return{dom:t.dom,domModification:e(e({},t.domModification),{attributes:e(e(e({role:t.toggling.isSome()?"menuitemcheckbox":"menuitem"},t.domModification.attributes),{"aria-haspopup":t.hasSubmenu}),t.hasSubmenu?{"aria-expanded":!1}:{})}),behaviours:yc(t.itemBehaviours,[t.toggling.fold(wi.revoke,(function(t){return wi.config(e({aria:{mode:"checked"}},t))})),Mi.config({ignore:t.ignoreFocus,stopMousedown:t.ignoreFocus,onFocus:function(e){Bm(e)}}),gc.config({mode:"execution"}),nl.config({store:{mode:"memory",initialValue:t.data}}),vd("item-type-events",n(n([],Ti(),!0),[Jr(Pe(),zm),Jr(Je(),Mi.focus)],!1))]),components:t.components,eventOrder:t.eventOrder}})),Nr("eventOrder",{})],Lm=[Or("dom"),Or("components"),oi("builder",(function(e){return{dom:e.dom,components:e.components,events:Xr([no(Je())])}}))],Hm=v("item-widget"),Vm=v([$c({name:"widget",overrides:function(e){return{behaviours:bo([nl.config({store:{mode:"manual",getValue:function(t){return e.data},setValue:p}})])}}})]),jm=[Or("uid"),Or("data"),Or("components"),Or("dom"),Nr("autofocus",!1),Nr("ignoreFocus",!1),bc("widgetBehaviours",[nl,Mi,gc]),Nr("domModification",{}),rs(Vm()),oi("builder",(function(e){var t=Zc(Hm(),e,Vm()),n=Qc(Hm(),e,t.internals()),r=function(t){return es(t,e,"widget").map((function(e){return gc.focusIn(e),e}))},o=function(t,n){return Va(n.event.target)?M.none():e.autofocus?(n.setSource(t.element),M.none()):M.none()};return{dom:e.dom,components:n,domModification:e.domModification,events:Xr([uo((function(e,t){r(e).each((function(e){t.stop()}))})),Jr(Pe(),zm),Jr(Je(),(function(t,n){e.autofocus?r(t):Mi.focus(t)}))]),behaviours:yc(e.widgetBehaviours,[nl.config({store:{mode:"memory",initialValue:e.data}}),Mi.config({ignore:e.ignoreFocus,onFocus:function(e){Bm(e)}}),gc.config({mode:"special",focusIn:e.autofocus?function(e){r(e)}:Co(),onLeft:o,onRight:o,onEscape:function(t,n){return Mi.isFocused(t)||e.autofocus?e.autofocus?(n.setSource(t.element),M.none()):M.none():(Mi.focus(t),M.some(!0))}})])}}))],Um=Cr("type",{widget:jm,item:Fm,separator:Lm}),Wm=v([Gc({factory:{sketch:function(e){var t=wr("menu.spec item",Um,e);return t.builder(t)}},name:"items",unit:"item",defaults:function(t,n){return cn(n,"uid")?n:e(e({},n),{uid:ms("item")})},overrides:function(e,t){return{type:t.type,ignoreFocus:e.fakeFocus,domModification:{classes:[e.markers.item]}}}})]),$m=v([Or("value"),Or("items"),Or("dom"),Or("components"),Nr("eventOrder",{}),pc("menuBehaviours",[Ra,nl,wd,gc]),Rr("movement",{mode:"menu",moveOnTab:!0},Cr("mode",{grid:[ai(),oi("config",(function(e,t){return{mode:"flatgrid",selector:"."+e.markers.item,initSize:{numColumns:t.initSize.numColumns,numRows:t.initSize.numRows},focusManager:e.focusManager}}))],matrix:[oi("config",(function(e,t){return{mode:"matrix",selectors:{row:t.rowSelector,cell:"."+e.markers.item},focusManager:e.focusManager}})),Or("rowSelector")],menu:[Nr("moveOnTab",!0),oi("config",(function(e,t){return{mode:"menu",selector:"."+e.markers.item,moveOnTab:t.moveOnTab,focusManager:e.focusManager}}))]})),Tr("markers",Jo()),Nr("fakeFocus",!1),Nr("focusManager",Ba()),ei("onHighlight")]),qm=v("alloy.menu-focus"),Gm=ws({name:"Menu",configFields:$m(),partFields:Wm(),factory:function(e,t,n,r){return{uid:e.uid,dom:e.dom,markers:e.markers,behaviours:vc(e.menuBehaviours,[Ra.config({highlightClass:e.markers.selectedItem,itemClass:e.markers.item,onHighlight:e.onHighlight}),nl.config({store:{mode:"memory",initialValue:e.value}}),wd.config({find:M.some}),gc.config(e.movement.config(e,e.movement))]),events:Xr([Jr(Im(),(function(e,t){var n=t.event;e.getSystem().getByDom(n.target).each((function(n){Ra.highlight(e,n),t.stop(),ut(e,qm(),{menu:e,item:n})}))})),Jr(Pm(),(function(e,t){var n=t.event.item;Ra.highlight(e,n)}))]),components:t,eventOrder:e.eventOrder,domModification:{attributes:{role:"menu"}}}}}),Km=function(e,t){var n=Ht(t),r=_o(n).bind((function(e){var n,r,o=function(t){return vt(e,t)};return o(t)?M.some(t):(n=o,(r=function(e){for(var t=0;t1?M.some(e.slice(1)):M.none()}))},lookupMenu:c,lookupItem:s,otherMenus:function(e){var t=i.get();return X(Qt(t),e)},getPrimary:function(){return o.get().bind(u)},getMenus:function(){return n.get()},clear:function(){t.set({}),n.set({}),r.set({}),o.clear()},isClear:function(){return o.get().isNone()},getTriggeringPath:function(e,t){var n=H(s(e).toArray(),(function(e){return u(e).isSome()}));return un(r.get(),e).bind((function(e){var r=K(n.concat(e)),i=q(r,(function(e,n){return function(e,t,n){return u(e).bind((function(r){return a(e).bind((function(e){return t(e).map((function(e){return{triggeredMenu:r,triggeringItem:e,triggeringPath:n}}))}))}))}(e,t,r.slice(0,n+1)).fold((function(){return Vr(o.get(),e)?[]:[M.none()]}),(function(e){return[M.some(e)]}))}));return function(e){for(var t=[],n=0;n");t[r[0]]=Fr(r[1],e),t[r[1]]=Fr(r[0],e)})),t},createBistate:function(e,t,n){return Lr([{key:e,value:Fr(t,n)},{key:t,value:Fr(e,n)}])},createTristate:function(e,t,n,r){return Lr([{key:e,value:Lr([{key:t,value:r},{key:n,value:r}])},{key:t,value:Lr([{key:e,value:r},{key:n,value:r}])},{key:n,value:Lr([{key:e,value:r},{key:t,value:r}])}])}}}),hg=Oi("scrollable"),vg=function(e){xn(e,hg)},bg=function(e){Sn(e,hg)},yg=hg,wg=function(e){return un(e,"format").getOr(e.title)},xg=function(e,t,n,r,o){return{data:{value:e,text:t},type:"item",dom:{tag:"div",classes:o?[Oi("styles-item-is-menu")]:[]},toggling:{toggleOnExecute:!1,toggleClass:Oi("format-matches"),selected:n},itemBehaviours:bo(o?[]:[xi(e,(function(e,t){(t?wi.on:wi.off)(e)}))]),components:[{dom:{tag:"div",attributes:{style:r},innerHtml:t}}]}},Cg=function(e,t,n,r){return{value:e,dom:{tag:"div"},components:[xs.sketch({dom:{tag:"div",classes:[Oi("styles-collapser")]},components:r?[{dom:{tag:"span",classes:[Oi("styles-collapse-icon")]}},_m(e)]:[_m(e)],action:function(e){if(r){var t=n().get(e);ag.collapseMenu(t)}}}),{dom:{tag:"div",classes:[Oi("styles-menu-items-container")]},components:[Gm.parts.items({})],behaviours:bo([vd("adhoc-scrollable-menu",[oo((function(e,t){zi(e.element,"overflow-y","auto"),zi(e.element,"-webkit-overflow-scrolling","touch"),vg(e.element)})),io((function(e){Li(e.element,"overflow-y"),Li(e.element,"-webkit-overflow-scrolling"),bg(e.element)}))])])}],items:t,menuBehaviours:bo([pg.config({initialState:"after",routes:pg.createTristate("before","current","after",{transition:{property:"transform",transitionClass:"transitioning"}})})])}},Sg=function(e){var t,n,r,o,i,a=(t=e.formats,n=function(){return u},r=Cg("Styles",[].concat(F(t.items,(function(e){return xg(wg(e),e.title,e.isSelected(),e.getPreview(),sn(t.expansions,wg(e)))}))),n,!1),o=nn(t.menus,(function(e,r){var o=F(e,(function(e){return xg(wg(e),e.title,void 0!==e.isSelected&&e.isSelected(),void 0!==e.getPreview?e.getPreview():"",sn(t.expansions,wg(e)))}));return Cg(r,o,n,!0)})),i=Kn(o,Fr("styles",r)),{tmenu:ag.tieredData("styles",i,t.expansions)}),u=Zf(ag.sketch({dom:{tag:"div",classes:[Oi("styles-menu")]},components:[],fakeFocus:!0,stayInDom:!0,onExecute:function(t,n){var r=nl.getValue(n);return e.handle(n,r.value),M.none()},onEscape:function(){return M.none()},onOpenMenu:function(e,t){var n=il(e.element);ol(t.element,n),pg.jumpTo(t,"current")},onOpenSubmenu:function(e,t,n){var r=il(e.element),o=Qi(t.element,'[role="menu"]').getOrDie("hacky"),i=e.getSystem().getByDom(o).getOrDie();ol(n.element,r),pg.progressTo(i,"before"),pg.jumpTo(n,"after"),pg.progressTo(n,"current")},onCollapseMenu:function(e,t,n){var r=Qi(t.element,'[role="menu"]').getOrDie("hacky"),o=e.getSystem().getByDom(r).getOrDie();pg.progressTo(o,"after"),pg.progressTo(n,"current")},navigateOnHover:!1,highlightImmediately:!0,data:a.tmenu,markers:{backgroundMenu:Oi("styles-background-menu"),menu:Oi("styles-menu"),selectedMenu:Oi("styles-selected-menu"),item:Oi("styles-item"),selectedItem:Oi("styles-selected-item")}}));return u.asSpec()},kg=function(e){return sn(e,"items")?function(e){var t=Kn(Ir(e,["items"]),{menu:!0}),n=Og(e.items);return{item:t,menus:Kn(n.menus,Fr(e.title,n.items)),expansions:Kn(n.expansions,Fr(e.title,e.title))}}(e):{item:e,menus:{},expansions:{}}},Og=function(e){return V(e,(function(e,t){var n=kg(t);return{menus:Kn(e.menus,n.menus),items:[n.item].concat(e.items),expansions:Kn(e.expansions,n.expansions)}}),{menus:{},expansions:{},items:[]})},Tg=function(e){var t=function(t){return function(){return e.formatter.match(t)}},n=function(t){return function(){return e.formatter.getCssText(t)}},r=function(o){return F(o,(function(o){if(sn(o,"items")){var i=r(o.items);return Kn(function(e){return Kn(e,{isSelected:T,getPreview:v("")})}(o),{items:i})}return sn(o,"format")?function(e){return Kn(e,{isSelected:t(e.format),getPreview:n(e.format)})}(o):function(r){var o=Dc(r.title),i=Kn(r,{format:o,isSelected:t(o),getPreview:n(o)});return e.formatter.register(o,i),i}(o)}))};return r(function(e){return e.getParam("style_formats",Mo,"array")}(e))},_g=function(e,t,n){var r=function(e,t){var n=function(t){return q(t,(function(t){return void 0!==t.items?n(t.items).length>0?[t]:[]:!sn(t,"format")||e.formatter.canApply(t.format)?[t]:[]}))},r=n(t);return Og(r)}(e,t);return Sg({formats:r,handle:function(t,r){e.undoManager.transact((function(){wi.isOn(t)?e.formatter.remove(r):e.formatter.apply(r)})),n()}})},Eg=function(e){var t=e.replace(/\|/g," ").trim();return t.length>0?t.split(/\s+/):[]},Ag=function(e){return q(e,(function(e){return c(e)?Ag(e):Eg(e)}))},Dg=function(e){var t=function(e){return e.getParam("toolbar",No,"array")}(e);return c(t)?Ag(t):Eg(t)},Mg=function(e,t){var n=function(e){return function(){return function(e,t){return Ds(t,(function(){e.execCommand(t)}),{},e)}(t,e)}},r=function(e){return function(){return function(e,t){var n=_s(t);return Ds(t,(function(){e.execCommand(t)}),n,e)}(t,e)}},o=function(e,n,r){return function(){return Es(t,e,n,r)}},i=n("undo"),a=n("redo"),u=r("bold"),c=r("italic"),s=r("underline"),l=n("removeformat"),f=o("unlink","link",(function(){t.execCommand("unlink",null,!1)})),d=o("unordered-list","ul",(function(){t.execCommand("InsertUnorderedList",null,!1)})),m=o("ordered-list","ol",(function(){t.execCommand("InsertOrderedList",null,!1)})),g=Tg(t),p=function(){return _g(t,g,(function(){t.fire("scrollIntoView")}))},h=function(e,n){return{isSupported:function(){var n=t.ui.registry.getAll().buttons;return e.forall((function(e){return sn(n,e)}))},sketch:n}};return{undo:h(M.none(),i),redo:h(M.none(),a),bold:h(M.none(),u),italic:h(M.none(),c),underline:h(M.none(),s),removeformat:h(M.none(),l),link:h(M.none(),(function(){return nm(e,t)})),unlink:h(M.none(),f),image:h(M.none(),(function(){return ud(t)})),bullist:h(M.some("bullist"),d),numlist:h(M.some("numlist"),m),fontsizeselect:h(M.none(),(function(){return function(e,t){var n={onChange:function(e){$f(t,e)},getInitialValue:function(){return Wf(t)}};return Ff(e,"font-size",(function(){return Jf(n)}),t)}(e,t)})),forecolor:h(M.none(),(function(){return Hf(e,t)})),styleselect:h(M.none(),(function(){return Ds("style-formats",(function(n){t.fire("toReading"),e.dropup.appear(p,wi.on,n)}),bo([wi.config({toggleClass:Oi("toolbar-button-selected"),toggleOnExecute:!1,aria:{mode:"pressed"}}),ci.config({channels:Lr([Si(zo,wi.off),Si(Bo,wi.off)])})]),t)}))}},Ng=function(e){var t=dt.fromDom(function(e){if(Lt()&&d(e.target)){var t=dt.fromDom(e.target);if(xt(t)&&jt(t)&&e.composed&&e.composedPath){var n=e.composedPath();if(n)return J(n)}}return M.from(e.target)}(e).getOr(e.target)),n=function(){return e.stopPropagation()},r=function(){return e.preventDefault()},o=h(r,n);return function(e,t,n,r,o,i,a){return{target:e,x:t,y:n,stop:r,prevent:o,kill:i,raw:a}}(t,e.clientX,e.clientY,n,r,o,e)},Rg=function(e,t,n,r,o){var i=function(e,t){return function(n){e(n)&&t(Ng(n))}}(n,r);return e.dom.addEventListener(t,i,o),{unbind:w(zg,e,t,i,o)}},zg=function(e,t,n,r){e.dom.removeEventListener(t,n,r)},Bg=_,Pg=function(e,t,n){return function(e,t,n,r){return Rg(e,t,n,r,!1)}(e,t,Bg,n)},Ig=function(e,t,n){return function(e,t,n,r){return Rg(e,t,n,r,!0)}(e,t,Bg,n)},Fg=tinymce.util.Tools.resolve("tinymce.util.Delay"),Lg=function(e){var t=e.matchMedia("(orientation: portrait)").matches;return{isPortrait:v(t)}},Hg=function(e){var t=Ee().os.isiOS(),n=Lg(e).isPortrait();return t&&!n?e.screen.height:e.screen.width},Vg=function(e,t){var n=dt.fromDom(e),r=null,o=Pg(n,"orientationchange",(function(){Fg.clearInterval(r);var n=Lg(e);t.onChange(n),i((function(){t.onReady(n)}))})),i=function(t){Fg.clearInterval(r);var n=e.innerHeight,o=0;r=Fg.setInterval((function(){n!==e.innerHeight?(Fg.clearInterval(r),t(M.some(e.innerHeight))):o>20&&(Fg.clearInterval(r),t(M.none())),o++}),50)};return{onAdjustment:i,destroy:function(){o.unbind()}}},jg=function(e,t,n){var r,o=e.document.createRange();return r=o,t.fold((function(e){r.setStartBefore(e.dom)}),(function(e,t){r.setStart(e.dom,t)}),(function(e){r.setStartAfter(e.dom)})),function(e,t){t.fold((function(t){e.setEndBefore(t.dom)}),(function(t,n){e.setEnd(t.dom,n)}),(function(t){e.setEndAfter(t.dom)}))}(o,n),o},Ug=function(e,t,n,r,o){var i=e.document.createRange();return i.setStart(t.dom,n),i.setEnd(r.dom,o),i},Wg=function(e){return{left:e.left,top:e.top,right:e.right,bottom:e.bottom,width:e.width,height:e.height}},$g=Br([{ltr:["start","soffset","finish","foffset"]},{rtl:["start","soffset","finish","foffset"]}]),qg=function(e,t,n){return t(dt.fromDom(n.startContainer),n.startOffset,dt.fromDom(n.endContainer),n.endOffset)},Gg=function(e,t){var n=function(e,t){return t.match({domRange:function(e){return{ltr:v(e),rtl:M.none}},relative:function(t,n){return{ltr:N((function(){return jg(e,t,n)})),rtl:N((function(){return M.some(jg(e,n,t))}))}},exact:function(t,n,r,o){return{ltr:N((function(){return Ug(e,t,n,r,o)})),rtl:N((function(){return M.some(Ug(e,r,o,t,n))}))}}})}(e,t);return function(e,t){var n=t.ltr();return n.collapsed?t.rtl().filter((function(e){return!1===e.collapsed})).map((function(e){return $g.rtl(dt.fromDom(e.endContainer),e.endOffset,dt.fromDom(e.startContainer),e.startOffset)})).getOrThunk((function(){return qg(0,$g.ltr,n)})):qg(0,$g.ltr,n)}(0,n)};$g.ltr,$g.rtl;var Kg=function(e,t,n,r){return{start:e,soffset:t,finish:n,foffset:r}},Xg=function(e,t){var n=function(t){return e(t)?M.from(t.dom.nodeValue):M.none()};return{get:function(r){if(!e(r))throw new Error("Can only get "+t+" value of a "+t+" node");return n(r).getOr("")},getOption:n,set:function(n,r){if(!e(n))throw new Error("Can only set raw "+t+" value of a "+t+" node");n.dom.nodeValue=r}}}(Ct,"text"),Yg=function(e){return"img"===yt(e)?1:function(e){return Xg.getOption(e)}(e).fold((function(){return Et(e).length}),(function(e){return e.length}))},Jg=Br([{before:["element"]},{on:["element","offset"]},{after:["element"]}]),Zg={before:Jg.before,on:Jg.on,after:Jg.after,cata:function(e,t,n,r){return e.fold(t,n,r)},getStart:function(e){return e.fold(b,b,b)}},Qg=Br([{domRange:["rng"]},{relative:["startSitu","finishSitu"]},{exact:["start","soffset","finish","foffset"]}]),ep={domRange:Qg.domRange,relative:Qg.relative,exact:Qg.exact,exactFromRange:function(e){return Qg.exact(e.start,e.soffset,e.finish,e.foffset)},getWin:function(e){var t=function(e){return e.match({domRange:function(e){return dt.fromDom(e.startContainer)},relative:function(e,t){return Zg.getStart(e)},exact:function(e,t,n,r){return e}})}(e);return function(e){return dt.fromDom(Tt(e).dom.defaultView)}(t)},range:Kg},tp=function(e,t){var n=yt(e);return"input"===n?Zg.after(e):P(["br","img"],n)?0===t?Zg.before(e):Zg.after(e):Zg.on(e,t)},np=function(e,t,n,r){var o=function(e,t,n,r){var o=Ot(e).dom.createRange();return o.setStart(e.dom,t),o.setEnd(n.dom,r),o}(e,t,n,r),i=vt(e,n)&&t===r;return o.collapsed&&!i},rp=function(e){return M.from(e.getSelection())},op=function(e,t,n,r,o){!function(e,t){rp(e).each((function(e){e.removeAllRanges(),e.addRange(t)}))}(e,Ug(e,t,n,r,o))},ip=function(e,t,n,r,o){var i=function(e,t,n,r){var o=tp(e,t),i=tp(n,r);return ep.relative(o,i)}(t,n,r,o);!function(e,t){Gg(e,t).match({ltr:function(t,n,r,o){op(e,t,n,r,o)},rtl:function(t,n,r,o){rp(e).each((function(i){if(i.setBaseAndExtent)i.setBaseAndExtent(t.dom,n,r.dom,o);else if(i.extend)try{!function(e,t,n,r,o,i){t.collapse(n.dom,r),t.extend(o.dom,i)}(0,i,t,n,r,o)}catch(i){op(e,r,o,t,n)}else op(e,r,o,t,n)}))}})}(e,i)},ap=function(e){if(e.rangeCount>0){var t=e.getRangeAt(0),n=e.getRangeAt(e.rangeCount-1);return M.some(Kg(dt.fromDom(t.startContainer),t.startOffset,dt.fromDom(n.endContainer),n.endOffset))}return M.none()},up=function(e){if(null===e.anchorNode||null===e.focusNode)return ap(e);var t=dt.fromDom(e.anchorNode),n=dt.fromDom(e.focusNode);return np(t,e.anchorOffset,n,e.focusOffset)?M.some(Kg(t,e.anchorOffset,n,e.focusOffset)):ap(e)},cp=function(e){return rp(e).filter((function(e){return e.rangeCount>0})).bind(up)},sp=function(e,t){var n=function(e,t){return Gg(e,t).match({ltr:function(t,n,r,o){var i=e.document.createRange();return i.setStart(t.dom,n),i.setEnd(r.dom,o),i},rtl:function(t,n,r,o){var i=e.document.createRange();return i.setStart(r.dom,o),i.setEnd(t.dom,n),i}})}(e,t);return function(e){var t=e.getClientRects(),n=t.length>0?t[0]:e.getBoundingClientRect();return n.width>0||n.height>0?M.some(n).map(Wg):M.none()}(n)},lp=function(e){return M.from(e.dom.contentWindow)},fp=function(e){return lp(e).bind(cp)},dp=function(e){return e.getFrame()},mp=function(e,t,n,r){return e[n].getOrThunk((function(){return function(e){return Pg(t,r,e)}}))},gp=function(e){var t=dp(e);return function(e){return M.some(dt.fromDom(e.dom.contentWindow.document.body))}(t).bind((function(n){return function(e){return M.some(dt.fromDom(e.dom.contentWindow.document))}(t).bind((function(r){return lp(t).map((function(o){var i=dt.fromDom(r.dom.documentElement),a=e.getCursorBox.getOrThunk((function(){return function(){return function(e){return cp(e).map((function(e){return ep.exact(e.start,e.soffset,e.finish,e.foffset)}))}(o).bind((function(e){return sp(o,e).orThunk((function(){return function(e){return cp(e).filter((function(e){return vt(e.start,e.finish)&&e.soffset===e.foffset})).bind((function(e){var t=e.start.dom.getBoundingClientRect();return t.width>0||t.height>0?M.some(t):M.none()}))}(o)}))}))}})),u=e.setSelection.getOrThunk((function(){return function(e,t,n,r){ip(o,e,t,n,r)}})),c=e.clearSelection.getOrThunk((function(){return function(){!function(e){rp(e).each((function(e){return e.removeAllRanges()}))}(o)}}));return{body:n,doc:r,win:o,html:i,getSelection:w(fp,t),setSelection:u,clearSelection:c,frame:t,onKeyup:mp(e,r,"onKeyup","keyup"),onNodeChanged:mp(e,r,"onNodeChanged","SelectionChange"),onDomChanged:e.onDomChanged,onScrollToCursor:e.onScrollToCursor,onScrollToElement:e.onScrollToElement,onToReading:e.onToReading,onToEditing:e.onToEditing,onToolbarScrollStart:e.onToolbarScrollStart,onTouchContent:e.onTouchContent,onTapContent:e.onTapContent,onTouchToolstrip:e.onTouchToolstrip,getCursorBox:a}}))}))}))},pp=function(e,t){return function(n){return n[e].getOrThunk((function(){var e=dp(n);return function(){return t(e)}}))()}}("getWin",lp),hp=function(){var e=Zi("head").getOrDie(),t=Zi('meta[name="viewport"]').getOrThunk((function(){var t=dt.fromTag("meta");return fn(t,"name","viewport"),Rt(e,t),t})),n=mn(t,"content");return{maximize:function(){fn(t,"content","width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0")},restore:function(){null!=n&&n.length>0?fn(t,"content",n):fn(t,"content","user-scalable=yes")}}},vp="data-ephox-mobile-fullscreen-style",bp="position:absolute!important;",yp="top:0!important;left:0!important;margin:0!important;padding:0!important;width:100%!important;height:100%!important;overflow:visible!important;",wp=Ee().os.isAndroid(),xp=function(e,t){var n=function(e){return function(t){var n=mn(t,"style"),r=void 0===n?"no-styles":n.trim();r!==e&&(fn(t,vp,r),fn(t,"style",e))}},r=qi(e,"*"),o=q(r,(function(e){return Gi(e,"*")})),i=function(e){var t=Pi(e,"background-color");return void 0!==t&&""!==t?"background-color:"+t+"!important":"background-color:rgb(255,255,255)!important;"}(t);L(o,n("display:none!important;")),L(r,n(bp+yp+i)),n((!0===wp?"":bp)+yp+i)(e)},Cp=function(){var e=pt("["+vp+"]");L(e,(function(e){var t=mn(e,vp);"no-styles"!==t?fn(e,"style",t):hn(e,"style"),hn(e,vp)}))},Sp=function(e){var t=e.raw;return void 0===t.touches||1!==t.touches.length?M.none():M.some(t.touches[0])},kp=function(e){var t,n,r,o=Xa(),i=ko(!1),a=(t=function(t){e.triggerEvent(Qe(),t),i.set(!0)},n=400,r=null,{cancel:function(){null!==r&&(clearTimeout(r),r=null)},schedule:function(){for(var e=[],o=0;o5||r>5})(e,t)&&o.clear()}))})),M.none()}},{key:Ne(),value:function(t){a.cancel();return o.get().filter((function(e){return vt(e.target,t.target)})).map((function(n){return i.get()?(t.prevent(),!1):e.triggerEvent(Ze(),t)}))}}]);return{fireIfReady:function(e,t){return un(u,t).bind((function(t){return t(e)}))}}},Op=function(e){var t=kp({triggerEvent:function(t,n){e.onTapContent(n)}});return{fireTouchstart:function(e){t.fireIfReady(e,"touchstart")},onTouchend:function(){return Pg(e.body,"touchend",(function(e){t.fireIfReady(e,"touchend")}))},onTouchmove:function(){return Pg(e.body,"touchmove",(function(e){t.fireIfReady(e,"touchmove")}))}}},Tp=Ee().os.version.major>=6,_p=function(e,t,n){var r=Op(e),o=Ot(t),i=function(e){return!vt(e.start,e.finish)||e.soffset!==e.foffset},a=function(){var r=e.doc.dom.hasFocus()&&e.getSelection().exists(i);n.getByDom(t).each(!0===(r||_o(o).filter((function(e){return"input"===yt(e)})).exists((function(e){return e.dom.selectionStart!==e.dom.selectionEnd})))?wi.on:wi.off)},u=[Pg(e.body,"touchstart",(function(t){e.onTouchContent(),r.fireTouchstart(t)})),r.onTouchmove(),r.onTouchend(),Pg(t,"touchstart",(function(t){e.onTouchToolstrip()})),e.onToReading((function(){To(e.body)})),e.onToEditing(p),e.onScrollToCursor((function(t){t.preventDefault(),e.getCursorBox().each((function(t){var n=e.win,r=t.top>n.innerHeight||t.bottom>n.innerHeight?t.bottom-n.innerHeight+50:0;0!==r&&n.scrollTo(n.pageXOffset,n.pageYOffset+r)}))}))].concat(!0===Tp?[]:[Pg(dt.fromDom(e.win),"blur",(function(){n.getByDom(t).each(wi.off)})),Pg(o,"select",a),Pg(e.doc,"selectionchange",a)]);return{destroy:function(){L(u,(function(e){e.unbind()}))}}},Ep=function(e,t){var n=parseInt(mn(e,t),10);return isNaN(n)?0:n},Ap=function(t){return e(e({},t),{width:2})},Dp=function(e){return{left:e.left,top:e.top,right:e.right,bottom:e.bottom,width:e.width,height:e.height}},Mp=function(e){var t=e.getSelection();return void 0!==t&&t.rangeCount>0?function(e){if(e.collapsed){var t=dt.fromDom(e.startContainer);return _t(t).bind((function(n){var r=ep.exact(t,e.startOffset,n,Yg(n));return sp(e.startContainer.ownerDocument.defaultView,r).map(Ap).map(Y)})).getOr([])}return F(e.getClientRects(),Dp)}(t.getRangeAt(0)):[]},Np=function(e){e.focus();var t=dt.fromDom(e.document.body);(_o().exists((function(e){return P(["input","textarea"],yt(e))}))?function(e){Fg.setTimeout((function(){e()}),0)}:O)((function(){_o().each(To),Oo(t)}))},Rp="data-"+Oi("last-outer-height"),zp=function(e,t){fn(e,Rp,t)},Bp=function(e){return{top:e.top,bottom:e.top+e.height}},Pp=function(e,t){var n=function(e){return Ep(e,Rp)}(t),r=e.innerHeight;return n>r?M.some(n-r):M.none()},Ip=function(e,t){var n=dt.fromDom(t.document.body),r=Pg(dt.fromDom(e),"resize",(function(){Pp(e,n).each((function(e){(function(e){var t=Mp(e);return t.length>0?M.some(t[0]).map(Bp):M.none()})(t).each((function(n){var r=function(e,t,n){return t.top>e.innerHeight||t.bottom>e.innerHeight?Math.min(n,t.bottom-e.innerHeight+50):0}(t,n,e);0!==r&&t.scrollTo(t.pageXOffset,t.pageYOffset+r)}))})),zp(n,e.innerHeight)}));zp(n,e.innerHeight);return{toEditing:function(){Np(t)},destroy:function(){r.unbind()}}},Fp=function(e,t){var n=null,r=function(){s(n)||(clearTimeout(n),n=null)};return{cancel:r,throttle:function(){for(var o=[],i=0;i