diff --git a/.htaccess b/.htaccess new file mode 100644 index 00000000..3ff3e8b1 --- /dev/null +++ b/.htaccess @@ -0,0 +1,12 @@ +DirectoryIndex index.php + +RewriteEngine On +RewriteRule ^$ public/index.php [L] +RewriteRule ^((?!public/).*)$ public/$1 [L,NC] + +# php -- BEGIN cPanel-generated handler, do not edit +# Set the “ea-php74” package as the default “PHP” programming language. + + AddHandler application/x-httpd-ea-php74 .php .php7 .phtml + +# php -- END cPanel-generated handler, do not edit diff --git a/Modules/Adjustment/DataTables/AdjustmentsDataTable.php b/Modules/Adjustment/DataTables/AdjustmentsDataTable.php index 65f7aed3..46fffd78 100644 --- a/Modules/Adjustment/DataTables/AdjustmentsDataTable.php +++ b/Modules/Adjustment/DataTables/AdjustmentsDataTable.php @@ -67,7 +67,7 @@ class AdjustmentsDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'Adjustments_' . date('YmdHis'); } } diff --git a/Modules/Currency/DataTables/CurrencyDataTable.php b/Modules/Currency/DataTables/CurrencyDataTable.php index 6714590d..73029ab6 100644 --- a/Modules/Currency/DataTables/CurrencyDataTable.php +++ b/Modules/Currency/DataTables/CurrencyDataTable.php @@ -72,7 +72,7 @@ class CurrencyDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'Currency_' . date('YmdHis'); } } diff --git a/Modules/Expense/DataTables/ExpenseCategoriesDataTable.php b/Modules/Expense/DataTables/ExpenseCategoriesDataTable.php index ef11692e..20acbd9c 100644 --- a/Modules/Expense/DataTables/ExpenseCategoriesDataTable.php +++ b/Modules/Expense/DataTables/ExpenseCategoriesDataTable.php @@ -66,7 +66,7 @@ class ExpenseCategoriesDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'ExpenseCategories_' . date('YmdHis'); } } diff --git a/Modules/Expense/DataTables/ExpensesDataTable.php b/Modules/Expense/DataTables/ExpensesDataTable.php index 8228a1c8..acb94cde 100644 --- a/Modules/Expense/DataTables/ExpensesDataTable.php +++ b/Modules/Expense/DataTables/ExpensesDataTable.php @@ -76,7 +76,7 @@ class ExpensesDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'Expenses_' . date('YmdHis'); } } diff --git a/Modules/People/DataTables/CustomersDataTable.php b/Modules/People/DataTables/CustomersDataTable.php index 54f287e9..e5556291 100644 --- a/Modules/People/DataTables/CustomersDataTable.php +++ b/Modules/People/DataTables/CustomersDataTable.php @@ -67,7 +67,7 @@ class CustomersDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'Customers_' . date('YmdHis'); } } diff --git a/Modules/People/DataTables/SuppliersDataTable.php b/Modules/People/DataTables/SuppliersDataTable.php index 7e9cdd42..1bb38f81 100644 --- a/Modules/People/DataTables/SuppliersDataTable.php +++ b/Modules/People/DataTables/SuppliersDataTable.php @@ -67,7 +67,7 @@ class SuppliersDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'Suppliers_' . date('YmdHis'); } } diff --git a/Modules/Product/DataTables/ProductCategoriesDataTable.php b/Modules/Product/DataTables/ProductCategoriesDataTable.php index aaa91a35..24d6caee 100644 --- a/Modules/Product/DataTables/ProductCategoriesDataTable.php +++ b/Modules/Product/DataTables/ProductCategoriesDataTable.php @@ -66,7 +66,7 @@ class ProductCategoriesDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'ProductCategories_' . date('YmdHis'); } } diff --git a/Modules/Product/DataTables/ProductDataTable.php b/Modules/Product/DataTables/ProductDataTable.php index f035ea64..b70b93c8 100644 --- a/Modules/Product/DataTables/ProductDataTable.php +++ b/Modules/Product/DataTables/ProductDataTable.php @@ -101,7 +101,7 @@ class ProductDataTable extends DataTable * * @return string */ - protected function filename() + protected function filename(): string { return 'Product_' . date('YmdHis'); } diff --git a/Modules/Product/Resources/views/barcode/index.blade.php b/Modules/Product/Resources/views/barcode/index.blade.php index 610e0229..0f96001e 100644 --- a/Modules/Product/Resources/views/barcode/index.blade.php +++ b/Modules/Product/Resources/views/barcode/index.blade.php @@ -22,6 +22,11 @@
+
+
+ NOTE: Product Code must be a number to generate barcodes! +
+
diff --git a/Modules/Purchase/DataTables/PurchaseDataTable.php b/Modules/Purchase/DataTables/PurchaseDataTable.php index 020cd98b..9eb3d19b 100644 --- a/Modules/Purchase/DataTables/PurchaseDataTable.php +++ b/Modules/Purchase/DataTables/PurchaseDataTable.php @@ -94,7 +94,7 @@ class PurchaseDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'Purchase_' . date('YmdHis'); } } diff --git a/Modules/Purchase/DataTables/PurchasePaymentsDataTable.php b/Modules/Purchase/DataTables/PurchasePaymentsDataTable.php index c2fa3e1d..55a54a91 100644 --- a/Modules/Purchase/DataTables/PurchasePaymentsDataTable.php +++ b/Modules/Purchase/DataTables/PurchasePaymentsDataTable.php @@ -71,7 +71,7 @@ class PurchasePaymentsDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'PurchasePayments_' . date('YmdHis'); } } diff --git a/Modules/PurchasesReturn/DataTables/PurchaseReturnPaymentsDataTable.php b/Modules/PurchasesReturn/DataTables/PurchaseReturnPaymentsDataTable.php index 841284d7..f05edb28 100644 --- a/Modules/PurchasesReturn/DataTables/PurchaseReturnPaymentsDataTable.php +++ b/Modules/PurchasesReturn/DataTables/PurchaseReturnPaymentsDataTable.php @@ -11,6 +11,7 @@ use Yajra\DataTables\Services\DataTable; class PurchaseReturnPaymentsDataTable extends DataTable { + public function dataTable($query) { return datatables() ->eloquent($query) @@ -71,8 +72,7 @@ class PurchaseReturnPaymentsDataTable extends DataTable ]; } - protected function filename() - { + protected function filename(): string { return 'PurchaseReturnPayments_' . date('YmdHis'); } } diff --git a/Modules/PurchasesReturn/DataTables/PurchaseReturnsDataTable.php b/Modules/PurchasesReturn/DataTables/PurchaseReturnsDataTable.php index f459fe16..a1d70066 100644 --- a/Modules/PurchasesReturn/DataTables/PurchaseReturnsDataTable.php +++ b/Modules/PurchasesReturn/DataTables/PurchaseReturnsDataTable.php @@ -11,6 +11,7 @@ use Yajra\DataTables\Services\DataTable; class PurchaseReturnsDataTable extends DataTable { + public function dataTable($query) { return datatables() ->eloquent($query) @@ -92,8 +93,8 @@ class PurchaseReturnsDataTable extends DataTable ->visible(false) ]; } - protected function filename() - { + + protected function filename(): string { return 'PurchaseReturns_' . date('YmdHis'); } } diff --git a/Modules/Quotation/DataTables/QuotationsDataTable.php b/Modules/Quotation/DataTables/QuotationsDataTable.php index 75dfe510..e2e92f81 100644 --- a/Modules/Quotation/DataTables/QuotationsDataTable.php +++ b/Modules/Quotation/DataTables/QuotationsDataTable.php @@ -79,7 +79,7 @@ class QuotationsDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'Quotations_' . date('YmdHis'); } } diff --git a/Modules/Sale/DataTables/SalePaymentsDataTable.php b/Modules/Sale/DataTables/SalePaymentsDataTable.php index 12931070..6ea66261 100644 --- a/Modules/Sale/DataTables/SalePaymentsDataTable.php +++ b/Modules/Sale/DataTables/SalePaymentsDataTable.php @@ -72,7 +72,7 @@ class SalePaymentsDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'SalePayments_' . date('YmdHis'); } } diff --git a/Modules/Sale/DataTables/SalesDataTable.php b/Modules/Sale/DataTables/SalesDataTable.php index b3491961..4f0cbe93 100644 --- a/Modules/Sale/DataTables/SalesDataTable.php +++ b/Modules/Sale/DataTables/SalesDataTable.php @@ -94,7 +94,7 @@ class SalesDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'Sales_' . date('YmdHis'); } } diff --git a/Modules/Sale/Resources/views/print.blade.php b/Modules/Sale/Resources/views/print.blade.php index 25862fb8..6ffd11fc 100644 --- a/Modules/Sale/Resources/views/print.blade.php +++ b/Modules/Sale/Resources/views/print.blade.php @@ -108,7 +108,7 @@ {{ format_currency($sale->tax_amount) }} - Shipping) + Shipping {{ format_currency($sale->shipping_amount) }} diff --git a/Modules/SalesReturn/DataTables/SaleReturnPaymentsDataTable.php b/Modules/SalesReturn/DataTables/SaleReturnPaymentsDataTable.php index 581144d9..3a4871eb 100644 --- a/Modules/SalesReturn/DataTables/SaleReturnPaymentsDataTable.php +++ b/Modules/SalesReturn/DataTables/SaleReturnPaymentsDataTable.php @@ -11,6 +11,7 @@ use Yajra\DataTables\Services\DataTable; class SaleReturnPaymentsDataTable extends DataTable { + public function dataTable($query) { return datatables() ->eloquent($query) @@ -71,8 +72,7 @@ class SaleReturnPaymentsDataTable extends DataTable ]; } - protected function filename() - { + protected function filename(): string { return 'SaleReturnPayments_' . date('YmdHis'); } } diff --git a/Modules/SalesReturn/DataTables/SaleReturnsDataTable.php b/Modules/SalesReturn/DataTables/SaleReturnsDataTable.php index 12b698d5..cd7bf4d8 100644 --- a/Modules/SalesReturn/DataTables/SaleReturnsDataTable.php +++ b/Modules/SalesReturn/DataTables/SaleReturnsDataTable.php @@ -11,6 +11,7 @@ use Yajra\DataTables\Services\DataTable; class SaleReturnsDataTable extends DataTable { + public function dataTable($query) { return datatables() ->eloquent($query) @@ -93,8 +94,7 @@ class SaleReturnsDataTable extends DataTable ]; } - protected function filename() - { + protected function filename(): string { return 'SaleReturns_' . date('YmdHis'); } } diff --git a/Modules/User/DataTables/RolesDataTable.php b/Modules/User/DataTables/RolesDataTable.php index 4f8f4851..e02ebfde 100644 --- a/Modules/User/DataTables/RolesDataTable.php +++ b/Modules/User/DataTables/RolesDataTable.php @@ -79,7 +79,7 @@ class RolesDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'Roles_' . date('YmdHis'); } } diff --git a/Modules/User/DataTables/UsersDataTable.php b/Modules/User/DataTables/UsersDataTable.php index 249fe263..fc290fe9 100644 --- a/Modules/User/DataTables/UsersDataTable.php +++ b/Modules/User/DataTables/UsersDataTable.php @@ -96,7 +96,7 @@ class UsersDataTable extends DataTable ]; } - protected function filename() { + protected function filename(): string { return 'Users_' . date('YmdHis'); } } diff --git a/README.md b/README.md index ba037ed7..08a114ce 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ -![Triangle POS](public/images/logo-dark.png) -> This Project is ready for Production. If you find any bug or have any suggestion please create an Issue. + + + App Logo + + +> **Important Note:** This Project is ready for Production. But use code from main branch only. If you find any bug or have any suggestion please create an Issue. # Local Installation diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index 30020a50..adf7fe8f 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -16,7 +16,7 @@ class Kernel extends HttpKernel protected $middleware = [ // \App\Http\Middleware\TrustHosts::class, \App\Http\Middleware\TrustProxies::class, - \Fruitcake\Cors\HandleCors::class, + \Illuminate\Http\Middleware\HandleCors::class, \App\Http\Middleware\PreventRequestsDuringMaintenance::class, \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class, \App\Http\Middleware\TrimStrings::class, diff --git a/app/Http/Livewire/Barcode/ProductTable.php b/app/Http/Livewire/Barcode/ProductTable.php index 85b4ea02..d9f05593 100644 --- a/app/Http/Livewire/Barcode/ProductTable.php +++ b/app/Http/Livewire/Barcode/ProductTable.php @@ -35,6 +35,10 @@ class ProductTable extends Component return session()->flash('message', 'Max quantity is 100 per barcode generation!'); } + if (!is_numeric($product->product_code)) { + return session()->flash('message', 'Can not generate Barcode with this type of Product Code'); + } + $this->barcodes = []; for ($i = 1; $i <= $quantity; $i++) { diff --git a/app/Http/Middleware/TrustProxies.php b/app/Http/Middleware/TrustProxies.php index a3b6aef9..d11dd5f0 100644 --- a/app/Http/Middleware/TrustProxies.php +++ b/app/Http/Middleware/TrustProxies.php @@ -2,7 +2,7 @@ namespace App\Http\Middleware; -use Fideloper\Proxy\TrustProxies as Middleware; +use Illuminate\Http\Middleware\TrustProxies as Middleware; use Illuminate\Http\Request; class TrustProxies extends Middleware diff --git a/composer.json b/composer.json index a6d552b7..c0a32e3a 100644 --- a/composer.json +++ b/composer.json @@ -5,32 +5,30 @@ "keywords": ["framework", "laravel"], "license": "MIT", "require": { - "php": "^7.3|^8.0", - "barryvdh/laravel-snappy": "^0.4.8", - "bumbummen99/shoppingcart": "^4.0", - "fideloper/proxy": "^4.4", - "fruitcake/laravel-cors": "^2.0", + "php": "^8.1", + "anayarojo/shoppingcart": "^4.2", + "barryvdh/laravel-snappy": "^1.0", "guzzlehttp/guzzle": "^7.0.1", "h4cc/wkhtmltopdf-amd64": "^0.12.4", - "laravel/framework": "^8.40", + "laravel/framework": "^10.0", "laravel/tinker": "^2.5", - "laravel/ui": "^3.3", + "laravel/ui": "^4.0", "livewire/livewire": "^2.5", - "milon/barcode": "^8.0", - "nwidart/laravel-modules": "8.2", - "realrashid/sweet-alert": "^4.0", - "spatie/laravel-medialibrary": "^9.0.0", - "spatie/laravel-permission": "^4.2", - "yajra/laravel-datatables": "^1.5" + "milon/barcode": "^10.0", + "nwidart/laravel-modules": "^10.0", + "realrashid/sweet-alert": "^6.0", + "spatie/laravel-medialibrary": "^10.0", + "spatie/laravel-permission": "^5.0", + "yajra/laravel-datatables": "^10.0" }, "require-dev": { "barryvdh/laravel-debugbar": "^3.6", - "facade/ignition": "^2.5", + "spatie/laravel-ignition": "^2.0", "fakerphp/faker": "^1.9.1", "laravel/sail": "^1.0.1", "mockery/mockery": "^1.4.2", - "nunomaduro/collision": "^5.0", - "phpunit/phpunit": "^9.3.3" + "nunomaduro/collision": "^7.0", + "phpunit/phpunit": "^10.0" }, "autoload": { "psr-4": { @@ -70,6 +68,6 @@ "preferred-install": "dist", "sort-packages": true }, - "minimum-stability": "dev", + "minimum-stability": "stable", "prefer-stable": true } diff --git a/composer.lock b/composer.lock index 41154664..2a9e1965 100644 --- a/composer.lock +++ b/composer.lock @@ -4,40 +4,50 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "16d9ced5c30b65a4436ae0000b6eeff8", + "content-hash": "6a669cba9634486f78f8373afc806611", "packages": [ { - "name": "asm89/stack-cors", - "version": "v2.1.1", + "name": "anayarojo/shoppingcart", + "version": "4.2.2", "source": { "type": "git", - "url": "https://github.com/asm89/stack-cors.git", - "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a" + "url": "https://github.com/anayarojo/laravel-shopping-cart.git", + "reference": "a93e04a36d6f9c1e4af8bbddfede021ff412c685" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a", - "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a", + "url": "https://api.github.com/repos/anayarojo/laravel-shopping-cart/zipball/a93e04a36d6f9c1e4af8bbddfede021ff412c685", + "reference": "a93e04a36d6f9c1e4af8bbddfede021ff412c685", "shasum": "" }, "require": { - "php": "^7.2|^8.0", - "symfony/http-foundation": "^4|^5|^6", - "symfony/http-kernel": "^4|^5|^6" + "illuminate/events": "5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0||^9.0||^10", + "illuminate/session": "5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0||^9.0||^10", + "illuminate/support": "5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0||^9.0||^10", + "nesbot/carbon": "~1.20||^1.26.3||^2.0" }, "require-dev": { - "phpunit/phpunit": "^7|^9", - "squizlabs/php_codesniffer": "^3.5" + "mockery/mockery": "^1.0", + "orchestra/testbench": "^3.4|^4.0|^5.0|^6.0", + "phpunit/phpunit": "~5.0||~6.0||~7.0||~8.0||~9.0||~10.0" + }, + "suggest": { + "gloudemans/notify": "Simple flash notifications for Laravel" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "2.1-dev" + "laravel": { + "providers": [ + "Gloudemans\\Shoppingcart\\ShoppingcartServiceProvider" + ], + "aliases": { + "Cart": "Gloudemans\\Shoppingcart\\Facades\\Cart" + } } }, "autoload": { "psr-4": { - "Asm89\\Stack\\": "src/" + "Gloudemans\\Shoppingcart\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -46,46 +56,58 @@ ], "authors": [ { - "name": "Alexander", - "email": "iam.asm89@gmail.com" + "name": "Rob Gloudemans", + "email": "info@robgloudemans.nl", + "homepage": "http://robgloudemans.nl/" + }, + { + "name": "Patrick Henninger", + "email": "privat@skyraptor.eu", + "homepage": "https://skyraptor.eu/" + }, + { + "name": "Raul Anaya Rojo", + "email": "isw.anayarojo@gmail.com", + "homepage": "https://anayarojo.net/" } ], - "description": "Cross-origin resource sharing library and stack middleware", - "homepage": "https://github.com/asm89/stack-cors", + "description": "Laravel Shoppingcart", "keywords": [ - "cors", - "stack" + "laravel", + "shoppingcart" ], "support": { - "issues": "https://github.com/asm89/stack-cors/issues", - "source": "https://github.com/asm89/stack-cors/tree/v2.1.1" + "source": "https://github.com/anayarojo/laravel-shopping-cart/tree/4.2.2" }, - "time": "2022-01-18T09:12:03+00:00" + "time": "2023-04-19T16:03:37+00:00" }, { "name": "barryvdh/laravel-snappy", - "version": "v0.4.8", + "version": "v1.0.2", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-snappy.git", - "reference": "1903ab84171072b6bff8d98eb58d38b2c9aaf645" + "reference": "940eec2d99b89cbc9bea2f493cf068382962a485" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/1903ab84171072b6bff8d98eb58d38b2c9aaf645", - "reference": "1903ab84171072b6bff8d98eb58d38b2c9aaf645", + "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/940eec2d99b89cbc9bea2f493cf068382962a485", + "reference": "940eec2d99b89cbc9bea2f493cf068382962a485", "shasum": "" }, "require": { - "illuminate/filesystem": "^5.5|^6|^7|^8", - "illuminate/support": "^5.5|^6|^7|^8", - "knplabs/knp-snappy": "^1", - "php": ">=7" + "illuminate/filesystem": "^9|^10", + "illuminate/support": "^9|^10", + "knplabs/knp-snappy": "^1.4", + "php": ">=7.2" + }, + "require-dev": { + "orchestra/testbench": "^7|^8" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "0.4-dev" + "dev-master": "1.0-dev" }, "laravel": { "providers": [ @@ -123,9 +145,19 @@ ], "support": { "issues": "https://github.com/barryvdh/laravel-snappy/issues", - "source": "https://github.com/barryvdh/laravel-snappy/tree/master" + "source": "https://github.com/barryvdh/laravel-snappy/tree/v1.0.2" }, - "time": "2020-09-07T12:33:10+00:00" + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2023-04-07T10:38:54+00:00" }, { "name": "brick/math", @@ -182,158 +214,6 @@ ], "time": "2023-01-15T23:15:59+00:00" }, - { - "name": "bumbummen99/shoppingcart", - "version": "4.2.0", - "source": { - "type": "git", - "url": "https://github.com/bumbummen99/LaravelShoppingcart.git", - "reference": "1c50fb564826b6ee748d2d9afad7447b6884166e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/bumbummen99/LaravelShoppingcart/zipball/1c50fb564826b6ee748d2d9afad7447b6884166e", - "reference": "1c50fb564826b6ee748d2d9afad7447b6884166e", - "shasum": "" - }, - "require": { - "illuminate/events": "5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0||^9.0", - "illuminate/session": "5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0||^9.0", - "illuminate/support": "5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0||^9.0", - "nesbot/carbon": "~1.20||^1.26.3||^2.0" - }, - "require-dev": { - "mockery/mockery": "^1.0", - "orchestra/testbench": "^3.4|^4.0|^5.0|^6.0", - "phpunit/phpunit": "~5.0||~6.0||~7.0||~8.0||~9.0" - }, - "suggest": { - "gloudemans/notify": "Simple flash notifications for Laravel" - }, - "type": "library", - "extra": { - "laravel": { - "providers": [ - "Gloudemans\\Shoppingcart\\ShoppingcartServiceProvider" - ], - "aliases": { - "Cart": "Gloudemans\\Shoppingcart\\Facades\\Cart" - } - } - }, - "autoload": { - "psr-4": { - "Gloudemans\\Shoppingcart\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Rob Gloudemans", - "email": "info@robgloudemans.nl", - "homepage": "http://robgloudemans.nl/" - }, - { - "name": "Patrick Henninger", - "email": "privat@skyraptor.eu", - "homepage": "https://skyraptor.eu/" - } - ], - "description": "Laravel Shoppingcart", - "keywords": [ - "laravel", - "shoppingcart" - ], - "support": { - "issues": "https://github.com/bumbummen99/LaravelShoppingcart/issues", - "source": "https://github.com/bumbummen99/LaravelShoppingcart/tree/4.2.0" - }, - "time": "2022-05-15T15:32:38+00:00" - }, - { - "name": "composer/semver", - "version": "3.3.2", - "source": { - "type": "git", - "url": "https://github.com/composer/semver.git", - "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9", - "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9", - "shasum": "" - }, - "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" - }, - "require-dev": { - "phpstan/phpstan": "^1.4", - "symfony/phpunit-bridge": "^4.2 || ^5" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "3.x-dev" - } - }, - "autoload": { - "psr-4": { - "Composer\\Semver\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nils Adermann", - "email": "naderman@naderman.de", - "homepage": "http://www.naderman.de" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - }, - { - "name": "Rob Bast", - "email": "rob.bast@gmail.com", - "homepage": "http://robbast.nl" - } - ], - "description": "Semver library that offers utilities, version constraint parsing and validation.", - "keywords": [ - "semantic", - "semver", - "validation", - "versioning" - ], - "support": { - "irc": "irc://irc.freenode.org/composer", - "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.3.2" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2022-04-01T19:23:25+00:00" - }, { "name": "dflydev/dot-access-data", "version": "v3.0.2", @@ -502,31 +382,32 @@ }, { "name": "doctrine/lexer", - "version": "1.2.3", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229" + "reference": "84a527db05647743d50373e0ec53a152f2cde568" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229", - "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568", + "reference": "84a527db05647743d50373e0ec53a152f2cde568", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": "^8.1" }, "require-dev": { - "doctrine/coding-standard": "^9.0", - "phpstan/phpstan": "^1.3", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.11" + "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\\": "lib/Doctrine/Common/Lexer" + "Doctrine\\Common\\Lexer\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -558,7 +439,7 @@ ], "support": { "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/1.2.3" + "source": "https://github.com/doctrine/lexer/tree/3.0.0" }, "funding": [ { @@ -574,7 +455,7 @@ "type": "tidelift" } ], - "time": "2022-02-28T11:07:21+00:00" + "time": "2022-12-15T16:57:16+00:00" }, { "name": "dragonmantank/cron-expression", @@ -639,27 +520,26 @@ }, { "name": "egulias/email-validator", - "version": "2.1.25", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4" + "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4", - "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff", + "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff", "shasum": "" }, "require": { - "doctrine/lexer": "^1.0.1", - "php": ">=5.5", - "symfony/polyfill-intl-idn": "^1.10" + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" }, "require-dev": { - "dominicsayers/isemail": "^3.0.7", - "phpunit/phpunit": "^4.8.36|^7.5.15", - "satooshi/php-coveralls": "^1.0.1" + "phpunit/phpunit": "^9.5.27", + "vimeo/psalm": "^4.30" }, "suggest": { "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" @@ -667,7 +547,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1.x-dev" + "dev-master": "4.0.x-dev" } }, "autoload": { @@ -695,7 +575,7 @@ ], "support": { "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/2.1.25" + "source": "https://github.com/egulias/EmailValidator/tree/4.0.1" }, "funding": [ { @@ -703,7 +583,7 @@ "type": "github" } ], - "time": "2020-12-29T14:50:06+00:00" + "time": "2023-01-14T14:17:03+00:00" }, { "name": "ezyang/htmlpurifier", @@ -767,98 +647,32 @@ "time": "2022-09-18T07:06:19+00:00" }, { - "name": "fideloper/proxy", - "version": "4.4.2", + "name": "fruitcake/php-cors", + "version": "v1.2.0", "source": { "type": "git", - "url": "https://github.com/fideloper/TrustedProxy.git", - "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750" + "url": "https://github.com/fruitcake/php-cors.git", + "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750", - "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e", + "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e", "shasum": "" }, "require": { - "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0", - "php": ">=5.4.0" + "php": "^7.4|^8.0", + "symfony/http-foundation": "^4.4|^5.4|^6" }, "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", + "phpstan/phpstan": "^1.4", + "phpunit/phpunit": "^9", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" - }, - "laravel": { - "providers": [ - "Fruitcake\\Cors\\CorsServiceProvider" - ] + "dev-main": "1.1-dev" } }, "autoload": { @@ -876,20 +690,20 @@ "homepage": "https://fruitcake.nl" }, { - "name": "Barry vd. Heuvel", + "name": "Barryvdh", "email": "barryvdh@gmail.com" } ], - "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application", + "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", + "homepage": "https://github.com/fruitcake/php-cors", "keywords": [ - "api", "cors", - "crossdomain", - "laravel" + "laravel", + "symfony" ], "support": { - "issues": "https://github.com/fruitcake/laravel-cors/issues", - "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0" + "issues": "https://github.com/fruitcake/php-cors/issues", + "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0" }, "funding": [ { @@ -901,8 +715,7 @@ "type": "github" } ], - "abandoned": true, - "time": "2022-02-23T14:25:13+00:00" + "time": "2022-02-20T15:07:15+00:00" }, { "name": "graham-campbell/result-type", @@ -1291,6 +1104,90 @@ ], "time": "2023-04-17T16:11:26+00:00" }, + { + "name": "guzzlehttp/uri-template", + "version": "v1.0.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/uri-template.git", + "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2", + "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.17" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.19 || ^9.5.8", + "uri-template/tests": "1.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "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.1" + }, + "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": "2021-10-07T12:57:01+00:00" + }, { "name": "h4cc/wkhtmltopdf-amd64", "version": "0.12.4", @@ -1500,56 +1397,65 @@ }, { "name": "laravel/framework", - "version": "v8.83.27", + "version": "v10.16.1", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49" + "reference": "5c93d2795c393b462481179ce42dedfb30cc19b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49", - "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49", + "url": "https://api.github.com/repos/laravel/framework/zipball/5c93d2795c393b462481179ce42dedfb30cc19b5", + "reference": "5c93d2795c393b462481179ce42dedfb30cc19b5", "shasum": "" }, "require": { - "doctrine/inflector": "^1.4|^2.0", - "dragonmantank/cron-expression": "^3.0.2", - "egulias/email-validator": "^2.1.10", - "ext-json": "*", + "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": "*", - "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", + "ext-session": "*", + "ext-tokenizer": "*", + "fruitcake/php-cors": "^1.2", + "guzzlehttp/uri-template": "^1.0", + "laravel/serializable-closure": "^1.3", + "league/commonmark": "^2.2.1", + "league/flysystem": "^3.8.0", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^2.62.1", + "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": "^1.6.1" + "voku/portable-ascii": "^2.0" }, "conflict": { "tightenco/collect": "<5.5.33" }, "provide": { - "psr/container-implementation": "1.0", - "psr/simple-cache-implementation": "1.0" + "psr/container-implementation": "1.1|2.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0" }, "replace": { "illuminate/auth": "self.version", @@ -1557,6 +1463,7 @@ "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", @@ -1574,6 +1481,7 @@ "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", @@ -1585,53 +1493,68 @@ "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", + "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", - "phpunit/phpunit": "^8.5.19|^9.5.8", - "predis/predis": "^1.1.9", - "symfony/cache": "^5.4" + "phpstan/phpdoc-parser": "^1.15", + "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.198.1).", + "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 (^2.13.3|^3.1.4).", - "ext-bcmath": "Required to use the multiple_of validation rule.", + "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.", + "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, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).", + "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 (^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).", + "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 (^8.5.19|^9.5.8).", - "predis/predis": "Required to use the predis connector (^1.1.9).", + "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 (^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)." + "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": "8.x-dev" + "dev-master": "10.x-dev" } }, "autoload": { @@ -1645,7 +1568,8 @@ "Illuminate\\": "src/Illuminate/", "Illuminate\\Support\\": [ "src/Illuminate/Macroable/", - "src/Illuminate/Collections/" + "src/Illuminate/Collections/", + "src/Illuminate/Conditionable/" ] } }, @@ -1669,20 +1593,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-12-08T15:28:55+00:00" + "time": "2023-07-26T03:30:46+00:00" }, { "name": "laravel/serializable-closure", - "version": "v1.3.0", + "version": "v1.3.1", "source": { "type": "git", "url": "https://github.com/laravel/serializable-closure.git", - "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37" + "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", - "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/e5a3057a5591e1cfe8183034b0203921abe2c902", + "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902", "shasum": "" }, "require": { @@ -1729,7 +1653,7 @@ "issues": "https://github.com/laravel/serializable-closure/issues", "source": "https://github.com/laravel/serializable-closure" }, - "time": "2023-01-30T18:31:20+00:00" + "time": "2023-07-14T13:56:28+00:00" }, { "name": "laravel/tinker", @@ -1801,32 +1725,33 @@ }, { "name": "laravel/ui", - "version": "v3.4.6", + "version": "v4.2.2", "source": { "type": "git", "url": "https://github.com/laravel/ui.git", - "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c" + "reference": "a58ec468db4a340b33f3426c778784717a2c144b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/ui/zipball/65ec5c03f7fee2c8ecae785795b829a15be48c2c", - "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c", + "url": "https://api.github.com/repos/laravel/ui/zipball/a58ec468db4a340b33f3426c778784717a2c144b", + "reference": "a58ec468db4a340b33f3426c778784717a2c144b", "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" + "illuminate/console": "^9.21|^10.0", + "illuminate/filesystem": "^9.21|^10.0", + "illuminate/support": "^9.21|^10.0", + "illuminate/validation": "^9.21|^10.0", + "php": "^8.0" }, "require-dev": { - "orchestra/testbench": "^6.23|^7.0" + "orchestra/testbench": "^7.0|^8.0", + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "4.x-dev" }, "laravel": { "providers": [ @@ -1856,82 +1781,9 @@ "ui" ], "support": { - "source": "https://github.com/laravel/ui/tree/v3.4.6" + "source": "https://github.com/laravel/ui/tree/v4.2.2" }, - "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" + "time": "2023-05-09T19:47:28+00:00" }, { "name": "league/commonmark", @@ -2123,54 +1975,50 @@ }, { "name": "league/flysystem", - "version": "1.1.10", + "version": "3.15.1", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1" + "reference": "a141d430414fcb8bf797a18716b09f759a385bed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1", - "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed", + "reference": "a141d430414fcb8bf797a18716b09f759a385bed", "shasum": "" }, "require": { - "ext-fileinfo": "*", - "league/mime-type-detection": "^1.3", - "php": "^7.2.5 || ^8.0" + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" }, "conflict": { - "league/flysystem-sftp": "<1.0.6" + "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": { - "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" + "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", + "sabre/dav": "^4.3.1" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - }, "autoload": { "psr-4": { - "League\\Flysystem\\": "src/" + "League\\Flysystem\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -2180,65 +2028,125 @@ "authors": [ { "name": "Frank de Jonge", - "email": "info@frenky.net" + "email": "info@frankdejonge.nl" } ], - "description": "Filesystem abstraction: Many filesystems, one API.", + "description": "File storage abstraction for PHP", "keywords": [ - "Cloud Files", "WebDAV", - "abstraction", "aws", "cloud", - "copy.com", - "dropbox", - "file systems", + "file", "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" + "source": "https://github.com/thephpleague/flysystem/tree/3.15.1" }, "funding": [ { - "url": "https://offset.earth/frankdejonge", - "type": "other" + "url": "https://ecologi.com/frankdejonge", + "type": "custom" + }, + { + "url": "https://github.com/frankdejonge", + "type": "github" } ], - "time": "2022-10-04T09:16:37+00:00" + "time": "2023-05-04T09:04:26+00:00" }, { - "name": "league/fractal", - "version": "0.19.2", + "name": "league/flysystem-local", + "version": "3.15.0", "source": { "type": "git", - "url": "https://github.com/thephpleague/fractal.git", - "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c" + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c", - "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3", + "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3", "shasum": "" }, "require": { - "php": ">=5.4" + "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.15.0" + }, + "funding": [ + { + "url": "https://ecologi.com/frankdejonge", + "type": "custom" + }, + { + "url": "https://github.com/frankdejonge", + "type": "github" + } + ], + "time": "2023-05-02T20:02:14+00:00" + }, + { + "name": "league/fractal", + "version": "0.20.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/fractal.git", + "reference": "8b9d39b67624db9195c06f9c1ffd0355151eaf62" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/fractal/zipball/8b9d39b67624db9195c06f9c1ffd0355151eaf62", + "reference": "8b9d39b67624db9195c06f9c1ffd0355151eaf62", + "shasum": "" + }, + "require": { + "php": ">=7.4" }, "require-dev": { "doctrine/orm": "^2.5", "illuminate/contracts": "~5.0", - "mockery/mockery": "~0.9", + "mockery/mockery": "^1.3", "pagerfanta/pagerfanta": "~1.0.0", - "phpunit/phpunit": "^4.8.35 || ^7.5", - "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4", + "phpstan/phpstan": "^1.4", + "phpunit/phpunit": "^9.5", + "squizlabs/php_codesniffer": "~3.4", + "vimeo/psalm": "^4.22", "zendframework/zend-paginator": "~2.3" }, "suggest": { @@ -2249,7 +2157,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "0.13-dev" + "dev-master": "0.20.x-dev" } }, "autoload": { @@ -2279,29 +2187,29 @@ ], "support": { "issues": "https://github.com/thephpleague/fractal/issues", - "source": "https://github.com/thephpleague/fractal/tree/0.19.2" + "source": "https://github.com/thephpleague/fractal/tree/0.20.1" }, - "time": "2020-01-24T23:17:29+00:00" + "time": "2022-04-11T12:47:17+00:00" }, { "name": "league/glide", - "version": "1.7.2", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/thephpleague/glide.git", - "reference": "8dba756ada0b8e525bf6f1f7d1bd83c1e99e124e" + "reference": "2ff92c8f1edc80b74e2d3c5efccfc7223f74d407" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/glide/zipball/8dba756ada0b8e525bf6f1f7d1bd83c1e99e124e", - "reference": "8dba756ada0b8e525bf6f1f7d1bd83c1e99e124e", + "url": "https://api.github.com/repos/thephpleague/glide/zipball/2ff92c8f1edc80b74e2d3c5efccfc7223f74d407", + "reference": "2ff92c8f1edc80b74e2d3c5efccfc7223f74d407", "shasum": "" }, "require": { - "intervention/image": "^2.4", - "league/flysystem": "^1.0", + "intervention/image": "^2.7", + "league/flysystem": "^2.0|^3.0", "php": "^7.2|^8.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0|^2.0" }, "require-dev": { "mockery/mockery": "^1.3.3", @@ -2309,11 +2217,6 @@ "phpunit/phpunit": "^8.5|^9.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - }, "autoload": { "psr-4": { "League\\Glide\\": "src/" @@ -2349,9 +2252,9 @@ ], "support": { "issues": "https://github.com/thephpleague/glide/issues", - "source": "https://github.com/thephpleague/glide/tree/1.7.2" + "source": "https://github.com/thephpleague/glide/tree/2.3.0" }, - "time": "2023-02-14T06:26:04+00:00" + "time": "2023-07-08T06:26:07+00:00" }, { "name": "league/mime-type-detection", @@ -2482,115 +2385,38 @@ ], "time": "2023-03-03T20:12:38+00:00" }, - { - "name": "maatwebsite/excel", - "version": "3.1.48", - "source": { - "type": "git", - "url": "https://github.com/SpartnerNL/Laravel-Excel.git", - "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d0fe2a1d195960c7af7bf0de760582da02a34b9", - "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9", - "shasum": "" - }, - "require": { - "composer/semver": "^3.3", - "ext-json": "*", - "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0", - "php": "^7.0|^8.0", - "phpoffice/phpspreadsheet": "^1.18", - "psr/simple-cache": "^1.0|^2.0|^3.0" - }, - "require-dev": { - "orchestra/testbench": "^6.0|^7.0|^8.0", - "predis/predis": "^1.1" - }, - "type": "library", - "extra": { - "laravel": { - "providers": [ - "Maatwebsite\\Excel\\ExcelServiceProvider" - ], - "aliases": { - "Excel": "Maatwebsite\\Excel\\Facades\\Excel" - } - } - }, - "autoload": { - "psr-4": { - "Maatwebsite\\Excel\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Patrick Brouwers", - "email": "patrick@spartner.nl" - } - ], - "description": "Supercharged Excel exports and imports in Laravel", - "keywords": [ - "PHPExcel", - "batch", - "csv", - "excel", - "export", - "import", - "laravel", - "php", - "phpspreadsheet" - ], - "support": { - "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues", - "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.48" - }, - "funding": [ - { - "url": "https://laravel-excel.com/commercial-support", - "type": "custom" - }, - { - "url": "https://github.com/patrickbrouwers", - "type": "github" - } - ], - "time": "2023-02-22T21:01:38+00:00" - }, { "name": "maennchen/zipstream-php", - "version": "2.4.0", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/maennchen/ZipStream-PHP.git", - "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3" + "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3", - "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3", + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b8174494eda667f7d13876b4a7bfef0f62a7c0d1", + "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1", "shasum": "" }, "require": { "ext-mbstring": "*", - "myclabs/php-enum": "^1.5", - "php": "^8.0", - "psr/http-message": "^1.0" + "ext-zlib": "*", + "php-64bit": "^8.1" }, "require-dev": { "ext-zip": "*", - "friendsofphp/php-cs-fixer": "^3.9", - "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0", + "friendsofphp/php-cs-fixer": "^3.16", + "guzzlehttp/guzzle": "^7.5", "mikey179/vfsstream": "^1.6", - "php-coveralls/php-coveralls": "^2.4", - "phpunit/phpunit": "^8.5.8 || ^9.4.2", + "php-coveralls/php-coveralls": "^2.5", + "phpunit/phpunit": "^10.0", "vimeo/psalm": "^5.0" }, + "suggest": { + "guzzlehttp/psr7": "^2.4", + "psr/http-message": "^2.0" + }, "type": "library", "autoload": { "psr-4": { @@ -2626,7 +2452,7 @@ ], "support": { "issues": "https://github.com/maennchen/ZipStream-PHP/issues", - "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0" + "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.0" }, "funding": [ { @@ -2638,7 +2464,7 @@ "type": "open_collective" } ], - "time": "2022-12-08T12:29:14+00:00" + "time": "2023-06-21T14:59:35+00:00" }, { "name": "markbaker/complex", @@ -2749,20 +2575,20 @@ }, { "name": "milon/barcode", - "version": "8.0.1", + "version": "v10.0.1", "source": { "type": "git", "url": "https://github.com/milon/barcode.git", - "reference": "a1b1ee1a743c1368597f1742e6ee4765333a15a1" + "reference": "e643a713466f0109aa3ad7d29dae4900444187a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/milon/barcode/zipball/a1b1ee1a743c1368597f1742e6ee4765333a15a1", - "reference": "a1b1ee1a743c1368597f1742e6ee4765333a15a1", + "url": "https://api.github.com/repos/milon/barcode/zipball/e643a713466f0109aa3ad7d29dae4900444187a5", + "reference": "e643a713466f0109aa3ad7d29dae4900444187a5", "shasum": "" }, "require": { - "illuminate/support": "^8.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0", "php": "^7.3 | ^8.0" }, "type": "library", @@ -2807,11 +2633,11 @@ ], "support": { "issues": "https://github.com/milon/barcode/issues", - "source": "https://github.com/milon/barcode/tree/8.0.1" + "source": "https://github.com/milon/barcode/tree/v10.0.1" }, "funding": [ { - "url": "https://paypal.me/tomilon", + "url": "https://paypal.me/nuruzzamanmilon", "type": "custom" }, { @@ -2819,46 +2645,45 @@ "type": "github" } ], - "time": "2021-01-08T11:36:07+00:00" + "time": "2023-06-16T13:03:37+00:00" }, { "name": "monolog/monolog", - "version": "2.9.1", + "version": "3.4.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1" + "reference": "e2392369686d420ca32df3803de28b5d6f76867d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1", - "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e2392369686d420ca32df3803de28b5d6f76867d", + "reference": "e2392369686d420ca32df3803de28b5d6f76867d", "shasum": "" }, "require": { - "php": ">=7.2", - "psr/log": "^1.0.1 || ^2.0 || ^3.0" + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" }, "provide": { - "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" + "psr/log-implementation": "3.0.0" }, "require-dev": { - "aws/aws-sdk-php": "^2.4.9 || ^3.0", + "aws/aws-sdk-php": "^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", + "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", - "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", + "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", - "swiftmailer/swiftmailer": "^5.3|^6.0", "symfony/mailer": "^5.4 || ^6", "symfony/mime": "^5.4 || ^6" }, @@ -2881,7 +2706,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.x-dev" + "dev-main": "3.x-dev" } }, "autoload": { @@ -2909,7 +2734,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/2.9.1" + "source": "https://github.com/Seldaek/monolog/tree/3.4.0" }, "funding": [ { @@ -2921,83 +2746,20 @@ "type": "tidelift" } ], - "time": "2023-02-06T13:44:46+00:00" - }, - { - "name": "myclabs/php-enum", - "version": "1.8.4", - "source": { - "type": "git", - "url": "https://github.com/myclabs/php-enum.git", - "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483", - "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483", - "shasum": "" - }, - "require": { - "ext-json": "*", - "php": "^7.3 || ^8.0" - }, - "require-dev": { - "phpunit/phpunit": "^9.5", - "squizlabs/php_codesniffer": "1.*", - "vimeo/psalm": "^4.6.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "MyCLabs\\Enum\\": "src/" - }, - "classmap": [ - "stubs/Stringable.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP Enum contributors", - "homepage": "https://github.com/myclabs/php-enum/graphs/contributors" - } - ], - "description": "PHP Enum implementation", - "homepage": "http://github.com/myclabs/php-enum", - "keywords": [ - "enum" - ], - "support": { - "issues": "https://github.com/myclabs/php-enum/issues", - "source": "https://github.com/myclabs/php-enum/tree/1.8.4" - }, - "funding": [ - { - "url": "https://github.com/mnapoli", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum", - "type": "tidelift" - } - ], - "time": "2022-08-04T09:53:51+00:00" + "time": "2023-06-21T08:46:11+00:00" }, { "name": "nesbot/carbon", - "version": "2.67.0", + "version": "2.68.1", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "c1001b3bc75039b07f38a79db5237c4c529e04c8" + "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c1001b3bc75039b07f38a79db5237c4c529e04c8", - "reference": "c1001b3bc75039b07f38a79db5237c4c529e04c8", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4f991ed2a403c85efbc4f23eb4030063fdbe01da", + "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da", "shasum": "" }, "require": { @@ -3086,7 +2848,7 @@ "type": "tidelift" } ], - "time": "2023-05-25T22:09:47+00:00" + "time": "2023-06-20T18:29:04+00:00" }, { "name": "nette/schema", @@ -3294,31 +3056,117 @@ "time": "2023-06-25T14:52:30+00:00" }, { - "name": "nwidart/laravel-modules", - "version": "8.2.0", + "name": "nunomaduro/termwind", + "version": "v1.15.1", "source": { "type": "git", - "url": "https://github.com/nWidart/laravel-modules.git", - "reference": "6ade5ec19e81a0e4807834886a2c47509d069cb7" + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nWidart/laravel-modules/zipball/6ade5ec19e81a0e4807834886a2c47509d069cb7", - "reference": "6ade5ec19e81a0e4807834886a2c47509d069cb7", + "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": "nwidart/laravel-modules", + "version": "v10.0.0", + "source": { + "type": "git", + "url": "https://github.com/nWidart/laravel-modules.git", + "reference": "35e514f13cb8ae8dce093e9794785fea27319d81" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nWidart/laravel-modules/zipball/35e514f13cb8ae8dce093e9794785fea27319d81", + "reference": "35e514f13cb8ae8dce093e9794785fea27319d81", "shasum": "" }, "require": { "ext-json": "*", - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.16", - "laravel/framework": "^8.0", - "mockery/mockery": "~1.0", - "orchestra/testbench": "^6.2", - "phpstan/phpstan": "^0.12.14", - "phpunit/phpunit": "^8.5", - "spatie/phpunit-snapshot-assertions": "^2.1.0" + "friendsofphp/php-cs-fixer": "^3.6", + "laravel/framework": "^10.0", + "mockery/mockery": "^1.5", + "orchestra/testbench": "^8.0", + "phpstan/phpstan": "^1.4", + "phpunit/phpunit": "^10.0", + "spatie/phpunit-snapshot-assertions": "^5.0" }, "type": "library", "extra": { @@ -3331,7 +3179,7 @@ } }, "branch-alias": { - "dev-master": "8.0-dev" + "dev-master": "10.0-dev" } }, "autoload": { @@ -3364,7 +3212,7 @@ ], "support": { "issues": "https://github.com/nWidart/laravel-modules/issues", - "source": "https://github.com/nWidart/laravel-modules/tree/8.2.0" + "source": "https://github.com/nWidart/laravel-modules/tree/v10.0.0" }, "funding": [ { @@ -3372,41 +3220,54 @@ "type": "github" } ], - "time": "2020-11-11T09:24:22+00:00" + "time": "2023-02-16T11:08:15+00:00" }, { - "name": "opis/closure", - "version": "3.6.3", + "name": "openspout/openspout", + "version": "v4.15.0", "source": { "type": "git", - "url": "https://github.com/opis/closure.git", - "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad" + "url": "https://github.com/openspout/openspout.git", + "reference": "907a2ff042741b1f25b6e636d18ce9d7fc4c8333" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad", - "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad", + "url": "https://api.github.com/repos/openspout/openspout/zipball/907a2ff042741b1f25b6e636d18ce9d7fc4c8333", + "reference": "907a2ff042741b1f25b6e636d18ce9d7fc4c8333", "shasum": "" }, "require": { - "php": "^5.4 || ^7.0 || ^8.0" + "ext-dom": "*", + "ext-fileinfo": "*", + "ext-filter": "*", + "ext-libxml": "*", + "ext-xmlreader": "*", + "ext-zip": "*", + "php": "~8.1.0 || ~8.2.0" }, "require-dev": { - "jeremeamia/superclosure": "^2.0", - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" + "ext-zlib": "*", + "friendsofphp/php-cs-fixer": "^3.18.0", + "infection/infection": "^0.27", + "phpbench/phpbench": "^1.2.10", + "phpstan/phpstan": "^1.10.19", + "phpstan/phpstan-phpunit": "^1.3.13", + "phpstan/phpstan-strict-rules": "^1.5.1", + "phpunit/phpunit": "^10.2.2" + }, + "suggest": { + "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)", + "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.6.x-dev" + "dev-master": "3.3.x-dev" } }, "autoload": { - "files": [ - "functions.php" - ], "psr-4": { - "Opis\\Closure\\": "src/" + "OpenSpout\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -3415,29 +3276,44 @@ ], "authors": [ { - "name": "Marius Sarca", - "email": "marius.sarca@gmail.com" - }, - { - "name": "Sorin Sarca", - "email": "sarca_sorin@hotmail.com" + "name": "Adrien Loison", + "email": "adrien@box.com" } ], - "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.", - "homepage": "https://opis.io/closure", + "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way", + "homepage": "https://github.com/openspout/openspout", "keywords": [ - "anonymous functions", - "closure", - "function", - "serializable", - "serialization", - "serialize" + "OOXML", + "csv", + "excel", + "memory", + "odf", + "ods", + "office", + "open", + "php", + "read", + "scale", + "spreadsheet", + "stream", + "write", + "xlsx" ], "support": { - "issues": "https://github.com/opis/closure/issues", - "source": "https://github.com/opis/closure/tree/3.6.3" + "issues": "https://github.com/openspout/openspout/issues", + "source": "https://github.com/openspout/openspout/tree/v4.15.0" }, - "time": "2022-01-27T09:35:39+00:00" + "funding": [ + { + "url": "https://paypal.me/filippotessarotto", + "type": "custom" + }, + { + "url": "https://github.com/Slamdunk", + "type": "github" + } + ], + "time": "2023-06-19T07:48:22+00:00" }, { "name": "phpoffice/phpspreadsheet", @@ -3621,22 +3497,27 @@ }, { "name": "psr/container", - "version": "1.1.2", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/container.git", - "reference": "513e0666f7216c7459170d56df27dfcefe1689ea" + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea", - "reference": "513e0666f7216c7459170d56df27dfcefe1689ea", + "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/" @@ -3663,9 +3544,9 @@ ], "support": { "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/1.1.2" + "source": "https://github.com/php-fig/container/tree/2.0.2" }, - "time": "2021-11-05T16:50:12+00:00" + "time": "2021-11-05T16:47:00+00:00" }, { "name": "psr/event-dispatcher", @@ -3826,16 +3707,16 @@ }, { "name": "psr/http-message", - "version": "1.1", + "version": "2.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-message.git", - "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba" + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba", - "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", "shasum": "" }, "require": { @@ -3844,7 +3725,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { @@ -3859,7 +3740,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for HTTP messages", @@ -3873,22 +3754,22 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-message/tree/1.1" + "source": "https://github.com/php-fig/http-message/tree/2.0" }, - "time": "2023-04-04T09:50:52+00:00" + "time": "2023-04-04T09:54:51+00:00" }, { "name": "psr/log", - "version": "2.0.0", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376" + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376", - "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376", + "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", "shasum": "" }, "require": { @@ -3897,7 +3778,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "3.x-dev" } }, "autoload": { @@ -3923,31 +3804,31 @@ "psr-3" ], "support": { - "source": "https://github.com/php-fig/log/tree/2.0.0" + "source": "https://github.com/php-fig/log/tree/3.0.0" }, - "time": "2021-07-14T16:41:46+00:00" + "time": "2021-07-14T16:46:02+00:00" }, { "name": "psr/simple-cache", - "version": "1.0.1", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/simple-cache.git", - "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", - "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=8.0.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "3.0.x-dev" } }, "autoload": { @@ -3962,7 +3843,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interfaces for simple caching", @@ -3974,22 +3855,22 @@ "simple-cache" ], "support": { - "source": "https://github.com/php-fig/simple-cache/tree/master" + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" }, - "time": "2017-10-23T01:57:42+00:00" + "time": "2021-10-29T13:26:27+00:00" }, { "name": "psy/psysh", - "version": "v0.11.18", + "version": "v0.11.19", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec" + "reference": "1724ceff278daeeac5a006744633bacbb2dc4706" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4f00ee9e236fa6a48f4560d1300b9c961a70a7ec", - "reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1724ceff278daeeac5a006744633bacbb2dc4706", + "reference": "1724ceff278daeeac5a006744633bacbb2dc4706", "shasum": "" }, "require": { @@ -4050,9 +3931,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.11.18" + "source": "https://github.com/bobthecow/psysh/tree/v0.11.19" }, - "time": "2023-05-23T02:31:11+00:00" + "time": "2023-07-15T19:42:19+00:00" }, { "name": "ralouphie/getallheaders", @@ -4281,20 +4162,20 @@ }, { "name": "realrashid/sweet-alert", - "version": "v4.1.0", + "version": "v6.0.0", "source": { "type": "git", "url": "https://github.com/realrashid/sweet-alert.git", - "reference": "7615c5799fbc8743a6b5a7bd7f645f55a1d62723" + "reference": "efe53185ddd48ef1cc22399bfdae55e83fe36bf2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/realrashid/sweet-alert/zipball/7615c5799fbc8743a6b5a7bd7f645f55a1d62723", - "reference": "7615c5799fbc8743a6b5a7bd7f645f55a1d62723", + "url": "https://api.github.com/repos/realrashid/sweet-alert/zipball/efe53185ddd48ef1cc22399bfdae55e83fe36bf2", + "reference": "efe53185ddd48ef1cc22399bfdae55e83fe36bf2", "shasum": "" }, "require": { - "laravel/framework": "^5.6|^6.0|^7.0|^8.0", + "laravel/framework": "^5.6|^6.0|^7.0|^8.0|^9.0|^9.11|9.14.*|^10.0", "php": "^7.2|^8.0" }, "require-dev": { @@ -4367,34 +4248,35 @@ "type": "tidelift" } ], - "time": "2021-11-06T09:34:33+00:00" + "time": "2023-02-15T07:13:11+00:00" }, { "name": "spatie/image", - "version": "1.10.6", + "version": "2.2.7", "source": { "type": "git", "url": "https://github.com/spatie/image.git", - "reference": "897e819848096ea8eee8ed4a3531c6166f9a99e0" + "reference": "2f802853aab017aa615224daae1588054b5ab20e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/image/zipball/897e819848096ea8eee8ed4a3531c6166f9a99e0", - "reference": "897e819848096ea8eee8ed4a3531c6166f9a99e0", + "url": "https://api.github.com/repos/spatie/image/zipball/2f802853aab017aa615224daae1588054b5ab20e", + "reference": "2f802853aab017aa615224daae1588054b5ab20e", "shasum": "" }, "require": { "ext-exif": "*", "ext-json": "*", "ext-mbstring": "*", - "league/glide": "^1.6", - "php": "^7.2|^8.0", - "spatie/image-optimizer": "^1.1", + "league/glide": "^2.2.2", + "php": "^8.0", + "spatie/image-optimizer": "^1.7", "spatie/temporary-directory": "^1.0|^2.0", "symfony/process": "^3.0|^4.0|^5.0|^6.0" }, "require-dev": { - "phpunit/phpunit": "^8.5.21|^9.5.4", + "pestphp/pest": "^1.22", + "phpunit/phpunit": "^9.5", "symfony/var-dumper": "^4.0|^5.0|^6.0", "vimeo/psalm": "^4.6" }, @@ -4423,8 +4305,7 @@ "spatie" ], "support": { - "issues": "https://github.com/spatie/image/issues", - "source": "https://github.com/spatie/image/tree/1.10.6" + "source": "https://github.com/spatie/image/tree/2.2.7" }, "funding": [ { @@ -4436,20 +4317,20 @@ "type": "github" } ], - "time": "2021-12-21T10:01:09+00:00" + "time": "2023-07-24T13:54:13+00:00" }, { "name": "spatie/image-optimizer", - "version": "1.6.4", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/spatie/image-optimizer.git", - "reference": "d997e01ba980b2769ddca2f00badd3b80c2a2512" + "reference": "af179994e2d2413e4b3ba2d348d06b4eaddbeb30" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/d997e01ba980b2769ddca2f00badd3b80c2a2512", - "reference": "d997e01ba980b2769ddca2f00badd3b80c2a2512", + "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/af179994e2d2413e4b3ba2d348d06b4eaddbeb30", + "reference": "af179994e2d2413e4b3ba2d348d06b4eaddbeb30", "shasum": "" }, "require": { @@ -4489,63 +4370,65 @@ ], "support": { "issues": "https://github.com/spatie/image-optimizer/issues", - "source": "https://github.com/spatie/image-optimizer/tree/1.6.4" + "source": "https://github.com/spatie/image-optimizer/tree/1.7.1" }, - "time": "2023-03-10T08:43:19+00:00" + "time": "2023-07-27T07:57:32+00:00" }, { "name": "spatie/laravel-medialibrary", - "version": "9.12.4", + "version": "10.11.2", "source": { "type": "git", "url": "https://github.com/spatie/laravel-medialibrary.git", - "reference": "4763bd27ccaf08da80102019fc98c39431640c4f" + "reference": "bac32801073bd9446277cdeb174cf4327ea28aef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/4763bd27ccaf08da80102019fc98c39431640c4f", - "reference": "4763bd27ccaf08da80102019fc98c39431640c4f", + "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/bac32801073bd9446277cdeb174cf4327ea28aef", + "reference": "bac32801073bd9446277cdeb174cf4327ea28aef", "shasum": "" }, "require": { "ext-exif": "*", "ext-fileinfo": "*", "ext-json": "*", - "illuminate/bus": "^8.71", - "illuminate/console": "^8.71", - "illuminate/database": "^8.71", - "illuminate/pipeline": "^8.71", - "illuminate/support": "^8.71", + "illuminate/bus": "^9.18|^10.0", + "illuminate/conditionable": "^9.18|^10.0", + "illuminate/console": "^9.18|^10.0", + "illuminate/database": "^9.18|^10.0", + "illuminate/pipeline": "^9.18|^10.0", + "illuminate/support": "^9.18|^10.0", "intervention/image": "^2.7", - "league/flysystem": "^1.0.64", - "league/glide": "^1.7", - "maennchen/zipstream-php": "^1.0|^2.0", - "php": "^7.4|^8.0", - "spatie/image": "^1.0.0", - "spatie/temporary-directory": "^1.1|^2.0", - "symfony/console": "^4.4|^5.0" + "maennchen/zipstream-php": "^2.0|^3.0", + "php": "^8.0", + "spatie/image": "^2.2.7", + "spatie/temporary-directory": "^2.0", + "symfony/console": "^6.0" }, "conflict": { "php-ffmpeg/php-ffmpeg": "<0.6.1" }, "require-dev": { "aws/aws-sdk-php": "^3.133.11", - "doctrine/dbal": "^2.12", + "doctrine/dbal": "^2.13", + "ext-imagick": "*", "ext-pdo_sqlite": "*", "ext-zip": "*", - "guzzlehttp/guzzle": "^7.0", - "league/flysystem-aws-s3-v3": "^1.0.23", + "guzzlehttp/guzzle": "^7.4", + "league/flysystem-aws-s3-v3": "^3.0", "mockery/mockery": "^1.4", - "orchestra/testbench": "^5.20|^6.23", - "phpunit/phpunit": "^9.3", - "spatie/laravel-ray": "^1.24", + "nunomaduro/larastan": "^2.0", + "orchestra/testbench": "^7.0|^8.0", + "pestphp/pest": "^1.21", + "phpstan/extension-installer": "^1.1", + "spatie/laravel-ray": "^1.28", "spatie/pdf-to-image": "^2.1", - "spatie/phpunit-snapshot-assertions": "^4.0" + "spatie/phpunit-snapshot-assertions": "^4.2" }, "suggest": { "league/flysystem-aws-s3-v3": "Required to use AWS S3 file storage", "php-ffmpeg/php-ffmpeg": "Required for generating video thumbnails", - "spatie/pdf-to-image": "Required for generating thumbsnails of PDFs and SVGs" + "spatie/pdf-to-image": "Required for generating thumbnails of PDFs and SVGs" }, "type": "library", "extra": { @@ -4586,7 +4469,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-medialibrary/issues", - "source": "https://github.com/spatie/laravel-medialibrary/tree/9.12.4" + "source": "https://github.com/spatie/laravel-medialibrary/tree/10.11.2" }, "funding": [ { @@ -4598,36 +4481,40 @@ "type": "github" } ], - "time": "2022-11-09T20:34:04+00:00" + "time": "2023-07-27T08:00:59+00:00" }, { "name": "spatie/laravel-permission", - "version": "4.4.3", + "version": "5.10.2", "source": { "type": "git", "url": "https://github.com/spatie/laravel-permission.git", - "reference": "779797a47689d0bc1666e26f566cca44603e56fa" + "reference": "671e46e079cbd4990a98427daaa09f4977b57ca9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/779797a47689d0bc1666e26f566cca44603e56fa", - "reference": "779797a47689d0bc1666e26f566cca44603e56fa", + "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/671e46e079cbd4990a98427daaa09f4977b57ca9", + "reference": "671e46e079cbd4990a98427daaa09f4977b57ca9", "shasum": "" }, "require": { - "illuminate/auth": "^6.0|^7.0|^8.0", - "illuminate/container": "^6.0|^7.0|^8.0", - "illuminate/contracts": "^6.0|^7.0|^8.0", - "illuminate/database": "^6.0|^7.0|^8.0", - "php": "^7.2.5|^8.0" + "illuminate/auth": "^7.0|^8.0|^9.0|^10.0", + "illuminate/container": "^7.0|^8.0|^9.0|^10.0", + "illuminate/contracts": "^7.0|^8.0|^9.0|^10.0", + "illuminate/database": "^7.0|^8.0|^9.0|^10.0", + "php": "^7.3|^8.0" }, "require-dev": { - "orchestra/testbench": "^4.0|^5.0|^6.0", - "phpunit/phpunit": "^8.0|^9.0", + "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0", + "phpunit/phpunit": "^9.4", "predis/predis": "^1.1" }, "type": "library", "extra": { + "branch-alias": { + "dev-main": "5.x-dev", + "dev-master": "5.x-dev" + }, "laravel": { "providers": [ "Spatie\\Permission\\PermissionServiceProvider" @@ -4668,7 +4555,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-permission/issues", - "source": "https://github.com/spatie/laravel-permission/tree/4.4.3" + "source": "https://github.com/spatie/laravel-permission/tree/5.10.2" }, "funding": [ { @@ -4676,7 +4563,7 @@ "type": "github" } ], - "time": "2021-10-28T07:33:49+00:00" + "time": "2023-07-04T13:38:13+00:00" }, { "name": "spatie/temporary-directory", @@ -4740,129 +4627,44 @@ "time": "2023-04-28T07:47:42+00:00" }, { - "name": "swiftmailer/swiftmailer", + "name": "symfony/console", "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.24", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8" + "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8", - "reference": "560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8", + "url": "https://api.github.com/repos/symfony/console/zipball/8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7", + "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1|^3", + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^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" + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^5.4|^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" + "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" + "psr/log-implementation": "1.0|2.0|3.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": "" + "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": { @@ -4896,7 +4698,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.4.24" + "source": "https://github.com/symfony/console/tree/v6.3.0" }, "funding": [ { @@ -4912,7 +4714,7 @@ "type": "tidelift" } ], - "time": "2023-05-26T05:13:16+00:00" + "time": "2023-05-29T12:49:39+00:00" }, { "name": "symfony/css-selector", @@ -5048,27 +4850,30 @@ }, { "name": "symfony/error-handler", - "version": "v5.4.24", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "c1b9be3b8a6f60f720bec28c4ffb6fb5b00a8946" + "reference": "99d2d814a6351461af350ead4d963bd67451236f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/c1b9be3b8a6f60f720bec28c4ffb6fb5b00a8946", - "reference": "c1b9be3b8a6f60f720bec28c4ffb6fb5b00a8946", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/99d2d814a6351461af350ead4d963bd67451236f", + "reference": "99d2d814a6351461af350ead4d963bd67451236f", "shasum": "" }, "require": { - "php": ">=7.2.5", + "php": ">=8.1", "psr/log": "^1|^2|^3", - "symfony/var-dumper": "^4.4|^5.0|^6.0" + "symfony/var-dumper": "^5.4|^6.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5" }, "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" + "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" @@ -5099,7 +4904,7 @@ "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.24" + "source": "https://github.com/symfony/error-handler/tree/v6.3.0" }, "funding": [ { @@ -5115,7 +4920,7 @@ "type": "tidelift" } ], - "time": "2023-05-02T16:13:31+00:00" + "time": "2023-05-10T12:03:13+00:00" }, { "name": "symfony/event-dispatcher", @@ -5275,22 +5080,23 @@ }, { "name": "symfony/finder", - "version": "v5.4.21", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19" + "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/078e9a5e1871fcfe6a5ce421b539344c21afef19", - "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19", + "url": "https://api.github.com/repos/symfony/finder/zipball/d9b01ba073c44cef617c7907ce2419f8d00d75e2", + "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1|^3", - "symfony/polyfill-php80": "^1.16" + "php": ">=8.1" + }, + "require-dev": { + "symfony/filesystem": "^6.0" }, "type": "library", "autoload": { @@ -5318,7 +5124,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.4.21" + "source": "https://github.com/symfony/finder/tree/v6.3.0" }, "funding": [ { @@ -5334,40 +5140,41 @@ "type": "tidelift" } ], - "time": "2023-02-16T09:33:00+00:00" + "time": "2023-04-02T01:25:41+00:00" }, { "name": "symfony/http-foundation", - "version": "v5.4.25", + "version": "v6.3.1", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "f66be2706075c5f6325d2fe2b743a57fb5d23f6b" + "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f66be2706075c5f6325d2fe2b743a57fb5d23f6b", - "reference": "f66be2706075c5f6325d2fe2b743a57fb5d23f6b", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e0ad0d153e1c20069250986cd9e9dd1ccebb0d66", + "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1|^3", + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php80": "^1.16" + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "symfony/cache": "<6.2" }, "require-dev": { - "predis/predis": "~1.0", - "symfony/cache": "^4.4|^5.0|^6.0", + "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": "^4.4|^5.0|^6.0", + "symfony/expression-language": "^5.4|^6.0", "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", - "symfony/mime": "^4.4|^5.0|^6.0", + "symfony/mime": "^5.4|^6.0", "symfony/rate-limiter": "^5.2|^6.0" }, - "suggest": { - "symfony/mime": "To use the file extension guesser" - }, "type": "library", "autoload": { "psr-4": { @@ -5394,7 +5201,7 @@ "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.25" + "source": "https://github.com/symfony/http-foundation/tree/v6.3.1" }, "funding": [ { @@ -5410,76 +5217,77 @@ "type": "tidelift" } ], - "time": "2023-06-22T08:06:06+00:00" + "time": "2023-06-24T11:51:27+00:00" }, { "name": "symfony/http-kernel", - "version": "v5.4.25", + "version": "v6.3.1", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "f6c92fe64bbdad7616cb90663c24f6350f3ca464" + "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f6c92fe64bbdad7616cb90663c24f6350f3ca464", - "reference": "f6c92fe64bbdad7616cb90663c24f6350f3ca464", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/161e16fd2e35fb4881a43bc8b383dfd5be4ac374", + "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374", "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" + "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.2.7", + "symfony/polyfill-ctype": "^1.8" }, "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", + "symfony/cache": "<5.4", + "symfony/config": "<6.1", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<6.3", + "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" + "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/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", + "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", + "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" }, - "suggest": { - "symfony/browser-kit": "", - "symfony/config": "", - "symfony/console": "", - "symfony/dependency-injection": "" - }, "type": "library", "autoload": { "psr-4": { @@ -5506,7 +5314,7 @@ "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.25" + "source": "https://github.com/symfony/http-kernel/tree/v6.3.1" }, "funding": [ { @@ -5522,43 +5330,122 @@ "type": "tidelift" } ], - "time": "2023-06-26T05:58:08+00:00" + "time": "2023-06-26T06:07:32+00:00" }, { - "name": "symfony/mime", - "version": "v5.4.23", + "name": "symfony/mailer", + "version": "v6.3.0", "source": { "type": "git", - "url": "https://github.com/symfony/mime.git", - "reference": "ae0a1032a450a3abf305ee44fc55ed423fbf16e3" + "url": "https://github.com/symfony/mailer.git", + "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/ae0a1032a450a3abf305ee44fc55ed423fbf16e3", - "reference": "ae0a1032a450a3abf305ee44fc55ed423fbf16e3", + "url": "https://api.github.com/repos/symfony/mailer/zipball/7b03d9be1dea29bfec0a6c7b603f5072a4c97435", + "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1|^3", + "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.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/7b5d2121858cd6efbed778abce9cfdd7ab1f62ad", + "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad", + "shasum": "" + }, + "require": { + "php": ">=8.1", "symfony/polyfill-intl-idn": "^1.10", - "symfony/polyfill-mbstring": "^1.0", - "symfony/polyfill-php80": "^1.16" + "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": "<4.4", - "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6" + "symfony/mailer": "<5.4", + "symfony/serializer": "<6.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": "^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.14|~6.0.14|^6.1.6" + "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" }, "type": "library", "autoload": { @@ -5590,7 +5477,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v5.4.23" + "source": "https://github.com/symfony/mime/tree/v6.3.0" }, "funding": [ { @@ -5606,7 +5493,7 @@ "type": "tidelift" } ], - "time": "2023-04-19T09:49:13+00:00" + "time": "2023-04-28T15:57:00+00:00" }, { "name": "symfony/polyfill-ctype", @@ -5690,89 +5577,6 @@ ], "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", @@ -6184,85 +5988,6 @@ ], "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", @@ -6347,22 +6072,180 @@ "time": "2022-11-03T14:55:06+00:00" }, { - "name": "symfony/process", - "version": "v5.4.24", + "name": "symfony/polyfill-php83", + "version": "v1.27.0", "source": { "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "e3c46cc5689c8782944274bb30702106ecbe3b64" + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "508c652ba3ccf69f8c97f251534f229791b52a57" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/e3c46cc5689c8782944274bb30702106ecbe3b64", - "reference": "e3c46cc5689c8782944274bb30702106ecbe3b64", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57", + "reference": "508c652ba3ccf69f8c97f251534f229791b52a57", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/polyfill-php80": "^1.16" + "php": ">=7.1", + "symfony/polyfill-php80": "^1.14" + }, + "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\\Php83\\": "" + } + }, + "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.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-uuid", + "version": "v1.27.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-uuid.git", + "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166", + "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-uuid": "*" + }, + "suggest": { + "ext-uuid": "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\\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.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": "v6.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/8741e3ed7fe2e91ec099e02446fb86667a0f1628", + "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628", + "shasum": "" + }, + "require": { + "php": ">=8.1" }, "type": "library", "autoload": { @@ -6390,7 +6273,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v5.4.24" + "source": "https://github.com/symfony/process/tree/v6.3.0" }, "funding": [ { @@ -6406,47 +6289,39 @@ "type": "tidelift" } ], - "time": "2023-05-17T11:26:05+00:00" + "time": "2023-05-19T08:06:44+00:00" }, { "name": "symfony/routing", - "version": "v5.4.25", + "version": "v6.3.1", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "56bfc1394f7011303eb2e22724f9b422d3f14649" + "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/56bfc1394f7011303eb2e22724f9b422d3f14649", - "reference": "56bfc1394f7011303eb2e22724f9b422d3f14649", + "url": "https://api.github.com/repos/symfony/routing/zipball/d37ad1779c38b8eb71996d17dc13030dcb7f9cf5", + "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1|^3", - "symfony/polyfill-php80": "^1.16" + "php": ">=8.1" }, "conflict": { "doctrine/annotations": "<1.12", - "symfony/config": "<5.3", - "symfony/dependency-injection": "<4.4", - "symfony/yaml": "<4.4" + "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": "^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" + "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": { @@ -6480,7 +6355,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v5.4.25" + "source": "https://github.com/symfony/routing/tree/v6.3.1" }, "funding": [ { @@ -6496,37 +6371,33 @@ "type": "tidelift" } ], - "time": "2023-06-05T14:18:47+00:00" + "time": "2023-06-05T15:30:22+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.5.2", + "version": "v3.3.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c" + "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c", - "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4", + "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4", "shasum": "" }, "require": { - "php": ">=7.2.5", - "psr/container": "^1.1", - "symfony/deprecation-contracts": "^2.1|^3" + "php": ">=8.1", + "psr/container": "^2.0" }, "conflict": { "ext-psr": "<1.1|>=2" }, - "suggest": { - "symfony/service-implementation": "" - }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.5-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -6536,7 +6407,10 @@ "autoload": { "psr-4": { "Symfony\\Contracts\\Service\\": "" - } + }, + "exclude-from-classmap": [ + "/Test/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -6563,7 +6437,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v2.5.2" + "source": "https://github.com/symfony/service-contracts/tree/v3.3.0" }, "funding": [ { @@ -6579,7 +6453,7 @@ "type": "tidelift" } ], - "time": "2022-05-30T19:17:29+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { "name": "symfony/string", @@ -6840,39 +6714,107 @@ "time": "2023-05-30T17:17:10+00:00" }, { - "name": "symfony/var-dumper", - "version": "v5.4.25", + "name": "symfony/uid", + "version": "v6.3.0", "source": { "type": "git", - "url": "https://github.com/symfony/var-dumper.git", - "reference": "82269f73c0f0f9859ab9b6900eebacbe54954ede" + "url": "https://github.com/symfony/uid.git", + "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82269f73c0f0f9859ab9b6900eebacbe54954ede", - "reference": "82269f73c0f0f9859ab9b6900eebacbe54954ede", + "url": "https://api.github.com/repos/symfony/uid/zipball/01b0f20b1351d997711c56f1638f7a8c3061e384", + "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.16" + "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.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "c81268d6960ddb47af17391a27d222bd58cf0515" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c81268d6960ddb47af17391a27d222bd58cf0515", + "reference": "c81268d6960ddb47af17391a27d222bd58cf0515", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "symfony/console": "<4.4" + "symfony/console": "<5.4" }, "require-dev": { "ext-iconv": "*", - "symfony/console": "^4.4|^5.0|^6.0", - "symfony/process": "^4.4|^5.0|^6.0", - "symfony/uid": "^5.1|^6.0", + "symfony/console": "^5.4|^6.0", + "symfony/process": "^5.4|^6.0", + "symfony/uid": "^5.4|^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" ], @@ -6909,7 +6851,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.4.25" + "source": "https://github.com/symfony/var-dumper/tree/v6.3.1" }, "funding": [ { @@ -6925,7 +6867,7 @@ "type": "tidelift" } ], - "time": "2023-06-20T20:56:26+00:00" + "time": "2023-06-21T12:08:28+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -7066,16 +7008,16 @@ }, { "name": "voku/portable-ascii", - "version": "1.6.1", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/voku/portable-ascii.git", - "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a" + "reference": "b56450eed252f6801410d810c8e1727224ae0743" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a", - "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", + "reference": "b56450eed252f6801410d810c8e1727224ae0743", "shasum": "" }, "require": { @@ -7112,7 +7054,7 @@ ], "support": { "issues": "https://github.com/voku/portable-ascii/issues", - "source": "https://github.com/voku/portable-ascii/tree/1.6.1" + "source": "https://github.com/voku/portable-ascii/tree/2.0.1" }, "funding": [ { @@ -7136,7 +7078,7 @@ "type": "tidelift" } ], - "time": "2022-01-24T18:55:24+00:00" + "time": "2022-03-08T17:03:00+00:00" }, { "name": "webmozart/assert", @@ -7198,30 +7140,31 @@ }, { "name": "yajra/laravel-datatables", - "version": "v1.5.0", + "version": "v10.1.0", "source": { "type": "git", "url": "https://github.com/yajra/datatables.git", - "reference": "50de5e20ef01da1a353e0a81c0ad5f9da6a985ec" + "reference": "7837d079edd88f088755a62b254e32068dfe16e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/yajra/datatables/zipball/50de5e20ef01da1a353e0a81c0ad5f9da6a985ec", - "reference": "50de5e20ef01da1a353e0a81c0ad5f9da6a985ec", + "url": "https://api.github.com/repos/yajra/datatables/zipball/7837d079edd88f088755a62b254e32068dfe16e1", + "reference": "7837d079edd88f088755a62b254e32068dfe16e1", "shasum": "" }, "require": { - "php": ">=7.0", - "yajra/laravel-datatables-buttons": "4.*", + "php": "^8.1", + "yajra/laravel-datatables-buttons": "^10", "yajra/laravel-datatables-editor": "1.*", - "yajra/laravel-datatables-fractal": "1.*", - "yajra/laravel-datatables-html": "4.*", - "yajra/laravel-datatables-oracle": "8.*|9.*" + "yajra/laravel-datatables-export": "^10", + "yajra/laravel-datatables-fractal": "^10", + "yajra/laravel-datatables-html": "^10", + "yajra/laravel-datatables-oracle": "^10" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "10.0-dev" } }, "notification-url": "https://packagist.org/downloads/", @@ -7242,43 +7185,54 @@ ], "support": { "issues": "https://github.com/yajra/datatables/issues", - "source": "https://github.com/yajra/datatables/tree/v1.5.0" + "source": "https://github.com/yajra/datatables/tree/v10.1.0" }, - "time": "2019-02-27T03:17:30+00:00" + "funding": [ + { + "url": "https://github.com/sponsors/yajra", + "type": "github" + } + ], + "time": "2023-02-20T05:26:34+00:00" }, { "name": "yajra/laravel-datatables-buttons", - "version": "v4.13.3", + "version": "v10.0.6", "source": { "type": "git", "url": "https://github.com/yajra/laravel-datatables-buttons.git", - "reference": "5c8fb97c26c14408c8933f68d86c6e4823d05740" + "reference": "da9e4493809b2d4c6e9f53c61184da7f881c1f51" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/yajra/laravel-datatables-buttons/zipball/5c8fb97c26c14408c8933f68d86c6e4823d05740", - "reference": "5c8fb97c26c14408c8933f68d86c6e4823d05740", + "url": "https://api.github.com/repos/yajra/laravel-datatables-buttons/zipball/da9e4493809b2d4c6e9f53c61184da7f881c1f51", + "reference": "da9e4493809b2d4c6e9f53c61184da7f881c1f51", "shasum": "" }, "require": { - "illuminate/console": "*", - "maatwebsite/excel": "^3.0", - "php": ">=7.0", - "yajra/laravel-datatables-html": "3.*|4.*", - "yajra/laravel-datatables-oracle": "8.*|9.*" + "illuminate/console": "^10", + "php": "^8.1", + "yajra/laravel-datatables-html": "^10", + "yajra/laravel-datatables-oracle": "^10" }, "require-dev": { - "mockery/mockery": "~1.0", - "phpunit/phpunit": "~7.0" + "barryvdh/laravel-snappy": "^1.0.1", + "maatwebsite/excel": "^3.1.46", + "nunomaduro/larastan": "^2.4", + "orchestra/testbench": "^8", + "rap2hpoutre/fast-excel": "^5.1" }, "suggest": { "barryvdh/laravel-snappy": "Allows exporting of dataTable to PDF using the print view.", - "dompdf/dompdf": "Allows exporting of dataTable to PDF using the DomPDF." + "dompdf/dompdf": "Allows exporting of dataTable to PDF using the DomPDF.", + "maatwebsite/excel": "Exporting of dataTables (excel, csv and PDF) using maatwebsite package.", + "rap2hpoutre/fast-excel": "Faster exporting of dataTables using fast-excel package.", + "yajra/laravel-datatables-export": "Exporting of dataTables (excel, csv and PDF) via livewire and queue worker." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-master": "10.0-dev" }, "laravel": { "providers": [ @@ -7310,19 +7264,15 @@ ], "support": { "issues": "https://github.com/yajra/laravel-datatables-buttons/issues", - "source": "https://github.com/yajra/laravel-datatables-buttons/tree/v4.13.3" + "source": "https://github.com/yajra/laravel-datatables-buttons/tree/v10.0.6" }, "funding": [ { - "url": "https://www.paypal.me/yajra", - "type": "custom" - }, - { - "url": "https://www.patreon.com/yajra", - "type": "patreon" + "url": "https://github.com/sponsors/yajra", + "type": "github" } ], - "time": "2021-10-04T03:04:33+00:00" + "time": "2023-02-28T06:08:22+00:00" }, { "name": "yajra/laravel-datatables-editor", @@ -7404,32 +7354,105 @@ "time": "2023-02-21T06:57:59+00:00" }, { - "name": "yajra/laravel-datatables-fractal", - "version": "v1.6.0", + "name": "yajra/laravel-datatables-export", + "version": "v10.0.0", "source": { "type": "git", - "url": "https://github.com/yajra/laravel-datatables-fractal.git", - "reference": "0aa387a9b3738248fa61110f0378904ef42b4a73" + "url": "https://github.com/yajra/laravel-datatables-export.git", + "reference": "1c5472a1ac71ec59e2a3e41172276b461ef172e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/yajra/laravel-datatables-fractal/zipball/0aa387a9b3738248fa61110f0378904ef42b4a73", - "reference": "0aa387a9b3738248fa61110f0378904ef42b4a73", + "url": "https://api.github.com/repos/yajra/laravel-datatables-export/zipball/1c5472a1ac71ec59e2a3e41172276b461ef172e1", + "reference": "1c5472a1ac71ec59e2a3e41172276b461ef172e1", "shasum": "" }, "require": { - "league/fractal": "^0.19.0", - "php": ">=7.0", - "yajra/laravel-datatables-oracle": "8.*|9.*" + "ext-json": "*", + "livewire/livewire": "^2.11.2", + "openspout/openspout": "^4.12.1", + "php": "^8.1", + "phpoffice/phpspreadsheet": "^1.27", + "yajra/laravel-datatables": "^10.0" }, "require-dev": { - "mockery/mockery": "0.9.*", - "phpunit/phpunit": "~6.0" + "nunomaduro/larastan": "^2.4.1", + "orchestra/testbench": "^8.0.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "10.0-dev" + }, + "laravel": { + "providers": [ + "Yajra\\DataTables\\ExportServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Yajra\\DataTables\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Arjay Angeles", + "email": "aqangeles@gmail.com" + } + ], + "description": "Laravel DataTables Queued Export Plugin.", + "keywords": [ + "datatables", + "excel", + "export", + "laravel", + "livewire", + "queue" + ], + "support": { + "issues": "https://github.com/yajra/laravel-datatables-export/issues", + "source": "https://github.com/yajra/laravel-datatables-export/tree/v10.0.0" + }, + "funding": [ + { + "url": "https://github.com/sponsors/yajra", + "type": "github" + } + ], + "time": "2023-02-20T05:22:06+00:00" + }, + { + "name": "yajra/laravel-datatables-fractal", + "version": "v10.0.0", + "source": { + "type": "git", + "url": "https://github.com/yajra/laravel-datatables-fractal.git", + "reference": "765198d1f2b3f0a7c0c00f08ee41ba11be4ab1e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/yajra/laravel-datatables-fractal/zipball/765198d1f2b3f0a7c0c00f08ee41ba11be4ab1e2", + "reference": "765198d1f2b3f0a7c0c00f08ee41ba11be4ab1e2", + "shasum": "" + }, + "require": { + "league/fractal": "^0.20.1", + "php": "^8.1", + "yajra/laravel-datatables-oracle": "^10.0" + }, + "require-dev": { + "nunomaduro/larastan": "^2.4", + "orchestra/testbench": "^7.21" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.0-dev" }, "laravel": { "providers": [ @@ -7461,38 +7484,37 @@ ], "support": { "issues": "https://github.com/yajra/laravel-datatables-fractal/issues", - "source": "https://github.com/yajra/laravel-datatables-fractal/tree/v1.6.0" + "source": "https://github.com/yajra/laravel-datatables-fractal/tree/v10.0.0" }, - "time": "2020-06-07T03:05:09+00:00" + "time": "2023-02-07T03:46:04+00:00" }, { "name": "yajra/laravel-datatables-html", - "version": "v4.41.1", + "version": "v10.7.0", "source": { "type": "git", "url": "https://github.com/yajra/laravel-datatables-html.git", - "reference": "55895b55539cd776a8cd22dce874d1b6a7b9de8c" + "reference": "3aaf1c19eb70713858e0ff88ac872e3386bbb4c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/yajra/laravel-datatables-html/zipball/55895b55539cd776a8cd22dce874d1b6a7b9de8c", - "reference": "55895b55539cd776a8cd22dce874d1b6a7b9de8c", + "url": "https://api.github.com/repos/yajra/laravel-datatables-html/zipball/3aaf1c19eb70713858e0ff88ac872e3386bbb4c1", + "reference": "3aaf1c19eb70713858e0ff88ac872e3386bbb4c1", "shasum": "" }, "require": { "ext-json": "*", - "laravelcollective/html": "^5.4|^6", - "php": "^7.1.3|^8", - "yajra/laravel-datatables-oracle": "~9.0" + "php": "^8.1", + "yajra/laravel-datatables-oracle": "^10.0" }, "require-dev": { - "mockery/mockery": "^1.3.1", - "phpunit/phpunit": "^9.3" + "nunomaduro/larastan": "^2.4", + "orchestra/testbench": "^7.21" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-master": "10.0-dev" }, "laravel": { "providers": [ @@ -7525,55 +7547,62 @@ ], "support": { "issues": "https://github.com/yajra/laravel-datatables-html/issues", - "source": "https://github.com/yajra/laravel-datatables-html/tree/v4.41.1" + "source": "https://github.com/yajra/laravel-datatables-html/tree/v10.7.0" }, "funding": [ { "url": "https://www.paypal.me/yajra", "type": "custom" }, + { + "url": "https://github.com/yajra", + "type": "github" + }, { "url": "https://www.patreon.com/yajra", "type": "patreon" } ], - "time": "2022-03-05T03:34:07+00:00" + "time": "2023-06-08T06:45:50+00:00" }, { "name": "yajra/laravel-datatables-oracle", - "version": "v9.21.2", + "version": "v10.6.2", "source": { "type": "git", "url": "https://github.com/yajra/laravel-datatables.git", - "reference": "a7fd01f06282923e9c63fa27fe6b391e21dc321a" + "reference": "6662926a7ac52cdf3d52508b0d4f6c41cc8618bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/yajra/laravel-datatables/zipball/a7fd01f06282923e9c63fa27fe6b391e21dc321a", - "reference": "a7fd01f06282923e9c63fa27fe6b391e21dc321a", + "url": "https://api.github.com/repos/yajra/laravel-datatables/zipball/6662926a7ac52cdf3d52508b0d4f6c41cc8618bf", + "reference": "6662926a7ac52cdf3d52508b0d4f6c41cc8618bf", "shasum": "" }, "require": { - "illuminate/database": "5.8.*|^6|^7|^8|^9", - "illuminate/filesystem": "5.8.*|^6|^7|^8|^9", - "illuminate/http": "5.8.*|^6|^7|^8|^9", - "illuminate/support": "5.8.*|^6|^7|^8|^9", - "illuminate/view": "5.8.*|^6|^7|^8|^9", - "php": "^7.1.3|^8" + "illuminate/database": "^9|^10", + "illuminate/filesystem": "^9|^10", + "illuminate/http": "^9|^10", + "illuminate/support": "^9|^10", + "illuminate/view": "^9|^10", + "php": "^8.0.2" }, "require-dev": { - "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0|^7.0" + "nunomaduro/larastan": "^2.4", + "orchestra/testbench": "^8", + "yajra/laravel-datatables-html": "^9.3.4|^10" }, "suggest": { "yajra/laravel-datatables-buttons": "Plugin for server-side exporting of dataTables.", "yajra/laravel-datatables-editor": "Plugin to use DataTables Editor (requires a license).", + "yajra/laravel-datatables-export": "Plugin for server-side exporting using livewire and queue worker.", "yajra/laravel-datatables-fractal": "Plugin for server-side response using Fractal.", "yajra/laravel-datatables-html": "Plugin for server-side HTML builder of dataTables." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "9.0-dev" + "dev-master": "10.x-dev" }, "laravel": { "providers": [ @@ -7602,7 +7631,7 @@ "email": "aqangeles@gmail.com" } ], - "description": "jQuery DataTables API for Laravel 5|6|7|8|9", + "description": "jQuery DataTables API for Laravel 4|5|6|7|8|9|10", "keywords": [ "datatables", "jquery", @@ -7610,54 +7639,50 @@ ], "support": { "issues": "https://github.com/yajra/laravel-datatables/issues", - "source": "https://github.com/yajra/laravel-datatables/tree/v9.21.2" + "source": "https://github.com/yajra/laravel-datatables/tree/v10.6.2" }, "funding": [ { - "url": "https://www.paypal.me/yajra", - "type": "custom" - }, - { - "url": "https://www.patreon.com/yajra", - "type": "patreon" + "url": "https://github.com/sponsors/yajra", + "type": "github" } ], - "time": "2022-07-12T04:48:03+00:00" + "time": "2023-07-15T04:00:38+00:00" } ], "packages-dev": [ { "name": "barryvdh/laravel-debugbar", - "version": "v3.7.0", + "version": "v3.8.1", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "3372ed65e6d2039d663ed19aa699956f9d346271" + "reference": "aff3235fecb4104203b1e62c32239c56530eee32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/3372ed65e6d2039d663ed19aa699956f9d346271", - "reference": "3372ed65e6d2039d663ed19aa699956f9d346271", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/aff3235fecb4104203b1e62c32239c56530eee32", + "reference": "aff3235fecb4104203b1e62c32239c56530eee32", "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" + "illuminate/routing": "^9|^10", + "illuminate/session": "^9|^10", + "illuminate/support": "^9|^10", + "maximebf/debugbar": "^1.18.2", + "php": "^8.0", + "symfony/finder": "^6" }, "require-dev": { "mockery/mockery": "^1.3.3", - "orchestra/testbench-dusk": "^5|^6|^7", - "phpunit/phpunit": "^8.5|^9.0", + "orchestra/testbench-dusk": "^5|^6|^7|^8", + "phpunit/phpunit": "^8.5.30|^9.0", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.6-dev" + "dev-master": "3.8-dev" }, "laravel": { "providers": [ @@ -7696,7 +7721,7 @@ ], "support": { "issues": "https://github.com/barryvdh/laravel-debugbar/issues", - "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.7.0" + "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.8.1" }, "funding": [ { @@ -7708,273 +7733,7 @@ "type": "github" } ], - "time": "2022-07-11T09:26:42+00:00" - }, - { - "name": "doctrine/instantiator", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", - "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", - "shasum": "" - }, - "require": { - "php": "^8.1" - }, - "require-dev": { - "doctrine/coding-standard": "^11", - "ext-pdo": "*", - "ext-phar": "*", - "phpbench/phpbench": "^1.2", - "phpstan/phpstan": "^1.9.4", - "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^9.5.27", - "vimeo/psalm": "^5.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "homepage": "https://ocramius.github.io/" - } - ], - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://www.doctrine-project.org/projects/instantiator.html", - "keywords": [ - "constructor", - "instantiate" - ], - "support": { - "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/2.0.0" - }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", - "type": "tidelift" - } - ], - "time": "2022-12-30T00:23:10+00:00" - }, - { - "name": "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" + "time": "2023-02-21T14:21:02+00:00" }, { "name": "fakerphp/faker", @@ -8046,16 +7805,16 @@ }, { "name": "filp/whoops", - "version": "2.15.2", + "version": "2.15.3", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73" + "reference": "c83e88a30524f9360b11f585f71e6b17313b7187" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", - "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", + "url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187", + "reference": "c83e88a30524f9360b11f585f71e6b17313b7187", "shasum": "" }, "require": { @@ -8105,7 +7864,7 @@ ], "support": { "issues": "https://github.com/filp/whoops/issues", - "source": "https://github.com/filp/whoops/tree/2.15.2" + "source": "https://github.com/filp/whoops/tree/2.15.3" }, "funding": [ { @@ -8113,7 +7872,7 @@ "type": "github" } ], - "time": "2023-04-12T12:00:00+00:00" + "time": "2023-07-13T12:00:00+00:00" }, { "name": "hamcrest/hamcrest-php", @@ -8168,16 +7927,16 @@ }, { "name": "laravel/sail", - "version": "v1.23.0", + "version": "v1.23.1", "source": { "type": "git", "url": "https://github.com/laravel/sail.git", - "reference": "a2e046f748e87d3ef8b2b381e0e5c5a11f34e46b" + "reference": "62582606f80466aa81fba40b193b289106902853" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sail/zipball/a2e046f748e87d3ef8b2b381e0e5c5a11f34e46b", - "reference": "a2e046f748e87d3ef8b2b381e0e5c5a11f34e46b", + "url": "https://api.github.com/repos/laravel/sail/zipball/62582606f80466aa81fba40b193b289106902853", + "reference": "62582606f80466aa81fba40b193b289106902853", "shasum": "" }, "require": { @@ -8229,7 +7988,7 @@ "issues": "https://github.com/laravel/sail/issues", "source": "https://github.com/laravel/sail" }, - "time": "2023-06-16T21:20:12+00:00" + "time": "2023-06-28T18:31:28+00:00" }, { "name": "maximebf/debugbar", @@ -8299,37 +8058,33 @@ }, { "name": "mockery/mockery", - "version": "1.6.2", + "version": "1.6.4", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "13a7fa2642c76c58fa2806ef7f565344c817a191" + "reference": "d1413755e26fe56a63455f7753221c86cbb88f66" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/13a7fa2642c76c58fa2806ef7f565344c817a191", - "reference": "13a7fa2642c76c58fa2806ef7f565344c817a191", + "url": "https://api.github.com/repos/mockery/mockery/zipball/d1413755e26fe56a63455f7753221c86cbb88f66", + "reference": "d1413755e26fe56a63455f7753221c86cbb88f66", "shasum": "" }, "require": { "hamcrest/hamcrest-php": "^2.0.1", "lib-pcre": ">=7.0", - "php": "^7.4 || ^8.0" + "php": ">=7.4,<8.3" }, "conflict": { "phpunit/phpunit": "<8.0" }, "require-dev": { "phpunit/phpunit": "^8.5 || ^9.3", - "psalm/plugin-phpunit": "^0.18", - "vimeo/psalm": "^5.9" + "psalm/plugin-phpunit": "^0.18.4", + "symplify/easy-coding-standard": "^11.5.0", + "vimeo/psalm": "^5.13.1" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.6.x-dev" - } - }, "autoload": { "files": [ "library/helpers.php", @@ -8347,12 +8102,20 @@ { "name": "Pádraic Brady", "email": "padraic.brady@gmail.com", - "homepage": "http://blog.astrumfutura.com" + "homepage": "https://github.com/padraic", + "role": "Author" }, { "name": "Dave Marshall", "email": "dave.marshall@atstsolutions.co.uk", - "homepage": "http://davedevelopment.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", @@ -8370,10 +8133,13 @@ "testing" ], "support": { + "docs": "https://docs.mockery.io/", "issues": "https://github.com/mockery/mockery/issues", - "source": "https://github.com/mockery/mockery/tree/1.6.2" + "rss": "https://github.com/mockery/mockery/releases.atom", + "security": "https://github.com/mockery/mockery/security/advisories", + "source": "https://github.com/mockery/mockery" }, - "time": "2023-06-07T09:07:52+00:00" + "time": "2023-07-19T15:51:02+00:00" }, { "name": "myclabs/deep-copy", @@ -8436,34 +8202,40 @@ }, { "name": "nunomaduro/collision", - "version": "v5.11.0", + "version": "v7.7.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461" + "reference": "69a07197d055456d29911116fca3bc2c985f524b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461", - "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/69a07197d055456d29911116fca3bc2c985f524b", + "reference": "69a07197d055456d29911116fca3bc2c985f524b", "shasum": "" }, "require": { - "facade/ignition-contracts": "^1.0", - "filp/whoops": "^2.14.3", - "php": "^7.3 || ^8.0", - "symfony/console": "^5.0" + "filp/whoops": "^2.15.2", + "nunomaduro/termwind": "^1.15.1", + "php": "^8.1.0", + "symfony/console": "^6.3.0" + }, + "conflict": { + "phpunit/phpunit": "<10.1.2" }, "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" + "brianium/paratest": "^7.2.2", + "laravel/framework": "^10.14.1", + "laravel/pint": "^1.10.3", + "laravel/sail": "^1.23.0", + "laravel/sanctum": "^3.2.5", + "laravel/tinker": "^2.8.1", + "nunomaduro/larastan": "^2.6.3", + "orchestra/testbench-core": "^8.5.8", + "pestphp/pest": "^2.8.1", + "phpunit/phpunit": "^10.2.2", + "sebastian/environment": "^6.0.1", + "spatie/laravel-ignition": "^2.2.0" }, "type": "library", "extra": { @@ -8474,6 +8246,9 @@ } }, "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], "psr-4": { "NunoMaduro\\Collision\\": "src/" } @@ -8519,7 +8294,7 @@ "type": "patreon" } ], - "time": "2022-01-10T16:22:52+00:00" + "time": "2023-06-29T09:10:16+00:00" }, { "name": "phar-io/manifest", @@ -8634,16 +8409,16 @@ }, { "name": "phpunit/php-code-coverage", - "version": "9.2.26", + "version": "10.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1" + "reference": "be1fe461fdc917de2a29a452ccf2657d325b443d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", - "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/be1fe461fdc917de2a29a452ccf2657d325b443d", + "reference": "be1fe461fdc917de2a29a452ccf2657d325b443d", "shasum": "" }, "require": { @@ -8651,18 +8426,18 @@ "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", + "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": "^9.3" + "phpunit/phpunit": "^10.1" }, "suggest": { "ext-pcov": "PHP extension that provides line coverage", @@ -8671,7 +8446,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.2-dev" + "dev-main": "10.1-dev" } }, "autoload": { @@ -8699,7 +8474,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26" + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.3" }, "funding": [ { @@ -8707,32 +8483,32 @@ "type": "github" } ], - "time": "2023-03-06T12:58:08+00:00" + "time": "2023-07-26T13:45:28+00:00" }, { "name": "phpunit/php-file-iterator", - "version": "3.0.6", + "version": "4.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" + "reference": "5647d65443818959172645e7ed999217360654b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", - "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/5647d65443818959172645e7ed999217360654b6", + "reference": "5647d65443818959172645e7ed999217360654b6", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -8759,7 +8535,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.0.2" }, "funding": [ { @@ -8767,28 +8544,28 @@ "type": "github" } ], - "time": "2021-12-02T12:48:52+00:00" + "time": "2023-05-07T09:13:23+00:00" }, { "name": "phpunit/php-invoker", - "version": "3.1.1", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-invoker.git", - "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", - "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { "ext-pcntl": "*", - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "suggest": { "ext-pcntl": "*" @@ -8796,7 +8573,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -8822,7 +8599,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-invoker/issues", - "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" + "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0" }, "funding": [ { @@ -8830,32 +8607,32 @@ "type": "github" } ], - "time": "2020-09-28T05:58:55+00:00" + "time": "2023-02-03T06:56:09+00:00" }, { "name": "phpunit/php-text-template", - "version": "2.0.4", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" + "reference": "9f3d3709577a527025f55bcf0f7ab8052c8bb37d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", - "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/9f3d3709577a527025f55bcf0f7ab8052c8bb37d", + "reference": "9f3d3709577a527025f55bcf0f7ab8052c8bb37d", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -8881,7 +8658,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-text-template/issues", - "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" + "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.0" }, "funding": [ { @@ -8889,32 +8666,32 @@ "type": "github" } ], - "time": "2020-10-26T05:33:50+00:00" + "time": "2023-02-03T06:56:46+00:00" }, { "name": "phpunit/php-timer", - "version": "5.0.3", + "version": "6.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", - "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -8940,7 +8717,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-timer/issues", - "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" + "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0" }, "funding": [ { @@ -8948,24 +8725,23 @@ "type": "github" } ], - "time": "2020-10-26T13:16:10+00:00" + "time": "2023-02-03T06:57:52+00:00" }, { "name": "phpunit/phpunit", - "version": "9.6.9", + "version": "10.2.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "a9aceaf20a682aeacf28d582654a1670d8826778" + "reference": "1c17815c129f133f3019cc18e8d0c8622e6d9bcd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a9aceaf20a682aeacf28d582654a1670d8826778", - "reference": "a9aceaf20a682aeacf28d582654a1670d8826778", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1c17815c129f133f3019cc18e8d0c8622e6d9bcd", + "reference": "1c17815c129f133f3019cc18e8d0c8622e6d9bcd", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.3.1 || ^2", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", @@ -8975,27 +8751,26 @@ "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" + "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", + "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", - "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + "ext-soap": "To be able to generate mocks based on WSDL files" }, "bin": [ "phpunit" @@ -9003,7 +8778,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.6-dev" + "dev-main": "10.2-dev" } }, "autoload": { @@ -9035,7 +8810,7 @@ "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.9" + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.2.6" }, "funding": [ { @@ -9051,32 +8826,32 @@ "type": "tidelift" } ], - "time": "2023-06-11T06:13:56+00:00" + "time": "2023-07-17T12:08:28+00:00" }, { "name": "sebastian/cli-parser", - "version": "1.0.1", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/cli-parser.git", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" + "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae", + "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "2.0-dev" } }, "autoload": { @@ -9099,7 +8874,7 @@ "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" + "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0" }, "funding": [ { @@ -9107,32 +8882,32 @@ "type": "github" } ], - "time": "2020-09-28T06:08:49+00:00" + "time": "2023-02-03T06:58:15+00:00" }, { "name": "sebastian/code-unit", - "version": "1.0.8", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit.git", - "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", - "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "2.0-dev" } }, "autoload": { @@ -9155,7 +8930,7 @@ "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" + "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0" }, "funding": [ { @@ -9163,32 +8938,32 @@ "type": "github" } ], - "time": "2020-10-26T13:08:54+00:00" + "time": "2023-02-03T06:58:43+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", - "version": "2.0.3", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", - "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -9210,7 +8985,7 @@ "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" + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0" }, "funding": [ { @@ -9218,34 +8993,36 @@ "type": "github" } ], - "time": "2020-09-28T05:30:19+00:00" + "time": "2023-02-03T06:59:15+00:00" }, { "name": "sebastian/comparator", - "version": "4.0.8", + "version": "5.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "fa0f136dd2334583309d32b62544682ee972b51a" + "reference": "72f01e6586e0caf6af81297897bd112eb7e9627c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", - "reference": "fa0f136dd2334583309d32b62544682ee972b51a", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/72f01e6586e0caf6af81297897bd112eb7e9627c", + "reference": "72f01e6586e0caf6af81297897bd112eb7e9627c", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/diff": "^4.0", - "sebastian/exporter": "^4.0" + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/diff": "^5.0", + "sebastian/exporter": "^5.0" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -9284,7 +9061,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" + "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.0" }, "funding": [ { @@ -9292,33 +9069,33 @@ "type": "github" } ], - "time": "2022-09-14T12:41:17+00:00" + "time": "2023-02-03T07:07:16+00:00" }, { "name": "sebastian/complexity", - "version": "2.0.2", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/complexity.git", - "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" + "reference": "e67d240970c9dc7ea7b2123a6d520e334dd61dc6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", - "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/e67d240970c9dc7ea7b2123a6d520e334dd61dc6", + "reference": "e67d240970c9dc7ea7b2123a6d520e334dd61dc6", "shasum": "" }, "require": { - "nikic/php-parser": "^4.7", - "php": ">=7.3" + "nikic/php-parser": "^4.10", + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -9341,7 +9118,7 @@ "homepage": "https://github.com/sebastianbergmann/complexity", "support": { "issues": "https://github.com/sebastianbergmann/complexity/issues", - "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" + "source": "https://github.com/sebastianbergmann/complexity/tree/3.0.0" }, "funding": [ { @@ -9349,33 +9126,33 @@ "type": "github" } ], - "time": "2020-10-26T15:52:27+00:00" + "time": "2023-02-03T06:59:47+00:00" }, { "name": "sebastian/diff", - "version": "4.0.5", + "version": "5.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" + "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", - "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b", + "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3", + "phpunit/phpunit": "^10.0", "symfony/process": "^4.2 || ^5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -9407,7 +9184,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3" }, "funding": [ { @@ -9415,27 +9193,27 @@ "type": "github" } ], - "time": "2023-05-07T05:35:17+00:00" + "time": "2023-05-01T07:48:21+00:00" }, { "name": "sebastian/environment", - "version": "5.1.5", + "version": "6.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" + "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", - "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951", + "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "suggest": { "ext-posix": "*" @@ -9443,7 +9221,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.1-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -9462,7 +9240,7 @@ } ], "description": "Provides functionality to handle HHVM/PHP environments", - "homepage": "http://www.github.com/sebastianbergmann/environment", + "homepage": "https://github.com/sebastianbergmann/environment", "keywords": [ "Xdebug", "environment", @@ -9470,7 +9248,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1" }, "funding": [ { @@ -9478,34 +9257,34 @@ "type": "github" } ], - "time": "2023-02-03T06:03:51+00:00" + "time": "2023-04-11T05:39:26+00:00" }, { "name": "sebastian/exporter", - "version": "4.0.5", + "version": "5.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" + "reference": "f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", - "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0", + "reference": "f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/recursion-context": "^4.0" + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/recursion-context": "^5.0" }, "require-dev": { - "ext-mbstring": "*", - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -9547,7 +9326,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" + "source": "https://github.com/sebastianbergmann/exporter/tree/5.0.0" }, "funding": [ { @@ -9555,38 +9334,35 @@ "type": "github" } ], - "time": "2022-09-14T06:03:37+00:00" + "time": "2023-02-03T07:06:49+00:00" }, { "name": "sebastian/global-state", - "version": "5.0.5", + "version": "6.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" + "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", - "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/7ea9ead78f6d380d2a667864c132c2f7b83055e4", + "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/object-reflector": "^2.0", - "sebastian/recursion-context": "^4.0" + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" }, "require-dev": { "ext-dom": "*", - "phpunit/phpunit": "^9.3" - }, - "suggest": { - "ext-uopz": "*" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -9611,7 +9387,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.1" }, "funding": [ { @@ -9619,33 +9396,33 @@ "type": "github" } ], - "time": "2022-02-14T08:28:10+00:00" + "time": "2023-07-19T07:19:23+00:00" }, { "name": "sebastian/lines-of-code", - "version": "1.0.3", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/lines-of-code.git", - "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" + "reference": "17c4d940ecafb3d15d2cf916f4108f664e28b130" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", - "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/17c4d940ecafb3d15d2cf916f4108f664e28b130", + "reference": "17c4d940ecafb3d15d2cf916f4108f664e28b130", "shasum": "" }, "require": { - "nikic/php-parser": "^4.6", - "php": ">=7.3" + "nikic/php-parser": "^4.10", + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "2.0-dev" } }, "autoload": { @@ -9668,7 +9445,7 @@ "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" + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.0" }, "funding": [ { @@ -9676,34 +9453,34 @@ "type": "github" } ], - "time": "2020-11-28T06:42:11+00:00" + "time": "2023-02-03T07:08:02+00:00" }, { "name": "sebastian/object-enumerator", - "version": "4.0.4", + "version": "5.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", - "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/object-reflector": "^2.0", - "sebastian/recursion-context": "^4.0" + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -9725,7 +9502,7 @@ "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" + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0" }, "funding": [ { @@ -9733,32 +9510,32 @@ "type": "github" } ], - "time": "2020-10-26T13:12:34+00:00" + "time": "2023-02-03T07:08:32+00:00" }, { "name": "sebastian/object-reflector", - "version": "2.0.4", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", - "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -9780,7 +9557,7 @@ "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" + "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0" }, "funding": [ { @@ -9788,32 +9565,32 @@ "type": "github" } ], - "time": "2020-10-26T13:14:26+00:00" + "time": "2023-02-03T07:06:18+00:00" }, { "name": "sebastian/recursion-context", - "version": "4.0.5", + "version": "5.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" + "reference": "05909fb5bc7df4c52992396d0116aed689f93712" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", - "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -9843,7 +9620,7 @@ "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" + "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0" }, "funding": [ { @@ -9851,87 +9628,32 @@ "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" + "time": "2023-02-03T07:05:40+00:00" }, { "name": "sebastian/type", - "version": "3.2.1", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", - "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.5" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -9954,7 +9676,7 @@ "homepage": "https://github.com/sebastianbergmann/type", "support": { "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" + "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" }, "funding": [ { @@ -9962,29 +9684,29 @@ "type": "github" } ], - "time": "2023-02-03T06:13:03+00:00" + "time": "2023-02-03T07:10:45+00:00" }, { "name": "sebastian/version", - "version": "3.0.2", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/version.git", - "reference": "c6c1022351a901512170118436c764e473f6de8c" + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", - "reference": "c6c1022351a901512170118436c764e473f6de8c", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -10007,7 +9729,7 @@ "homepage": "https://github.com/sebastianbergmann/version", "support": { "issues": "https://github.com/sebastianbergmann/version/issues", - "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" + "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" }, "funding": [ { @@ -10015,7 +9737,314 @@ "type": "github" } ], - "time": "2020-09-28T06:39:44+00:00" + "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.9.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/ignition.git", + "reference": "de24ff1e01814d5043bd6eb4ab36a5a852a04973" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/ignition/zipball/de24ff1e01814d5043bd6eb4ab36a5a852a04973", + "reference": "de24ff1e01814d5043bd6eb4ab36a5a852a04973", + "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-06-28T13:24:59+00:00" + }, + { + "name": "spatie/laravel-ignition", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-ignition.git", + "reference": "dd15fbe82ef5392798941efae93c49395a87d943" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/dd15fbe82ef5392798941efae93c49395a87d943", + "reference": "dd15fbe82ef5392798941efae93c49395a87d943", + "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-06-28T13:51:52+00:00" }, { "name": "symfony/yaml", @@ -10140,12 +10169,12 @@ } ], "aliases": [], - "minimum-stability": "dev", + "minimum-stability": "stable", "stability-flags": [], "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": "^7.3|^8.0" + "php": "^8.1" }, "platform-dev": [], "plugin-api-version": "2.3.0" diff --git a/config/modules.php b/config/modules.php index 2cbfe38a..0ad34b4b 100644 --- a/config/modules.php +++ b/config/modules.php @@ -1,6 +1,7 @@ [ - CommandMakeCommand::class, - ControllerMakeCommand::class, - DisableCommand::class, - DumpCommand::class, - EnableCommand::class, - EventMakeCommand::class, - JobMakeCommand::class, - ListenerMakeCommand::class, - MailMakeCommand::class, - MiddlewareMakeCommand::class, - NotificationMakeCommand::class, - ProviderMakeCommand::class, - RouteProviderMakeCommand::class, - InstallCommand::class, - ListCommand::class, - ModuleDeleteCommand::class, - ModuleMakeCommand::class, - FactoryMakeCommand::class, - PolicyMakeCommand::class, - RequestMakeCommand::class, - RuleMakeCommand::class, - MigrateCommand::class, - MigrateRefreshCommand::class, - MigrateResetCommand::class, - MigrateRollbackCommand::class, - MigrateStatusCommand::class, - MigrationMakeCommand::class, - ModelMakeCommand::class, - PublishCommand::class, - PublishConfigurationCommand::class, - PublishMigrationCommand::class, - PublishTranslationCommand::class, - SeedCommand::class, - SeedMakeCommand::class, - SetupCommand::class, - UnUseCommand::class, - UpdateCommand::class, - UseCommand::class, - ResourceMakeCommand::class, - TestMakeCommand::class, - LaravelModulesV6Migrator::class, + Commands\CommandMakeCommand::class, + Commands\ComponentClassMakeCommand::class, + Commands\ComponentViewMakeCommand::class, + Commands\ControllerMakeCommand::class, + Commands\DisableCommand::class, + Commands\DumpCommand::class, + Commands\EnableCommand::class, + Commands\EventMakeCommand::class, + Commands\JobMakeCommand::class, + Commands\ListenerMakeCommand::class, + Commands\MailMakeCommand::class, + Commands\MiddlewareMakeCommand::class, + Commands\NotificationMakeCommand::class, + Commands\ProviderMakeCommand::class, + Commands\RouteProviderMakeCommand::class, + Commands\InstallCommand::class, + Commands\ListCommand::class, + Commands\ModuleDeleteCommand::class, + Commands\ModuleMakeCommand::class, + Commands\FactoryMakeCommand::class, + Commands\PolicyMakeCommand::class, + Commands\RequestMakeCommand::class, + Commands\RuleMakeCommand::class, + Commands\MigrateCommand::class, + Commands\MigrateRefreshCommand::class, + Commands\MigrateResetCommand::class, + Commands\MigrateRollbackCommand::class, + Commands\MigrateStatusCommand::class, + Commands\MigrationMakeCommand::class, + Commands\ModelMakeCommand::class, + Commands\PublishCommand::class, + Commands\PublishConfigurationCommand::class, + Commands\PublishMigrationCommand::class, + Commands\PublishTranslationCommand::class, + Commands\SeedCommand::class, + Commands\SeedMakeCommand::class, + Commands\SetupCommand::class, + Commands\UnUseCommand::class, + Commands\UpdateCommand::class, + Commands\UseCommand::class, + Commands\ResourceMakeCommand::class, + Commands\TestMakeCommand::class, + Commands\LaravelModulesV6Migrator::class, ], /* diff --git a/config/snappy.php b/config/snappy.php index 3a37e16b..37384cbc 100644 --- a/config/snappy.php +++ b/config/snappy.php @@ -35,8 +35,8 @@ return [ 'pdf' => [ 'enabled' => true, - 'binary' => env('WKHTML_PDF_BINARY', base_path('vendor/h4cc/wkhtmltopdf-amd64/bin/wkhtmltopdf-amd64'),), - //'binary' => env('WKHTML_PDF_BINARY', base_path('"C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe"'),), + //'binary' => env('WKHTML_PDF_BINARY', base_path('vendor/h4cc/wkhtmltopdf-amd64/bin/wkhtmltopdf-amd64'),), + 'binary' => env('WKHTML_PDF_BINARY', 'C:\\wkhtmltopdf\\bin\\wkhtmltopdf.exe'), 'timeout' => false, 'options' => [ 'enable-local-file-access' => true, @@ -47,7 +47,7 @@ return [ 'image' => [ 'enabled' => true, - 'binary' => env('WKHTML_IMG_BINARY', '"C:\Program Files\wkhtmltopdf\bin\wkhtmltoimage.exe"'), + 'binary' => env('WKHTML_IMG_BINARY', ''), 'timeout' => false, 'options' => [ 'enable-local-file-access' => true diff --git a/package-lock.json b/package-lock.json index 34c028e6..8bf32908 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,24 +5,18 @@ "packages": { "": { "dependencies": { - "autoprefixer": "^10.3.1", - "datatables.net-bs4": "^3.2.2", - "datatables.net-buttons-bs4": "^1.7.1" + "autoprefixer": "^10.3.1" }, "devDependencies": { "@coreui/coreui": "^3.2.2", "@coreui/icons": "^1.0.1", "axios": "^0.21", "bootstrap": "^4.1.0", - "jquery": "^3.2", "laravel-mix": "^6.0.6", - "lodash": "^4.17.19", + "laravel-vite-plugin": "^0.7.8", "popper.js": "^1.12", - "postcss": "^8.1.14", - "resolve-url-loader": "^4.0.0", "sass": "^1.15.2", - "sass-loader": "^8.0.0", - "webpack-cli": "^4.7.2" + "vite": "^4.4.7" } }, "node_modules/@ampproject/remapping": { @@ -1902,6 +1896,358 @@ "node": ">=10.0.0" } }, + "node_modules/@esbuild/android-arm": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.17.tgz", + "integrity": "sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.17.tgz", + "integrity": "sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.17.tgz", + "integrity": "sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.17.tgz", + "integrity": "sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.17.tgz", + "integrity": "sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.17.tgz", + "integrity": "sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.17.tgz", + "integrity": "sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.17.tgz", + "integrity": "sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.17.tgz", + "integrity": "sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.17.tgz", + "integrity": "sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.17.tgz", + "integrity": "sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.17.tgz", + "integrity": "sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.17.tgz", + "integrity": "sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.17.tgz", + "integrity": "sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.17.tgz", + "integrity": "sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.17.tgz", + "integrity": "sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.17.tgz", + "integrity": "sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.17.tgz", + "integrity": "sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.17.tgz", + "integrity": "sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.17.tgz", + "integrity": "sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.17.tgz", + "integrity": "sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.17.tgz", + "integrity": "sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", @@ -2563,19 +2909,6 @@ "acorn": "^8" } }, - "node_modules/adjust-sourcemap-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", - "dev": true, - "dependencies": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" - }, - "engines": { - "node": ">=8.9" - } - }, "node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -3920,52 +4253,6 @@ "node": ">=8.0.0" } }, - "node_modules/datatables.net": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/datatables.net/-/datatables.net-1.13.4.tgz", - "integrity": "sha512-yzhArTOB6tPO2QFKm1z3hA4vabtt2hRvgw8XLsT1xqEirinfGYqWDiWXlkTPTaJv2e7gG+Kf985sXkzBFlGrGQ==", - "dependencies": { - "jquery": ">=1.7" - } - }, - "node_modules/datatables.net-bs4": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/datatables.net-bs4/-/datatables.net-bs4-3.2.2.tgz", - "integrity": "sha512-gyusH+EckzR4A8aqT/p6D3B3bUQxgLSoItt1RsPcSsT7DFgPUKjSjf3ZOFYWx0fYnleiLQNGQq8dnyMUySw/yg==", - "deprecated": "Incorrect version published. Please use the latest non-deprecated version - 1.10.13 at the time of writing", - "dependencies": { - "datatables.net": ">=1.10.13", - "jquery": ">=1.7" - } - }, - "node_modules/datatables.net-buttons": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/datatables.net-buttons/-/datatables.net-buttons-1.7.1.tgz", - "integrity": "sha512-D2OxZeR18jhSx+l0xcfAJzfUH7l3LHCu0e606fV7+v3hMhphOfljjZYLaiRmGiR9lqO/f5xE/w2a+OtG/QMavw==", - "dependencies": { - "datatables.net": "^1.10.15", - "jquery": ">=1.7" - } - }, - "node_modules/datatables.net-buttons-bs4": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/datatables.net-buttons-bs4/-/datatables.net-buttons-bs4-1.7.1.tgz", - "integrity": "sha512-s+fwsgAAWp7mOKwuztPH06kaw2JNAJ71VNTw/TqGQTL6BK9FshweDKZSRIB/ePcc/Psiy8fhNEj3XHxx4OO6BA==", - "dependencies": { - "datatables.net-bs4": "^1.10.15", - "datatables.net-buttons": "1.7.1", - "jquery": ">=1.7" - } - }, - "node_modules/datatables.net-buttons-bs4/node_modules/datatables.net-bs4": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/datatables.net-bs4/-/datatables.net-bs4-1.13.4.tgz", - "integrity": "sha512-xRImAzF0Ra+JYc1oUeZtFv/XzUATk3CUyVSIDr2OYh0FwSTEU48S94bUBiTUJFvzwPFreqcTZb0IyMFWQvI1GA==", - "dependencies": { - "datatables.net": ">=1.12.1", - "jquery": ">=1.7" - } - }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -4311,6 +4598,43 @@ "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", "dev": true }, + "node_modules/esbuild": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.17.tgz", + "integrity": "sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.17", + "@esbuild/android-arm64": "0.18.17", + "@esbuild/android-x64": "0.18.17", + "@esbuild/darwin-arm64": "0.18.17", + "@esbuild/darwin-x64": "0.18.17", + "@esbuild/freebsd-arm64": "0.18.17", + "@esbuild/freebsd-x64": "0.18.17", + "@esbuild/linux-arm": "0.18.17", + "@esbuild/linux-arm64": "0.18.17", + "@esbuild/linux-ia32": "0.18.17", + "@esbuild/linux-loong64": "0.18.17", + "@esbuild/linux-mips64el": "0.18.17", + "@esbuild/linux-ppc64": "0.18.17", + "@esbuild/linux-riscv64": "0.18.17", + "@esbuild/linux-s390x": "0.18.17", + "@esbuild/linux-x64": "0.18.17", + "@esbuild/netbsd-x64": "0.18.17", + "@esbuild/openbsd-x64": "0.18.17", + "@esbuild/sunos-x64": "0.18.17", + "@esbuild/win32-arm64": "0.18.17", + "@esbuild/win32-ia32": "0.18.17", + "@esbuild/win32-x64": "0.18.17" + } + }, "node_modules/escalade": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", @@ -5639,7 +5963,9 @@ "node_modules/jquery": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.0.tgz", - "integrity": "sha512-umpJ0/k8X0MvD1ds0P9SfowREz2LenHsQaxSohMZ5OMNEU2r0tf8pdeEFTHMFxWVxKNyU9rTtK3CWzUCTKJUeQ==" + "integrity": "sha512-umpJ0/k8X0MvD1ds0P9SfowREz2LenHsQaxSohMZ5OMNEU2r0tf8pdeEFTHMFxWVxKNyU9rTtK3CWzUCTKJUeQ==", + "dev": true, + "peer": true }, "node_modules/js-tokens": { "version": "4.0.0", @@ -5797,6 +6123,22 @@ "webpack-cli": "^4.9.1" } }, + "node_modules/laravel-vite-plugin": { + "version": "0.7.8", + "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-0.7.8.tgz", + "integrity": "sha512-HWYqpQYHR3kEQ1LsHX7gHJoNNf0bz5z5mDaHBLzS+PGLCTmYqlU5/SZyeEgObV7z7bC/cnStYcY9H1DI1D5Udg==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "vite-plugin-full-reload": "^1.0.5" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "vite": "^3.0.0 || ^4.0.0" + } + }, "node_modules/launch-editor": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", @@ -6670,9 +7012,9 @@ } }, "node_modules/postcss": { - "version": "8.4.24", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", - "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", + "version": "8.4.27", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz", + "integrity": "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==", "funding": [ { "type": "opencollective", @@ -7484,12 +7826,6 @@ "@babel/runtime": "^7.8.4" } }, - "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/regexpu-core": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", @@ -7617,57 +7953,6 @@ "node": ">=4" } }, - "node_modules/resolve-url-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", - "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", - "dev": true, - "dependencies": { - "adjust-sourcemap-loader": "^4.0.0", - "convert-source-map": "^1.7.0", - "loader-utils": "^2.0.0", - "postcss": "^7.0.35", - "source-map": "0.6.1" - }, - "engines": { - "node": ">=8.9" - }, - "peerDependencies": { - "rework": "1.0.1", - "rework-visit": "1.0.0" - }, - "peerDependenciesMeta": { - "rework": { - "optional": true - }, - "rework-visit": { - "optional": true - } - } - }, - "node_modules/resolve-url-loader/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/resolve-url-loader/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/retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", @@ -7712,6 +7997,22 @@ "inherits": "^2.0.1" } }, + "node_modules/rollup": { + "version": "3.26.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.26.3.tgz", + "integrity": "sha512-7Tin0C8l86TkpcMtXvQu6saWH93nhG3dGQ1/+l5V2TDMceTxO7kDiK6GzbfLWNNxqJXm591PcEZUozZm51ogwQ==", + "dev": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -7778,78 +8079,6 @@ "node": ">=14.0.0" } }, - "node_modules/sass-loader": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-8.0.2.tgz", - "integrity": "sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==", - "dev": true, - "dependencies": { - "clone-deep": "^4.0.1", - "loader-utils": "^1.2.3", - "neo-async": "^2.6.1", - "schema-utils": "^2.6.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "fibers": ">= 3.1.0", - "node-sass": "^4.0.0", - "sass": "^1.3.0", - "webpack": "^4.36.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "fibers": { - "optional": true - }, - "node-sass": { - "optional": true - }, - "sass": { - "optional": true - } - } - }, - "node_modules/sass-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/sass-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/sass-loader/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/schema-utils": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", @@ -8771,6 +9000,74 @@ "node": ">= 0.8" } }, + "node_modules/vite": { + "version": "4.4.7", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.7.tgz", + "integrity": "sha512-6pYf9QJ1mHylfVh39HpuSfMPojPSKVxZvnclX1K1FyZ1PXDOcLBibdq5t1qxJSnL63ca8Wf4zts6mD8u8oc9Fw==", + "dev": true, + "dependencies": { + "esbuild": "^0.18.10", + "postcss": "^8.4.26", + "rollup": "^3.25.2" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-plugin-full-reload": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.0.5.tgz", + "integrity": "sha512-kVZFDFWr0DxiHn6MuDVTQf7gnWIdETGlZh0hvTiMXzRN80vgF4PKbONSq8U1d0WtHsKaFODTQgJeakLacoPZEQ==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "picomatch": "^2.3.1" + }, + "peerDependencies": { + "vite": "^2 || ^3 || ^4" + } + }, "node_modules/vm-browserify": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", diff --git a/package.json b/package.json index 33e82fd4..483c0a87 100644 --- a/package.json +++ b/package.json @@ -1,32 +1,22 @@ { "private": true, "scripts": { - "dev": "npm run development", - "development": "mix", - "watch": "mix watch", - "watch-poll": "mix watch -- --watch-options-poll=1000", - "hot": "mix watch --hot", - "prod": "npm run production", - "production": "mix --production" + "dev": "vite", + "build": "vite build" }, "devDependencies": { "@coreui/coreui": "^3.2.2", "@coreui/icons": "^1.0.1", "axios": "^0.21", "bootstrap": "^4.1.0", - "jquery": "^3.2", "laravel-mix": "^6.0.6", - "lodash": "^4.17.19", + "laravel-vite-plugin": "^0.7.8", "popper.js": "^1.12", - "postcss": "^8.1.14", - "resolve-url-loader": "^4.0.0", "sass": "^1.15.2", - "sass-loader": "^8.0.0", - "webpack-cli": "^4.7.2" + "vite": "^4.4.7" }, "dependencies": { - "autoprefixer": "^10.3.1", - "datatables.net-bs4": "^3.2.2", - "datatables.net-buttons-bs4": "^1.7.1" - } + "autoprefixer": "^10.3.1" + }, + "type": "module" } diff --git a/phpunit.xml b/phpunit.xml index 4ae4d979..06d14a56 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -12,7 +12,7 @@ ./tests/Feature - + ./app diff --git a/public/build/assets/app-296d3b42.css b/public/build/assets/app-296d3b42.css new file mode 100644 index 00000000..e078b8f6 --- /dev/null +++ b/public/build/assets/app-296d3b42.css @@ -0,0 +1,7 @@ +@charset "UTF-8";/*! + * CoreUI - HTML, CSS, and JavaScript UI Components Library + * @version v3.3.0 + * @link https://coreui.io/ + * Copyright (c) 2020 creativeLabs Łukasz Holeczek + * License MIT (https://coreui.io/license/) + */:root{--primary: #321fdb;--secondary: #ced2d8;--success: #2eb85c;--info: #39f;--warning: #f9b115;--danger: #e55353;--light: #ebedef;--dark: #636f83;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--breakpoint-xxl: 1400px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}.c-app{--primary: #321fdb;--secondary: #ced2d8;--success: #2eb85c;--info: #39f;--warning: #f9b115;--danger: #e55353;--light: #ebedef;--dark: #636f83;color:#3c4b64;background-color:#ebedef;--color: #3c4b64}*,*:before,*:after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,21,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;overflow-x:hidden;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-size:.875rem;font-weight:400;line-height:1.5;text-align:left;color:#3c4b64;background-color:#ebedef}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem}html:not([dir=rtl]) dd{margin-left:0}*[dir=rtl] dd{margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{text-decoration:none;background-color:transparent;color:#321fdb}@media (hover: hover),(-ms-high-contrast: none){a:hover{text-decoration:underline;color:#321fdb}}a:not([href]){color:inherit;text-decoration:none}@media (hover: hover),(-ms-high-contrast: none){a:not([href]):hover{color:inherit;text-decoration:none}}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#768192;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{padding:0;border-style:none}input[type=radio],input[type=checkbox]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.ps{overflow:hidden!important;-ms-touch-action:auto;touch-action:auto;-ms-overflow-style:none;overflow-anchor:none}.ps__rail-x{position:absolute;bottom:0;display:none;height:15px;opacity:0;transition:background-color .2s linear,opacity .2s linear}.ps__rail-y{position:absolute;display:none;width:15px;opacity:0;transition:background-color .2s linear,opacity .2s linear}html:not([dir=rtl]) .ps__rail-y{right:0}*[dir=rtl] .ps__rail-y{left:0}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:.6}.ps__rail-x:hover,.ps__rail-y:hover,.ps__rail-x:focus,.ps__rail-y:focus{background-color:#eee;opacity:.9}.ps__thumb-x{position:absolute;bottom:2px;height:6px;background-color:#aaa;border-radius:6px;transition:background-color .2s linear,height .2s ease-in-out}.ps__thumb-y{position:absolute;width:6px;background-color:#aaa;border-radius:6px;transition:background-color .2s linear,width .2s ease-in-out}html:not([dir=rtl]) .ps__thumb-y{right:2px}*[dir=rtl] .ps__thumb-y{left:2px}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x{height:11px;background-color:#999}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y{width:11px;background-color:#999}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.ps{overflow:auto!important}}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}.tippy-box[data-theme~=cpopover]{z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.765625rem;word-wrap:break-word;background-clip:padding-box;border:1px solid;border-radius:.3rem;background-color:#fff;border-color:#00001533}.tippy-box[data-theme~=cpopover]>.tippy-content{max-width:auto;padding:0;color:initial;text-align:initial;background-color:initial;border-radius:initial}.tippy-box[data-theme~=cpopover]>.tippy-arrow{position:absolute;display:block;color:transparent}.tippy-box[data-theme~=cpopover]>.tippy-arrow:before,.tippy-box[data-theme~=cpopover]>.tippy-arrow:after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.tippy-box[data-theme~=cpopover][data-placement^=top]>.tippy-arrow,.tippy-box[data-theme~=cpopover][data-placement^=bottom]>.tippy-arrow{width:1.6rem;height:.5rem;padding:0 .3rem}.tippy-box[data-theme~=cpopover][data-placement^=top]>.tippy-arrow:before,.tippy-box[data-theme~=cpopover][data-placement^=bottom]>.tippy-arrow:before{left:auto}.tippy-box[data-theme~=cpopover][data-placement^=right]>.tippy-arrow,.tippy-box[data-theme~=cpopover][data-placement^=left]>.tippy-arrow{width:.5rem;height:1.6rem;padding:.3rem 0;margin:0}.tippy-box[data-theme~=cpopover][data-placement^=top]>.tippy-arrow{bottom:calc(-.5rem - 1px)}.tippy-box[data-theme~=cpopover][data-placement^=top]>.tippy-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#00001540}.tippy-box[data-theme~=cpopover][data-placement^=top]>.tippy-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.tippy-box[data-theme~=cpopover][data-placement^=bottom]>.tippy-arrow{top:calc(-.5rem - 1px)}.tippy-box[data-theme~=cpopover][data-placement^=bottom]>.tippy-arrow:before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:#00001540}.tippy-box[data-theme~=cpopover][data-placement^=bottom]>.tippy-arrow:after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.tippy-box[data-theme~=cpopover][data-placement^=left]>.tippy-arrow{right:calc(-.5rem - 1px)}.tippy-box[data-theme~=cpopover][data-placement^=left]>.tippy-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#00001540}.tippy-box[data-theme~=cpopover][data-placement^=left]>.tippy-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.tippy-box[data-theme~=cpopover][data-placement^=right]>.tippy-arrow{left:calc(-.5rem - 1px)}.tippy-box[data-theme~=cpopover][data-placement^=right]>.tippy-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#00001540}.tippy-box[data-theme~=cpopover][data-placement^=right]>.tippy-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.tippy-iOS{cursor:pointer!important;-webkit-tap-highlight-color:transparent}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.765625rem;word-wrap:break-word;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-.4rem;left:0;border-width:.4rem .4rem 0;border-top-color:initial}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-.4rem;left:0;border-width:0 .4rem .4rem;border-bottom-color:initial}.tippy-box[data-placement^=left]>.tippy-arrow{right:0;width:.4rem;height:.8rem}.tippy-box[data-placement^=left]>.tippy-arrow:before{right:-.4rem;border-width:.4rem 0 .4rem .4rem;border-left-color:initial}.tippy-box[data-placement^=right]>.tippy-arrow{left:0;width:.4rem;height:.8rem}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-.4rem;border-width:.4rem .4rem .4rem 0;border-right-color:initial}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{position:absolute;display:block;width:.8rem;height:.4rem;color:#000015}.tippy-arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.tippy-content{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000015;border-radius:.25rem}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}html:not([dir=rtl]) .alert-dismissible{padding-right:3.8125rem}*[dir=rtl] .alert-dismissible{padding-left:3.8125rem}.alert-dismissible .close{position:absolute;top:0;padding:.75rem 1.25rem;color:inherit}html:not([dir=rtl]) .alert-dismissible .close{right:0}*[dir=rtl] .alert-dismissible .close{left:0}.alert-primary{color:#1a107c;background-color:#d6d2f8;border-color:#c6c0f5}.alert-primary hr{border-top-color:#b2aaf2}.alert-primary .alert-link{color:#110a4f}.alert-secondary{color:#6b6d7a;background-color:#f5f6f7;border-color:#f1f2f4}.alert-secondary hr{border-top-color:#e3e5e9}.alert-secondary .alert-link{color:#53555f}.alert-success{color:#18603a;background-color:#d5f1de;border-color:#c4ebd1}.alert-success hr{border-top-color:#b1e5c2}.alert-success .alert-link{color:#0e3721}.alert-info{color:#1b508f;background-color:#d6ebff;border-color:#c6e2ff}.alert-info hr{border-top-color:#add5ff}.alert-info .alert-link{color:#133864}.alert-warning{color:#815c15;background-color:#feefd0;border-color:#fde9bd}.alert-warning hr{border-top-color:#fce1a4}.alert-warning .alert-link{color:#553d0e}.alert-danger{color:#772b35;background-color:#fadddd;border-color:#f8cfcf}.alert-danger hr{border-top-color:#f5b9b9}.alert-danger .alert-link{color:#521d24}.alert-light{color:#7a7b86;background-color:#fbfbfc;border-color:#f9fafb}.alert-light hr{border-top-color:#eaedf1}.alert-light .alert-link{color:#62626b}.alert-dark{color:#333a4e;background-color:#e0e2e6;border-color:#d3d7dc}.alert-dark hr{border-top-color:#c5cad1}.alert-dark .alert-link{color:#1f232f}.c-avatar{position:relative;display:inline-flex;align-items:center;justify-content:center;border-radius:50em;width:36px;height:36px;font-size:14.4px}.c-avatar .c-avatar-status{width:10px;height:10px}.c-avatar-img{width:100%;height:auto;border-radius:50em}.c-avatar-status{position:absolute;bottom:0;display:block;border:1px solid #fff;border-radius:50em}html:not([dir=rtl]) .c-avatar-status{right:0}*[dir=rtl] .c-avatar-status{left:0}.c-avatar-sm{width:24px;height:24px;font-size:9.6px}.c-avatar-sm .c-avatar-status{width:8px;height:8px}.c-avatar-lg{width:48px;height:48px;font-size:19.2px}.c-avatar-lg .c-avatar-status{width:12px;height:12px}.c-avatar-xl{width:64px;height:64px;font-size:25.6px}.c-avatar-xl .c-avatar-status{width:14px;height:14px}.c-avatars-stack{display:flex}.c-avatars-stack .c-avatar{margin-right:-18px;transition:margin-right .3s}.c-avatars-stack .c-avatar:hover{margin-right:0}.c-avatars-stack .c-avatar-sm{margin-right:-12px}.c-avatars-stack .c-avatar-lg{margin-right:-24px}.c-avatars-stack .c-avatar-xl{margin-right:-32px}.c-avatar-rounded{border-radius:.25rem}.c-avatar-square{border-radius:0}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;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){.badge{transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#321fdb}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#2819ae}a.badge-primary:focus,a.badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem #321fdb80}.badge-secondary{color:#4f5d73;background-color:#ced2d8}a.badge-secondary:hover,a.badge-secondary:focus{color:#4f5d73;background-color:#b2b8c1}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem #ced2d880}.badge-success{color:#fff;background-color:#2eb85c}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#248f48}a.badge-success:focus,a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem #2eb85c80}.badge-info{color:#fff;background-color:#39f}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#0080ff}a.badge-info:focus,a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem #3399ff80}.badge-warning{color:#4f5d73;background-color:#f9b115}a.badge-warning:hover,a.badge-warning:focus{color:#4f5d73;background-color:#d69405}a.badge-warning:focus,a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem #f9b11580}.badge-danger{color:#fff;background-color:#e55353}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#de2727}a.badge-danger:focus,a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem #e5535380}.badge-light{color:#4f5d73;background-color:#ebedef}a.badge-light:hover,a.badge-light:focus{color:#4f5d73;background-color:#cfd4d8}a.badge-light:focus,a.badge-light.focus{outline:0;box-shadow:0 0 0 .2rem #ebedef80}.badge-dark{color:#fff;background-color:#636f83}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#4d5666}a.badge-dark:focus,a.badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem #636f8380}html:not([dir=rtl]) .breadcrumb-menu{margin-left:auto}html:not([dir=rtl]) .breadcrumb-menu{margin-right:auto}.breadcrumb-menu:before{display:none}.breadcrumb-menu .btn-group{vertical-align:top}.breadcrumb-menu .btn{padding:0 .75rem;vertical-align:top;border:0;color:#768192}.breadcrumb-menu .btn:hover,.breadcrumb-menu .btn.active,.breadcrumb-menu .show .btn{color:#3c4b64;background:transparent}.breadcrumb-menu .dropdown-menu{min-width:180px;line-height:1.5}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1.5rem;list-style:none;border-radius:0;border-bottom:1px solid;background-color:transparent;border-color:#d8dbe0}.breadcrumb-item{display:flex}html:not([dir=rtl]) .breadcrumb-item+.breadcrumb-item{padding-left:.5rem}*[dir=rtl] .breadcrumb-item+.breadcrumb-item{padding-right:.5rem}.breadcrumb-item+.breadcrumb-item:before{display:inline-block;color:#8a93a2;content:"/"}html:not([dir=rtl]) .breadcrumb-item+.breadcrumb-item:before{padding-right:.5rem}*[dir=rtl] .breadcrumb-item+.breadcrumb-item:before{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:none}.breadcrumb-item.active{color:#8a93a2}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}@media (hover: hover),(-ms-high-contrast: none){.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}html:not([dir=rtl]) .btn-group>.btn:not(:first-child),html:not([dir=rtl]) .btn-group>.btn-group:not(:first-child){margin-left:-1px}*[dir=rtl] .btn-group>.btn:not(:first-child),*[dir=rtl] .btn-group>.btn-group:not(:first-child){margin-right:-1px}html:not([dir=rtl]) .btn-group>.btn:not(:last-child):not(.dropdown-toggle),html:not([dir=rtl]) .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}html:not([dir=rtl]) .btn-group>.btn:not(:first-child),html:not([dir=rtl]) .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}*[dir=rtl] .btn-group>.btn:not(:last-child):not(.dropdown-toggle),*[dir=rtl] .btn-group>.btn-group:not(:last-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}*[dir=rtl] .btn-group>.btn:not(:first-child),*[dir=rtl] .btn-group>.btn-group:not(:first-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}html:not([dir=rtl]) .dropdown-toggle-split:after,html:not([dir=rtl]) .dropup .dropdown-toggle-split:after,html:not([dir=rtl]) .dropright .dropdown-toggle-split:after{margin-left:0}*[dir=rtl] .dropdown-toggle-split:after,*[dir=rtl] .dropup .dropdown-toggle-split:after,*[dir=rtl] .dropright .dropdown-toggle-split:after{margin-right:0}html:not([dir=rtl]) .dropleft .dropdown-toggle-split:before{margin-right:0}*[dir=rtl] .dropleft .dropdown-toggle-split:before{margin-left:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn{display:inline-block;font-weight:400;color:#3c4b64;text-align:center;vertical-align:middle;cursor:pointer;-webkit-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:.875rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn i,.btn .c-icon{width:.875rem;height:.875rem;margin:.21875rem 0}@media (prefers-reduced-motion: reduce){.btn{transition:none}}@media (hover: hover),(-ms-high-contrast: none){.btn:hover{color:#3c4b64;text-decoration:none}}.btn:focus,.btn.focus{outline:0;box-shadow:0 0 0 .2rem #321fdb40}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}.btn i,.btn .c-icon{height:.875rem;margin:.21875rem 0}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#321fdb;border-color:#321fdb}@media (hover: hover),(-ms-high-contrast: none){.btn-primary:hover{color:#fff;background-color:#2a1ab9;border-color:#2819ae}}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#2a1ab9;border-color:#2819ae;box-shadow:0 0 0 .2rem #5141e080}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#321fdb;border-color:#321fdb}.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#2819ae;border-color:#2517a3}.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #5141e080}.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#2819ae;border-color:#2517a3}.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #5141e080}.btn-secondary{color:#4f5d73;background-color:#ced2d8;border-color:#ced2d8}@media (hover: hover),(-ms-high-contrast: none){.btn-secondary:hover{color:#4f5d73;background-color:#b9bec7;border-color:#b2b8c1}}.btn-secondary:focus,.btn-secondary.focus{color:#4f5d73;background-color:#b9bec7;border-color:#b2b8c1;box-shadow:0 0 0 .2rem #bbc0c980}.btn-secondary.disabled,.btn-secondary:disabled{color:#4f5d73;background-color:#ced2d8;border-color:#ced2d8}.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#4f5d73;background-color:#b2b8c1;border-color:#abb1bc}.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #bbc0c980}.show>.btn-secondary.dropdown-toggle{color:#4f5d73;background-color:#b2b8c1;border-color:#abb1bc}.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #bbc0c980}.btn-success{color:#fff;background-color:#2eb85c;border-color:#2eb85c}@media (hover: hover),(-ms-high-contrast: none){.btn-success:hover{color:#fff;background-color:#26994d;border-color:#248f48}}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#26994d;border-color:#248f48;box-shadow:0 0 0 .2rem #4dc37480}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#2eb85c;border-color:#2eb85c}.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#248f48;border-color:#218543}.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #4dc37480}.show>.btn-success.dropdown-toggle{color:#fff;background-color:#248f48;border-color:#218543}.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #4dc37480}.btn-info{color:#fff;background-color:#39f;border-color:#39f}@media (hover: hover),(-ms-high-contrast: none){.btn-info:hover{color:#fff;background-color:#0d86ff;border-color:#0080ff}}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#0d86ff;border-color:#0080ff;box-shadow:0 0 0 .2rem #52a8ff80}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#39f;border-color:#39f}.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#0080ff;border-color:#0079f2}.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #52a8ff80}.show>.btn-info.dropdown-toggle{color:#fff;background-color:#0080ff;border-color:#0079f2}.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #52a8ff80}.btn-warning{color:#4f5d73;background-color:#f9b115;border-color:#f9b115}@media (hover: hover),(-ms-high-contrast: none){.btn-warning:hover{color:#4f5d73;background-color:#e29c06;border-color:#d69405}}.btn-warning:focus,.btn-warning.focus{color:#4f5d73;background-color:#e29c06;border-color:#d69405;box-shadow:0 0 0 .2rem #e0a42380}.btn-warning.disabled,.btn-warning:disabled{color:#4f5d73;background-color:#f9b115;border-color:#f9b115}.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#4f5d73;background-color:#d69405;border-color:#c98b05}.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #e0a42380}.show>.btn-warning.dropdown-toggle{color:#4f5d73;background-color:#d69405;border-color:#c98b05}.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #e0a42380}.btn-danger{color:#fff;background-color:#e55353;border-color:#e55353}@media (hover: hover),(-ms-high-contrast: none){.btn-danger:hover{color:#fff;background-color:#e03232;border-color:#de2727}}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#e03232;border-color:#de2727;box-shadow:0 0 0 .2rem #e96d6d80}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#e55353;border-color:#e55353}.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#de2727;border-color:#d82121}.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #e96d6d80}.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#de2727;border-color:#d82121}.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #e96d6d80}.btn-light{color:#4f5d73;background-color:#ebedef;border-color:#ebedef}@media (hover: hover),(-ms-high-contrast: none){.btn-light:hover{color:#4f5d73;background-color:#d6dade;border-color:#cfd4d8}}.btn-light:focus,.btn-light.focus{color:#4f5d73;background-color:#d6dade;border-color:#cfd4d8;box-shadow:0 0 0 .2rem #d4d7dc80}.btn-light.disabled,.btn-light:disabled{color:#4f5d73;background-color:#ebedef;border-color:#ebedef}.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#4f5d73;background-color:#cfd4d8;border-color:#c8cdd3}.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #d4d7dc80}.show>.btn-light.dropdown-toggle{color:#4f5d73;background-color:#cfd4d8;border-color:#c8cdd3}.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #d4d7dc80}.btn-dark{color:#fff;background-color:#636f83;border-color:#636f83}@media (hover: hover),(-ms-high-contrast: none){.btn-dark:hover{color:#fff;background-color:#535d6d;border-color:#4d5666}}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#535d6d;border-color:#4d5666;box-shadow:0 0 0 .2rem #7a859680}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#636f83;border-color:#636f83}.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#4d5666;border-color:#48505f}.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #7a859680}.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#4d5666;border-color:#48505f}.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #7a859680}.btn-transparent{color:#fffc}.btn-transparent:hover{color:#fff}.btn-outline-primary{color:#321fdb;border-color:#321fdb}@media (hover: hover),(-ms-high-contrast: none){.btn-outline-primary:hover{color:#fff;background-color:#321fdb;border-color:#321fdb}}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 .2rem #321fdb80}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#321fdb;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active{color:#fff;background-color:#321fdb;border-color:#321fdb}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #321fdb80}.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#321fdb;border-color:#321fdb}.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #321fdb80}.btn-outline-secondary{color:#ced2d8;border-color:#ced2d8}@media (hover: hover),(-ms-high-contrast: none){.btn-outline-secondary:hover{color:#4f5d73;background-color:#ced2d8;border-color:#ced2d8}}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 .2rem #ced2d880}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#ced2d8;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active{color:#4f5d73;background-color:#ced2d8;border-color:#ced2d8}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #ced2d880}.show>.btn-outline-secondary.dropdown-toggle{color:#4f5d73;background-color:#ced2d8;border-color:#ced2d8}.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #ced2d880}.btn-outline-success{color:#2eb85c;border-color:#2eb85c}@media (hover: hover),(-ms-high-contrast: none){.btn-outline-success:hover{color:#fff;background-color:#2eb85c;border-color:#2eb85c}}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 .2rem #2eb85c80}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#2eb85c;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active{color:#fff;background-color:#2eb85c;border-color:#2eb85c}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #2eb85c80}.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#2eb85c;border-color:#2eb85c}.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #2eb85c80}.btn-outline-info{color:#39f;border-color:#39f}@media (hover: hover),(-ms-high-contrast: none){.btn-outline-info:hover{color:#fff;background-color:#39f;border-color:#39f}}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 .2rem #3399ff80}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#39f;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active{color:#fff;background-color:#39f;border-color:#39f}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #3399ff80}.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#39f;border-color:#39f}.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #3399ff80}.btn-outline-warning{color:#f9b115;border-color:#f9b115}@media (hover: hover),(-ms-high-contrast: none){.btn-outline-warning:hover{color:#4f5d73;background-color:#f9b115;border-color:#f9b115}}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 .2rem #f9b11580}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#f9b115;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active{color:#4f5d73;background-color:#f9b115;border-color:#f9b115}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #f9b11580}.show>.btn-outline-warning.dropdown-toggle{color:#4f5d73;background-color:#f9b115;border-color:#f9b115}.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #f9b11580}.btn-outline-danger{color:#e55353;border-color:#e55353}@media (hover: hover),(-ms-high-contrast: none){.btn-outline-danger:hover{color:#fff;background-color:#e55353;border-color:#e55353}}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 .2rem #e5535380}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#e55353;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active{color:#fff;background-color:#e55353;border-color:#e55353}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #e5535380}.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#e55353;border-color:#e55353}.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #e5535380}.btn-outline-light{color:#ebedef;border-color:#ebedef}@media (hover: hover),(-ms-high-contrast: none){.btn-outline-light:hover{color:#4f5d73;background-color:#ebedef;border-color:#ebedef}}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 .2rem #ebedef80}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#ebedef;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active{color:#4f5d73;background-color:#ebedef;border-color:#ebedef}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #ebedef80}.show>.btn-outline-light.dropdown-toggle{color:#4f5d73;background-color:#ebedef;border-color:#ebedef}.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #ebedef80}.btn-outline-dark{color:#636f83;border-color:#636f83}@media (hover: hover),(-ms-high-contrast: none){.btn-outline-dark:hover{color:#fff;background-color:#636f83;border-color:#636f83}}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 .2rem #636f8380}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#636f83;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active{color:#fff;background-color:#636f83;border-color:#636f83}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #636f8380}.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#636f83;border-color:#636f83}.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #636f8380}.btn-link{font-weight:400;color:#321fdb;text-decoration:none}@media (hover: hover),(-ms-high-contrast: none){.btn-link:hover{color:#231698;text-decoration:underline}}.btn-link:focus,.btn-link.focus{text-decoration:underline}.btn-link:disabled,.btn-link.disabled{color:#8a93a2;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.09375rem;line-height:1.5;border-radius:.3rem}.btn-lg i,.btn-group-lg>.btn i,.btn-lg .c-icon,.btn-group-lg>.btn .c-icon{width:1.09375rem;height:1.09375rem;margin:.2734375rem 0}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.765625rem;line-height:1.5;border-radius:.2rem}.btn-sm i,.btn-group-sm>.btn i,.btn-sm .c-icon,.btn-group-sm>.btn .c-icon{width:.765625rem;height:.765625rem;margin:.19140625rem 0}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.btn-pill{border-radius:50em}.btn-square{border-radius:0}.btn-ghost-primary{color:#321fdb;background-color:transparent;background-image:none;border-color:transparent}.btn-ghost-primary:hover{color:#fff;background-color:#321fdb;border-color:#321fdb}.btn-ghost-primary:focus,.btn-ghost-primary.focus{box-shadow:0 0 0 .2rem #321fdb80}.btn-ghost-primary.disabled,.btn-ghost-primary:disabled{color:#321fdb;background-color:transparent;border-color:transparent}.btn-ghost-primary:not(:disabled):not(.disabled):active,.btn-ghost-primary:not(:disabled):not(.disabled).active{color:#fff;background-color:#321fdb;border-color:#321fdb}.btn-ghost-primary:not(:disabled):not(.disabled):active:focus,.btn-ghost-primary:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #321fdb80}.show>.btn-ghost-primary.dropdown-toggle{color:#fff;background-color:#321fdb;border-color:#321fdb}.show>.btn-ghost-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #321fdb80}.btn-ghost-secondary{color:#ced2d8;background-color:transparent;background-image:none;border-color:transparent}.btn-ghost-secondary:hover{color:#4f5d73;background-color:#ced2d8;border-color:#ced2d8}.btn-ghost-secondary:focus,.btn-ghost-secondary.focus{box-shadow:0 0 0 .2rem #ced2d880}.btn-ghost-secondary.disabled,.btn-ghost-secondary:disabled{color:#ced2d8;background-color:transparent;border-color:transparent}.btn-ghost-secondary:not(:disabled):not(.disabled):active,.btn-ghost-secondary:not(:disabled):not(.disabled).active{color:#4f5d73;background-color:#ced2d8;border-color:#ced2d8}.btn-ghost-secondary:not(:disabled):not(.disabled):active:focus,.btn-ghost-secondary:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #ced2d880}.show>.btn-ghost-secondary.dropdown-toggle{color:#4f5d73;background-color:#ced2d8;border-color:#ced2d8}.show>.btn-ghost-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #ced2d880}.btn-ghost-success{color:#2eb85c;background-color:transparent;background-image:none;border-color:transparent}.btn-ghost-success:hover{color:#fff;background-color:#2eb85c;border-color:#2eb85c}.btn-ghost-success:focus,.btn-ghost-success.focus{box-shadow:0 0 0 .2rem #2eb85c80}.btn-ghost-success.disabled,.btn-ghost-success:disabled{color:#2eb85c;background-color:transparent;border-color:transparent}.btn-ghost-success:not(:disabled):not(.disabled):active,.btn-ghost-success:not(:disabled):not(.disabled).active{color:#fff;background-color:#2eb85c;border-color:#2eb85c}.btn-ghost-success:not(:disabled):not(.disabled):active:focus,.btn-ghost-success:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #2eb85c80}.show>.btn-ghost-success.dropdown-toggle{color:#fff;background-color:#2eb85c;border-color:#2eb85c}.show>.btn-ghost-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #2eb85c80}.btn-ghost-info{color:#39f;background-color:transparent;background-image:none;border-color:transparent}.btn-ghost-info:hover{color:#fff;background-color:#39f;border-color:#39f}.btn-ghost-info:focus,.btn-ghost-info.focus{box-shadow:0 0 0 .2rem #3399ff80}.btn-ghost-info.disabled,.btn-ghost-info:disabled{color:#39f;background-color:transparent;border-color:transparent}.btn-ghost-info:not(:disabled):not(.disabled):active,.btn-ghost-info:not(:disabled):not(.disabled).active{color:#fff;background-color:#39f;border-color:#39f}.btn-ghost-info:not(:disabled):not(.disabled):active:focus,.btn-ghost-info:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #3399ff80}.show>.btn-ghost-info.dropdown-toggle{color:#fff;background-color:#39f;border-color:#39f}.show>.btn-ghost-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #3399ff80}.btn-ghost-warning{color:#f9b115;background-color:transparent;background-image:none;border-color:transparent}.btn-ghost-warning:hover{color:#4f5d73;background-color:#f9b115;border-color:#f9b115}.btn-ghost-warning:focus,.btn-ghost-warning.focus{box-shadow:0 0 0 .2rem #f9b11580}.btn-ghost-warning.disabled,.btn-ghost-warning:disabled{color:#f9b115;background-color:transparent;border-color:transparent}.btn-ghost-warning:not(:disabled):not(.disabled):active,.btn-ghost-warning:not(:disabled):not(.disabled).active{color:#4f5d73;background-color:#f9b115;border-color:#f9b115}.btn-ghost-warning:not(:disabled):not(.disabled):active:focus,.btn-ghost-warning:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #f9b11580}.show>.btn-ghost-warning.dropdown-toggle{color:#4f5d73;background-color:#f9b115;border-color:#f9b115}.show>.btn-ghost-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #f9b11580}.btn-ghost-danger{color:#e55353;background-color:transparent;background-image:none;border-color:transparent}.btn-ghost-danger:hover{color:#fff;background-color:#e55353;border-color:#e55353}.btn-ghost-danger:focus,.btn-ghost-danger.focus{box-shadow:0 0 0 .2rem #e5535380}.btn-ghost-danger.disabled,.btn-ghost-danger:disabled{color:#e55353;background-color:transparent;border-color:transparent}.btn-ghost-danger:not(:disabled):not(.disabled):active,.btn-ghost-danger:not(:disabled):not(.disabled).active{color:#fff;background-color:#e55353;border-color:#e55353}.btn-ghost-danger:not(:disabled):not(.disabled):active:focus,.btn-ghost-danger:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #e5535380}.show>.btn-ghost-danger.dropdown-toggle{color:#fff;background-color:#e55353;border-color:#e55353}.show>.btn-ghost-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #e5535380}.btn-ghost-light{color:#ebedef;background-color:transparent;background-image:none;border-color:transparent}.btn-ghost-light:hover{color:#4f5d73;background-color:#ebedef;border-color:#ebedef}.btn-ghost-light:focus,.btn-ghost-light.focus{box-shadow:0 0 0 .2rem #ebedef80}.btn-ghost-light.disabled,.btn-ghost-light:disabled{color:#ebedef;background-color:transparent;border-color:transparent}.btn-ghost-light:not(:disabled):not(.disabled):active,.btn-ghost-light:not(:disabled):not(.disabled).active{color:#4f5d73;background-color:#ebedef;border-color:#ebedef}.btn-ghost-light:not(:disabled):not(.disabled):active:focus,.btn-ghost-light:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #ebedef80}.show>.btn-ghost-light.dropdown-toggle{color:#4f5d73;background-color:#ebedef;border-color:#ebedef}.show>.btn-ghost-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #ebedef80}.btn-ghost-dark{color:#636f83;background-color:transparent;background-image:none;border-color:transparent}.btn-ghost-dark:hover{color:#fff;background-color:#636f83;border-color:#636f83}.btn-ghost-dark:focus,.btn-ghost-dark.focus{box-shadow:0 0 0 .2rem #636f8380}.btn-ghost-dark.disabled,.btn-ghost-dark:disabled{color:#636f83;background-color:transparent;border-color:transparent}.btn-ghost-dark:not(:disabled):not(.disabled):active,.btn-ghost-dark:not(:disabled):not(.disabled).active{color:#fff;background-color:#636f83;border-color:#636f83}.btn-ghost-dark:not(:disabled):not(.disabled):active:focus,.btn-ghost-dark:not(:disabled):not(.disabled).active:focus{box-shadow:0 0 0 .2rem #636f8380}.show>.btn-ghost-dark.dropdown-toggle{color:#fff;background-color:#636f83;border-color:#636f83}.show>.btn-ghost-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #636f8380}.btn-facebook{color:#fff;background-color:#3b5998;border-color:#3b5998}@media (hover: hover),(-ms-high-contrast: none){.btn-facebook:hover{color:#fff;background-color:#30497c;border-color:#2d4373}}.btn-facebook:focus,.btn-facebook.focus{color:#fff;background-color:#30497c;border-color:#2d4373;box-shadow:0 0 0 .2rem #5872a780}.btn-facebook.disabled,.btn-facebook:disabled{color:#fff;background-color:#3b5998;border-color:#3b5998}.btn-facebook:not(:disabled):not(.disabled):active,.show>.btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#293e6a}.btn-facebook:not(:disabled):not(.disabled):active:focus,.show>.btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #5872a780}.show>.btn-facebook.dropdown-toggle{color:#fff;background-color:#2d4373;border-color:#293e6a}.show>.btn-facebook.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #5872a780}.btn-twitter{color:#fff;background-color:#00aced;border-color:#00aced}@media (hover: hover),(-ms-high-contrast: none){.btn-twitter:hover{color:#fff;background-color:#0090c7;border-color:#0087ba}}.btn-twitter:focus,.btn-twitter.focus{color:#fff;background-color:#0090c7;border-color:#0087ba;box-shadow:0 0 0 .2rem #26b8f080}.btn-twitter.disabled,.btn-twitter:disabled{color:#fff;background-color:#00aced;border-color:#00aced}.btn-twitter:not(:disabled):not(.disabled):active,.show>.btn-twitter.dropdown-toggle{color:#fff;background-color:#0087ba;border-color:#007ead}.btn-twitter:not(:disabled):not(.disabled):active:focus,.show>.btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #26b8f080}.show>.btn-twitter.dropdown-toggle{color:#fff;background-color:#0087ba;border-color:#007ead}.show>.btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #26b8f080}.btn-linkedin{color:#fff;background-color:#4875b4;border-color:#4875b4}@media (hover: hover),(-ms-high-contrast: none){.btn-linkedin:hover{color:#fff;background-color:#3d6399;border-color:#395d90}}.btn-linkedin:focus,.btn-linkedin.focus{color:#fff;background-color:#3d6399;border-color:#395d90;box-shadow:0 0 0 .2rem #638abf80}.btn-linkedin.disabled,.btn-linkedin:disabled{color:#fff;background-color:#4875b4;border-color:#4875b4}.btn-linkedin:not(:disabled):not(.disabled):active,.show>.btn-linkedin.dropdown-toggle{color:#fff;background-color:#395d90;border-color:#365786}.btn-linkedin:not(:disabled):not(.disabled):active:focus,.show>.btn-linkedin.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #638abf80}.show>.btn-linkedin.dropdown-toggle{color:#fff;background-color:#395d90;border-color:#365786}.show>.btn-linkedin.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #638abf80}.btn-flickr{color:#fff;background-color:#ff0084;border-color:#ff0084}@media (hover: hover),(-ms-high-contrast: none){.btn-flickr:hover{color:#fff;background-color:#d90070;border-color:#cc006a}}.btn-flickr:focus,.btn-flickr.focus{color:#fff;background-color:#d90070;border-color:#cc006a;box-shadow:0 0 0 .2rem #ff269680}.btn-flickr.disabled,.btn-flickr:disabled{color:#fff;background-color:#ff0084;border-color:#ff0084}.btn-flickr:not(:disabled):not(.disabled):active,.show>.btn-flickr.dropdown-toggle{color:#fff;background-color:#cc006a;border-color:#bf0063}.btn-flickr:not(:disabled):not(.disabled):active:focus,.show>.btn-flickr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #ff269680}.show>.btn-flickr.dropdown-toggle{color:#fff;background-color:#cc006a;border-color:#bf0063}.show>.btn-flickr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #ff269680}.btn-tumblr{color:#fff;background-color:#32506d;border-color:#32506d}@media (hover: hover),(-ms-high-contrast: none){.btn-tumblr:hover{color:#fff;background-color:#263d53;border-color:#22364a}}.btn-tumblr:focus,.btn-tumblr.focus{color:#fff;background-color:#263d53;border-color:#22364a;box-shadow:0 0 0 .2rem #516a8380}.btn-tumblr.disabled,.btn-tumblr:disabled{color:#fff;background-color:#32506d;border-color:#32506d}.btn-tumblr:not(:disabled):not(.disabled):active,.show>.btn-tumblr.dropdown-toggle{color:#fff;background-color:#22364a;border-color:#1e3041}.btn-tumblr:not(:disabled):not(.disabled):active:focus,.show>.btn-tumblr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #516a8380}.show>.btn-tumblr.dropdown-toggle{color:#fff;background-color:#22364a;border-color:#1e3041}.show>.btn-tumblr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #516a8380}.btn-xing{color:#fff;background-color:#026466;border-color:#026466}@media (hover: hover),(-ms-high-contrast: none){.btn-xing:hover{color:#fff;background-color:#013f40;border-color:#013334}}.btn-xing:focus,.btn-xing.focus{color:#fff;background-color:#013f40;border-color:#013334;box-shadow:0 0 0 .2rem #287b7d80}.btn-xing.disabled,.btn-xing:disabled{color:#fff;background-color:#026466;border-color:#026466}.btn-xing:not(:disabled):not(.disabled):active,.show>.btn-xing.dropdown-toggle{color:#fff;background-color:#013334;border-color:#012727}.btn-xing:not(:disabled):not(.disabled):active:focus,.show>.btn-xing.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #287b7d80}.show>.btn-xing.dropdown-toggle{color:#fff;background-color:#013334;border-color:#012727}.show>.btn-xing.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #287b7d80}.btn-github{color:#fff;background-color:#4183c4;border-color:#4183c4}@media (hover: hover),(-ms-high-contrast: none){.btn-github:hover{color:#fff;background-color:#3570aa;border-color:#3269a0}}.btn-github:focus,.btn-github.focus{color:#fff;background-color:#3570aa;border-color:#3269a0;box-shadow:0 0 0 .2rem #5e96cd80}.btn-github.disabled,.btn-github:disabled{color:#fff;background-color:#4183c4;border-color:#4183c4}.btn-github:not(:disabled):not(.disabled):active,.show>.btn-github.dropdown-toggle{color:#fff;background-color:#3269a0;border-color:#2f6397}.btn-github:not(:disabled):not(.disabled):active:focus,.show>.btn-github.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #5e96cd80}.show>.btn-github.dropdown-toggle{color:#fff;background-color:#3269a0;border-color:#2f6397}.show>.btn-github.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #5e96cd80}.btn-stack-overflow{color:#fff;background-color:#fe7a15;border-color:#fe7a15}@media (hover: hover),(-ms-high-contrast: none){.btn-stack-overflow:hover{color:#fff;background-color:#ec6701;border-color:#df6101}}.btn-stack-overflow:focus,.btn-stack-overflow.focus{color:#fff;background-color:#ec6701;border-color:#df6101;box-shadow:0 0 0 .2rem #fe8e3880}.btn-stack-overflow.disabled,.btn-stack-overflow:disabled{color:#fff;background-color:#fe7a15;border-color:#fe7a15}.btn-stack-overflow:not(:disabled):not(.disabled):active,.show>.btn-stack-overflow.dropdown-toggle{color:#fff;background-color:#df6101;border-color:#d25c01}.btn-stack-overflow:not(:disabled):not(.disabled):active:focus,.show>.btn-stack-overflow.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #fe8e3880}.show>.btn-stack-overflow.dropdown-toggle{color:#fff;background-color:#df6101;border-color:#d25c01}.show>.btn-stack-overflow.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #fe8e3880}.btn-youtube{color:#fff;background-color:#b00;border-color:#b00}@media (hover: hover),(-ms-high-contrast: none){.btn-youtube:hover{color:#fff;background-color:#950000;border-color:#800}}.btn-youtube:focus,.btn-youtube.focus{color:#fff;background-color:#950000;border-color:#800;box-shadow:0 0 0 .2rem #c5262680}.btn-youtube.disabled,.btn-youtube:disabled{color:#fff;background-color:#b00;border-color:#b00}.btn-youtube:not(:disabled):not(.disabled):active,.show>.btn-youtube.dropdown-toggle{color:#fff;background-color:#800;border-color:#7b0000}.btn-youtube:not(:disabled):not(.disabled):active:focus,.show>.btn-youtube.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #c5262680}.show>.btn-youtube.dropdown-toggle{color:#fff;background-color:#800;border-color:#7b0000}.show>.btn-youtube.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #c5262680}.btn-dribbble{color:#fff;background-color:#ea4c89;border-color:#ea4c89}@media (hover: hover),(-ms-high-contrast: none){.btn-dribbble:hover{color:#fff;background-color:#e62a72;border-color:#e51e6b}}.btn-dribbble:focus,.btn-dribbble.focus{color:#fff;background-color:#e62a72;border-color:#e51e6b;box-shadow:0 0 0 .2rem #ed679b80}.btn-dribbble.disabled,.btn-dribbble:disabled{color:#fff;background-color:#ea4c89;border-color:#ea4c89}.btn-dribbble:not(:disabled):not(.disabled):active,.show>.btn-dribbble.dropdown-toggle{color:#fff;background-color:#e51e6b;border-color:#dc1a65}.btn-dribbble:not(:disabled):not(.disabled):active:focus,.show>.btn-dribbble.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #ed679b80}.show>.btn-dribbble.dropdown-toggle{color:#fff;background-color:#e51e6b;border-color:#dc1a65}.show>.btn-dribbble.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #ed679b80}.btn-instagram{color:#fff;background-color:#517fa4;border-color:#517fa4}@media (hover: hover),(-ms-high-contrast: none){.btn-instagram:hover{color:#fff;background-color:#446b8a;border-color:#406582}}.btn-instagram:focus,.btn-instagram.focus{color:#fff;background-color:#446b8a;border-color:#406582;box-shadow:0 0 0 .2rem #6b92b280}.btn-instagram.disabled,.btn-instagram:disabled{color:#fff;background-color:#517fa4;border-color:#517fa4}.btn-instagram:not(:disabled):not(.disabled):active,.show>.btn-instagram.dropdown-toggle{color:#fff;background-color:#406582;border-color:#3c5e79}.btn-instagram:not(:disabled):not(.disabled):active:focus,.show>.btn-instagram.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #6b92b280}.show>.btn-instagram.dropdown-toggle{color:#fff;background-color:#406582;border-color:#3c5e79}.show>.btn-instagram.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #6b92b280}.btn-pinterest{color:#fff;background-color:#cb2027;border-color:#cb2027}@media (hover: hover),(-ms-high-contrast: none){.btn-pinterest:hover{color:#fff;background-color:#aa1b21;border-color:#9f191f}}.btn-pinterest:focus,.btn-pinterest.focus{color:#fff;background-color:#aa1b21;border-color:#9f191f;box-shadow:0 0 0 .2rem #d3414780}.btn-pinterest.disabled,.btn-pinterest:disabled{color:#fff;background-color:#cb2027;border-color:#cb2027}.btn-pinterest:not(:disabled):not(.disabled):active,.show>.btn-pinterest.dropdown-toggle{color:#fff;background-color:#9f191f;border-color:#94171c}.btn-pinterest:not(:disabled):not(.disabled):active:focus,.show>.btn-pinterest.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #d3414780}.show>.btn-pinterest.dropdown-toggle{color:#fff;background-color:#9f191f;border-color:#94171c}.show>.btn-pinterest.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #d3414780}.btn-vk{color:#fff;background-color:#45668e;border-color:#45668e}@media (hover: hover),(-ms-high-contrast: none){.btn-vk:hover{color:#fff;background-color:#385474;border-color:#344d6c}}.btn-vk:focus,.btn-vk.focus{color:#fff;background-color:#385474;border-color:#344d6c;box-shadow:0 0 0 .2rem #617d9f80}.btn-vk.disabled,.btn-vk:disabled{color:#fff;background-color:#45668e;border-color:#45668e}.btn-vk:not(:disabled):not(.disabled):active,.show>.btn-vk.dropdown-toggle{color:#fff;background-color:#344d6c;border-color:#304763}.btn-vk:not(:disabled):not(.disabled):active:focus,.show>.btn-vk.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #617d9f80}.show>.btn-vk.dropdown-toggle{color:#fff;background-color:#344d6c;border-color:#304763}.show>.btn-vk.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #617d9f80}.btn-yahoo{color:#fff;background-color:#400191;border-color:#400191}@media (hover: hover),(-ms-high-contrast: none){.btn-yahoo:hover{color:#fff;background-color:#2f016b;border-color:#2a015e}}.btn-yahoo:focus,.btn-yahoo.focus{color:#fff;background-color:#2f016b;border-color:#2a015e;box-shadow:0 0 0 .2rem #5d27a280}.btn-yahoo.disabled,.btn-yahoo:disabled{color:#fff;background-color:#400191;border-color:#400191}.btn-yahoo:not(:disabled):not(.disabled):active,.show>.btn-yahoo.dropdown-toggle{color:#fff;background-color:#2a015e;border-color:#240152}.btn-yahoo:not(:disabled):not(.disabled):active:focus,.show>.btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #5d27a280}.show>.btn-yahoo.dropdown-toggle{color:#fff;background-color:#2a015e;border-color:#240152}.show>.btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #5d27a280}.btn-behance{color:#fff;background-color:#1769ff;border-color:#1769ff}@media (hover: hover),(-ms-high-contrast: none){.btn-behance:hover{color:#fff;background-color:#0055f0;border-color:#0050e3}}.btn-behance:focus,.btn-behance.focus{color:#fff;background-color:#0055f0;border-color:#0050e3;box-shadow:0 0 0 .2rem #3a80ff80}.btn-behance.disabled,.btn-behance:disabled{color:#fff;background-color:#1769ff;border-color:#1769ff}.btn-behance:not(:disabled):not(.disabled):active,.show>.btn-behance.dropdown-toggle{color:#fff;background-color:#0050e3;border-color:#004cd6}.btn-behance:not(:disabled):not(.disabled):active:focus,.show>.btn-behance.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #3a80ff80}.show>.btn-behance.dropdown-toggle{color:#fff;background-color:#0050e3;border-color:#004cd6}.show>.btn-behance.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #3a80ff80}.btn-reddit{color:#fff;background-color:#ff4500;border-color:#ff4500}@media (hover: hover),(-ms-high-contrast: none){.btn-reddit:hover{color:#fff;background-color:#d93b00;border-color:#cc3700}}.btn-reddit:focus,.btn-reddit.focus{color:#fff;background-color:#d93b00;border-color:#cc3700;box-shadow:0 0 0 .2rem #ff612680}.btn-reddit.disabled,.btn-reddit:disabled{color:#fff;background-color:#ff4500;border-color:#ff4500}.btn-reddit:not(:disabled):not(.disabled):active,.show>.btn-reddit.dropdown-toggle{color:#fff;background-color:#cc3700;border-color:#bf3400}.btn-reddit:not(:disabled):not(.disabled):active:focus,.show>.btn-reddit.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #ff612680}.show>.btn-reddit.dropdown-toggle{color:#fff;background-color:#cc3700;border-color:#bf3400}.show>.btn-reddit.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #ff612680}.btn-vimeo{color:#4f5d73;background-color:#aad450;border-color:#aad450}@media (hover: hover),(-ms-high-contrast: none){.btn-vimeo:hover{color:#4f5d73;background-color:#9bcc32;border-color:#93c130}}.btn-vimeo:focus,.btn-vimeo.focus{color:#4f5d73;background-color:#9bcc32;border-color:#93c130;box-shadow:0 0 0 .2rem #9cc25580}.btn-vimeo.disabled,.btn-vimeo:disabled{color:#4f5d73;background-color:#aad450;border-color:#aad450}.btn-vimeo:not(:disabled):not(.disabled):active,.show>.btn-vimeo.dropdown-toggle{color:#4f5d73;background-color:#93c130;border-color:#8bb72d}.btn-vimeo:not(:disabled):not(.disabled):active:focus,.show>.btn-vimeo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #9cc25580}.show>.btn-vimeo.dropdown-toggle{color:#4f5d73;background-color:#93c130;border-color:#8bb72d}.show>.btn-vimeo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem #9cc25580}.c-callout{position:relative;padding:0 1rem;margin:1rem 0;border-radius:.25rem}html:not([dir=rtl]) .c-callout{border-left:4px solid #d8dbe0}*[dir=rtl] .c-callout{border-right:4px solid #d8dbe0}.c-callout-bordered{border:1px solid #d8dbe0;border-left-width:4px}.c-callout code{border-radius:.25rem}.c-callout h4{margin-top:0;margin-bottom:.25rem}.c-callout p:last-child{margin-bottom:0}.c-callout+.c-callout{margin-top:-.25rem}html:not([dir=rtl]) .c-callout-primary{border-left-color:#321fdb}*[dir=rtl] .c-callout-primary{border-right-color:#321fdb}.c-callout-primary h4{color:#321fdb}html:not([dir=rtl]) .c-callout-secondary{border-left-color:#ced2d8}*[dir=rtl] .c-callout-secondary{border-right-color:#ced2d8}.c-callout-secondary h4{color:#ced2d8}html:not([dir=rtl]) .c-callout-success{border-left-color:#2eb85c}*[dir=rtl] .c-callout-success{border-right-color:#2eb85c}.c-callout-success h4{color:#2eb85c}html:not([dir=rtl]) .c-callout-info{border-left-color:#39f}*[dir=rtl] .c-callout-info{border-right-color:#39f}.c-callout-info h4{color:#39f}html:not([dir=rtl]) .c-callout-warning{border-left-color:#f9b115}*[dir=rtl] .c-callout-warning{border-right-color:#f9b115}.c-callout-warning h4{color:#f9b115}html:not([dir=rtl]) .c-callout-danger{border-left-color:#e55353}*[dir=rtl] .c-callout-danger{border-right-color:#e55353}.c-callout-danger h4{color:#e55353}html:not([dir=rtl]) .c-callout-light{border-left-color:#ebedef}*[dir=rtl] .c-callout-light{border-right-color:#ebedef}.c-callout-light h4{color:#ebedef}html:not([dir=rtl]) .c-callout-dark{border-left-color:#636f83}*[dir=rtl] .c-callout-dark{border-right-color:#636f83}.c-callout-dark h4{color:#636f83}.card{position:relative;display:flex;flex-direction:column;min-width:0;margin-bottom:1.5rem;word-wrap:break-word;background-clip:border-box;border:1px solid;border-radius:.25rem;background-color:#fff;border-color:#d8dbe0}.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(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card.drag,.card .drag{cursor:move}.card[class^=bg-],.card[class*=" bg-"]{border-color:#00000020}.card[class^=bg-] .card-header,.card[class*=" bg-"] .card-header{background-color:#0000000d;border-color:#00000020}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}@media (hover: hover),(-ms-high-contrast: none){.card-link:hover{text-decoration:none}}html:not([dir=rtl]) .card-link+.card-link{margin-left:1.25rem}*[dir=rtl] .card-link+.card-link{margin-right:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;border-bottom:1px solid;background-color:#fff;border-color:#d8dbe0}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-header .c-chart-wrapper{position:absolute;top:0;right:0;width:100%;height:100%}.card-footer{padding:.75rem 1.25rem;border-top:1px solid;background-color:#fff;border-color:#d8dbe0}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img,.card-img-top,.card-img-bottom{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width: 576px){.card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width: 576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}html:not([dir=rtl]) .card-group>.card+.card{margin-left:0;border-left:0}*[dir=rtl] .card-group>.card+.card{margin-right:0;border-right:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width: 576px){.card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.card-placeholder{background:rgba(0,0,21,.025);border:1px dashed #c4c9d0}.card-header-icon-bg{display:inline-block;width:2.8125rem;padding:.75rem 0;margin:-.75rem 1.25rem -.75rem -1.25rem;line-height:inherit;color:#3c4b64;text-align:center;background:transparent;border-right:1px solid;border-right:#d8dbe0}.card-header-actions{display:inline-block}html:not([dir=rtl]) .card-header-actions{float:right;margin-right:-.25rem}*[dir=rtl] .card-header-actions{float:left;margin-left:-.25rem}.card-header-action{padding:0 .25rem;color:#8a93a2}.card-header-action:hover{color:#3c4b64;text-decoration:none}.card-accent-primary{border-top:2px solid #321fdb!important}.card-accent-secondary{border-top:2px solid #ced2d8!important}.card-accent-success{border-top:2px solid #2eb85c!important}.card-accent-info{border-top:2px solid #39f!important}.card-accent-warning{border-top:2px solid #f9b115!important}.card-accent-danger{border-top:2px solid #e55353!important}.card-accent-light{border-top:2px solid #ebedef!important}.card-accent-dark{border-top:2px solid #636f83!important}.card-full{margin-top:-1rem;margin-right:-15px;margin-left:-15px;border:0;border-bottom:1px solid #d8dbe0}@media (min-width: 576px){.card-columns.cols-2{column-count:2}}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner:after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{transform:translate(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{transform:translate(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;margin-right:15%;margin-left:15%;list-style:none}html:not([dir=rtl]) .carousel-indicators{padding-left:0}*[dir=rtl] .carousel-indicators{padding-right:0}.carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.c-chart-wrapper canvas{width:100%}base-chart.chart{display:block}canvas{-webkit-user-select:none;user-select:none}.close{float:right;font-size:1.3125rem;font-weight:700;line-height:1;opacity:.5;color:#000015;text-shadow:0 1px 0 #fff}@media (hover: hover),(-ms-high-contrast: none){.close:hover{text-decoration:none;color:#000015}}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#4f5d73;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#4f5d73}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.custom-control{position:relative;display:block;min-height:1.3125rem}html:not([dir=rtl]) .custom-control{padding-left:1.5rem}*[dir=rtl] .custom-control{padding-right:1.5rem}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;width:1rem;height:1.15625rem;opacity:0}html:not([dir=rtl]) .custom-control-input{left:0}*[dir=rtl] .custom-control-input{right:0}.custom-control-input:checked~.custom-control-label:before{color:#fff;border-color:#321fdb;background-color:#321fdb}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem #321fdb40}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#958bef}.custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#beb8f5;border-color:#beb8f5}.custom-control-input[disabled]~.custom-control-label,.custom-control-input:disabled~.custom-control-label{color:#8a93a2}.custom-control-input[disabled]~.custom-control-label:before,.custom-control-input:disabled~.custom-control-label:before{background-color:#d8dbe0}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label:before{position:absolute;top:.15625rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";border:solid 1px;background-color:#fff;border-color:#9da5b1}html:not([dir=rtl]) .custom-control-label:before{left:-1.5rem}*[dir=rtl] .custom-control-label:before{right:-1.5rem}.custom-control-label:after{position:absolute;top:.15625rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}html:not([dir=rtl]) .custom-control-label:after{left:-1.5rem}*[dir=rtl] .custom-control-label:after{right:-1.5rem}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{border-color:#321fdb;background-color:#321fdb}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:#321fdb80}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:#321fdb80}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:#321fdb80}html:not([dir=rtl]) .custom-switch{padding-left:2.25rem}*[dir=rtl] .custom-switch{padding-right:2.25rem}.custom-switch .custom-control-label:before{width:1.75rem;pointer-events:all;border-radius:.5rem}html:not([dir=rtl]) .custom-switch .custom-control-label:before{left:-2.25rem}*[dir=rtl] .custom-switch .custom-control-label:before{right:-2.25rem}.custom-switch .custom-control-label:after{top:calc(.15625rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);border-radius:.5rem;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;background-color:#9da5b1}html:not([dir=rtl]) .custom-switch .custom-control-label:after{left:calc(-2.25rem + 2px)}*[dir=rtl] .custom-switch .custom-control-label:after{right:calc(-2.25rem + 2px)}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;transform:translate(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:#321fdb80}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:.875rem;font-weight:400;line-height:1.5;vertical-align:middle;border:1px solid;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;color:#768192;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23636f83' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border-color:#d8dbe0}.custom-select:focus{border-color:#958bef;outline:0;box-shadow:0 0 0 .2rem #321fdb40}.custom-select:focus::-ms-value{color:#768192;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;background-image:none}html:not([dir=rtl]) .custom-select[multiple],html:not([dir=rtl]) .custom-select[size]:not([size="1"]){padding-right:.75rem}*[dir=rtl] .custom-select[multiple],*[dir=rtl] .custom-select[size]:not([size="1"]){padding-left:.75rem}.custom-select:disabled{color:#8a93a2;background-color:#d8dbe0}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #768192}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;font-size:.765625rem}html:not([dir=rtl]) .custom-select-sm{padding-left:.5rem}*[dir=rtl] .custom-select-sm{padding-right:.5rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;font-size:1.09375rem}html:not([dir=rtl]) .custom-select-lg{padding-left:1rem}*[dir=rtl] .custom-select-lg{padding-right:1rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{box-shadow:0 0 0 .2rem #321fdb40;border-color:#958bef}.custom-file-input[disabled]~.custom-file-label,.custom-file-input:disabled~.custom-file-label{background-color:#d8dbe0}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;border:1px solid;border-radius:.25rem;color:#768192;background-color:#fff;border-color:#d8dbe0}.custom-file-label:after{position:absolute;top:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;content:"Browse";border-left:inherit;border-radius:0 .25rem .25rem 0;color:#768192;background-color:#ebedef}html:not([dir=rtl]) .custom-file-label:after{right:0}*[dir=rtl] .custom-file-label:after{left:0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #ebedef,0 0 0 .2rem #321fdb40}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #ebedef,0 0 0 .2rem #321fdb40}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #ebedef,0 0 0 .2rem #321fdb40}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#321fdb;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#beb8f5}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;border-color:transparent;border-radius:1rem;background-color:#c4c9d0}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#321fdb;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#beb8f5}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#c4c9d0;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#321fdb;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#beb8f5}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#c4c9d0;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#c4c9d0;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#9da5b1}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#9da5b1}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#9da5b1}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label:before,.custom-file-label,.custom-select{transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}html:not([dir=rtl]) .dropdown-toggle:after{margin-left:.255em}*[dir=rtl] .dropdown-toggle:after{margin-right:.255em}html:not([dir=rtl]) .dropdown-toggle:empty:after{margin-left:0}*[dir=rtl] .dropdown-toggle:empty:after{margin-right:0}.dropdown-menu{position:absolute;top:100%;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;font-size:.875rem;text-align:left;list-style:none;background-clip:padding-box;border:1px solid;border-radius:.25rem;color:#3c4b64;background-color:#fff;border-color:#d8dbe0}.c-header .dropdown-menu,.navbar .dropdown-menu,[data-display^=static]~.dropdown-menu{margin:.125rem 0 0}html:not([dir=rtl]) .c-header .dropdown-menu-left,html:not([dir=rtl]) .navbar .dropdown-menu-left,html:not([dir=rtl]) [data-display^=static]~.dropdown-menu-left{right:auto;left:0}*[dir=rtl] .c-header .dropdown-menu-left,*[dir=rtl] .navbar .dropdown-menu-left,*[dir=rtl] [data-display^=static]~.dropdown-menu-left{right:0;left:auto}html:not([dir=rtl]) .c-header .dropdown-menu-right,html:not([dir=rtl]) .navbar .dropdown-menu-right,html:not([dir=rtl]) [data-display^=static]~.dropdown-menu-right{right:0;left:auto}*[dir=rtl] .c-header .dropdown-menu-right,*[dir=rtl] .navbar .dropdown-menu-right,*[dir=rtl] [data-display^=static]~.dropdown-menu-right{right:auto;left:0}@media (min-width: 576px){html:not([dir=rtl]) .c-header .dropdown-menu-sm-left,html:not([dir=rtl]) .navbar .dropdown-menu-sm-left,html:not([dir=rtl]) [data-display^=static]~.dropdown-menu-sm-left{right:auto;left:0}*[dir=rtl] .c-header .dropdown-menu-sm-left,*[dir=rtl] .navbar .dropdown-menu-sm-left,*[dir=rtl] [data-display^=static]~.dropdown-menu-sm-left{right:0;left:auto}html:not([dir=rtl]) .c-header .dropdown-menu-sm-right,html:not([dir=rtl]) .navbar .dropdown-menu-sm-right,html:not([dir=rtl]) [data-display^=static]~.dropdown-menu-sm-right{right:0;left:auto}*[dir=rtl] .c-header .dropdown-menu-sm-right,*[dir=rtl] .navbar .dropdown-menu-sm-right,*[dir=rtl] [data-display^=static]~.dropdown-menu-sm-right{right:auto;left:0}}@media (min-width: 768px){html:not([dir=rtl]) .c-header .dropdown-menu-md-left,html:not([dir=rtl]) .navbar .dropdown-menu-md-left,html:not([dir=rtl]) [data-display^=static]~.dropdown-menu-md-left{right:auto;left:0}*[dir=rtl] .c-header .dropdown-menu-md-left,*[dir=rtl] .navbar .dropdown-menu-md-left,*[dir=rtl] [data-display^=static]~.dropdown-menu-md-left{right:0;left:auto}html:not([dir=rtl]) .c-header .dropdown-menu-md-right,html:not([dir=rtl]) .navbar .dropdown-menu-md-right,html:not([dir=rtl]) [data-display^=static]~.dropdown-menu-md-right{right:0;left:auto}*[dir=rtl] .c-header .dropdown-menu-md-right,*[dir=rtl] .navbar .dropdown-menu-md-right,*[dir=rtl] [data-display^=static]~.dropdown-menu-md-right{right:auto;left:0}}@media (min-width: 992px){html:not([dir=rtl]) .c-header .dropdown-menu-lg-left,html:not([dir=rtl]) .navbar .dropdown-menu-lg-left,html:not([dir=rtl]) [data-display^=static]~.dropdown-menu-lg-left{right:auto;left:0}*[dir=rtl] .c-header .dropdown-menu-lg-left,*[dir=rtl] .navbar .dropdown-menu-lg-left,*[dir=rtl] [data-display^=static]~.dropdown-menu-lg-left{right:0;left:auto}html:not([dir=rtl]) .c-header .dropdown-menu-lg-right,html:not([dir=rtl]) .navbar .dropdown-menu-lg-right,html:not([dir=rtl]) [data-display^=static]~.dropdown-menu-lg-right{right:0;left:auto}*[dir=rtl] .c-header .dropdown-menu-lg-right,*[dir=rtl] .navbar .dropdown-menu-lg-right,*[dir=rtl] [data-display^=static]~.dropdown-menu-lg-right{right:auto;left:0}}@media (min-width: 1200px){html:not([dir=rtl]) .c-header .dropdown-menu-xl-left,html:not([dir=rtl]) .navbar .dropdown-menu-xl-left,html:not([dir=rtl]) [data-display^=static]~.dropdown-menu-xl-left{right:auto;left:0}*[dir=rtl] .c-header .dropdown-menu-xl-left,*[dir=rtl] .navbar .dropdown-menu-xl-left,*[dir=rtl] [data-display^=static]~.dropdown-menu-xl-left{right:0;left:auto}html:not([dir=rtl]) .c-header .dropdown-menu-xl-right,html:not([dir=rtl]) .navbar .dropdown-menu-xl-right,html:not([dir=rtl]) [data-display^=static]~.dropdown-menu-xl-right{right:0;left:auto}*[dir=rtl] .c-header .dropdown-menu-xl-right,*[dir=rtl] .navbar .dropdown-menu-xl-right,*[dir=rtl] [data-display^=static]~.dropdown-menu-xl-right{right:auto;left:0}}@media (min-width: 1400px){html:not([dir=rtl]) .c-header .dropdown-menu-xxl-left,html:not([dir=rtl]) .navbar .dropdown-menu-xxl-left,html:not([dir=rtl]) [data-display^=static]~.dropdown-menu-xxl-left{right:auto;left:0}*[dir=rtl] .c-header .dropdown-menu-xxl-left,*[dir=rtl] .navbar .dropdown-menu-xxl-left,*[dir=rtl] [data-display^=static]~.dropdown-menu-xxl-left{right:0;left:auto}html:not([dir=rtl]) .c-header .dropdown-menu-xxl-right,html:not([dir=rtl]) .navbar .dropdown-menu-xxl-right,html:not([dir=rtl]) [data-display^=static]~.dropdown-menu-xxl-right{right:0;left:auto}*[dir=rtl] .c-header .dropdown-menu-xxl-right,*[dir=rtl] .navbar .dropdown-menu-xxl-right,*[dir=rtl] [data-display^=static]~.dropdown-menu-xxl-right{right:auto;left:0}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}html:not([dir=rtl]) .dropup .dropdown-toggle:after{margin-left:.255em}*[dir=rtl] .dropup .dropdown-toggle:after{margin-right:.255em}html:not([dir=rtl]) .dropup .dropdown-toggle:empty:after{margin-left:0}*[dir=rtl] .dropup .dropdown-toggle:empty:after{margin-right:0}.dropright .dropdown-menu{top:0;margin-top:0}html:not([dir=rtl]) .dropright .dropdown-menu{right:auto;left:100%;margin-left:.125rem}*[dir=rtl] .dropright .dropdown-menu{right:100%;left:auto;margin-right:.125rem}.dropright .dropdown-toggle:after{display:inline-block;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}html:not([dir=rtl]) .dropright .dropdown-toggle:after{margin-left:.255em}*[dir=rtl] .dropright .dropdown-toggle:after{margin-right:.255em}html:not([dir=rtl]) .dropright .dropdown-toggle:empty:after{margin-left:0}*[dir=rtl] .dropright .dropdown-toggle:empty:after{margin-right:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;margin-top:0}html:not([dir=rtl]) .dropleft .dropdown-menu{right:100%;left:auto;margin-right:.125rem}*[dir=rtl] .dropleft .dropdown-menu{right:auto;left:100%;margin-left:.125rem}.dropleft .dropdown-toggle:after{display:inline-block;vertical-align:.255em;content:""}html:not([dir=rtl]) .dropleft .dropdown-toggle:after{margin-left:.255em}*[dir=rtl] .dropleft .dropdown-toggle:after{margin-right:.255em}.dropleft .dropdown-toggle:after{display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}html:not([dir=rtl]) .dropleft .dropdown-toggle:empty:after{margin-left:0}*[dir=rtl] .dropleft .dropdown-toggle:empty:after{margin-right:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #d8dbe0}.dropdown-item{display:flex;align-items:center;width:100%;padding:.5rem 1.25rem;clear:both;font-weight:400;text-align:inherit;white-space:nowrap;background-color:transparent;border:0;color:#4f5d73}.dropdown-item:hover,.dropdown-item:focus{text-decoration:none;color:#455164;background-color:#ebedef}.dropdown-item.active,.dropdown-item:active{text-decoration:none;color:#fff;background-color:#321fdb}.dropdown-item.disabled,.dropdown-item:disabled{pointer-events:none;background-color:transparent;color:#8a93a2}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.25rem;margin-bottom:0;font-size:.765625rem;white-space:nowrap;color:#8a93a2}.dropdown-item-text{display:block;padding:.5rem 1.25rem;color:#4f5d73}.c-footer{display:flex;flex:0 0 50px;flex-wrap:wrap;align-items:center;height:50px;padding:0 1rem}.c-footer[class*=bg-]{border-color:#0000151a}.c-footer.c-footer-fixed{position:fixed;right:0;bottom:0;left:0;z-index:1030}.c-footer.c-footer-dark{color:#fff;background:#636f83}.c-footer{color:#3c4b64;background:#ebedef;border-top:1px solid #d8dbe0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:.875rem;font-weight:400;line-height:1.5;background-clip:padding-box;border:1px solid;color:#768192;background-color:#fff;border-color:#d8dbe0;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #768192}.form-control:focus{color:#768192;background-color:#fff;border-color:#958bef;outline:0;box-shadow:0 0 0 .2rem #321fdb40}.form-control::placeholder{color:#8a93a2;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#d8dbe0;opacity:1}input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#768192;background-color:#fff}select.form-control option{background-color:inherit}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.09375rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.765625rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:.875rem;line-height:1.5;background-color:transparent;border:solid transparent;border-width:1px 0;color:#3c4b64}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.765625rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.09375rem;line-height:1.5;border-radius:.3rem}select.form-control[size],select.form-control[multiple],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block}html:not([dir=rtl]) .form-check{padding-left:1.25rem}*[dir=rtl] .form-check{padding-right:1.25rem}.form-check-input{position:absolute;margin-top:.3rem}html:not([dir=rtl]) .form-check-input{margin-left:-1.25rem}*[dir=rtl] .form-check-input{margin-right:-1.25rem}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{color:#768192}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center}html:not([dir=rtl]) .form-check-inline{padding-left:0;margin-right:.75rem}*[dir=rtl] .form-check-inline{padding-right:0;margin-left:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0}html:not([dir=rtl]) .form-check-inline .form-check-input{margin-right:.3125rem;margin-left:0}*[dir=rtl] .form-check-inline .form-check-input{margin-right:0;margin-left:.3125rem}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#2eb85c}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.765625rem;line-height:1.5;color:#fff;background-color:#2eb85ce6;border-radius:.25rem}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#2eb85c;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%232eb85c' 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-size:calc(.75em + .375rem) calc(.75em + .375rem)}html:not([dir=rtl]) .was-validated .form-control:valid,html:not([dir=rtl]) .form-control.is-valid{padding-right:calc(1.5em + .75rem)}*[dir=rtl] .was-validated .form-control:valid,*[dir=rtl] .form-control.is-valid{padding-left:calc(1.5em + .75rem)}html:not([dir=rtl]) .was-validated .form-control:valid,html:not([dir=rtl]) .form-control.is-valid{background-position:right calc(.375em + .1875rem) center}*[dir=rtl] .was-validated .form-control:valid,*[dir=rtl] .form-control.is-valid{background-position:left calc(.375em + .1875rem) center}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#2eb85c;box-shadow:0 0 0 .2rem #2eb85c40}html:not([dir=rtl]) .was-validated textarea.form-control:valid,html:not([dir=rtl]) textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}*[dir=rtl] .was-validated textarea.form-control:valid,*[dir=rtl] textarea.form-control.is-valid{padding-left:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) left calc(.375em + .1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#2eb85c;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23636f83' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%232eb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}html:not([dir=rtl]) .was-validated .custom-select:valid,html:not([dir=rtl]) .custom-select.is-valid{padding-right:calc(.75em + 2.3125rem)}*[dir=rtl] .was-validated .custom-select:valid,*[dir=rtl] .custom-select.is-valid{padding-left:calc(.75em + 2.3125rem)}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#2eb85c;box-shadow:0 0 0 .2rem #2eb85c40}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#2eb85c}.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip,.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip{display:block}.was-validated .custom-control-input:valid~.custom-control-label,.custom-control-input.is-valid~.custom-control-label{color:#2eb85c}.was-validated .custom-control-input:valid~.custom-control-label:before,.custom-control-input.is-valid~.custom-control-label:before{border-color:#2eb85c}.was-validated .custom-control-input:valid:checked~.custom-control-label:before,.custom-control-input.is-valid:checked~.custom-control-label:before{border-color:#48d176;background-color:#48d176}.was-validated .custom-control-input:valid:focus~.custom-control-label:before,.custom-control-input.is-valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem #2eb85c40}.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before{border-color:#2eb85c}.was-validated .custom-file-input:valid~.custom-file-label,.custom-file-input.is-valid~.custom-file-label{border-color:#2eb85c}.was-validated .custom-file-input:valid:focus~.custom-file-label,.custom-file-input.is-valid:focus~.custom-file-label{border-color:#2eb85c;box-shadow:0 0 0 .2rem #2eb85c40}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#e55353}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.765625rem;line-height:1.5;color:#fff;background-color:#e55353e6;border-radius:.25rem}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#e55353;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e55353' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e55353' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}html:not([dir=rtl]) .was-validated .form-control:invalid,html:not([dir=rtl]) .form-control.is-invalid{padding-right:calc(1.5em + .75rem)}*[dir=rtl] .was-validated .form-control:invalid,*[dir=rtl] .form-control.is-invalid{padding-left:calc(1.5em + .75rem)}html:not([dir=rtl]) .was-validated .form-control:invalid,html:not([dir=rtl]) .form-control.is-invalid{background-position:right calc(.375em + .1875rem) center}*[dir=rtl] .was-validated .form-control:invalid,*[dir=rtl] .form-control.is-invalid{background-position:left calc(.375em + .1875rem) center}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#e55353;box-shadow:0 0 0 .2rem #e5535340}html:not([dir=rtl]) .was-validated textarea.form-control:invalid,html:not([dir=rtl]) textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}*[dir=rtl] .was-validated textarea.form-control:invalid,*[dir=rtl] textarea.form-control.is-invalid{padding-left:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) left calc(.375em + .1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#e55353;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23636f83' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e55353' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e55353' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}html:not([dir=rtl]) .was-validated .custom-select:invalid,html:not([dir=rtl]) .custom-select.is-invalid{padding-right:calc(.75em + 2.3125rem)}*[dir=rtl] .was-validated .custom-select:invalid,*[dir=rtl] .custom-select.is-invalid{padding-left:calc(.75em + 2.3125rem)}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#e55353;box-shadow:0 0 0 .2rem #e5535340}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#e55353}.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip,.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip{display:block}.was-validated .custom-control-input:invalid~.custom-control-label,.custom-control-input.is-invalid~.custom-control-label{color:#e55353}.was-validated .custom-control-input:invalid~.custom-control-label:before,.custom-control-input.is-invalid~.custom-control-label:before{border-color:#e55353}.was-validated .custom-control-input:invalid:checked~.custom-control-label:before,.custom-control-input.is-invalid:checked~.custom-control-label:before{border-color:#ec7f7f;background-color:#ec7f7f}.was-validated .custom-control-input:invalid:focus~.custom-control-label:before,.custom-control-input.is-invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem #e5535340}.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before{border-color:#e55353}.was-validated .custom-file-input:invalid~.custom-file-label,.custom-file-input.is-invalid~.custom-file-label{border-color:#e55353}.was-validated .custom-file-input:invalid:focus~.custom-file-label,.custom-file-input.is-invalid:focus~.custom-file-label{border-color:#e55353;box-shadow:0 0 0 .2rem #e5535340}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto}html:not([dir=rtl]) .form-inline .form-check{padding-left:0}*[dir=rtl] .form-inline .form-check{padding-right:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0}html:not([dir=rtl]) .form-inline .form-check-input{margin-right:.25rem;margin-left:0}*[dir=rtl] .form-inline .form-check-input{margin-right:0;margin-left:.25rem}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.form-control-color{max-width:3rem;padding:.375rem}.form-control-color::-moz-color-swatch{border-radius:.25rem}.form-control-color::-webkit-color-swatch{border-radius:.25rem}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container{max-width:540px}}@media (min-width: 768px){.container{max-width:720px}}@media (min-width: 992px){.container{max-width:960px}}@media (min-width: 1200px){.container{max-width:1140px}}@media (min-width: 1400px){.container{max-width:1320px}}.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container-sm,.container{max-width:540px}}@media (min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media (min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media (min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media (min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col-xxl,.col-xxl-auto,.col-xxl-12,.col-xxl-11,.col-xxl-10,.col-xxl-9,.col-xxl-8,.col-xxl-7,.col-xxl-6,.col-xxl-5,.col-xxl-4,.col-xxl-3,.col-xxl-2,.col-xxl-1,.col-xl,.col-xl-auto,.col-xl-12,.col-xl-11,.col-xl-10,.col-xl-9,.col-xl-8,.col-xl-7,.col-xl-6,.col-xl-5,.col-xl-4,.col-xl-3,.col-xl-2,.col-xl-1,.col-lg,.col-lg-auto,.col-lg-12,.col-lg-11,.col-lg-10,.col-lg-9,.col-lg-8,.col-lg-7,.col-lg-6,.col-lg-5,.col-lg-4,.col-lg-3,.col-lg-2,.col-lg-1,.col-md,.col-md-auto,.col-md-12,.col-md-11,.col-md-10,.col-md-9,.col-md-8,.col-md-7,.col-md-6,.col-md-5,.col-md-4,.col-md-3,.col-md-2,.col-md-1,.col-sm,.col-sm-auto,.col-sm-12,.col-sm-11,.col-sm-10,.col-sm-9,.col-sm-8,.col-sm-7,.col-sm-6,.col-sm-5,.col-sm-4,.col-sm-3,.col-sm-2,.col-sm-1,.col,.col-auto,.col-12,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2,.col-1{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media (min-width: 576px){.col-sm{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media (min-width: 768px){.col-md{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media (min-width: 992px){.col-lg{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media (min-width: 1200px){.col-xl{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}@media (min-width: 1400px){.col-xxl{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}.row-cols-xxl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xxl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xxl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xxl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xxl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xxl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xxl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xxl-3{flex:0 0 25%;max-width:25%}.col-xxl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xxl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xxl-6{flex:0 0 50%;max-width:50%}.col-xxl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xxl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xxl-9{flex:0 0 75%;max-width:75%}.col-xxl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xxl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xxl-12{flex:0 0 100%;max-width:100%}.order-xxl-first{order:-1}.order-xxl-last{order:13}.order-xxl-0{order:0}.order-xxl-1{order:1}.order-xxl-2{order:2}.order-xxl-3{order:3}.order-xxl-4{order:4}.order-xxl-5{order:5}.order-xxl-6{order:6}.order-xxl-7{order:7}.order-xxl-8{order:8}.order-xxl-9{order:9}.order-xxl-10{order:10}.order-xxl-11{order:11}.order-xxl-12{order:12}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.3333333333%}.offset-xxl-2{margin-left:16.6666666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.3333333333%}.offset-xxl-5{margin-left:41.6666666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.3333333333%}.offset-xxl-8{margin-left:66.6666666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.3333333333%}.offset-xxl-11{margin-left:91.6666666667%}}.row.row-equal{padding-right:7.5px;padding-left:7.5px;margin-right:-15px;margin-left:-15px}.row.row-equal [class*=col-]{padding-right:7.5px;padding-left:7.5px}.main .container-fluid,.main .container-sm,.main .container-md,.main .container-lg,.main .container-xl,.main .container-xxl{padding:0 30px}.c-header{position:relative;display:flex;flex-direction:row;flex-wrap:wrap;flex-shrink:0;min-height:56px}.c-header[class*=bg-]{border-color:#0000151a}.c-header.c-header-fixed{position:fixed;right:0;left:0;z-index:1029}.c-header .c-subheader{border-bottom:0}.c-header-brand{display:inline-flex;align-items:center;justify-content:center;width:auto;min-height:56px;transition:width .3s}.c-header-brand.c-header-brand-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-center{right:50%}@media (max-width: 575.98px){.c-header-brand.c-header-brand-xs-down-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-xs-down-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-xs-down-center{right:50%}}.c-header-brand.c-header-brand-xs-up-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-xs-up-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-xs-up-center{right:50%}@media (max-width: 767.98px){.c-header-brand.c-header-brand-sm-down-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-sm-down-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-sm-down-center{right:50%}}@media (min-width: 576px){.c-header-brand.c-header-brand-sm-up-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-sm-up-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-sm-up-center{right:50%}}@media (max-width: 991.98px){.c-header-brand.c-header-brand-md-down-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-md-down-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-md-down-center{right:50%}}@media (min-width: 768px){.c-header-brand.c-header-brand-md-up-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-md-up-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-md-up-center{right:50%}}@media (max-width: 1199.98px){.c-header-brand.c-header-brand-lg-down-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-lg-down-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-lg-down-center{right:50%}}@media (min-width: 992px){.c-header-brand.c-header-brand-lg-up-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-lg-up-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-lg-up-center{right:50%}}@media (max-width: 1399.98px){.c-header-brand.c-header-brand-xl-down-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-xl-down-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-xl-down-center{right:50%}}@media (min-width: 1200px){.c-header-brand.c-header-brand-xl-up-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-xl-up-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-xl-up-center{right:50%}}.c-header-brand.c-header-brand-xxl-down-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-xxl-down-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-xxl-down-center{right:50%}@media (min-width: 1400px){.c-header-brand.c-header-brand-xxl-up-center{position:absolute;top:56px;transform:translate(-50%,-100%)}html:not([dir=rtl]) .c-header-brand.c-header-brand-xxl-up-center{left:50%}*[dir=rtl] .c-header-brand.c-header-brand-xxl-up-center{right:50%}}.c-header-toggler{min-width:50px;font-size:1.09375rem;background-color:transparent;border:0;border-radius:.25rem}@media (hover: hover),(-ms-high-contrast: none){.c-header-toggler:hover{color:#3c4b64;text-decoration:none}}.c-header-toggler:focus,.c-header-toggler.focus{outline:0}.c-header-toggler:not(:disabled):not(.c-disabled){cursor:pointer}.c-header-toggler-icon{display:block;height:1.3671875rem;background-repeat:no-repeat;background-position:center center;background-size:100% 100%}.c-header-nav{display:flex;flex-direction:row;align-items:center;min-height:56px;padding:0;margin-bottom:0;list-style:none}.c-header-nav .c-header-nav-item{position:relative}.c-header-nav .c-header-nav-btn{background-color:transparent;border:1px solid transparent}@media (hover: hover),(-ms-high-contrast: none){.c-header-nav .c-header-nav-btn:hover{text-decoration:none}}.c-header-nav .c-header-nav-btn:focus,.c-header-nav .c-header-nav-btn.focus{outline:0}.c-header-nav .c-header-nav-link,.c-header-nav .c-header-nav-btn{display:flex;align-items:center;padding-right:.5rem;padding-left:.5rem}.c-header-nav .c-header-nav-link .badge,.c-header-nav .c-header-nav-btn .badge{position:absolute;top:50%;margin-top:-16px}html:not([dir=rtl]) .c-header-nav .c-header-nav-link .badge,html:not([dir=rtl]) .c-header-nav .c-header-nav-btn .badge{left:50%;margin-left:0}*[dir=rtl] .c-header-nav .c-header-nav-link .badge,*[dir=rtl] .c-header-nav .c-header-nav-btn .badge{right:50%;margin-right:0}.c-header-nav .c-header-nav-link:hover,.c-header-nav .c-header-nav-btn:hover{text-decoration:none}.c-header-nav .dropdown-item{min-width:180px}.c-header.c-header-dark{background:#3c4b64;border-bottom:1px solid #636f83}.c-header.c-header-dark .c-subheader{margin-top:-1px;border-top:1px solid #636f83}.c-header.c-header-dark .c-header-brand{color:#fff;background-color:transparent}.c-header.c-header-dark .c-header-brand:hover,.c-header.c-header-dark .c-header-brand:focus{color:#fff}.c-header.c-header-dark .c-header-nav .c-header-nav-link,.c-header.c-header-dark .c-header-nav .c-header-nav-btn{color:#ffffffbf}.c-header.c-header-dark .c-header-nav .c-header-nav-link:hover,.c-header.c-header-dark .c-header-nav .c-header-nav-link:focus,.c-header.c-header-dark .c-header-nav .c-header-nav-btn:hover,.c-header.c-header-dark .c-header-nav .c-header-nav-btn:focus{color:#ffffffe6}.c-header.c-header-dark .c-header-nav .c-header-nav-link.c-disabled,.c-header.c-header-dark .c-header-nav .c-header-nav-btn.c-disabled{color:#ffffff40}.c-header.c-header-dark .c-header-nav .c-show>.c-header-nav-link,.c-header.c-header-dark .c-header-nav .c-active>.c-header-nav-link,.c-header.c-header-dark .c-header-nav .c-header-nav-link.c-show,.c-header.c-header-dark .c-header-nav .c-header-nav-link.c-active{color:#fff}.c-header.c-header-dark .c-header-toggler{color:#ffffffbf;border-color:#ffffff1a}.c-header.c-header-dark .c-header-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.75)' stroke-width='2.25' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.c-header.c-header-dark .c-header-toggler-icon:hover{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2.25' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.c-header.c-header-dark .c-header-text{color:#ffffffbf}.c-header.c-header-dark .c-header-text a{color:#fff}.c-header.c-header-dark .c-header-text a:hover,.c-header.c-header-dark .c-header-text a:focus{color:#fff}.c-header{background:#fff;border-bottom:1px solid #d8dbe0}.c-header .c-subheader{margin-top:-1px;border-top:1px solid #d8dbe0}.c-header .c-header-brand{color:#4f5d73;background-color:transparent}.c-header .c-header-brand:hover,.c-header .c-header-brand:focus{color:#3a4555}.c-header .c-header-nav .c-header-nav-link,.c-header .c-header-nav .c-header-nav-btn{color:#00001580}.c-header .c-header-nav .c-header-nav-link:hover,.c-header .c-header-nav .c-header-nav-link:focus,.c-header .c-header-nav .c-header-nav-btn:hover,.c-header .c-header-nav .c-header-nav-btn:focus{color:#000015b3}.c-header .c-header-nav .c-header-nav-link.c-disabled,.c-header .c-header-nav .c-header-nav-btn.c-disabled{color:#0000154d}.c-header .c-header-nav .c-show>.c-header-nav-link,.c-header .c-header-nav .c-active>.c-header-nav-link,.c-header .c-header-nav .c-header-nav-link.c-show,.c-header .c-header-nav .c-header-nav-link.c-active{color:#000015e6}.c-header .c-header-toggler{color:#00001580;border-color:#0000151a}.c-header .c-header-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 21, 0.5)' stroke-width='2.25' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.c-header .c-header-toggler-icon:hover{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 21, 0.7)' stroke-width='2.25' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.c-header .c-header-text{color:#00001580}.c-header .c-header-text a{color:#000015e6}.c-header .c-header-text a:hover,.c-header .c-header-text a:focus{color:#000015e6}.c-icon{display:inline-block;color:inherit;text-align:center;fill:currentColor}.c-icon:not(.c-icon-c-s):not(.c-icon-custom-size){width:1rem;height:1rem;font-size:1rem}.c-icon:not(.c-icon-c-s):not(.c-icon-custom-size).c-icon-2xl{width:2rem;height:2rem;font-size:2rem}.c-icon:not(.c-icon-c-s):not(.c-icon-custom-size).c-icon-3xl{width:3rem;height:3rem;font-size:3rem}.c-icon:not(.c-icon-c-s):not(.c-icon-custom-size).c-icon-4xl{width:4rem;height:4rem;font-size:4rem}.c-icon:not(.c-icon-c-s):not(.c-icon-custom-size).c-icon-5xl{width:5rem;height:5rem;font-size:5rem}.c-icon:not(.c-icon-c-s):not(.c-icon-custom-size).c-icon-6xl{width:6rem;height:6rem;font-size:6rem}.c-icon:not(.c-icon-c-s):not(.c-icon-custom-size).c-icon-7xl{width:7rem;height:7rem;font-size:7rem}.c-icon:not(.c-icon-c-s):not(.c-icon-custom-size).c-icon-8xl{width:8rem;height:8rem;font-size:8rem}.c-icon:not(.c-icon-c-s):not(.c-icon-custom-size).c-icon-9xl{width:9rem;height:9rem;font-size:9rem}.c-icon:not(.c-icon-c-s):not(.c-icon-custom-size).c-icon-xl{width:1.5rem;height:1.5rem;font-size:1.5rem}.c-icon:not(.c-icon-c-s):not(.c-icon-custom-size).c-icon-lg{width:1.25rem;height:1.25rem;font-size:1.25rem}.c-icon:not(.c-icon-c-s):not(.c-icon-custom-size).c-icon-sm{width:.875rem;height:.875rem;font-size:.875rem}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}html:not([dir=rtl]) .input-group>.form-control+.form-control,html:not([dir=rtl]) .input-group>.form-control+.custom-select,html:not([dir=rtl]) .input-group>.form-control+.custom-file,html:not([dir=rtl]) .input-group>.form-control-plaintext+.form-control,html:not([dir=rtl]) .input-group>.form-control-plaintext+.custom-select,html:not([dir=rtl]) .input-group>.form-control-plaintext+.custom-file,html:not([dir=rtl]) .input-group>.custom-select+.form-control,html:not([dir=rtl]) .input-group>.custom-select+.custom-select,html:not([dir=rtl]) .input-group>.custom-select+.custom-file,html:not([dir=rtl]) .input-group>.custom-file+.form-control,html:not([dir=rtl]) .input-group>.custom-file+.custom-select,html:not([dir=rtl]) .input-group>.custom-file+.custom-file{margin-left:-1px}*[dir=rtl] .input-group>.form-control+.form-control,*[dir=rtl] .input-group>.form-control+.custom-select,*[dir=rtl] .input-group>.form-control+.custom-file,*[dir=rtl] .input-group>.form-control-plaintext+.form-control,*[dir=rtl] .input-group>.form-control-plaintext+.custom-select,*[dir=rtl] .input-group>.form-control-plaintext+.custom-file,*[dir=rtl] .input-group>.custom-select+.form-control,*[dir=rtl] .input-group>.custom-select+.custom-select,*[dir=rtl] .input-group>.custom-select+.custom-file,*[dir=rtl] .input-group>.custom-file+.form-control,*[dir=rtl] .input-group>.custom-file+.custom-select,*[dir=rtl] .input-group>.custom-file+.custom-file{margin-right:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus~.custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}html:not([dir=rtl]) .input-group>.form-control:not(:last-child),html:not([dir=rtl]) .input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}*[dir=rtl] .input-group>.form-control:not(:last-child),*[dir=rtl] .input-group>.custom-select:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}html:not([dir=rtl]) .input-group>.form-control:not(:first-child),html:not([dir=rtl]) .input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}*[dir=rtl] .input-group>.form-control:not(:first-child),*[dir=rtl] .input-group>.custom-select:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file{display:flex;align-items:center}html:not([dir=rtl]) .input-group>.custom-file:not(:last-child) .custom-file-label,html:not([dir=rtl]) .input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-right-radius:0;border-bottom-right-radius:0}*[dir=rtl] .input-group>.custom-file:not(:last-child) .custom-file-label,*[dir=rtl] .input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-left-radius:0;border-bottom-left-radius:0}html:not([dir=rtl]) .input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}*[dir=rtl] .input-group>.custom-file:not(:first-child) .custom-file-label{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-prepend,.input-group-append{display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}html:not([dir=rtl]) .input-group-prepend .btn+.btn,html:not([dir=rtl]) .input-group-prepend .btn+.input-group-text,html:not([dir=rtl]) .input-group-prepend .input-group-text+.input-group-text,html:not([dir=rtl]) .input-group-prepend .input-group-text+.btn,html:not([dir=rtl]) .input-group-append .btn+.btn,html:not([dir=rtl]) .input-group-append .btn+.input-group-text,html:not([dir=rtl]) .input-group-append .input-group-text+.input-group-text,html:not([dir=rtl]) .input-group-append .input-group-text+.btn{margin-left:-1px}*[dir=rtl] .input-group-prepend .btn+.btn,*[dir=rtl] .input-group-prepend .btn+.input-group-text,*[dir=rtl] .input-group-prepend .input-group-text+.input-group-text,*[dir=rtl] .input-group-prepend .input-group-text+.btn,*[dir=rtl] .input-group-append .btn+.btn,*[dir=rtl] .input-group-append .btn+.input-group-text,*[dir=rtl] .input-group-append .input-group-text+.input-group-text,*[dir=rtl] .input-group-append .input-group-text+.btn{margin-right:-1px}.input-group-prepend{white-space:nowrap;vertical-align:middle}html:not([dir=rtl]) .input-group-prepend{margin-right:-1px}*[dir=rtl] .input-group-prepend{margin-left:-1px}.input-group-append{white-space:nowrap;vertical-align:middle}html:not([dir=rtl]) .input-group-append{margin-left:-1px}*[dir=rtl] .input-group-append{margin-right:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:.875rem;font-weight:400;line-height:1.5;text-align:center;white-space:nowrap;border:1px solid;border-radius:.25rem;color:#768192;background-color:#ebedef;border-color:#d8dbe0}.input-group-text input[type=radio],.input-group-text input[type=checkbox]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:.5rem 1rem;font-size:1.09375rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:.25rem .5rem;font-size:.765625rem;line-height:1.5;border-radius:.2rem}html:not([dir=rtl]) .input-group-lg>.custom-select,html:not([dir=rtl]) .input-group-sm>.custom-select{padding-right:1.75rem}*[dir=rtl] .input-group-lg>.custom-select,*[dir=rtl] .input-group-sm>.custom-select{padding-left:1.75rem}html:not([dir=rtl]) .input-group>.input-group-prepend>.btn,html:not([dir=rtl]) .input-group>.input-group-prepend>.input-group-text,html:not([dir=rtl]) .input-group>.input-group-append:not(:last-child)>.btn,html:not([dir=rtl]) .input-group>.input-group-append:not(:last-child)>.input-group-text,html:not([dir=rtl]) .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),html:not([dir=rtl]) .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}*[dir=rtl] .input-group>.input-group-prepend>.btn,*[dir=rtl] .input-group>.input-group-prepend>.input-group-text,*[dir=rtl] .input-group>.input-group-append:not(:last-child)>.btn,*[dir=rtl] .input-group>.input-group-append:not(:last-child)>.input-group-text,*[dir=rtl] .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),*[dir=rtl] .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}html:not([dir=rtl]) .input-group>.input-group-append>.btn,html:not([dir=rtl]) .input-group>.input-group-append>.input-group-text,html:not([dir=rtl]) .input-group>.input-group-prepend:not(:first-child)>.btn,html:not([dir=rtl]) .input-group>.input-group-prepend:not(:first-child)>.input-group-text,html:not([dir=rtl]) .input-group>.input-group-prepend:first-child>.btn:not(:first-child),html:not([dir=rtl]) .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}*[dir=rtl] .input-group>.input-group-append>.btn,*[dir=rtl] .input-group>.input-group-append>.input-group-text,*[dir=rtl] .input-group>.input-group-prepend:not(:first-child)>.btn,*[dir=rtl] .input-group>.input-group-prepend:not(:first-child)>.input-group-text,*[dir=rtl] .input-group>.input-group-prepend:first-child>.btn:not(:first-child),*[dir=rtl] .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#ebedef;border:1px solid #c4c9d0;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#8a93a2}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;border-radius:.3rem;background-color:#d8dbe0}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.list-group{display:flex;flex-direction:column;margin-bottom:0;border-radius:.25rem}html:not([dir=rtl]) .list-group{padding-left:0}*[dir=rtl] .list-group{padding-right:0}.list-group-item-action{width:100%;text-align:inherit;color:#768192}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;text-decoration:none;color:#768192;background-color:#ebedef}.list-group-item-action:active{color:#3c4b64;background-color:#d8dbe0}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;border:1px solid;background-color:inherit;border-color:#00001520}.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{pointer-events:none;color:#8a93a2;background-color:inherit}.list-group-item.active{z-index:2;color:#fff;background-color:#321fdb;border-color:#321fdb}.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:.25rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{border-top-right-radius:.25rem;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:.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{border-top-right-radius:.25rem;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:.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{border-top-right-radius:.25rem;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:.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{border-top-right-radius:.25rem;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:.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{border-top-right-radius:.25rem;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:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl .list-group-item:last-child{border-top-right-radius:.25rem;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-primary{color:#1a107c;background-color:#c6c0f5}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#1a107c;background-color:#b2aaf2}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#1a107c;border-color:#1a107c}.list-group-item-secondary{color:#6b6d7a;background-color:#f1f2f4}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#6b6d7a;background-color:#e3e5e9}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#6b6d7a;border-color:#6b6d7a}.list-group-item-success{color:#18603a;background-color:#c4ebd1}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#18603a;background-color:#b1e5c2}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#18603a;border-color:#18603a}.list-group-item-info{color:#1b508f;background-color:#c6e2ff}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#1b508f;background-color:#add5ff}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#1b508f;border-color:#1b508f}.list-group-item-warning{color:#815c15;background-color:#fde9bd}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#815c15;background-color:#fce1a4}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#815c15;border-color:#815c15}.list-group-item-danger{color:#772b35;background-color:#f8cfcf}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#772b35;background-color:#f5b9b9}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#772b35;border-color:#772b35}.list-group-item-light{color:#7a7b86;background-color:#f9fafb}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#7a7b86;background-color:#eaedf1}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#7a7b86;border-color:#7a7b86}.list-group-item-dark{color:#333a4e;background-color:#d3d7dc}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#333a4e;background-color:#c5cad1}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#333a4e;border-color:#333a4e}.list-group-accent .list-group-item{margin-bottom:1px;border-top:0;border-right:0;border-bottom:0;border-radius:0}.list-group-accent .list-group-item.list-group-item-divider{position:relative}.list-group-accent .list-group-item.list-group-item-divider:before{position:absolute;bottom:-1px;width:90%;height:1px;content:"";background-color:#00001520}html:not([dir=rtl]) .list-group-accent .list-group-item.list-group-item-divider:before{left:5%}*[dir=rtl] .list-group-accent .list-group-item.list-group-item-divider:before{right:5%}.list-group-accent .list-group-item-accent-primary{border-left:4px solid #321fdb}.list-group-accent .list-group-item-accent-secondary{border-left:4px solid #ced2d8}.list-group-accent .list-group-item-accent-success{border-left:4px solid #2eb85c}.list-group-accent .list-group-item-accent-info{border-left:4px solid #39f}.list-group-accent .list-group-item-accent-warning{border-left:4px solid #f9b115}.list-group-accent .list-group-item-accent-danger{border-left:4px solid #e55353}.list-group-accent .list-group-item-accent-light{border-left:4px solid #ebedef}.list-group-accent .list-group-item-accent-dark{border-left:4px solid #636f83}.media{display:flex;align-items:flex-start}.media-body{flex:1}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-clip:padding-box;border:1px solid;border-radius:.3rem;outline:0;background-color:#fff;border-color:#00001533}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000015}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px);border-color:#d8dbe0}.modal-header .close{padding:1rem}html:not([dir=rtl]) .modal-header .close{margin:-1rem -1rem -1rem auto}*[dir=rtl] .modal-header .close{margin:-1rem auto -1rem -1rem}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px);border-color:#d8dbe0}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.modal-primary .modal-content{border-color:#321fdb}.modal-primary .modal-header{color:#fff;background-color:#321fdb}.modal-secondary .modal-content{border-color:#ced2d8}.modal-secondary .modal-header{color:#fff;background-color:#ced2d8}.modal-success .modal-content{border-color:#2eb85c}.modal-success .modal-header{color:#fff;background-color:#2eb85c}.modal-info .modal-content{border-color:#39f}.modal-info .modal-header{color:#fff;background-color:#39f}.modal-warning .modal-content{border-color:#f9b115}.modal-warning .modal-header{color:#fff;background-color:#f9b115}.modal-danger .modal-content{border-color:#e55353}.modal-danger .modal-header{color:#fff;background-color:#e55353}.modal-light .modal-content{border-color:#ebedef}.modal-light .modal-header{color:#fff;background-color:#ebedef}.modal-dark .modal-content{border-color:#636f83}.modal-dark .modal-header{color:#fff;background-color:#636f83}.nav{display:flex;flex-wrap:wrap;margin-bottom:0;list-style:none}html:not([dir=rtl]) .nav{padding-left:0}*[dir=rtl] .nav{padding-right:0}.nav-link{display:block;padding:.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{pointer-events:none;cursor:default;color:#8a93a2}.nav-tabs{border-bottom:1px solid;border-color:#c4c9d0}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#d8dbe0 #d8dbe0 #c4c9d0}.nav-tabs .nav-link.disabled{background-color:transparent;border-color:transparent;color:#8a93a2}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#768192;background-color:#ebedef;border-color:#c4c9d0 #c4c9d0 #ebedef}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-tabs-boxed .nav-tabs{border:0}.nav-tabs-boxed .nav-tabs .nav-link.active{background-color:#fff;border-bottom-color:#fff}.nav-tabs-boxed .tab-content{padding:.75rem 1.25rem;border:1px solid;border-radius:0 .25rem .25rem;color:#768192;background-color:#fff;border-color:#d8dbe0}.nav-tabs-boxed.nav-tabs-boxed-top-right .nav-tabs{justify-content:flex-end}.nav-tabs-boxed.nav-tabs-boxed-top-right .tab-content{border-radius:.25rem 0 .25rem .25rem}.nav-tabs-boxed.nav-tabs-boxed-left,.nav-tabs-boxed.nav-tabs-boxed-right{display:flex}.nav-tabs-boxed.nav-tabs-boxed-left .nav-item,.nav-tabs-boxed.nav-tabs-boxed-right .nav-item{z-index:1;flex-grow:1;margin-bottom:0}*[dir=rtl] .nav-tabs-boxed.nav-tabs-boxed-left{flex-direction:row-reverse}.nav-tabs-boxed.nav-tabs-boxed-left .nav-item{margin-right:-1px}.nav-tabs-boxed.nav-tabs-boxed-left .nav-link{border-radius:.25rem 0 0 .25rem}.nav-tabs-boxed.nav-tabs-boxed-left .nav-link.active{border-color:#d8dbe0 #fff #d8dbe0 #d8dbe0}html:not([dir=rtl]) .nav-tabs-boxed.nav-tabs-boxed-right{flex-direction:row-reverse}*[dir=rtl] .nav-tabs-boxed.nav-tabs-boxed-right{flex-direction:row}html:not([dir=rtl]) .nav-tabs-boxed.nav-tabs-boxed-right .nav-item{margin-left:-1px}*[dir=rtl] .nav-tabs-boxed.nav-tabs-boxed-right .nav-item{margin-right:-1px}.nav-tabs-boxed.nav-tabs-boxed-right .nav-link{border-radius:0 .25rem .25rem 0}.nav-tabs-boxed.nav-tabs-boxed-right .nav-link.active{border-color:#d8dbe0 #d8dbe0 #d8dbe0 #fff}.nav-tabs-boxed.nav-tabs-boxed-right .tab-content{border-radius:.25rem 0 .25rem .25rem}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#321fdb}.nav-underline{border-bottom:2px solid;border-color:#c4c9d0}.nav-underline .nav-item{margin-bottom:-2px}.nav-underline .nav-link{border:0;border-bottom:2px solid transparent}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{background:transparent}.nav-underline-primary .nav-link.active,.nav-underline-primary .show>.nav-link{color:#321fdb;border-color:#321fdb}.nav-underline-secondary .nav-link.active,.nav-underline-secondary .show>.nav-link{color:#ced2d8;border-color:#ced2d8}.nav-underline-success .nav-link.active,.nav-underline-success .show>.nav-link{color:#2eb85c;border-color:#2eb85c}.nav-underline-info .nav-link.active,.nav-underline-info .show>.nav-link{color:#39f;border-color:#39f}.nav-underline-warning .nav-link.active,.nav-underline-warning .show>.nav-link{color:#f9b115;border-color:#f9b115}.nav-underline-danger .nav-link.active,.nav-underline-danger .show>.nav-link{color:#e55353;border-color:#e55353}.nav-underline-light .nav-link.active,.nav-underline-light .show>.nav-link{color:#ebedef;border-color:#ebedef}.nav-underline-dark .nav-link.active,.nav-underline-dark .show>.nav-link{color:#636f83;border-color:#636f83}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.c-sidebar .nav-tabs:first-child .nav-link,.c-sidebar .c-sidebar-close+.nav-tabs .nav-link{display:flex;align-items:center;height:56px;padding-top:0;padding-bottom:0}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl,.navbar .container-xxl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3359375rem;padding-bottom:.3359375rem;margin-right:1rem;font-size:1.09375rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;margin-bottom:0;list-style:none}html:not([dir=rtl]) .navbar-nav{padding-left:0}*[dir=rtl] .navbar-nav{padding-right:0}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.09375rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl,.navbar-expand-sm>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl,.navbar-expand-sm>.container-xxl{flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl,.navbar-expand-md>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl,.navbar-expand-md>.container-xxl{flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl,.navbar-expand-lg>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl,.navbar-expand-lg>.container-xxl{flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl,.navbar-expand-xl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl,.navbar-expand-xl>.container-xxl{flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (max-width: 1399.98px){.navbar-expand-xxl>.container,.navbar-expand-xxl>.container-fluid,.navbar-expand-xxl>.container-sm,.navbar-expand-xxl>.container-md,.navbar-expand-xxl>.container-lg,.navbar-expand-xxl>.container-xl,.navbar-expand-xxl>.container-xxl{padding-right:0;padding-left:0}}@media (min-width: 1400px){.navbar-expand-xxl{flex-flow:row 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>.container,.navbar-expand-xxl>.container-fluid,.navbar-expand-xxl>.container-sm,.navbar-expand-xxl>.container-md,.navbar-expand-xxl>.container-lg,.navbar-expand-xxl>.container-xl,.navbar-expand-xxl>.container-xxl{flex-wrap:nowrap}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl,.navbar-expand>.container-xxl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl,.navbar-expand>.container-xxl{flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar.navbar-dark .navbar-brand{color:#fff}.navbar.navbar-dark .navbar-brand:hover,.navbar.navbar-dark .navbar-brand:focus{color:#fff}.navbar.navbar-dark .navbar-nav .nav-link{color:#ffffff80}.navbar.navbar-dark .navbar-nav .nav-link:hover,.navbar.navbar-dark .navbar-nav .nav-link:focus{color:#ffffffbf}.navbar.navbar-dark .navbar-nav .nav-link.disabled{color:#ffffff40}.navbar.navbar-dark .navbar-nav .show>.nav-link,.navbar.navbar-dark .navbar-nav .active>.nav-link,.navbar.navbar-dark .navbar-nav .nav-link.show,.navbar.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar.navbar-dark .navbar-toggler{color:#ffffff80;border-color:#ffffff1a}.navbar.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar.navbar-dark .navbar-text{color:#ffffff80}.navbar.navbar-dark .navbar-text a{color:#fff}.navbar.navbar-dark .navbar-text a:hover,.navbar.navbar-dark .navbar-text a:focus{color:#fff}.navbar.navbar-light .navbar-brand{color:#000015e6}.navbar.navbar-light .navbar-brand:hover,.navbar.navbar-light .navbar-brand:focus{color:#000015e6}.navbar.navbar-light .navbar-nav .nav-link{color:#00001580}.navbar.navbar-light .navbar-nav .nav-link:hover,.navbar.navbar-light .navbar-nav .nav-link:focus{color:#000015b3}.navbar.navbar-light .navbar-nav .nav-link.disabled{color:#0000154d}.navbar.navbar-light .navbar-nav .show>.nav-link,.navbar.navbar-light .navbar-nav .active>.nav-link,.navbar.navbar-light .navbar-nav .nav-link.show,.navbar.navbar-light .navbar-nav .nav-link.active{color:#000015e6}.navbar.navbar-light .navbar-toggler{color:#00001580;border-color:#0000151a}.navbar.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 21, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar.navbar-light .navbar-text{color:#00001580}.navbar.navbar-light .navbar-text a{color:#000015e6}.navbar.navbar-light .navbar-text a:hover,.navbar.navbar-light .navbar-text a:focus{color:#000015e6}.pagination{display:flex;list-style:none;border-radius:.25rem}html:not([dir=rtl]) .pagination{padding-left:0}*[dir=rtl] .pagination{padding-right:0}.page-link{position:relative;display:block;padding:.5rem .75rem;line-height:1.25;border:1px solid;color:#321fdb;background-color:#fff;border-color:#d8dbe0}html:not([dir=rtl]) .page-link{margin-left:-1px}*[dir=rtl] .page-link{margin-right:-1px}.page-link:hover{z-index:2;text-decoration:none;color:#231698;background-color:#d8dbe0;border-color:#c4c9d0}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem #321fdb40}html:not([dir=rtl]) .page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}*[dir=rtl] .page-item:first-child .page-link{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}html:not([dir=rtl]) .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}*[dir=rtl] .page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#321fdb;border-color:#321fdb}.page-item.disabled .page-link{pointer-events:none;cursor:auto;color:#8a93a2;background-color:#fff;border-color:#c4c9d0}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.09375rem;line-height:1.5}html:not([dir=rtl]) .pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}*[dir=rtl] .pagination-lg .page-item:first-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}html:not([dir=rtl]) .pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}*[dir=rtl] .pagination-lg .page-item:last-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.765625rem;line-height:1.5}html:not([dir=rtl]) .pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}*[dir=rtl] .pagination-sm .page-item:first-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}html:not([dir=rtl]) .pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}*[dir=rtl] .pagination-sm .page-item:last-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.popover{z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.765625rem;word-wrap:break-word;background-clip:padding-box;border:1px solid;border-radius:.3rem;background-color:#fff;border-color:#00001533}.popover .popover-arrow{position:absolute;display:block}.popover .popover-arrow:before,.popover .popover-arrow:after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.popover[data-popper-placement^=top] .popover-arrow,.popover[data-popper-placement^=bottom] .popover-arrow{width:1.6rem;height:.5rem;padding:0 .3rem}.popover[data-popper-placement^=right] .popover-arrow,.popover[data-popper-placement^=left] .popover-arrow{width:.5rem;height:1.6rem;padding:.3rem 0;margin:0}.popover[data-popper-placement^=top]{margin-bottom:.5rem!important}.popover[data-popper-placement^=top]>.popover-arrow{bottom:calc(-.5rem - 1px)}.popover[data-popper-placement^=top]>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#00001540}.popover[data-popper-placement^=top]>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.popover[data-popper-placement^=right]{margin-left:.5rem!important}.popover[data-popper-placement^=right]>.popover-arrow{left:calc(-.5rem - 1px)}.popover[data-popper-placement^=right]>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#00001540}.popover[data-popper-placement^=right]>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.popover[data-popper-placement^=bottom]{margin-top:.5rem!important}.popover[data-popper-placement^=bottom]>.popover-arrow{top:calc(-.5rem - 1px)}.popover[data-popper-placement^=bottom]>.popover-arrow:before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:#00001540}.popover[data-popper-placement^=bottom]>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.popover[data-popper-placement^=bottom] .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid;border-bottom-color:#f7f7f7}.popover[data-popper-placement^=left]{margin-left:.5rem!important}.popover[data-popper-placement^=left]>.popover-arrow{right:calc(-.5rem - 1px)}.popover[data-popper-placement^=left]>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#00001540}.popover[data-popper-placement^=left]>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:.875rem;border-bottom:1px solid;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px);background-color:#f7f7f7;border-bottom-color:#ebebeb}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#3c4b64}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.65625rem;border-radius:.25rem;background-color:#ebedef}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;text-align:center;white-space:nowrap;transition:width .6s ease;color:#fff;background-color:#321fdb}@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:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.progress-xs{height:4px}.progress-sm{height:8px}.progress.progress-white{background-color:#fff3}.progress.progress-white .progress-bar{background-color:#fff}.progress-group{display:flex;flex-flow:row wrap;margin-bottom:1rem}.progress-group-prepend{flex:0 0 100px;align-self:center}.progress-group-icon{font-size:1.09375rem}html:not([dir=rtl]) .progress-group-icon{margin:0 1rem 0 .25rem}*[dir=rtl] .progress-group-icon{margin:0 .25rem 0 1rem}.progress-group-text{font-size:.765625rem;color:#768192}.progress-group-header{display:flex;flex-basis:100%;align-items:flex-end;margin-bottom:.25rem}.progress-group-bars{flex-grow:1;align-self:center}.progress-group-bars .progress:not(:last-child){margin-bottom:2px}.progress-group-header+.progress-group-bars{flex-basis:100%}.c-sidebar{position:relative;display:flex;flex:0 0 256px;flex-direction:column;order:-1;width:256px;padding:0;box-shadow:none}.c-sidebar.c-sidebar-right{order:99}@media (max-width: 991.98px){.c-sidebar{--is-mobile: true;position:fixed;top:0;bottom:0;z-index:1031}html:not([dir=rtl]) .c-sidebar:not(.c-sidebar-right){left:0}html:not([dir=rtl]) .c-sidebar.c-sidebar-right{right:0}*[dir=rtl] .c-sidebar:not(.c-sidebar-right){right:0}*[dir=rtl] .c-sidebar.c-sidebar-right{left:0}}html:not([dir=rtl]) .c-sidebar:not(.c-sidebar-right){margin-left:-256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-right{margin-right:-256px}*[dir=rtl] .c-sidebar:not(.c-sidebar-right){margin-right:-256px}*[dir=rtl] .c-sidebar.c-sidebar-right{margin-left:-256px}.c-sidebar[class*=bg-]{border-color:#0000151a}.c-sidebar.c-sidebar-sm{flex:0 0 192px;width:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-sm:not(.c-sidebar-right){margin-left:-192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-sm.c-sidebar-right{margin-right:-192px}*[dir=rtl] .c-sidebar.c-sidebar-sm:not(.c-sidebar-right){margin-right:-192px}*[dir=rtl] .c-sidebar.c-sidebar-sm.c-sidebar-right{margin-left:-192px}.c-sidebar.c-sidebar-lg{flex:0 0 320px;width:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-lg:not(.c-sidebar-right){margin-left:-320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-lg.c-sidebar-right{margin-right:-320px}*[dir=rtl] .c-sidebar.c-sidebar-lg:not(.c-sidebar-right){margin-right:-320px}*[dir=rtl] .c-sidebar.c-sidebar-lg.c-sidebar-right{margin-left:-320px}.c-sidebar.c-sidebar-xl{flex:0 0 384px;width:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xl:not(.c-sidebar-right){margin-left:-384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xl.c-sidebar-right{margin-right:-384px}*[dir=rtl] .c-sidebar.c-sidebar-xl:not(.c-sidebar-right){margin-right:-384px}*[dir=rtl] .c-sidebar.c-sidebar-xl.c-sidebar-right{margin-left:-384px}@media (min-width: 992px){.c-sidebar.c-sidebar-fixed{position:fixed;top:0;bottom:0;z-index:1030}html:not([dir=rtl]) .c-sidebar.c-sidebar-fixed:not(.c-sidebar-right){left:0}html:not([dir=rtl]) .c-sidebar.c-sidebar-fixed.c-sidebar-right{right:0}*[dir=rtl] .c-sidebar.c-sidebar-fixed:not(.c-sidebar-right){right:0}*[dir=rtl] .c-sidebar.c-sidebar-fixed.c-sidebar-right{left:0}}.c-sidebar.c-sidebar-overlaid{position:fixed;top:0;bottom:0;z-index:1032}html:not([dir=rtl]) .c-sidebar.c-sidebar-overlaid:not(.c-sidebar-right){left:0}html:not([dir=rtl]) .c-sidebar.c-sidebar-overlaid.c-sidebar-right{right:0}*[dir=rtl] .c-sidebar.c-sidebar-overlaid:not(.c-sidebar-right){right:0}*[dir=rtl] .c-sidebar.c-sidebar-overlaid.c-sidebar-right{left:0}.c-sidebar-close{position:absolute;width:56px;height:56px;background:transparent;border:0}@media (hover: hover),(-ms-high-contrast: none){.c-sidebar-close:hover{text-decoration:none}}.c-sidebar-close:focus,.c-sidebar-close.focus{outline:0}html:not([dir=rtl]) .c-sidebar-close{right:0}*[dir=rtl] .c-sidebar-close{left:0}.c-sidebar-brand{display:flex;flex:0 0 56px;align-items:center;justify-content:center}.c-sidebar-brand .c-sidebar-brand-minimized{display:none}.c-sidebar-header{flex:0 0 auto;padding:.75rem 1rem;text-align:center;transition:.3s}.c-sidebar-nav{position:relative;display:flex;flex:1;flex-direction:column;padding:0;margin-bottom:0;overflow-x:hidden;overflow-y:auto;list-style:none}.c-sidebar-nav.ps{overflow:-moz-scrollbars-none;-ms-overflow-style:none}.c-sidebar-nav.ps::-webkit-scrollbar{width:0!important}.c-sidebar-nav-title{padding:.75rem 1rem;margin-top:1rem;font-size:80%;font-weight:700;text-transform:uppercase;transition:.3s}.c-sidebar-nav-divider{height:10px;transition:height .3s}.c-sidebar-nav-item{width:inherit}.c-sidebar-nav-link,.c-sidebar-nav-dropdown-toggle{display:flex;flex:1;align-items:center;padding:.8445rem 1rem;text-decoration:none;white-space:nowrap;transition:background .3s,color .3s}html:not([dir=rtl]) .c-sidebar-nav-link .badge,html:not([dir=rtl]) .c-sidebar-nav-dropdown-toggle .badge{margin-left:auto}*[dir=rtl] .c-sidebar-nav-link .badge,*[dir=rtl] .c-sidebar-nav-dropdown-toggle .badge{margin-right:auto}.c-sidebar-nav-link.c-disabled,.c-disabled.c-sidebar-nav-dropdown-toggle{cursor:default}@media (hover: hover),(-ms-high-contrast: none){.c-sidebar-nav-link:hover,.c-sidebar-nav-dropdown-toggle:hover{text-decoration:none}}.c-sidebar-nav-icon{flex:0 0 56px;height:1.09375rem;font-size:1.09375rem;text-align:center;transition:.3s;fill:currentColor}html:not([dir=rtl]) .c-sidebar-nav-icon:first-child{margin-left:-1rem}*[dir=rtl] .c-sidebar-nav-icon:first-child{margin-right:-1rem}.c-sidebar-nav-dropdown{position:relative;transition:background .3s ease-in-out}.c-sidebar-nav-dropdown.c-show>.c-sidebar-nav-dropdown-items{max-height:1500px}html:not([dir=rtl]) .c-sidebar-nav-dropdown.c-show>.c-sidebar-nav-dropdown-toggle:after{transform:rotate(-90deg)}*[dir=rtl] .c-sidebar-nav-dropdown.c-show>.c-sidebar-nav-dropdown-toggle:after{transform:rotate(270deg)}.c-sidebar-nav-dropdown.c-show+.c-sidebar-nav-dropdown.c-show{margin-top:1px}.c-sidebar-nav-dropdown-toggle{cursor:pointer}.c-sidebar-nav-dropdown-toggle:after{display:block;flex:0 8px;height:8px;content:"";background-repeat:no-repeat;background-position:center;transition:transform .3s}html:not([dir=rtl]) .c-sidebar-nav-dropdown-toggle:after{margin-left:auto}*[dir=rtl] .c-sidebar-nav-dropdown-toggle:after{margin-right:auto;transform:rotate(180deg)}html:not([dir=rtl]) .c-sidebar-nav-dropdown-toggle .badge{margin-right:1rem}*[dir=rtl] .c-sidebar-nav-dropdown-toggle .badge{margin-left:1rem}.c-sidebar-nav-dropdown-items{max-height:0;padding:0;overflow-y:hidden;list-style:none;transition:max-height .3s ease-in-out}html:not([dir=rtl]) .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,html:not([dir=rtl]) .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{padding-left:56px}*[dir=rtl] .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,*[dir=rtl] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{padding-right:56px}html:not([dir=rtl]) .c-sidebar-nav-dropdown-items .c-sidebar-nav-link .c-sidebar-nav-icon,html:not([dir=rtl]) .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{margin-left:-56px}*[dir=rtl] .c-sidebar-nav-dropdown-items .c-sidebar-nav-link .c-sidebar-nav-icon,*[dir=rtl] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{margin-right:-56px}html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{padding-left:64px}*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{padding-right:64px}html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-link .c-sidebar-nav-icon,html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{margin-left:-56px}*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-link .c-sidebar-nav-icon,*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{margin-right:-56px}html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{padding-left:72px}*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{padding-right:72px}html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link .c-sidebar-nav-icon,html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{margin-left:-56px}*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link .c-sidebar-nav-icon,*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{margin-right:-56px}html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{padding-left:80px}*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{padding-right:80px}html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link .c-sidebar-nav-icon,html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{margin-left:-56px}*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link .c-sidebar-nav-icon,*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{margin-right:-56px}html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{padding-left:88px}*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{padding-right:88px}html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link .c-sidebar-nav-icon,html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{margin-left:-56px}*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link .c-sidebar-nav-icon,*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{margin-right:-56px}html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{padding-left:96px}*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{padding-right:96px}html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link .c-sidebar-nav-icon,html:not([dir=rtl]) .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{margin-left:-56px}*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-link .c-sidebar-nav-icon,*[dir=rtl] .c-sidebar-nav[data-indentation=true] .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{margin-right:-56px}.c-sidebar-nav-label{display:flex;padding:.211125rem 1rem;transition:.3s}.c-sidebar-nav-label:hover{text-decoration:none}.c-sidebar-nav-label .c-sidebar-nav-icon{margin-top:1px}.c-sidebar-footer{flex:0 0 auto;padding:.75rem 1rem;transition:.3s}.c-sidebar-minimizer{display:flex;flex:0 0 50px;justify-content:flex-end;width:inherit;padding:0;cursor:pointer;border:0}@media (max-width: 991.98px){.c-sidebar-minimizer{display:none}}.c-sidebar-minimizer:before{display:block;width:50px;height:50px;content:"";background-repeat:no-repeat;background-position:center;background-size:12.5px;transition:.3s}*[dir=rtl] .c-sidebar-minimizer:before{transform:rotate(180deg)}.c-sidebar-minimizer:focus,.c-sidebar-minimizer.c-focus{outline:0}.c-sidebar-right .c-sidebar-minimizer{justify-content:flex-start}html:not([dir=rtl]) .c-sidebar-right .c-sidebar-minimizer:before{transform:rotate(-180deg)}*[dir=rtl] .c-sidebar-right .c-sidebar-minimizer:before{transform:rotate(0)}@media (max-width: 991.98px){.c-sidebar-backdrop{position:fixed;top:0;left:0;z-index:1030;width:100vw;height:100vh;background-color:#000015;transition:.3s}.c-sidebar-backdrop.c-fade{opacity:0}.c-sidebar-backdrop.c-show{opacity:.5}}@media (min-width: 992px){.c-sidebar-minimized{z-index:1031;flex:0 0 56px}.c-sidebar-minimized.c-sidebar-fixed{z-index:1031;width:56px}html:not([dir=rtl]) .c-sidebar-minimized:not(.c-sidebar-right){margin-left:-56px}*[dir=rtl] .c-sidebar-minimized:not(.c-sidebar-right){margin-right:-56px}html:not([dir=rtl]) .c-sidebar-minimized.c-sidebar-right{margin-right:-56px}html:not([dir=rtl]) .c-sidebar-minimized.c-sidebar-right{margin-left:-56px}.c-sidebar-minimized .c-sidebar-brand-full{display:none}.c-sidebar-minimized .c-sidebar-brand-minimized{display:block}.c-sidebar-minimized .c-sidebar-nav{padding-bottom:50px;overflow:visible}.c-sidebar-minimized .c-d-minimized-none,.c-sidebar-minimized .c-sidebar-nav-divider,.c-sidebar-minimized .c-sidebar-nav-label,.c-sidebar-minimized .c-sidebar-nav-title,.c-sidebar-minimized .c-sidebar-footer,.c-sidebar-minimized .c-sidebar-form,.c-sidebar-minimized .c-sidebar-header{height:0;padding:0;margin:0;visibility:hidden;opacity:0}.c-sidebar-minimized .c-sidebar-minimizer{position:fixed;bottom:0;width:inherit}html:not([dir=rtl]) .c-sidebar-minimized .c-sidebar-minimizer:before{transform:rotate(-180deg)}*[dir=rtl] .c-sidebar-minimized .c-sidebar-minimizer:before{transform:rotate(0)}html:not([dir=rtl]) .c-sidebar-minimized.c-sidebar-right .c-sidebar-minimizer:before{transform:rotate(0)}*[dir=rtl] .c-sidebar-minimized.c-sidebar-right .c-sidebar-minimizer:before{transform:rotate(180deg)}html:not([dir=rtl]) .c-sidebar-minimized.c-sidebar-right .c-sidebar-nav>.c-sidebar-nav-item:hover,html:not([dir=rtl]) .c-sidebar-minimized.c-sidebar-right .c-sidebar-nav>.c-sidebar-nav-dropdown:hover{margin-left:-256px}*[dir=rtl] .c-sidebar-minimized.c-sidebar-right .c-sidebar-nav>.c-sidebar-nav-item:hover,*[dir=rtl] .c-sidebar-minimized.c-sidebar-right .c-sidebar-nav>.c-sidebar-nav-dropdown:hover{margin-right:-256px}.c-sidebar-minimized .c-sidebar-nav-link,.c-sidebar-minimized .c-sidebar-nav-dropdown-toggle{overflow:hidden;white-space:nowrap;border-left:0}.c-sidebar-minimized .c-sidebar-nav-link:hover,.c-sidebar-minimized .c-sidebar-nav-dropdown-toggle:hover{width:312px}.c-sidebar-minimized .c-sidebar-nav-dropdown-toggle:after{display:none}.c-sidebar-minimized .c-sidebar-nav-dropdown-items .c-sidebar-nav-link,.c-sidebar-minimized .c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown-toggle{width:256px}.c-sidebar-minimized .c-sidebar-nav>.c-sidebar-nav-dropdown{position:relative}.c-sidebar-minimized .c-sidebar-nav>.c-sidebar-nav-dropdown>.c-sidebar-nav-dropdown-items{display:none}.c-sidebar-minimized .c-sidebar-nav>.c-sidebar-nav-dropdown>.c-sidebar-nav-dropdown-items .c-sidebar-nav-dropdown:not(.c-show)>.c-sidebar-nav-dropdown-items{display:none}.c-sidebar-minimized .c-sidebar-nav>.c-sidebar-nav-dropdown .c-sidebar-nav-dropdown-items{max-height:1500px}.c-sidebar-minimized .c-sidebar-nav>.c-sidebar-nav-dropdown:hover{width:312px;overflow:visible}.c-sidebar-minimized .c-sidebar-nav>.c-sidebar-nav-dropdown:hover>.c-sidebar-nav-dropdown-items{position:absolute;display:inline}html:not([dir=rtl]) .c-sidebar-minimized .c-sidebar-nav>.c-sidebar-nav-dropdown:hover>.c-sidebar-nav-dropdown-items{left:56px}*[dir=rtl] .c-sidebar-minimized .c-sidebar-nav>.c-sidebar-nav-dropdown:hover>.c-sidebar-nav-dropdown-items{right:56px}html:not([dir=rtl]) .c-sidebar-minimized.c-sidebar-right>.c-sidebar-nav-dropdown:hover>.c-sidebar-nav-dropdown-items{left:0}*[dir=rtl] .c-sidebar-minimized.c-sidebar-right>.c-sidebar-nav-dropdown:hover>.c-sidebar-nav-dropdown-items{right:0}}html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right){margin-left:0}*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right){margin-right:0}@media (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper{margin-left:256px}*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper{margin-right:256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-left:192px}*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-right:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-left:320px}*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-right:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-left:384px}*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-right:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-left:56px}*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-right:56px}}html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right{margin-right:0}*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right{margin-left:0}@media (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper{margin-right:256px}*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper{margin-left:256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-right:192px}*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-left:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-right:320px}*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-left:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-right:384px}*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-left:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-right:56px}*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-left:56px}}@media (min-width: 576px){html:not([dir=rtl]) .c-sidebar.c-sidebar-sm-show:not(.c-sidebar-right),html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right){margin-left:0}*[dir=rtl] .c-sidebar.c-sidebar-sm-show:not(.c-sidebar-right),*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right){margin-right:0}}@media (min-width: 576px) and (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-sm-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper{margin-left:256px}*[dir=rtl] .c-sidebar.c-sidebar-sm-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper{margin-right:256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-sm-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-left:192px}*[dir=rtl] .c-sidebar.c-sidebar-sm-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-right:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-sm-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-left:320px}*[dir=rtl] .c-sidebar.c-sidebar-sm-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-right:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-sm-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-left:384px}*[dir=rtl] .c-sidebar.c-sidebar-sm-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-right:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-sm-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-left:56px}*[dir=rtl] .c-sidebar.c-sidebar-sm-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-right:56px}}@media (min-width: 576px){html:not([dir=rtl]) .c-sidebar.c-sidebar-sm-show.c-sidebar-right,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right{margin-right:0}*[dir=rtl] .c-sidebar.c-sidebar-sm-show.c-sidebar-right,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right{margin-left:0}}@media (min-width: 576px) and (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-sm-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper{margin-right:256px}*[dir=rtl] .c-sidebar.c-sidebar-sm-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper{margin-left:256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-sm-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-right:192px}*[dir=rtl] .c-sidebar.c-sidebar-sm-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-left:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-sm-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-right:320px}*[dir=rtl] .c-sidebar.c-sidebar-sm-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-left:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-sm-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-right:384px}*[dir=rtl] .c-sidebar.c-sidebar-sm-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-left:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-sm-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-right:56px}*[dir=rtl] .c-sidebar.c-sidebar-sm-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-left:56px}}@media (min-width: 768px){html:not([dir=rtl]) .c-sidebar.c-sidebar-md-show:not(.c-sidebar-right),html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right){margin-left:0}*[dir=rtl] .c-sidebar.c-sidebar-md-show:not(.c-sidebar-right),*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right){margin-right:0}}@media (min-width: 768px) and (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-md-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper{margin-left:256px}*[dir=rtl] .c-sidebar.c-sidebar-md-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper{margin-right:256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-md-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-left:192px}*[dir=rtl] .c-sidebar.c-sidebar-md-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-right:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-md-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-left:320px}*[dir=rtl] .c-sidebar.c-sidebar-md-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-right:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-md-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-left:384px}*[dir=rtl] .c-sidebar.c-sidebar-md-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-right:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-md-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-left:56px}*[dir=rtl] .c-sidebar.c-sidebar-md-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-right:56px}}@media (min-width: 768px){html:not([dir=rtl]) .c-sidebar.c-sidebar-md-show.c-sidebar-right,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right{margin-right:0}*[dir=rtl] .c-sidebar.c-sidebar-md-show.c-sidebar-right,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right{margin-left:0}}@media (min-width: 768px) and (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-md-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper{margin-right:256px}*[dir=rtl] .c-sidebar.c-sidebar-md-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper{margin-left:256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-md-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-right:192px}*[dir=rtl] .c-sidebar.c-sidebar-md-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-left:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-md-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-right:320px}*[dir=rtl] .c-sidebar.c-sidebar-md-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-left:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-md-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-right:384px}*[dir=rtl] .c-sidebar.c-sidebar-md-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-left:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-md-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-right:56px}*[dir=rtl] .c-sidebar.c-sidebar-md-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-left:56px}}@media (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-lg-show:not(.c-sidebar-right),html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right){margin-left:0}*[dir=rtl] .c-sidebar.c-sidebar-lg-show:not(.c-sidebar-right),*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right){margin-right:0}}@media (min-width: 992px) and (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-lg-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper{margin-left:256px}*[dir=rtl] .c-sidebar.c-sidebar-lg-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper{margin-right:256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-lg-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-left:192px}*[dir=rtl] .c-sidebar.c-sidebar-lg-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-right:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-lg-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-left:320px}*[dir=rtl] .c-sidebar.c-sidebar-lg-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-right:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-lg-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-left:384px}*[dir=rtl] .c-sidebar.c-sidebar-lg-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-right:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-lg-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-left:56px}*[dir=rtl] .c-sidebar.c-sidebar-lg-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-right:56px}}@media (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-lg-show.c-sidebar-right,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right{margin-right:0}*[dir=rtl] .c-sidebar.c-sidebar-lg-show.c-sidebar-right,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right{margin-left:0}}@media (min-width: 992px) and (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-lg-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper{margin-right:256px}*[dir=rtl] .c-sidebar.c-sidebar-lg-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper{margin-left:256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-lg-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-right:192px}*[dir=rtl] .c-sidebar.c-sidebar-lg-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-left:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-lg-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-right:320px}*[dir=rtl] .c-sidebar.c-sidebar-lg-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-left:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-lg-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-right:384px}*[dir=rtl] .c-sidebar.c-sidebar-lg-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-left:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-lg-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-right:56px}*[dir=rtl] .c-sidebar.c-sidebar-lg-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-left:56px}}@media (min-width: 1200px){html:not([dir=rtl]) .c-sidebar.c-sidebar-xl-show:not(.c-sidebar-right),html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right){margin-left:0}*[dir=rtl] .c-sidebar.c-sidebar-xl-show:not(.c-sidebar-right),*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right){margin-right:0}}@media (min-width: 1200px) and (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-xl-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper{margin-left:256px}*[dir=rtl] .c-sidebar.c-sidebar-xl-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper{margin-right:256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-left:192px}*[dir=rtl] .c-sidebar.c-sidebar-xl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-right:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-left:320px}*[dir=rtl] .c-sidebar.c-sidebar-xl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-right:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-left:384px}*[dir=rtl] .c-sidebar.c-sidebar-xl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-right:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-left:56px}*[dir=rtl] .c-sidebar.c-sidebar-xl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-right:56px}}@media (min-width: 1200px){html:not([dir=rtl]) .c-sidebar.c-sidebar-xl-show.c-sidebar-right,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right{margin-right:0}*[dir=rtl] .c-sidebar.c-sidebar-xl-show.c-sidebar-right,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right{margin-left:0}}@media (min-width: 1200px) and (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-xl-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper{margin-right:256px}*[dir=rtl] .c-sidebar.c-sidebar-xl-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper{margin-left:256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-right:192px}*[dir=rtl] .c-sidebar.c-sidebar-xl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-left:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-right:320px}*[dir=rtl] .c-sidebar.c-sidebar-xl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-left:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-right:384px}*[dir=rtl] .c-sidebar.c-sidebar-xl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-left:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-right:56px}*[dir=rtl] .c-sidebar.c-sidebar-xl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-left:56px}}@media (min-width: 1400px){html:not([dir=rtl]) .c-sidebar.c-sidebar-xxl-show:not(.c-sidebar-right),html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right){margin-left:0}*[dir=rtl] .c-sidebar.c-sidebar-xxl-show:not(.c-sidebar-right),*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right){margin-right:0}}@media (min-width: 1400px) and (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-xxl-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper{margin-left:256px}*[dir=rtl] .c-sidebar.c-sidebar-xxl-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed~.c-wrapper{margin-right:256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xxl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-left:192px}*[dir=rtl] .c-sidebar.c-sidebar-xxl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-right:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xxl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-left:320px}*[dir=rtl] .c-sidebar.c-sidebar-xxl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-right:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xxl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-left:384px}*[dir=rtl] .c-sidebar.c-sidebar-xxl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-right:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xxl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-left:56px}*[dir=rtl] .c-sidebar.c-sidebar-xxl-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show:not(.c-sidebar-right).c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-right:56px}}@media (min-width: 1400px){html:not([dir=rtl]) .c-sidebar.c-sidebar-xxl-show.c-sidebar-right,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right{margin-right:0}*[dir=rtl] .c-sidebar.c-sidebar-xxl-show.c-sidebar-right,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right{margin-left:0}}@media (min-width: 1400px) and (min-width: 992px){html:not([dir=rtl]) .c-sidebar.c-sidebar-xxl-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper{margin-right:256px}*[dir=rtl] .c-sidebar.c-sidebar-xxl-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed~.c-wrapper{margin-left:256px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xxl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-right:192px}*[dir=rtl] .c-sidebar.c-sidebar-xxl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-sm~.c-wrapper{margin-left:192px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xxl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-right:320px}*[dir=rtl] .c-sidebar.c-sidebar-xxl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-lg~.c-wrapper{margin-left:320px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xxl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-right:384px}*[dir=rtl] .c-sidebar.c-sidebar-xxl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-xl~.c-wrapper{margin-left:384px}html:not([dir=rtl]) .c-sidebar.c-sidebar-xxl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,html:not([dir=rtl]) .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-right:56px}*[dir=rtl] .c-sidebar.c-sidebar-xxl-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper,*[dir=rtl] .c-sidebar.c-sidebar-show.c-sidebar-right.c-sidebar-fixed.c-sidebar-minimized~.c-wrapper{margin-left:56px}}.c-sidebar{color:#fff;background:#3c4b64}*[dir=rtl] .c-sidebar.c-sidebar-right{border:0}.c-sidebar .c-sidebar-close{color:#fff}.c-sidebar .c-sidebar-brand{color:#fff;background:rgba(0,0,21,.2)}.c-sidebar .c-sidebar-header{background:rgba(0,0,21,.2)}.c-sidebar .c-sidebar-form .c-form-control{color:#fff;background:rgba(0,0,21,.1);border:0}.c-sidebar .c-sidebar-form .c-form-control::placeholder{color:#ffffffb3}.c-sidebar .c-sidebar-nav-title{color:#fff9}.c-sidebar .c-sidebar-nav-link,.c-sidebar .c-sidebar-nav-dropdown-toggle{color:#fffc;background:transparent}.c-sidebar .c-sidebar-nav-link .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#ffffff80}.c-sidebar .c-sidebar-nav-link.c-active,.c-sidebar .c-active.c-sidebar-nav-dropdown-toggle{color:#fff;background:rgba(255,255,255,.05)}.c-sidebar .c-sidebar-nav-link.c-active .c-sidebar-nav-icon,.c-sidebar .c-active.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#fff}.c-sidebar .c-sidebar-nav-link:focus,.c-sidebar .c-sidebar-nav-dropdown-toggle:focus{outline:none}@media (hover: hover),(-ms-high-contrast: none){.c-sidebar .c-sidebar-nav-link:hover,.c-sidebar .c-sidebar-nav-dropdown-toggle:hover{color:#fff;background:#321fdb}.c-sidebar .c-sidebar-nav-link:hover .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#fff}.c-sidebar .c-sidebar-nav-link:hover.c-sidebar-nav-dropdown-toggle:after,.c-sidebar :hover.c-sidebar-nav-dropdown-toggle:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23fff' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E")}}.c-sidebar .c-sidebar-nav-link.c-disabled,.c-sidebar .c-disabled.c-sidebar-nav-dropdown-toggle{color:#b3b3b3;background:transparent}.c-sidebar .c-sidebar-nav-link.c-disabled .c-sidebar-nav-icon,.c-sidebar .c-disabled.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#ffffff80}.c-sidebar .c-sidebar-nav-link.c-disabled:hover,.c-sidebar .c-disabled.c-sidebar-nav-dropdown-toggle:hover{color:#b3b3b3}.c-sidebar .c-sidebar-nav-link.c-disabled:hover .c-sidebar-nav-icon,.c-sidebar .c-disabled.c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#ffffff80}.c-sidebar .c-sidebar-nav-link.c-disabled:hover.c-sidebar-nav-dropdown-toggle:after,.c-sidebar .c-disabled:hover.c-sidebar-nav-dropdown-toggle:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23fff' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E")}.c-sidebar .c-sidebar-nav-dropdown-toggle{position:relative}.c-sidebar .c-sidebar-nav-dropdown-toggle:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='rgba(255, 255, 255, 0.5)' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E")}.c-sidebar .c-sidebar-nav-dropdown.c-show{background:rgba(0,0,0,.2)}.c-sidebar .c-sidebar-nav-dropdown.c-show .c-sidebar-nav-link,.c-sidebar .c-sidebar-nav-dropdown.c-show .c-sidebar-nav-dropdown-toggle{color:#fff}.c-sidebar .c-sidebar-nav-dropdown.c-show .c-sidebar-nav-link.c-disabled,.c-sidebar .c-sidebar-nav-dropdown.c-show .c-disabled.c-sidebar-nav-dropdown-toggle{color:#b3b3b3;background:transparent}.c-sidebar .c-sidebar-nav-dropdown.c-show .c-sidebar-nav-link.c-disabled:hover,.c-sidebar .c-sidebar-nav-dropdown.c-show .c-disabled.c-sidebar-nav-dropdown-toggle:hover{color:#b3b3b3}.c-sidebar .c-sidebar-nav-dropdown.c-show .c-sidebar-nav-link.c-disabled:hover .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-dropdown.c-show .c-disabled.c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#ffffff80}.c-sidebar .c-sidebar-nav-label{color:#fff9}.c-sidebar .c-sidebar-nav-label:hover{color:#fff}.c-sidebar .c-sidebar-nav-label .c-sidebar-nav-icon{color:#ffffff80}.c-sidebar .c-progress{background-color:#596f94!important}.c-sidebar .c-sidebar-footer{background:rgba(0,0,21,.2)}.c-sidebar .c-sidebar-minimizer{background-color:#00001533}.c-sidebar .c-sidebar-minimizer:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%238a93a2' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E")}.c-sidebar .c-sidebar-minimizer:focus,.c-sidebar .c-sidebar-minimizer.c-focus{outline:0}.c-sidebar .c-sidebar-minimizer:hover{background-color:#0000004d}.c-sidebar .c-sidebar-minimizer:hover:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23fff' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E")}.c-sidebar.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-sidebar-nav-link,.c-sidebar.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-sidebar-nav-dropdown-toggle{background:#321fdb}.c-sidebar.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-sidebar-nav-link .c-sidebar-nav-icon,.c-sidebar.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#fff}.c-sidebar.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-sidebar-nav-link.c-disabled,.c-sidebar.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-disabled.c-sidebar-nav-dropdown-toggle{background:#3c4b64}.c-sidebar.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-sidebar-nav-link.c-disabled .c-sidebar-nav-icon,.c-sidebar.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-disabled.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#ffffff80}.c-sidebar.c-sidebar-minimized .c-sidebar-nav>.c-sidebar-nav-dropdown>.c-sidebar-nav-dropdown-items{background:#3c4b64}.c-sidebar.c-sidebar-minimized .c-sidebar-nav>.c-sidebar-nav-dropdown:hover{background:#321fdb}.c-sidebar.c-sidebar-light{color:#3c4b64;background:#fff;border-right:1px solid rgba(159,167,179,.5)}html:not([dir=rtl]) .c-sidebar.c-sidebar-light.c-sidebar-right{border-right:0;border-left:1px solid rgba(159,167,179,.5)}*[dir=rtl] .c-sidebar.c-sidebar-light{border-right:0;border-left:1px solid rgba(159,167,179,.5)}*[dir=rtl] .c-sidebar.c-sidebar-light.c-sidebar-right{border:0;border-right:1px solid rgba(159,167,179,.5)}.c-sidebar.c-sidebar-light .c-sidebar-close{color:#3c4b64}.c-sidebar.c-sidebar-light .c-sidebar-brand{color:#fff;background:#321fdb}.c-sidebar.c-sidebar-light .c-sidebar-header{background:rgba(0,0,21,.2)}.c-sidebar.c-sidebar-light .c-sidebar-form .c-form-control{color:#fff;background:rgba(0,0,21,.1);border:0}.c-sidebar.c-sidebar-light .c-sidebar-form .c-form-control::placeholder{color:#ffffffb3}.c-sidebar.c-sidebar-light .c-sidebar-nav-title{color:#00001566}.c-sidebar.c-sidebar-light .c-sidebar-nav-link,.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown-toggle{color:#000015cc;background:transparent}.c-sidebar.c-sidebar-light .c-sidebar-nav-link .c-sidebar-nav-icon,.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#00001580}.c-sidebar.c-sidebar-light .c-sidebar-nav-link.c-active,.c-sidebar.c-sidebar-light .c-active.c-sidebar-nav-dropdown-toggle{color:#000015cc;background:rgba(0,0,21,.05)}.c-sidebar.c-sidebar-light .c-sidebar-nav-link.c-active .c-sidebar-nav-icon,.c-sidebar.c-sidebar-light .c-active.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#321fdb}.c-sidebar.c-sidebar-light .c-sidebar-nav-link:focus,.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown-toggle:focus{outline:none}@media (hover: hover),(-ms-high-contrast: none){.c-sidebar.c-sidebar-light .c-sidebar-nav-link:hover,.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown-toggle:hover{color:#fff;background:#321fdb}.c-sidebar.c-sidebar-light .c-sidebar-nav-link:hover .c-sidebar-nav-icon,.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#fff}.c-sidebar.c-sidebar-light .c-sidebar-nav-link:hover.c-sidebar-nav-dropdown-toggle:after,.c-sidebar.c-sidebar-light :hover.c-sidebar-nav-dropdown-toggle:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23fff' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E")}}.c-sidebar.c-sidebar-light .c-sidebar-nav-link.c-disabled,.c-sidebar.c-sidebar-light .c-disabled.c-sidebar-nav-dropdown-toggle{color:#b3b3b3;background:transparent}.c-sidebar.c-sidebar-light .c-sidebar-nav-link.c-disabled .c-sidebar-nav-icon,.c-sidebar.c-sidebar-light .c-disabled.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#00001580}.c-sidebar.c-sidebar-light .c-sidebar-nav-link.c-disabled:hover,.c-sidebar.c-sidebar-light .c-disabled.c-sidebar-nav-dropdown-toggle:hover{color:#b3b3b3}.c-sidebar.c-sidebar-light .c-sidebar-nav-link.c-disabled:hover .c-sidebar-nav-icon,.c-sidebar.c-sidebar-light .c-disabled.c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#00001580}.c-sidebar.c-sidebar-light .c-sidebar-nav-link.c-disabled:hover.c-sidebar-nav-dropdown-toggle:after,.c-sidebar.c-sidebar-light .c-disabled:hover.c-sidebar-nav-dropdown-toggle:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23fff' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E")}.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown-toggle{position:relative}.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown-toggle:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='rgba(0, 0, 21, 0.5)' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E")}.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown.c-show{background:rgba(0,0,0,.05)}.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown.c-show .c-sidebar-nav-link,.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown.c-show .c-sidebar-nav-dropdown-toggle{color:#000015cc}.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown.c-show .c-sidebar-nav-link.c-disabled,.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown.c-show .c-disabled.c-sidebar-nav-dropdown-toggle{color:#b3b3b3;background:transparent}.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown.c-show .c-sidebar-nav-link.c-disabled:hover,.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown.c-show .c-disabled.c-sidebar-nav-dropdown-toggle:hover{color:#b3b3b3}.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown.c-show .c-sidebar-nav-link.c-disabled:hover .c-sidebar-nav-icon,.c-sidebar.c-sidebar-light .c-sidebar-nav-dropdown.c-show .c-disabled.c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#00001580}.c-sidebar.c-sidebar-light .c-sidebar-nav-label{color:#00001566}.c-sidebar.c-sidebar-light .c-sidebar-nav-label:hover{color:#3c4b64}.c-sidebar.c-sidebar-light .c-sidebar-nav-label .c-sidebar-nav-icon{color:#00001580}.c-sidebar.c-sidebar-light .c-sidebar-footer{background:rgba(0,0,21,.2)}.c-sidebar.c-sidebar-light .c-sidebar-minimizer{background-color:#0000000d}.c-sidebar.c-sidebar-light .c-sidebar-minimizer:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%238a93a2' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E")}.c-sidebar.c-sidebar-light .c-sidebar-minimizer:focus,.c-sidebar.c-sidebar-light .c-sidebar-minimizer.c-focus{outline:0}.c-sidebar.c-sidebar-light .c-sidebar-minimizer:hover{background-color:#0000001a}.c-sidebar.c-sidebar-light .c-sidebar-minimizer:hover:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23768192' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E")}.c-sidebar.c-sidebar-light.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-sidebar-nav-link,.c-sidebar.c-sidebar-light.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-sidebar-nav-dropdown-toggle{background:#321fdb}.c-sidebar.c-sidebar-light.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-sidebar-nav-link .c-sidebar-nav-icon,.c-sidebar.c-sidebar-light.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#fff}.c-sidebar.c-sidebar-light.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-sidebar-nav-link.c-disabled,.c-sidebar.c-sidebar-light.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-disabled.c-sidebar-nav-dropdown-toggle{background:#fff}.c-sidebar.c-sidebar-light.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-sidebar-nav-link.c-disabled .c-sidebar-nav-icon,.c-sidebar.c-sidebar-light.c-sidebar-minimized .c-sidebar-nav-item:hover>.c-disabled.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#00001580}.c-sidebar.c-sidebar-light.c-sidebar-minimized .c-sidebar-nav>.c-sidebar-nav-dropdown>.c-sidebar-nav-dropdown-items{background:#fff}.c-sidebar.c-sidebar-light.c-sidebar-minimized .c-sidebar-nav>.c-sidebar-nav-dropdown:hover{background:#321fdb}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-primary,.c-sidebar .c-sidebar-nav-link-primary.c-sidebar-nav-dropdown-toggle{background:#321fdb}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-primary .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-primary.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#ffffffb3}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-primary:hover,.c-sidebar .c-sidebar-nav-link-primary.c-sidebar-nav-dropdown-toggle:hover{background:#2d1cc5}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-primary:hover .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-primary.c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#fff}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-secondary,.c-sidebar .c-sidebar-nav-link-secondary.c-sidebar-nav-dropdown-toggle{background:#ced2d8}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-secondary .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-secondary.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#ffffffb3}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-secondary:hover,.c-sidebar .c-sidebar-nav-link-secondary.c-sidebar-nav-dropdown-toggle:hover{background:#c0c5cd}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-secondary:hover .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-secondary.c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#fff}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-success,.c-sidebar .c-sidebar-nav-link-success.c-sidebar-nav-dropdown-toggle{background:#2eb85c}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-success .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-success.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#ffffffb3}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-success:hover,.c-sidebar .c-sidebar-nav-link-success.c-sidebar-nav-dropdown-toggle:hover{background:#29a452}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-success:hover .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-success.c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#fff}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-info,.c-sidebar .c-sidebar-nav-link-info.c-sidebar-nav-dropdown-toggle{background:#39f}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-info .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-info.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#ffffffb3}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-info:hover,.c-sidebar .c-sidebar-nav-link-info.c-sidebar-nav-dropdown-toggle:hover{background:#1a8cff}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-info:hover .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-info.c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#fff}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-warning,.c-sidebar .c-sidebar-nav-link-warning.c-sidebar-nav-dropdown-toggle{background:#f9b115}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-warning .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-warning.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#ffffffb3}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-warning:hover,.c-sidebar .c-sidebar-nav-link-warning.c-sidebar-nav-dropdown-toggle:hover{background:#eea506}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-warning:hover .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-warning.c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#fff}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-danger,.c-sidebar .c-sidebar-nav-link-danger.c-sidebar-nav-dropdown-toggle{background:#e55353}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-danger .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-danger.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#ffffffb3}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-danger:hover,.c-sidebar .c-sidebar-nav-link-danger.c-sidebar-nav-dropdown-toggle:hover{background:#e23d3d}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-danger:hover .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-danger.c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#fff}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-light,.c-sidebar .c-sidebar-nav-link-light.c-sidebar-nav-dropdown-toggle{background:#ebedef}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-light .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-light.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#ffffffb3}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-light:hover,.c-sidebar .c-sidebar-nav-link-light.c-sidebar-nav-dropdown-toggle:hover{background:#dde0e4}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-light:hover .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-light.c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#fff}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-dark,.c-sidebar .c-sidebar-nav-link-dark.c-sidebar-nav-dropdown-toggle{background:#636f83}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-dark .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-dark.c-sidebar-nav-dropdown-toggle .c-sidebar-nav-icon{color:#ffffffb3}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-dark:hover,.c-sidebar .c-sidebar-nav-link-dark.c-sidebar-nav-dropdown-toggle:hover{background:#586374}.c-sidebar .c-sidebar-nav-link.c-sidebar-nav-link-dark:hover .c-sidebar-nav-icon,.c-sidebar .c-sidebar-nav-link-dark.c-sidebar-nav-dropdown-toggle:hover .c-sidebar-nav-icon{color:#fff}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.c-subheader{position:relative;display:flex;flex-direction:row;flex-wrap:wrap;width:100%;min-height:48px}.c-subheader[class*=bg-]{border-color:#0000151a}.c-subheader.c-subheader-fixed{position:fixed;right:0;left:0;z-index:1030}.c-subheader-nav{display:flex;flex-direction:row;align-items:center;min-height:48px;padding:0;margin-bottom:0;list-style:none}.c-subheader-nav .c-subheader-nav-item{position:relative}.c-subheader-nav .c-subheader-nav-btn{background-color:transparent;border:1px solid transparent}.c-subheader-nav .c-subheader-nav-link,.c-subheader-nav .c-subheader-nav-btn{display:flex;align-items:center;padding-right:.5rem;padding-left:.5rem}.c-subheader-nav .c-subheader-nav-link .badge,.c-subheader-nav .c-subheader-nav-btn .badge{position:absolute;top:50%;margin-top:-16px}html:not([dir=rtl]) .c-subheader-nav .c-subheader-nav-link .badge,html:not([dir=rtl]) .c-subheader-nav .c-subheader-nav-btn .badge{left:50%;margin-left:0}*[dir=rtl] .c-subheader-nav .c-subheader-nav-link .badge,*[dir=rtl] .c-subheader-nav .c-subheader-nav-btn .badge{right:50%;margin-right:0}.c-subheader-nav .c-subheader-nav-link:hover,.c-subheader-nav .c-subheader-nav-btn:hover{text-decoration:none}.c-subheader.c-subheader-dark{background:#3c4b64;border-bottom:1px solid #636f83}.c-subheader.c-subheader-dark .c-subheader-nav .c-subheader-nav-link,.c-subheader.c-subheader-dark .c-subheader-nav .c-subheader-nav-btn{color:#ffffffbf}.c-subheader.c-subheader-dark .c-subheader-nav .c-subheader-nav-link:hover,.c-subheader.c-subheader-dark .c-subheader-nav .c-subheader-nav-link:focus,.c-subheader.c-subheader-dark .c-subheader-nav .c-subheader-nav-btn:hover,.c-subheader.c-subheader-dark .c-subheader-nav .c-subheader-nav-btn:focus{color:#ffffffe6}.c-subheader.c-subheader-dark .c-subheader-nav .c-subheader-nav-link.c-disabled,.c-subheader.c-subheader-dark .c-subheader-nav .c-subheader-nav-btn.c-disabled{color:#ffffff40}.c-subheader.c-subheader-dark .c-subheader-nav .c-show>.c-subheader-nav-link,.c-subheader.c-subheader-dark .c-subheader-nav .c-active>.c-subheader-nav-link,.c-subheader.c-subheader-dark .c-subheader-nav .c-subheader-nav-link.c-show,.c-subheader.c-subheader-dark .c-subheader-nav .c-subheader-nav-link.c-active{color:#fff}.c-subheader.c-subheader-dark .c-subheader-text{color:#ffffffbf}.c-subheader.c-subheader-dark .c-subheader-text a{color:#fff}.c-subheader.c-subheader-dark .c-subheader-text a:hover,.c-subheader.c-subheader-dark .c-subheader-text a:focus{color:#fff}.c-subheader{background:#fff;border-bottom:1px solid #d8dbe0}.c-subheader .c-subheader-nav .c-subheader-nav-link,.c-subheader .c-subheader-nav .c-subheader-nav-btn{color:#00001580}.c-subheader .c-subheader-nav .c-subheader-nav-link:hover,.c-subheader .c-subheader-nav .c-subheader-nav-link:focus,.c-subheader .c-subheader-nav .c-subheader-nav-btn:hover,.c-subheader .c-subheader-nav .c-subheader-nav-btn:focus{color:#000015b3}.c-subheader .c-subheader-nav .c-subheader-nav-link.c-disabled,.c-subheader .c-subheader-nav .c-subheader-nav-btn.c-disabled{color:#0000154d}.c-subheader .c-subheader-nav .c-show>.c-subheader-nav-link,.c-subheader .c-subheader-nav .c-active>.c-subheader-nav-link,.c-subheader .c-subheader-nav .c-subheader-nav-link.c-show,.c-subheader .c-subheader-nav .c-subheader-nav-link.c-active{color:#000015e6}.c-subheader .c-subheader-text{color:#00001580}.c-subheader .c-subheader-text a{color:#000015e6}.c-subheader .c-subheader-text a:hover,.c-subheader .c-subheader-text a:focus{color:#000015e6}.c-switch{display:inline-block;width:40px;height:26px}.c-switch-input{position:absolute;z-index:-1;opacity:0}.c-switch-slider{position:relative;display:block;height:inherit;cursor:pointer;border:1px solid;transition:.15s ease-out;border-radius:.25rem;background-color:#fff;border-color:#d8dbe0}.c-switch-slider:before{position:absolute;top:2px;left:2px;box-sizing:border-box;width:20px;height:20px;content:"";background-color:#fff;border:1px solid #d8dbe0;transition:.15s ease-out;border-radius:.125rem}.c-switch-input:checked~.c-switch-slider:before{transform:translate(14px)}.c-switch-input:focus~.c-switch-slider{color:#768192;background-color:#fff;border-color:#958bef;outline:0;box-shadow:0 0 0 .2rem #321fdb40}.c-switch-input:disabled~.c-switch-slider{cursor:not-allowed;opacity:.5}.c-switch-lg{width:48px;height:30px}.c-switch-lg .c-switch-slider{font-size:12px}.c-switch-lg .c-switch-slider:before{width:24px;height:24px}.c-switch-lg .c-switch-slider:after{font-size:12px}.c-switch-lg .c-switch-input:checked~.c-switch-slider:before{transform:translate(18px)}.c-switch-sm{width:32px;height:22px}.c-switch-sm .c-switch-slider{font-size:8px}.c-switch-sm .c-switch-slider:before{width:16px;height:16px}.c-switch-sm .c-switch-slider:after{font-size:8px}.c-switch-sm .c-switch-input:checked~.c-switch-slider:before{transform:translate(10px)}.c-switch-label{width:48px}.c-switch-label .c-switch-slider:before{z-index:2}.c-switch-label .c-switch-slider:after{position:absolute;top:50%;z-index:1;width:50%;margin-top:-.5em;font-size:10px;font-weight:600;line-height:1;color:#c4c9d0;text-align:center;text-transform:uppercase;content:attr(data-unchecked);transition:inherit}html:not([dir=rtl]) .c-switch-label .c-switch-slider:after{right:1px}.c-switch-label .c-switch-input:checked~.c-switch-slider:before{transform:translate(22px)}.c-switch-label .c-switch-input:checked~.c-switch-slider:after{left:1px;color:#fff;content:attr(data-checked)}.c-switch-label.c-switch-lg{width:56px;height:30px}.c-switch-label.c-switch-lg .c-switch-slider{font-size:12px}.c-switch-label.c-switch-lg .c-switch-slider:before{width:24px;height:24px}.c-switch-label.c-switch-lg .c-switch-slider:after{font-size:12px}.c-switch-label.c-switch-lg .c-switch-input:checked~.c-switch-slider:before{transform:translate(26px)}.c-switch-label.c-switch-sm{width:40px;height:22px}.c-switch-label.c-switch-sm .c-switch-slider{font-size:8px}.c-switch-label.c-switch-sm .c-switch-slider:before{width:16px;height:16px}.c-switch-label.c-switch-sm .c-switch-slider:after{font-size:8px}.c-switch-label.c-switch-sm .c-switch-input:checked~.c-switch-slider:before{transform:translate(18px)}.c-switch[class*="-3d"] .c-switch-slider{background-color:#ebedef;border-radius:50em}.c-switch[class*="-3d"] .c-switch-slider:before{top:-1px;left:-1px;width:26px;height:26px;border:0;border-radius:50em;box-shadow:0 2px 5px #0000154d}.c-switch[class*="-3d"].c-switch-lg{width:48px;height:30px}.c-switch[class*="-3d"].c-switch-lg .c-switch-slider:before{width:30px;height:30px}.c-switch[class*="-3d"].c-switch-lg .c-switch-input:checked~.c-switch-slider:before{transform:translate(18px)}.c-switch[class*="-3d"].c-switch-sm{width:32px;height:22px}.c-switch[class*="-3d"].c-switch-sm .c-switch-slider:before{width:22px;height:22px}.c-switch[class*="-3d"].c-switch-sm .c-switch-input:checked~.c-switch-slider:before{transform:translate(10px)}.c-switch-primary .c-switch-input:checked+.c-switch-slider{background-color:#321fdb;border-color:#2819ae}.c-switch-primary .c-switch-input:checked+.c-switch-slider:before{border-color:#2819ae}.c-switch-3d-primary .c-switch-input:checked+.c-switch-slider{background-color:#321fdb}.c-switch-outline-primary .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#321fdb}.c-switch-outline-primary .c-switch-input:checked+.c-switch-slider:before{border-color:#321fdb}.c-switch-outline-primary .c-switch-input:checked+.c-switch-slider:after{color:#321fdb}.c-switch-opposite-primary .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#321fdb}.c-switch-opposite-primary .c-switch-input:checked+.c-switch-slider:before{background-color:#321fdb;border-color:#321fdb}.c-switch-opposite-primary .c-switch-input:checked+.c-switch-slider:after{color:#321fdb}.c-switch-secondary .c-switch-input:checked+.c-switch-slider{background-color:#ced2d8;border-color:#b2b8c1}.c-switch-secondary .c-switch-input:checked+.c-switch-slider:before{border-color:#b2b8c1}.c-switch-3d-secondary .c-switch-input:checked+.c-switch-slider{background-color:#ced2d8}.c-switch-outline-secondary .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#ced2d8}.c-switch-outline-secondary .c-switch-input:checked+.c-switch-slider:before{border-color:#ced2d8}.c-switch-outline-secondary .c-switch-input:checked+.c-switch-slider:after{color:#ced2d8}.c-switch-opposite-secondary .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#ced2d8}.c-switch-opposite-secondary .c-switch-input:checked+.c-switch-slider:before{background-color:#ced2d8;border-color:#ced2d8}.c-switch-opposite-secondary .c-switch-input:checked+.c-switch-slider:after{color:#ced2d8}.c-switch-success .c-switch-input:checked+.c-switch-slider{background-color:#2eb85c;border-color:#248f48}.c-switch-success .c-switch-input:checked+.c-switch-slider:before{border-color:#248f48}.c-switch-3d-success .c-switch-input:checked+.c-switch-slider{background-color:#2eb85c}.c-switch-outline-success .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#2eb85c}.c-switch-outline-success .c-switch-input:checked+.c-switch-slider:before{border-color:#2eb85c}.c-switch-outline-success .c-switch-input:checked+.c-switch-slider:after{color:#2eb85c}.c-switch-opposite-success .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#2eb85c}.c-switch-opposite-success .c-switch-input:checked+.c-switch-slider:before{background-color:#2eb85c;border-color:#2eb85c}.c-switch-opposite-success .c-switch-input:checked+.c-switch-slider:after{color:#2eb85c}.c-switch-info .c-switch-input:checked+.c-switch-slider{background-color:#39f;border-color:#0080ff}.c-switch-info .c-switch-input:checked+.c-switch-slider:before{border-color:#0080ff}.c-switch-3d-info .c-switch-input:checked+.c-switch-slider{background-color:#39f}.c-switch-outline-info .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#39f}.c-switch-outline-info .c-switch-input:checked+.c-switch-slider:before{border-color:#39f}.c-switch-outline-info .c-switch-input:checked+.c-switch-slider:after{color:#39f}.c-switch-opposite-info .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#39f}.c-switch-opposite-info .c-switch-input:checked+.c-switch-slider:before{background-color:#39f;border-color:#39f}.c-switch-opposite-info .c-switch-input:checked+.c-switch-slider:after{color:#39f}.c-switch-warning .c-switch-input:checked+.c-switch-slider{background-color:#f9b115;border-color:#d69405}.c-switch-warning .c-switch-input:checked+.c-switch-slider:before{border-color:#d69405}.c-switch-3d-warning .c-switch-input:checked+.c-switch-slider{background-color:#f9b115}.c-switch-outline-warning .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#f9b115}.c-switch-outline-warning .c-switch-input:checked+.c-switch-slider:before{border-color:#f9b115}.c-switch-outline-warning .c-switch-input:checked+.c-switch-slider:after{color:#f9b115}.c-switch-opposite-warning .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#f9b115}.c-switch-opposite-warning .c-switch-input:checked+.c-switch-slider:before{background-color:#f9b115;border-color:#f9b115}.c-switch-opposite-warning .c-switch-input:checked+.c-switch-slider:after{color:#f9b115}.c-switch-danger .c-switch-input:checked+.c-switch-slider{background-color:#e55353;border-color:#de2727}.c-switch-danger .c-switch-input:checked+.c-switch-slider:before{border-color:#de2727}.c-switch-3d-danger .c-switch-input:checked+.c-switch-slider{background-color:#e55353}.c-switch-outline-danger .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#e55353}.c-switch-outline-danger .c-switch-input:checked+.c-switch-slider:before{border-color:#e55353}.c-switch-outline-danger .c-switch-input:checked+.c-switch-slider:after{color:#e55353}.c-switch-opposite-danger .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#e55353}.c-switch-opposite-danger .c-switch-input:checked+.c-switch-slider:before{background-color:#e55353;border-color:#e55353}.c-switch-opposite-danger .c-switch-input:checked+.c-switch-slider:after{color:#e55353}.c-switch-light .c-switch-input:checked+.c-switch-slider{background-color:#ebedef;border-color:#cfd4d8}.c-switch-light .c-switch-input:checked+.c-switch-slider:before{border-color:#cfd4d8}.c-switch-3d-light .c-switch-input:checked+.c-switch-slider{background-color:#ebedef}.c-switch-outline-light .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#ebedef}.c-switch-outline-light .c-switch-input:checked+.c-switch-slider:before{border-color:#ebedef}.c-switch-outline-light .c-switch-input:checked+.c-switch-slider:after{color:#ebedef}.c-switch-opposite-light .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#ebedef}.c-switch-opposite-light .c-switch-input:checked+.c-switch-slider:before{background-color:#ebedef;border-color:#ebedef}.c-switch-opposite-light .c-switch-input:checked+.c-switch-slider:after{color:#ebedef}.c-switch-dark .c-switch-input:checked+.c-switch-slider{background-color:#636f83;border-color:#4d5666}.c-switch-dark .c-switch-input:checked+.c-switch-slider:before{border-color:#4d5666}.c-switch-3d-dark .c-switch-input:checked+.c-switch-slider{background-color:#636f83}.c-switch-outline-dark .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#636f83}.c-switch-outline-dark .c-switch-input:checked+.c-switch-slider:before{border-color:#636f83}.c-switch-outline-dark .c-switch-input:checked+.c-switch-slider:after{color:#636f83}.c-switch-opposite-dark .c-switch-input:checked+.c-switch-slider{background-color:inherit;border-color:#636f83}.c-switch-opposite-dark .c-switch-input:checked+.c-switch-slider:before{background-color:#636f83;border-color:#636f83}.c-switch-opposite-dark .c-switch-input:checked+.c-switch-slider:after{color:#636f83}.c-switch-pill .c-switch-slider{border-radius:50em}.c-switch-pill .c-switch-slider:before{border-radius:50em}.c-switch-square .c-switch-slider{border-radius:0}.c-switch-square .c-switch-slider:before{border-radius:0}.table{width:100%;margin-bottom:1rem;color:#3c4b64}.table th,.table td{padding:.75rem;vertical-align:top;border-top:1px solid;border-top-color:#d8dbe0}.table thead th{vertical-align:bottom;border-bottom:2px solid;border-bottom-color:#d8dbe0}.table tbody+tbody{border-top:2px solid;border-top-color:#d8dbe0}.table-sm th,.table-sm td{padding:.3rem}.table-bordered,.table-bordered th,.table-bordered td{border:1px solid;border-color:#d8dbe0}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:#0000150d}@media (hover: hover),(-ms-high-contrast: none){.table-hover tbody tr:hover{color:#3c4b64;background-color:#00001513}}.table-primary,.table-primary>th,.table-primary>td{color:#4f5d73;background-color:#c6c0f5}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#948bec}@media (hover: hover),(-ms-high-contrast: none){.table-hover .table-primary:hover{background-color:#b2aaf2}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#b2aaf2}}.table-secondary,.table-secondary>th,.table-secondary>td{color:#4f5d73;background-color:#f1f2f4}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#e6e8eb}@media (hover: hover),(-ms-high-contrast: none){.table-hover .table-secondary:hover{background-color:#e3e5e9}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#e3e5e9}}.table-success,.table-success>th,.table-success>td{color:#4f5d73;background-color:#c4ebd1}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#92daaa}@media (hover: hover),(-ms-high-contrast: none){.table-hover .table-success:hover{background-color:#b1e5c2}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1e5c2}}.table-info,.table-info>th,.table-info>td{color:#4f5d73;background-color:#c6e2ff}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#95caff}@media (hover: hover),(-ms-high-contrast: none){.table-hover .table-info:hover{background-color:#add5ff}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#add5ff}}.table-warning,.table-warning>th,.table-warning>td{color:#4f5d73;background-color:#fde9bd}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#fcd685}@media (hover: hover),(-ms-high-contrast: none){.table-hover .table-warning:hover{background-color:#fce1a4}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#fce1a4}}.table-danger,.table-danger>th,.table-danger>td{color:#4f5d73;background-color:#f8cfcf}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#f1a6a6}@media (hover: hover),(-ms-high-contrast: none){.table-hover .table-danger:hover{background-color:#f5b9b9}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f5b9b9}}.table-light,.table-light>th,.table-light>td{color:#4f5d73;background-color:#f9fafb}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#f5f6f7}@media (hover: hover),(-ms-high-contrast: none){.table-hover .table-light:hover{background-color:#eaedf1}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#eaedf1}}.table-dark,.table-dark>th,.table-dark>td{color:#4f5d73;background-color:#d3d7dc}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#aeb4bf}@media (hover: hover),(-ms-high-contrast: none){.table-hover .table-dark:hover{background-color:#c5cad1}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#c5cad1}}.table-active,.table-active>th,.table-active>td{color:#4f5d73;background-color:#d8dbe0}@media (hover: hover),(-ms-high-contrast: none){.table-hover .table-active:hover{background-color:#caced5}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#caced5}}.table-selected,.table-selected>th,.table-selected>td{color:#4f5d73;background-color:#d8dbe0}.table-selected th,.table-selected td,.table-selected thead th,.table-selected tbody+tbody{border-color:#d8dbe0}@media (hover: hover),(-ms-high-contrast: none){.table-hover .table-selected:hover{background-color:#caced5}.table-hover .table-selected:hover>td,.table-hover .table-selected:hover>th{background-color:#caced5}}.table tbody tr:focus{outline:0;color:#3c4b64;background-color:#00001513}.table .thead-dark th{color:#fff;background-color:#636f83;border-color:#758297}.table .thead-light th{color:#768192;background-color:#d8dbe0;border-color:#d8dbe0}.table-dark{color:#fff;background-color:#636f83}.table-dark th,.table-dark td,.table-dark thead th{border-color:#758297}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:#ffffff0d}@media (hover: hover),(-ms-high-contrast: none){.table-dark.table-hover tbody tr:hover{color:#fff;background-color:#ffffff13}}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}@media (max-width: 1399.98px){.table-responsive-xxl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xxl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.table-outline{border:1px solid;border-color:#d8dbe0}.table-outline td,.table-align-middle td{vertical-align:middle}.table-clear td{border:0}.toast{width:350px;max-width:350px;overflow:hidden;font-size:.875rem;background-clip:padding-box;border:1px solid;box-shadow:0 .25rem .75rem #0000151a;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem;background-color:#ffffffd9;border-color:#0000151a}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-full{width:100%;max-width:100%}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;background-clip:padding-box;border-bottom:1px solid;color:#8a93a2;background-color:#ffffffd9;border-color:#0000150d}.toast-body{padding:.75rem}.toaster{display:flex;flex-direction:column-reverse;width:100%;padding:.25rem .5rem}.toaster-top-full,.toaster-top-center,.toaster-top-right,.toaster-top-left,.toaster-bottom-full,.toaster-bottom-center,.toaster-bottom-right,.toaster-bottom-left{position:fixed;z-index:1080;width:350px}.toaster-top-full,.toaster-top-center,.toaster-top-right,.toaster-top-left{top:0}.toaster-bottom-full,.toaster-bottom-center,.toaster-bottom-right,.toaster-bottom-left{bottom:0;flex-direction:column}.toaster-top-full,.toaster-bottom-full{width:auto}.toaster-top-center,.toaster-bottom-center{left:50%;transform:translate(-50%)}.toaster-top-full,.toaster-bottom-full,.toaster-top-right,.toaster-bottom-right{right:0}.toaster-top-full,.toaster-bottom-full,.toaster-top-left,.toaster-bottom-left{left:0}.toaster .toast{width:100%;max-width:100%;margin-top:.125rem;margin-bottom:.125rem}.toast-primary{color:#fff;background-color:#321fdb;border-color:#2819ae}.toast-primary .toast-header{color:#fff;background-color:#2d1cc5;border-color:#2819ae}.toast-secondary{color:#4f5d73;background-color:#ced2d8;border-color:#b2b8c1}.toast-secondary .toast-header{color:#4f5d73;background-color:#c0c5cd;border-color:#b2b8c1}.toast-success{color:#fff;background-color:#2eb85c;border-color:#248f48}.toast-success .toast-header{color:#fff;background-color:#29a452;border-color:#248f48}.toast-info{color:#fff;background-color:#39f;border-color:#0080ff}.toast-info .toast-header{color:#fff;background-color:#1a8cff;border-color:#0080ff}.toast-warning{color:#4f5d73;background-color:#f9b115;border-color:#d69405}.toast-warning .toast-header{color:#4f5d73;background-color:#eea506;border-color:#d69405}.toast-danger{color:#fff;background-color:#e55353;border-color:#de2727}.toast-danger .toast-header{color:#fff;background-color:#e23d3d;border-color:#de2727}.toast-light{color:#4f5d73;background-color:#ebedef;border-color:#cfd4d8}.toast-light .toast-header{color:#4f5d73;background-color:#dde0e4;border-color:#cfd4d8}.toast-dark{color:#fff;background-color:#636f83;border-color:#4d5666}.toast-dark .toast-header{color:#fff;background-color:#586374;border-color:#4d5666}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.765625rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block}.tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.tooltip[data-popper-placement^=top],.tooltip[data-popper-placement^=bottom]{padding:.4rem 0}.tooltip[data-popper-placement^=top] .tooltip-arrow,.tooltip[data-popper-placement^=bottom] .tooltip-arrow{width:.8rem;height:.4rem}.tooltip[data-popper-placement^=right],.tooltip[data-popper-placement^=left]{padding:0 .4rem}.tooltip[data-popper-placement^=right] .tooltip-arrow,.tooltip[data-popper-placement^=left] .tooltip-arrow{width:.4rem;height:.8rem}.tooltip[data-popper-placement^=top] .tooltip-arrow{bottom:0}.tooltip[data-popper-placement^=top] .tooltip-arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#000015}.tooltip[data-popper-placement^=right] .tooltip-arrow{left:0}.tooltip[data-popper-placement^=right] .tooltip-arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000015}.tooltip[data-popper-placement^=bottom] .tooltip-arrow{top:0}.tooltip[data-popper-placement^=bottom] .tooltip-arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000015}.tooltip[data-popper-placement^=left] .tooltip-arrow{right:0}.tooltip[data-popper-placement^=left] .tooltip-arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000015}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000015;border-radius:.25rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fade-in{animation-name:fadeIn;animation-duration:1s}.c-wrapper{transition:margin .3s}.c-sidebar{transition:box-shadow .3s .15s,transform .3s,margin-left .3s,margin-right .3s,width .3s,z-index 0s ease .3s}.c-sidebar.c-sidebar-unfoldable{transition:transform .3s,margin-left .3s,margin-right .3s,width .3s,z-index 0s ease 0s}.c-no-layout-transition .c-wrapper,.c-no-layout-transition .c-sidebar{transition:none}.c-no-layout-transition .c-wrapper .c-sidebar-header,.c-no-layout-transition .c-wrapper .c-sidebar-nav-title,.c-no-layout-transition .c-wrapper .c-sidebar-nav-divider,.c-no-layout-transition .c-wrapper .c-sidebar-nav-link,.c-no-layout-transition .c-wrapper .c-sidebar-nav-icon,.c-no-layout-transition .c-wrapper .c-sidebar-nav-dropdown,.c-no-layout-transition .c-wrapper .c-sidebar-nav-dropdown-toggle,.c-no-layout-transition .c-wrapper .c-sidebar-nav-dropdown-toggle:after,.c-no-layout-transition .c-wrapper .c-sidebar-nav-dropdown-items,.c-no-layout-transition .c-wrapper .c-sidebar-nav-label,.c-no-layout-transition .c-wrapper .c-sidebar-footer,.c-no-layout-transition .c-wrapper .c-sidebar-minimizer,.c-no-layout-transition .c-sidebar .c-sidebar-header,.c-no-layout-transition .c-sidebar .c-sidebar-nav-title,.c-no-layout-transition .c-sidebar .c-sidebar-nav-divider,.c-no-layout-transition .c-sidebar .c-sidebar-nav-link,.c-no-layout-transition .c-sidebar .c-sidebar-nav-icon,.c-no-layout-transition .c-sidebar .c-sidebar-nav-dropdown,.c-no-layout-transition .c-sidebar .c-sidebar-nav-dropdown-toggle,.c-no-layout-transition .c-sidebar .c-sidebar-nav-dropdown-toggle:after,.c-no-layout-transition .c-sidebar .c-sidebar-nav-dropdown-items,.c-no-layout-transition .c-sidebar .c-sidebar-nav-label,.c-no-layout-transition .c-sidebar .c-sidebar-footer,.c-no-layout-transition .c-sidebar .c-sidebar-minimizer{transition:none}.c-no-transition{transition:none}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:2.1875rem}h2,.h2{font-size:1.75rem}h3,.h3{font-size:1.53125rem}h4,.h4{font-size:1.3125rem}h5,.h5{font-size:1.09375rem}h6,.h6{font-size:.875rem}.lead{font-size:1.09375rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid;border-color:#00001533}.c-vr{width:1px;background-color:#00001533}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{list-style:none}html:not([dir=rtl]) .list-unstyled{padding-left:0}*[dir=rtl] .list-unstyled{padding-right:0}.list-inline{list-style:none}html:not([dir=rtl]) .list-inline{padding-left:0}*[dir=rtl] .list-inline{padding-right:0}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.09375rem}.blockquote-footer{display:block;font-size:80%;color:#8a93a2}.blockquote-footer:before{content:"— "}.c-app{display:flex;flex-direction:row;min-height:100vh}@media all and (-ms-high-contrast: none){html{display:flex;flex-direction:column}}.c-wrapper{display:flex;flex:1;flex-direction:column;min-width:0;min-height:100vh}.c-wrapper:not(.c-wrapper-fluid) .c-subheader-fixed{position:relative}.c-wrapper:not(.c-wrapper-fluid) .c-header-fixed{position:sticky;top:0}@media all and (-ms-high-contrast: none){.c-wrapper:not(.c-wrapper-fluid) .c-header-fixed{position:fixed;margin:inherit}.c-wrapper:not(.c-wrapper-fluid) .c-header-fixed~.c-body{margin-top:104px}}.c-wrapper:not(.c-wrapper-fluid) .c-footer-fixed{position:sticky;bottom:0}@media all and (-ms-high-contrast: none){.c-wrapper:not(.c-wrapper-fluid) .c-footer-fixed{position:fixed;margin:inherit}.c-wrapper:not(.c-wrapper-fluid) .c-footer-fixed~.c-body{margin-bottom:49px}}.c-wrapper:not(.c-wrapper-fluid) .c-body{display:flex;flex-direction:column;flex-grow:1}.c-wrapper.c-wrapper-fluid{min-height:100vh}.c-wrapper.c-wrapper-fluid .c-header-fixed{margin:inherit}.c-main{flex-basis:auto;flex-shrink:0;flex-grow:1;min-width:0;padding-top:2rem}@media (min-width: 768px){.c-main>.container-fluid,.c-main>.container-sm,.c-main>.container-md,.c-main>.container-lg,.c-main>.container-xl,.c-main>.container-xxl{padding-right:30px;padding-left:30px}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#321fdb!important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#2819ae!important}.bg-secondary{background-color:#ced2d8!important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#b2b8c1!important}.bg-success{background-color:#2eb85c!important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#248f48!important}.bg-info{background-color:#39f!important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#0080ff!important}.bg-warning{background-color:#f9b115!important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#d69405!important}.bg-danger{background-color:#e55353!important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#de2727!important}.bg-light{background-color:#ebedef!important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#cfd4d8!important}.bg-dark{background-color:#636f83!important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#4d5666!important}.bg-gradient-primary{background:#1f1498!important;background:linear-gradient(45deg,#321fdb 0%,#1f1498 100%)!important;border-color:#1f1498!important}.bg-gradient-secondary{background:#fff!important;background:linear-gradient(45deg,#c8d2dc 0%,#fff 100%)!important;border-color:#fff!important}.bg-gradient-success{background:#1b9e3e!important;background:linear-gradient(45deg,#2eb85c 0%,#1b9e3e 100%)!important;border-color:#1b9e3e!important}.bg-gradient-info{background:#2982cc!important;background:linear-gradient(45deg,#39f 0%,#2982cc 100%)!important;border-color:#2982cc!important}.bg-gradient-warning{background:#f6960b!important;background:linear-gradient(45deg,#f9b115 0%,#f6960b 100%)!important;border-color:#f6960b!important}.bg-gradient-danger{background:#d93737!important;background:linear-gradient(45deg,#e55353 0%,#d93737 100%)!important;border-color:#d93737!important}.bg-gradient-light{background:#fff!important;background:linear-gradient(45deg,#e3e8ed 0%,#fff 100%)!important;border-color:#fff!important}.bg-gradient-dark{background:#212333!important;background:linear-gradient(45deg,#3c4b64 0%,#212333 100%)!important;border-color:#212333!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}[class^=bg-]{color:#fff}.bg-facebook{background-color:#3b5998!important}a.bg-facebook:hover,a.bg-facebook:focus,button.bg-facebook:hover,button.bg-facebook:focus{background-color:#2d4373!important}.bg-twitter{background-color:#00aced!important}a.bg-twitter:hover,a.bg-twitter:focus,button.bg-twitter:hover,button.bg-twitter:focus{background-color:#0087ba!important}.bg-linkedin{background-color:#4875b4!important}a.bg-linkedin:hover,a.bg-linkedin:focus,button.bg-linkedin:hover,button.bg-linkedin:focus{background-color:#395d90!important}.bg-flickr{background-color:#ff0084!important}a.bg-flickr:hover,a.bg-flickr:focus,button.bg-flickr:hover,button.bg-flickr:focus{background-color:#cc006a!important}.bg-tumblr{background-color:#32506d!important}a.bg-tumblr:hover,a.bg-tumblr:focus,button.bg-tumblr:hover,button.bg-tumblr:focus{background-color:#22364a!important}.bg-xing{background-color:#026466!important}a.bg-xing:hover,a.bg-xing:focus,button.bg-xing:hover,button.bg-xing:focus{background-color:#013334!important}.bg-github{background-color:#4183c4!important}a.bg-github:hover,a.bg-github:focus,button.bg-github:hover,button.bg-github:focus{background-color:#3269a0!important}.bg-stack-overflow{background-color:#fe7a15!important}a.bg-stack-overflow:hover,a.bg-stack-overflow:focus,button.bg-stack-overflow:hover,button.bg-stack-overflow:focus{background-color:#df6101!important}.bg-youtube{background-color:#b00!important}a.bg-youtube:hover,a.bg-youtube:focus,button.bg-youtube:hover,button.bg-youtube:focus{background-color:#800!important}.bg-dribbble{background-color:#ea4c89!important}a.bg-dribbble:hover,a.bg-dribbble:focus,button.bg-dribbble:hover,button.bg-dribbble:focus{background-color:#e51e6b!important}.bg-instagram{background-color:#517fa4!important}a.bg-instagram:hover,a.bg-instagram:focus,button.bg-instagram:hover,button.bg-instagram:focus{background-color:#406582!important}.bg-pinterest{background-color:#cb2027!important}a.bg-pinterest:hover,a.bg-pinterest:focus,button.bg-pinterest:hover,button.bg-pinterest:focus{background-color:#9f191f!important}.bg-vk{background-color:#45668e!important}a.bg-vk:hover,a.bg-vk:focus,button.bg-vk:hover,button.bg-vk:focus{background-color:#344d6c!important}.bg-yahoo{background-color:#400191!important}a.bg-yahoo:hover,a.bg-yahoo:focus,button.bg-yahoo:hover,button.bg-yahoo:focus{background-color:#2a015e!important}.bg-behance{background-color:#1769ff!important}a.bg-behance:hover,a.bg-behance:focus,button.bg-behance:hover,button.bg-behance:focus{background-color:#0050e3!important}.bg-reddit{background-color:#ff4500!important}a.bg-reddit:hover,a.bg-reddit:focus,button.bg-reddit:hover,button.bg-reddit:focus{background-color:#cc3700!important}.bg-vimeo{background-color:#aad450!important}a.bg-vimeo:hover,a.bg-vimeo:focus,button.bg-vimeo:hover,button.bg-vimeo:focus{background-color:#93c130!important}.bg-gray-100{background-color:#ebedef!important}a.bg-gray-100:hover,a.bg-gray-100:focus,button.bg-gray-100:hover,button.bg-gray-100:focus{background-color:#cfd4d8!important}.bg-gray-200{background-color:#d8dbe0!important}a.bg-gray-200:hover,a.bg-gray-200:focus,button.bg-gray-200:hover,button.bg-gray-200:focus{background-color:#bcc1c9!important}.bg-gray-300{background-color:#c4c9d0!important}a.bg-gray-300:hover,a.bg-gray-300:focus,button.bg-gray-300:hover,button.bg-gray-300:focus{background-color:#a8afb9!important}.bg-gray-400{background-color:#b1b7c1!important}a.bg-gray-400:hover,a.bg-gray-400:focus,button.bg-gray-400:hover,button.bg-gray-400:focus{background-color:#959daa!important}.bg-gray-500{background-color:#9da5b1!important}a.bg-gray-500:hover,a.bg-gray-500:focus,button.bg-gray-500:hover,button.bg-gray-500:focus{background-color:#818b9a!important}.bg-gray-600{background-color:#8a93a2!important}a.bg-gray-600:hover,a.bg-gray-600:focus,button.bg-gray-600:hover,button.bg-gray-600:focus{background-color:#6e798b!important}.bg-gray-700{background-color:#768192!important}a.bg-gray-700:hover,a.bg-gray-700:focus,button.bg-gray-700:hover,button.bg-gray-700:focus{background-color:#5e6877!important}.bg-gray-800{background-color:#636f83!important}a.bg-gray-800:hover,a.bg-gray-800:focus,button.bg-gray-800:hover,button.bg-gray-800:focus{background-color:#4d5666!important}.bg-gray-900{background-color:#4f5d73!important}a.bg-gray-900:hover,a.bg-gray-900:focus,button.bg-gray-900:hover,button.bg-gray-900:focus{background-color:#3a4555!important}.bg-box{display:flex;align-items:center;justify-content:center;width:2.5rem;height:2.5rem}.border{border:1px solid #d8dbe0!important}.border-top{border-top:1px solid #d8dbe0!important}.border-right{border-right:1px solid #d8dbe0!important}.border-bottom{border-bottom:1px solid #d8dbe0!important}.border-left{border-left:1px solid #d8dbe0!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border:1px solid!important;border-color:#321fdb!important}.border-secondary{border:1px solid!important;border-color:#ced2d8!important}.border-success{border:1px solid!important;border-color:#2eb85c!important}.border-info{border:1px solid!important;border-color:#39f!important}.border-warning{border:1px solid!important;border-color:#f9b115!important}.border-danger{border:1px solid!important;border-color:#e55353!important}.border-light{border:1px solid!important;border-color:#ebedef!important}.border-dark{border:1px solid!important;border-color:#636f83!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.b-a-0{border:0!important}.b-t-0{border-top:0!important}.b-r-0{border-right:0!important}.b-b-0{border-bottom:0!important}.b-l-0{border-left:0!important}.b-a-1{border:1px solid #d8dbe0}.b-t-1{border-top:1px solid #d8dbe0}.b-r-1{border-right:1px solid #d8dbe0}.b-b-1{border-bottom:1px solid #d8dbe0}.b-l-1{border-left:1px solid #d8dbe0}.b-a-2{border:2px solid #d8dbe0}.b-t-2{border-top:2px solid #d8dbe0}.b-r-2{border-right:2px solid #d8dbe0}.b-b-2{border-bottom:2px solid #d8dbe0}.b-l-2{border-left:2px solid #d8dbe0}.content-center{position:relative;display:flex;align-items:center;justify-content:center;padding:0;text-align:center}.clearfix:after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width: 576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width: 768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width: 992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width: 1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media (min-width: 1400px){.d-xxl-none{display:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!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}}@media (max-width: 575.98px){.d-down-none{display:none!important}}@media (max-width: 767.98px){.d-sm-down-none{display:none!important}}@media (max-width: 991.98px){.d-md-down-none{display:none!important}}@media (max-width: 1199.98px){.d-lg-down-none{display:none!important}}@media (max-width: 1399.98px){.d-xl-down-none{display:none!important}}.d-xxl-down-none,.c-default-theme .c-d-default-none{display:none!important}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive:before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9:before{padding-top:42.8571428571%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media (min-width: 576px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width: 768px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width: 992px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width: 1200px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}@media (min-width: 1400px){.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-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xxl-fill{flex:1 1 auto!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}.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}.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}}html:not([dir=rtl]) .float-left{float:left!important}*[dir=rtl] .float-left{float:right!important}html:not([dir=rtl]) .float-right{float:right!important}*[dir=rtl] .float-right{float:left!important}.float-none{float:none!important}@media (min-width: 576px){html:not([dir=rtl]) .float-sm-left{float:left!important}*[dir=rtl] .float-sm-left{float:right!important}html:not([dir=rtl]) .float-sm-right{float:right!important}*[dir=rtl] .float-sm-right{float:left!important}.float-sm-none{float:none!important}}@media (min-width: 768px){html:not([dir=rtl]) .float-md-left{float:left!important}*[dir=rtl] .float-md-left{float:right!important}html:not([dir=rtl]) .float-md-right{float:right!important}*[dir=rtl] .float-md-right{float:left!important}.float-md-none{float:none!important}}@media (min-width: 992px){html:not([dir=rtl]) .float-lg-left{float:left!important}*[dir=rtl] .float-lg-left{float:right!important}html:not([dir=rtl]) .float-lg-right{float:right!important}*[dir=rtl] .float-lg-right{float:left!important}.float-lg-none{float:none!important}}@media (min-width: 1200px){html:not([dir=rtl]) .float-xl-left{float:left!important}*[dir=rtl] .float-xl-left{float:right!important}html:not([dir=rtl]) .float-xl-right{float:right!important}*[dir=rtl] .float-xl-right{float:left!important}.float-xl-none{float:none!important}}@media (min-width: 1400px){html:not([dir=rtl]) .float-xxl-left{float:left!important}*[dir=rtl] .float-xxl-left{float:right!important}html:not([dir=rtl]) .float-xxl-right{float:right!important}*[dir=rtl] .float-xxl-right{float:left!important}.float-xxl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem #00001513!important}.shadow{box-shadow:0 .5rem 1rem #00001526!important}.shadow-lg{box-shadow:0 1rem 3rem #0000152d!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}html:not([dir=rtl]) .mfs-0{margin-left:0!important}*[dir=rtl] .mfs-0{margin-right:0!important}html:not([dir=rtl]) .mfe-0{margin-right:0!important}*[dir=rtl] .mfe-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}html:not([dir=rtl]) .mfs-1{margin-left:.25rem!important}*[dir=rtl] .mfs-1{margin-right:.25rem!important}html:not([dir=rtl]) .mfe-1{margin-right:.25rem!important}*[dir=rtl] .mfe-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}html:not([dir=rtl]) .mfs-2{margin-left:.5rem!important}*[dir=rtl] .mfs-2{margin-right:.5rem!important}html:not([dir=rtl]) .mfe-2{margin-right:.5rem!important}*[dir=rtl] .mfe-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}html:not([dir=rtl]) .mfs-3{margin-left:1rem!important}*[dir=rtl] .mfs-3{margin-right:1rem!important}html:not([dir=rtl]) .mfe-3{margin-right:1rem!important}*[dir=rtl] .mfe-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}html:not([dir=rtl]) .mfs-4{margin-left:1.5rem!important}*[dir=rtl] .mfs-4{margin-right:1.5rem!important}html:not([dir=rtl]) .mfe-4{margin-right:1.5rem!important}*[dir=rtl] .mfe-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}html:not([dir=rtl]) .mfs-5{margin-left:3rem!important}*[dir=rtl] .mfs-5{margin-right:3rem!important}html:not([dir=rtl]) .mfe-5{margin-right:3rem!important}*[dir=rtl] .mfe-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}html:not([dir=rtl]) .pfs-0{padding-left:0!important}*[dir=rtl] .pfs-0{padding-right:0!important}html:not([dir=rtl]) .pfe-0{padding-right:0!important}*[dir=rtl] .pfe-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}html:not([dir=rtl]) .pfs-1{padding-left:.25rem!important}*[dir=rtl] .pfs-1{padding-right:.25rem!important}html:not([dir=rtl]) .pfe-1{padding-right:.25rem!important}*[dir=rtl] .pfe-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}html:not([dir=rtl]) .pfs-2{padding-left:.5rem!important}*[dir=rtl] .pfs-2{padding-right:.5rem!important}html:not([dir=rtl]) .pfe-2{padding-right:.5rem!important}*[dir=rtl] .pfe-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}html:not([dir=rtl]) .pfs-3{padding-left:1rem!important}*[dir=rtl] .pfs-3{padding-right:1rem!important}html:not([dir=rtl]) .pfe-3{padding-right:1rem!important}*[dir=rtl] .pfe-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}html:not([dir=rtl]) .pfs-4{padding-left:1.5rem!important}*[dir=rtl] .pfs-4{padding-right:1.5rem!important}html:not([dir=rtl]) .pfe-4{padding-right:1.5rem!important}*[dir=rtl] .pfe-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}html:not([dir=rtl]) .pfs-5{padding-left:3rem!important}*[dir=rtl] .pfs-5{padding-right:3rem!important}html:not([dir=rtl]) .pfe-5{padding-right:3rem!important}*[dir=rtl] .pfe-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}html:not([dir=rtl]) .mfs-n1{margin-left:-.25rem!important}*[dir=rtl] .mfs-n1{margin-right:-.25rem!important}html:not([dir=rtl]) .mfe-n1{margin-right:-.25rem!important}*[dir=rtl] .mfe-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}html:not([dir=rtl]) .mfs-n2{margin-left:-.5rem!important}*[dir=rtl] .mfs-n2{margin-right:-.5rem!important}html:not([dir=rtl]) .mfe-n2{margin-right:-.5rem!important}*[dir=rtl] .mfe-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}html:not([dir=rtl]) .mfs-n3{margin-left:-1rem!important}*[dir=rtl] .mfs-n3{margin-right:-1rem!important}html:not([dir=rtl]) .mfe-n3{margin-right:-1rem!important}*[dir=rtl] .mfe-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}html:not([dir=rtl]) .mfs-n4{margin-left:-1.5rem!important}*[dir=rtl] .mfs-n4{margin-right:-1.5rem!important}html:not([dir=rtl]) .mfe-n4{margin-right:-1.5rem!important}*[dir=rtl] .mfe-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}html:not([dir=rtl]) .mfs-n5{margin-left:-3rem!important}*[dir=rtl] .mfs-n5{margin-right:-3rem!important}html:not([dir=rtl]) .mfe-n5{margin-right:-3rem!important}*[dir=rtl] .mfe-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}html:not([dir=rtl]) .mfs-auto{margin-left:auto!important}*[dir=rtl] .mfs-auto{margin-right:auto!important}html:not([dir=rtl]) .mfe-auto{margin-right:auto!important}*[dir=rtl] .mfe-auto{margin-left:auto!important}@media (min-width: 576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}html:not([dir=rtl]) .mfs-sm-0{margin-left:0!important}*[dir=rtl] .mfs-sm-0{margin-right:0!important}html:not([dir=rtl]) .mfe-sm-0{margin-right:0!important}*[dir=rtl] .mfe-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}html:not([dir=rtl]) .mfs-sm-1{margin-left:.25rem!important}*[dir=rtl] .mfs-sm-1{margin-right:.25rem!important}html:not([dir=rtl]) .mfe-sm-1{margin-right:.25rem!important}*[dir=rtl] .mfe-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}html:not([dir=rtl]) .mfs-sm-2{margin-left:.5rem!important}*[dir=rtl] .mfs-sm-2{margin-right:.5rem!important}html:not([dir=rtl]) .mfe-sm-2{margin-right:.5rem!important}*[dir=rtl] .mfe-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}html:not([dir=rtl]) .mfs-sm-3{margin-left:1rem!important}*[dir=rtl] .mfs-sm-3{margin-right:1rem!important}html:not([dir=rtl]) .mfe-sm-3{margin-right:1rem!important}*[dir=rtl] .mfe-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}html:not([dir=rtl]) .mfs-sm-4{margin-left:1.5rem!important}*[dir=rtl] .mfs-sm-4{margin-right:1.5rem!important}html:not([dir=rtl]) .mfe-sm-4{margin-right:1.5rem!important}*[dir=rtl] .mfe-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}html:not([dir=rtl]) .mfs-sm-5{margin-left:3rem!important}*[dir=rtl] .mfs-sm-5{margin-right:3rem!important}html:not([dir=rtl]) .mfe-sm-5{margin-right:3rem!important}*[dir=rtl] .mfe-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}html:not([dir=rtl]) .pfs-sm-0{padding-left:0!important}*[dir=rtl] .pfs-sm-0{padding-right:0!important}html:not([dir=rtl]) .pfe-sm-0{padding-right:0!important}*[dir=rtl] .pfe-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}html:not([dir=rtl]) .pfs-sm-1{padding-left:.25rem!important}*[dir=rtl] .pfs-sm-1{padding-right:.25rem!important}html:not([dir=rtl]) .pfe-sm-1{padding-right:.25rem!important}*[dir=rtl] .pfe-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}html:not([dir=rtl]) .pfs-sm-2{padding-left:.5rem!important}*[dir=rtl] .pfs-sm-2{padding-right:.5rem!important}html:not([dir=rtl]) .pfe-sm-2{padding-right:.5rem!important}*[dir=rtl] .pfe-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}html:not([dir=rtl]) .pfs-sm-3{padding-left:1rem!important}*[dir=rtl] .pfs-sm-3{padding-right:1rem!important}html:not([dir=rtl]) .pfe-sm-3{padding-right:1rem!important}*[dir=rtl] .pfe-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}html:not([dir=rtl]) .pfs-sm-4{padding-left:1.5rem!important}*[dir=rtl] .pfs-sm-4{padding-right:1.5rem!important}html:not([dir=rtl]) .pfe-sm-4{padding-right:1.5rem!important}*[dir=rtl] .pfe-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}html:not([dir=rtl]) .pfs-sm-5{padding-left:3rem!important}*[dir=rtl] .pfs-sm-5{padding-right:3rem!important}html:not([dir=rtl]) .pfe-sm-5{padding-right:3rem!important}*[dir=rtl] .pfe-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}html:not([dir=rtl]) .mfs-sm-n1{margin-left:-.25rem!important}*[dir=rtl] .mfs-sm-n1{margin-right:-.25rem!important}html:not([dir=rtl]) .mfe-sm-n1{margin-right:-.25rem!important}*[dir=rtl] .mfe-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}html:not([dir=rtl]) .mfs-sm-n2{margin-left:-.5rem!important}*[dir=rtl] .mfs-sm-n2{margin-right:-.5rem!important}html:not([dir=rtl]) .mfe-sm-n2{margin-right:-.5rem!important}*[dir=rtl] .mfe-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}html:not([dir=rtl]) .mfs-sm-n3{margin-left:-1rem!important}*[dir=rtl] .mfs-sm-n3{margin-right:-1rem!important}html:not([dir=rtl]) .mfe-sm-n3{margin-right:-1rem!important}*[dir=rtl] .mfe-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}html:not([dir=rtl]) .mfs-sm-n4{margin-left:-1.5rem!important}*[dir=rtl] .mfs-sm-n4{margin-right:-1.5rem!important}html:not([dir=rtl]) .mfe-sm-n4{margin-right:-1.5rem!important}*[dir=rtl] .mfe-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}html:not([dir=rtl]) .mfs-sm-n5{margin-left:-3rem!important}*[dir=rtl] .mfs-sm-n5{margin-right:-3rem!important}html:not([dir=rtl]) .mfe-sm-n5{margin-right:-3rem!important}*[dir=rtl] .mfe-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}html:not([dir=rtl]) .mfs-sm-auto{margin-left:auto!important}*[dir=rtl] .mfs-sm-auto{margin-right:auto!important}html:not([dir=rtl]) .mfe-sm-auto{margin-right:auto!important}*[dir=rtl] .mfe-sm-auto{margin-left:auto!important}}@media (min-width: 768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}html:not([dir=rtl]) .mfs-md-0{margin-left:0!important}*[dir=rtl] .mfs-md-0{margin-right:0!important}html:not([dir=rtl]) .mfe-md-0{margin-right:0!important}*[dir=rtl] .mfe-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}html:not([dir=rtl]) .mfs-md-1{margin-left:.25rem!important}*[dir=rtl] .mfs-md-1{margin-right:.25rem!important}html:not([dir=rtl]) .mfe-md-1{margin-right:.25rem!important}*[dir=rtl] .mfe-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}html:not([dir=rtl]) .mfs-md-2{margin-left:.5rem!important}*[dir=rtl] .mfs-md-2{margin-right:.5rem!important}html:not([dir=rtl]) .mfe-md-2{margin-right:.5rem!important}*[dir=rtl] .mfe-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}html:not([dir=rtl]) .mfs-md-3{margin-left:1rem!important}*[dir=rtl] .mfs-md-3{margin-right:1rem!important}html:not([dir=rtl]) .mfe-md-3{margin-right:1rem!important}*[dir=rtl] .mfe-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}html:not([dir=rtl]) .mfs-md-4{margin-left:1.5rem!important}*[dir=rtl] .mfs-md-4{margin-right:1.5rem!important}html:not([dir=rtl]) .mfe-md-4{margin-right:1.5rem!important}*[dir=rtl] .mfe-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}html:not([dir=rtl]) .mfs-md-5{margin-left:3rem!important}*[dir=rtl] .mfs-md-5{margin-right:3rem!important}html:not([dir=rtl]) .mfe-md-5{margin-right:3rem!important}*[dir=rtl] .mfe-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}html:not([dir=rtl]) .pfs-md-0{padding-left:0!important}*[dir=rtl] .pfs-md-0{padding-right:0!important}html:not([dir=rtl]) .pfe-md-0{padding-right:0!important}*[dir=rtl] .pfe-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}html:not([dir=rtl]) .pfs-md-1{padding-left:.25rem!important}*[dir=rtl] .pfs-md-1{padding-right:.25rem!important}html:not([dir=rtl]) .pfe-md-1{padding-right:.25rem!important}*[dir=rtl] .pfe-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}html:not([dir=rtl]) .pfs-md-2{padding-left:.5rem!important}*[dir=rtl] .pfs-md-2{padding-right:.5rem!important}html:not([dir=rtl]) .pfe-md-2{padding-right:.5rem!important}*[dir=rtl] .pfe-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}html:not([dir=rtl]) .pfs-md-3{padding-left:1rem!important}*[dir=rtl] .pfs-md-3{padding-right:1rem!important}html:not([dir=rtl]) .pfe-md-3{padding-right:1rem!important}*[dir=rtl] .pfe-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}html:not([dir=rtl]) .pfs-md-4{padding-left:1.5rem!important}*[dir=rtl] .pfs-md-4{padding-right:1.5rem!important}html:not([dir=rtl]) .pfe-md-4{padding-right:1.5rem!important}*[dir=rtl] .pfe-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}html:not([dir=rtl]) .pfs-md-5{padding-left:3rem!important}*[dir=rtl] .pfs-md-5{padding-right:3rem!important}html:not([dir=rtl]) .pfe-md-5{padding-right:3rem!important}*[dir=rtl] .pfe-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}html:not([dir=rtl]) .mfs-md-n1{margin-left:-.25rem!important}*[dir=rtl] .mfs-md-n1{margin-right:-.25rem!important}html:not([dir=rtl]) .mfe-md-n1{margin-right:-.25rem!important}*[dir=rtl] .mfe-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}html:not([dir=rtl]) .mfs-md-n2{margin-left:-.5rem!important}*[dir=rtl] .mfs-md-n2{margin-right:-.5rem!important}html:not([dir=rtl]) .mfe-md-n2{margin-right:-.5rem!important}*[dir=rtl] .mfe-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}html:not([dir=rtl]) .mfs-md-n3{margin-left:-1rem!important}*[dir=rtl] .mfs-md-n3{margin-right:-1rem!important}html:not([dir=rtl]) .mfe-md-n3{margin-right:-1rem!important}*[dir=rtl] .mfe-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}html:not([dir=rtl]) .mfs-md-n4{margin-left:-1.5rem!important}*[dir=rtl] .mfs-md-n4{margin-right:-1.5rem!important}html:not([dir=rtl]) .mfe-md-n4{margin-right:-1.5rem!important}*[dir=rtl] .mfe-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}html:not([dir=rtl]) .mfs-md-n5{margin-left:-3rem!important}*[dir=rtl] .mfs-md-n5{margin-right:-3rem!important}html:not([dir=rtl]) .mfe-md-n5{margin-right:-3rem!important}*[dir=rtl] .mfe-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}html:not([dir=rtl]) .mfs-md-auto{margin-left:auto!important}*[dir=rtl] .mfs-md-auto{margin-right:auto!important}html:not([dir=rtl]) .mfe-md-auto{margin-right:auto!important}*[dir=rtl] .mfe-md-auto{margin-left:auto!important}}@media (min-width: 992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}html:not([dir=rtl]) .mfs-lg-0{margin-left:0!important}*[dir=rtl] .mfs-lg-0{margin-right:0!important}html:not([dir=rtl]) .mfe-lg-0{margin-right:0!important}*[dir=rtl] .mfe-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}html:not([dir=rtl]) .mfs-lg-1{margin-left:.25rem!important}*[dir=rtl] .mfs-lg-1{margin-right:.25rem!important}html:not([dir=rtl]) .mfe-lg-1{margin-right:.25rem!important}*[dir=rtl] .mfe-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}html:not([dir=rtl]) .mfs-lg-2{margin-left:.5rem!important}*[dir=rtl] .mfs-lg-2{margin-right:.5rem!important}html:not([dir=rtl]) .mfe-lg-2{margin-right:.5rem!important}*[dir=rtl] .mfe-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}html:not([dir=rtl]) .mfs-lg-3{margin-left:1rem!important}*[dir=rtl] .mfs-lg-3{margin-right:1rem!important}html:not([dir=rtl]) .mfe-lg-3{margin-right:1rem!important}*[dir=rtl] .mfe-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}html:not([dir=rtl]) .mfs-lg-4{margin-left:1.5rem!important}*[dir=rtl] .mfs-lg-4{margin-right:1.5rem!important}html:not([dir=rtl]) .mfe-lg-4{margin-right:1.5rem!important}*[dir=rtl] .mfe-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}html:not([dir=rtl]) .mfs-lg-5{margin-left:3rem!important}*[dir=rtl] .mfs-lg-5{margin-right:3rem!important}html:not([dir=rtl]) .mfe-lg-5{margin-right:3rem!important}*[dir=rtl] .mfe-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}html:not([dir=rtl]) .pfs-lg-0{padding-left:0!important}*[dir=rtl] .pfs-lg-0{padding-right:0!important}html:not([dir=rtl]) .pfe-lg-0{padding-right:0!important}*[dir=rtl] .pfe-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}html:not([dir=rtl]) .pfs-lg-1{padding-left:.25rem!important}*[dir=rtl] .pfs-lg-1{padding-right:.25rem!important}html:not([dir=rtl]) .pfe-lg-1{padding-right:.25rem!important}*[dir=rtl] .pfe-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}html:not([dir=rtl]) .pfs-lg-2{padding-left:.5rem!important}*[dir=rtl] .pfs-lg-2{padding-right:.5rem!important}html:not([dir=rtl]) .pfe-lg-2{padding-right:.5rem!important}*[dir=rtl] .pfe-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}html:not([dir=rtl]) .pfs-lg-3{padding-left:1rem!important}*[dir=rtl] .pfs-lg-3{padding-right:1rem!important}html:not([dir=rtl]) .pfe-lg-3{padding-right:1rem!important}*[dir=rtl] .pfe-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}html:not([dir=rtl]) .pfs-lg-4{padding-left:1.5rem!important}*[dir=rtl] .pfs-lg-4{padding-right:1.5rem!important}html:not([dir=rtl]) .pfe-lg-4{padding-right:1.5rem!important}*[dir=rtl] .pfe-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}html:not([dir=rtl]) .pfs-lg-5{padding-left:3rem!important}*[dir=rtl] .pfs-lg-5{padding-right:3rem!important}html:not([dir=rtl]) .pfe-lg-5{padding-right:3rem!important}*[dir=rtl] .pfe-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}html:not([dir=rtl]) .mfs-lg-n1{margin-left:-.25rem!important}*[dir=rtl] .mfs-lg-n1{margin-right:-.25rem!important}html:not([dir=rtl]) .mfe-lg-n1{margin-right:-.25rem!important}*[dir=rtl] .mfe-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}html:not([dir=rtl]) .mfs-lg-n2{margin-left:-.5rem!important}*[dir=rtl] .mfs-lg-n2{margin-right:-.5rem!important}html:not([dir=rtl]) .mfe-lg-n2{margin-right:-.5rem!important}*[dir=rtl] .mfe-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}html:not([dir=rtl]) .mfs-lg-n3{margin-left:-1rem!important}*[dir=rtl] .mfs-lg-n3{margin-right:-1rem!important}html:not([dir=rtl]) .mfe-lg-n3{margin-right:-1rem!important}*[dir=rtl] .mfe-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}html:not([dir=rtl]) .mfs-lg-n4{margin-left:-1.5rem!important}*[dir=rtl] .mfs-lg-n4{margin-right:-1.5rem!important}html:not([dir=rtl]) .mfe-lg-n4{margin-right:-1.5rem!important}*[dir=rtl] .mfe-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}html:not([dir=rtl]) .mfs-lg-n5{margin-left:-3rem!important}*[dir=rtl] .mfs-lg-n5{margin-right:-3rem!important}html:not([dir=rtl]) .mfe-lg-n5{margin-right:-3rem!important}*[dir=rtl] .mfe-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}html:not([dir=rtl]) .mfs-lg-auto{margin-left:auto!important}*[dir=rtl] .mfs-lg-auto{margin-right:auto!important}html:not([dir=rtl]) .mfe-lg-auto{margin-right:auto!important}*[dir=rtl] .mfe-lg-auto{margin-left:auto!important}}@media (min-width: 1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}html:not([dir=rtl]) .mfs-xl-0{margin-left:0!important}*[dir=rtl] .mfs-xl-0{margin-right:0!important}html:not([dir=rtl]) .mfe-xl-0{margin-right:0!important}*[dir=rtl] .mfe-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}html:not([dir=rtl]) .mfs-xl-1{margin-left:.25rem!important}*[dir=rtl] .mfs-xl-1{margin-right:.25rem!important}html:not([dir=rtl]) .mfe-xl-1{margin-right:.25rem!important}*[dir=rtl] .mfe-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}html:not([dir=rtl]) .mfs-xl-2{margin-left:.5rem!important}*[dir=rtl] .mfs-xl-2{margin-right:.5rem!important}html:not([dir=rtl]) .mfe-xl-2{margin-right:.5rem!important}*[dir=rtl] .mfe-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}html:not([dir=rtl]) .mfs-xl-3{margin-left:1rem!important}*[dir=rtl] .mfs-xl-3{margin-right:1rem!important}html:not([dir=rtl]) .mfe-xl-3{margin-right:1rem!important}*[dir=rtl] .mfe-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}html:not([dir=rtl]) .mfs-xl-4{margin-left:1.5rem!important}*[dir=rtl] .mfs-xl-4{margin-right:1.5rem!important}html:not([dir=rtl]) .mfe-xl-4{margin-right:1.5rem!important}*[dir=rtl] .mfe-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}html:not([dir=rtl]) .mfs-xl-5{margin-left:3rem!important}*[dir=rtl] .mfs-xl-5{margin-right:3rem!important}html:not([dir=rtl]) .mfe-xl-5{margin-right:3rem!important}*[dir=rtl] .mfe-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}html:not([dir=rtl]) .pfs-xl-0{padding-left:0!important}*[dir=rtl] .pfs-xl-0{padding-right:0!important}html:not([dir=rtl]) .pfe-xl-0{padding-right:0!important}*[dir=rtl] .pfe-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}html:not([dir=rtl]) .pfs-xl-1{padding-left:.25rem!important}*[dir=rtl] .pfs-xl-1{padding-right:.25rem!important}html:not([dir=rtl]) .pfe-xl-1{padding-right:.25rem!important}*[dir=rtl] .pfe-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}html:not([dir=rtl]) .pfs-xl-2{padding-left:.5rem!important}*[dir=rtl] .pfs-xl-2{padding-right:.5rem!important}html:not([dir=rtl]) .pfe-xl-2{padding-right:.5rem!important}*[dir=rtl] .pfe-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}html:not([dir=rtl]) .pfs-xl-3{padding-left:1rem!important}*[dir=rtl] .pfs-xl-3{padding-right:1rem!important}html:not([dir=rtl]) .pfe-xl-3{padding-right:1rem!important}*[dir=rtl] .pfe-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}html:not([dir=rtl]) .pfs-xl-4{padding-left:1.5rem!important}*[dir=rtl] .pfs-xl-4{padding-right:1.5rem!important}html:not([dir=rtl]) .pfe-xl-4{padding-right:1.5rem!important}*[dir=rtl] .pfe-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}html:not([dir=rtl]) .pfs-xl-5{padding-left:3rem!important}*[dir=rtl] .pfs-xl-5{padding-right:3rem!important}html:not([dir=rtl]) .pfe-xl-5{padding-right:3rem!important}*[dir=rtl] .pfe-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}html:not([dir=rtl]) .mfs-xl-n1{margin-left:-.25rem!important}*[dir=rtl] .mfs-xl-n1{margin-right:-.25rem!important}html:not([dir=rtl]) .mfe-xl-n1{margin-right:-.25rem!important}*[dir=rtl] .mfe-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}html:not([dir=rtl]) .mfs-xl-n2{margin-left:-.5rem!important}*[dir=rtl] .mfs-xl-n2{margin-right:-.5rem!important}html:not([dir=rtl]) .mfe-xl-n2{margin-right:-.5rem!important}*[dir=rtl] .mfe-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}html:not([dir=rtl]) .mfs-xl-n3{margin-left:-1rem!important}*[dir=rtl] .mfs-xl-n3{margin-right:-1rem!important}html:not([dir=rtl]) .mfe-xl-n3{margin-right:-1rem!important}*[dir=rtl] .mfe-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}html:not([dir=rtl]) .mfs-xl-n4{margin-left:-1.5rem!important}*[dir=rtl] .mfs-xl-n4{margin-right:-1.5rem!important}html:not([dir=rtl]) .mfe-xl-n4{margin-right:-1.5rem!important}*[dir=rtl] .mfe-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}html:not([dir=rtl]) .mfs-xl-n5{margin-left:-3rem!important}*[dir=rtl] .mfs-xl-n5{margin-right:-3rem!important}html:not([dir=rtl]) .mfe-xl-n5{margin-right:-3rem!important}*[dir=rtl] .mfe-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}html:not([dir=rtl]) .mfs-xl-auto{margin-left:auto!important}*[dir=rtl] .mfs-xl-auto{margin-right:auto!important}html:not([dir=rtl]) .mfe-xl-auto{margin-right:auto!important}*[dir=rtl] .mfe-xl-auto{margin-left:auto!important}}@media (min-width: 1400px){.m-xxl-0{margin:0!important}.mt-xxl-0,.my-xxl-0{margin-top:0!important}.mr-xxl-0,.mx-xxl-0{margin-right:0!important}.mb-xxl-0,.my-xxl-0{margin-bottom:0!important}.ml-xxl-0,.mx-xxl-0{margin-left:0!important}html:not([dir=rtl]) .mfs-xxl-0{margin-left:0!important}*[dir=rtl] .mfs-xxl-0{margin-right:0!important}html:not([dir=rtl]) .mfe-xxl-0{margin-right:0!important}*[dir=rtl] .mfe-xxl-0{margin-left:0!important}.m-xxl-1{margin:.25rem!important}.mt-xxl-1,.my-xxl-1{margin-top:.25rem!important}.mr-xxl-1,.mx-xxl-1{margin-right:.25rem!important}.mb-xxl-1,.my-xxl-1{margin-bottom:.25rem!important}.ml-xxl-1,.mx-xxl-1{margin-left:.25rem!important}html:not([dir=rtl]) .mfs-xxl-1{margin-left:.25rem!important}*[dir=rtl] .mfs-xxl-1{margin-right:.25rem!important}html:not([dir=rtl]) .mfe-xxl-1{margin-right:.25rem!important}*[dir=rtl] .mfe-xxl-1{margin-left:.25rem!important}.m-xxl-2{margin:.5rem!important}.mt-xxl-2,.my-xxl-2{margin-top:.5rem!important}.mr-xxl-2,.mx-xxl-2{margin-right:.5rem!important}.mb-xxl-2,.my-xxl-2{margin-bottom:.5rem!important}.ml-xxl-2,.mx-xxl-2{margin-left:.5rem!important}html:not([dir=rtl]) .mfs-xxl-2{margin-left:.5rem!important}*[dir=rtl] .mfs-xxl-2{margin-right:.5rem!important}html:not([dir=rtl]) .mfe-xxl-2{margin-right:.5rem!important}*[dir=rtl] .mfe-xxl-2{margin-left:.5rem!important}.m-xxl-3{margin:1rem!important}.mt-xxl-3,.my-xxl-3{margin-top:1rem!important}.mr-xxl-3,.mx-xxl-3{margin-right:1rem!important}.mb-xxl-3,.my-xxl-3{margin-bottom:1rem!important}.ml-xxl-3,.mx-xxl-3{margin-left:1rem!important}html:not([dir=rtl]) .mfs-xxl-3{margin-left:1rem!important}*[dir=rtl] .mfs-xxl-3{margin-right:1rem!important}html:not([dir=rtl]) .mfe-xxl-3{margin-right:1rem!important}*[dir=rtl] .mfe-xxl-3{margin-left:1rem!important}.m-xxl-4{margin:1.5rem!important}.mt-xxl-4,.my-xxl-4{margin-top:1.5rem!important}.mr-xxl-4,.mx-xxl-4{margin-right:1.5rem!important}.mb-xxl-4,.my-xxl-4{margin-bottom:1.5rem!important}.ml-xxl-4,.mx-xxl-4{margin-left:1.5rem!important}html:not([dir=rtl]) .mfs-xxl-4{margin-left:1.5rem!important}*[dir=rtl] .mfs-xxl-4{margin-right:1.5rem!important}html:not([dir=rtl]) .mfe-xxl-4{margin-right:1.5rem!important}*[dir=rtl] .mfe-xxl-4{margin-left:1.5rem!important}.m-xxl-5{margin:3rem!important}.mt-xxl-5,.my-xxl-5{margin-top:3rem!important}.mr-xxl-5,.mx-xxl-5{margin-right:3rem!important}.mb-xxl-5,.my-xxl-5{margin-bottom:3rem!important}.ml-xxl-5,.mx-xxl-5{margin-left:3rem!important}html:not([dir=rtl]) .mfs-xxl-5{margin-left:3rem!important}*[dir=rtl] .mfs-xxl-5{margin-right:3rem!important}html:not([dir=rtl]) .mfe-xxl-5{margin-right:3rem!important}*[dir=rtl] .mfe-xxl-5{margin-left:3rem!important}.p-xxl-0{padding:0!important}.pt-xxl-0,.py-xxl-0{padding-top:0!important}.pr-xxl-0,.px-xxl-0{padding-right:0!important}.pb-xxl-0,.py-xxl-0{padding-bottom:0!important}.pl-xxl-0,.px-xxl-0{padding-left:0!important}html:not([dir=rtl]) .pfs-xxl-0{padding-left:0!important}*[dir=rtl] .pfs-xxl-0{padding-right:0!important}html:not([dir=rtl]) .pfe-xxl-0{padding-right:0!important}*[dir=rtl] .pfe-xxl-0{padding-left:0!important}.p-xxl-1{padding:.25rem!important}.pt-xxl-1,.py-xxl-1{padding-top:.25rem!important}.pr-xxl-1,.px-xxl-1{padding-right:.25rem!important}.pb-xxl-1,.py-xxl-1{padding-bottom:.25rem!important}.pl-xxl-1,.px-xxl-1{padding-left:.25rem!important}html:not([dir=rtl]) .pfs-xxl-1{padding-left:.25rem!important}*[dir=rtl] .pfs-xxl-1{padding-right:.25rem!important}html:not([dir=rtl]) .pfe-xxl-1{padding-right:.25rem!important}*[dir=rtl] .pfe-xxl-1{padding-left:.25rem!important}.p-xxl-2{padding:.5rem!important}.pt-xxl-2,.py-xxl-2{padding-top:.5rem!important}.pr-xxl-2,.px-xxl-2{padding-right:.5rem!important}.pb-xxl-2,.py-xxl-2{padding-bottom:.5rem!important}.pl-xxl-2,.px-xxl-2{padding-left:.5rem!important}html:not([dir=rtl]) .pfs-xxl-2{padding-left:.5rem!important}*[dir=rtl] .pfs-xxl-2{padding-right:.5rem!important}html:not([dir=rtl]) .pfe-xxl-2{padding-right:.5rem!important}*[dir=rtl] .pfe-xxl-2{padding-left:.5rem!important}.p-xxl-3{padding:1rem!important}.pt-xxl-3,.py-xxl-3{padding-top:1rem!important}.pr-xxl-3,.px-xxl-3{padding-right:1rem!important}.pb-xxl-3,.py-xxl-3{padding-bottom:1rem!important}.pl-xxl-3,.px-xxl-3{padding-left:1rem!important}html:not([dir=rtl]) .pfs-xxl-3{padding-left:1rem!important}*[dir=rtl] .pfs-xxl-3{padding-right:1rem!important}html:not([dir=rtl]) .pfe-xxl-3{padding-right:1rem!important}*[dir=rtl] .pfe-xxl-3{padding-left:1rem!important}.p-xxl-4{padding:1.5rem!important}.pt-xxl-4,.py-xxl-4{padding-top:1.5rem!important}.pr-xxl-4,.px-xxl-4{padding-right:1.5rem!important}.pb-xxl-4,.py-xxl-4{padding-bottom:1.5rem!important}.pl-xxl-4,.px-xxl-4{padding-left:1.5rem!important}html:not([dir=rtl]) .pfs-xxl-4{padding-left:1.5rem!important}*[dir=rtl] .pfs-xxl-4{padding-right:1.5rem!important}html:not([dir=rtl]) .pfe-xxl-4{padding-right:1.5rem!important}*[dir=rtl] .pfe-xxl-4{padding-left:1.5rem!important}.p-xxl-5{padding:3rem!important}.pt-xxl-5,.py-xxl-5{padding-top:3rem!important}.pr-xxl-5,.px-xxl-5{padding-right:3rem!important}.pb-xxl-5,.py-xxl-5{padding-bottom:3rem!important}.pl-xxl-5,.px-xxl-5{padding-left:3rem!important}html:not([dir=rtl]) .pfs-xxl-5{padding-left:3rem!important}*[dir=rtl] .pfs-xxl-5{padding-right:3rem!important}html:not([dir=rtl]) .pfe-xxl-5{padding-right:3rem!important}*[dir=rtl] .pfe-xxl-5{padding-left:3rem!important}.m-xxl-n1{margin:-.25rem!important}.mt-xxl-n1,.my-xxl-n1{margin-top:-.25rem!important}.mr-xxl-n1,.mx-xxl-n1{margin-right:-.25rem!important}.mb-xxl-n1,.my-xxl-n1{margin-bottom:-.25rem!important}.ml-xxl-n1,.mx-xxl-n1{margin-left:-.25rem!important}html:not([dir=rtl]) .mfs-xxl-n1{margin-left:-.25rem!important}*[dir=rtl] .mfs-xxl-n1{margin-right:-.25rem!important}html:not([dir=rtl]) .mfe-xxl-n1{margin-right:-.25rem!important}*[dir=rtl] .mfe-xxl-n1{margin-left:-.25rem!important}.m-xxl-n2{margin:-.5rem!important}.mt-xxl-n2,.my-xxl-n2{margin-top:-.5rem!important}.mr-xxl-n2,.mx-xxl-n2{margin-right:-.5rem!important}.mb-xxl-n2,.my-xxl-n2{margin-bottom:-.5rem!important}.ml-xxl-n2,.mx-xxl-n2{margin-left:-.5rem!important}html:not([dir=rtl]) .mfs-xxl-n2{margin-left:-.5rem!important}*[dir=rtl] .mfs-xxl-n2{margin-right:-.5rem!important}html:not([dir=rtl]) .mfe-xxl-n2{margin-right:-.5rem!important}*[dir=rtl] .mfe-xxl-n2{margin-left:-.5rem!important}.m-xxl-n3{margin:-1rem!important}.mt-xxl-n3,.my-xxl-n3{margin-top:-1rem!important}.mr-xxl-n3,.mx-xxl-n3{margin-right:-1rem!important}.mb-xxl-n3,.my-xxl-n3{margin-bottom:-1rem!important}.ml-xxl-n3,.mx-xxl-n3{margin-left:-1rem!important}html:not([dir=rtl]) .mfs-xxl-n3{margin-left:-1rem!important}*[dir=rtl] .mfs-xxl-n3{margin-right:-1rem!important}html:not([dir=rtl]) .mfe-xxl-n3{margin-right:-1rem!important}*[dir=rtl] .mfe-xxl-n3{margin-left:-1rem!important}.m-xxl-n4{margin:-1.5rem!important}.mt-xxl-n4,.my-xxl-n4{margin-top:-1.5rem!important}.mr-xxl-n4,.mx-xxl-n4{margin-right:-1.5rem!important}.mb-xxl-n4,.my-xxl-n4{margin-bottom:-1.5rem!important}.ml-xxl-n4,.mx-xxl-n4{margin-left:-1.5rem!important}html:not([dir=rtl]) .mfs-xxl-n4{margin-left:-1.5rem!important}*[dir=rtl] .mfs-xxl-n4{margin-right:-1.5rem!important}html:not([dir=rtl]) .mfe-xxl-n4{margin-right:-1.5rem!important}*[dir=rtl] .mfe-xxl-n4{margin-left:-1.5rem!important}.m-xxl-n5{margin:-3rem!important}.mt-xxl-n5,.my-xxl-n5{margin-top:-3rem!important}.mr-xxl-n5,.mx-xxl-n5{margin-right:-3rem!important}.mb-xxl-n5,.my-xxl-n5{margin-bottom:-3rem!important}.ml-xxl-n5,.mx-xxl-n5{margin-left:-3rem!important}html:not([dir=rtl]) .mfs-xxl-n5{margin-left:-3rem!important}*[dir=rtl] .mfs-xxl-n5{margin-right:-3rem!important}html:not([dir=rtl]) .mfe-xxl-n5{margin-right:-3rem!important}*[dir=rtl] .mfe-xxl-n5{margin-left:-3rem!important}.m-xxl-auto{margin:auto!important}.mt-xxl-auto,.my-xxl-auto{margin-top:auto!important}.mr-xxl-auto,.mx-xxl-auto{margin-right:auto!important}.mb-xxl-auto,.my-xxl-auto{margin-bottom:auto!important}.ml-xxl-auto,.mx-xxl-auto{margin-left:auto!important}html:not([dir=rtl]) .mfs-xxl-auto{margin-left:auto!important}*[dir=rtl] .mfs-xxl-auto{margin-right:auto!important}html:not([dir=rtl]) .mfe-xxl-auto{margin-right:auto!important}*[dir=rtl] .mfe-xxl-auto{margin-left:auto!important}}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:#00001500}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width: 576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width: 768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width: 992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width: 1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width: 1400px){.text-xxl-left{text-align:left!important}.text-xxl-right{text-align:right!important}.text-xxl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#321fdb!important}a.text-primary:hover,a.text-primary:focus{color:#231698!important}.text-secondary{color:#ced2d8!important}a.text-secondary:hover,a.text-secondary:focus{color:#a3abb6!important}.text-success{color:#2eb85c!important}a.text-success:hover,a.text-success:focus{color:#1f7b3d!important}.text-info{color:#39f!important}a.text-info:hover,a.text-info:focus{color:#0073e6!important}.text-warning{color:#f9b115!important}a.text-warning:hover,a.text-warning:focus{color:#bd8305!important}.text-danger{color:#e55353!important}a.text-danger:hover,a.text-danger:focus{color:#cd1f1f!important}.text-light{color:#ebedef!important}a.text-light:hover,a.text-light:focus{color:#c1c7cd!important}.text-dark{color:#636f83!important}a.text-dark:hover,a.text-dark:focus{color:#424a57!important}.text-body{color:#3c4b64!important}.text-muted{color:#768192!important}.text-black-50{color:#00001580!important}.text-white-50{color:#ffffff80!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}body{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.font-xs{font-size:.75rem!important}.font-sm{font-size:.85rem!important}.font-lg{font-size:1rem!important}.font-xl{font-size:1.25rem!important}.font-2xl{font-size:1.5rem!important}.font-3xl{font-size:1.75rem!important}.font-4xl{font-size:2rem!important}.font-5xl{font-size:2.5rem!important}[class^=text-value]{font-weight:600}.text-value-xs{font-size:.65625rem}.text-value-sm{font-size:.74375rem}.text-value{font-size:.875rem}.text-value-lg{font-size:1.3125rem}.text-value-xl{font-size:1.53125rem}.text-white .text-muted{color:#fff9!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}*[dir=rtl]{direction:rtl;unicode-bidi:embed}*[dir=rtl] body{text-align:right}.ie-custom-properties{primary:#321fdb;secondary:#ced2d8;success:#2eb85c;info:#39f;warning:#f9b115;danger:#e55353;light:#ebedef;dark:#636f83;breakpoint-xs:0;breakpoint-sm:576px;breakpoint-md:768px;breakpoint-lg:992px;breakpoint-xl:1200px;breakpoint-xxl:1400px}@media print{*,*:before,*:after{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}pre,blockquote{border:1px solid #9da5b1;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body,.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000015}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered th,.table-bordered td{border:1px solid #c4c9d0!important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#d8dbe0}.table .thead-dark th{color:inherit;border-color:#d8dbe0}}.c-sidebar .c-sidebar-nav-link.c-active,.c-sidebar .c-active.c-sidebar-nav-dropdown-toggle{color:#fff;background:#321fdb}.btn:not([class*=ghost]):not([class*=link]):not([class*=outline]):not([class*=transparent]){border:0;box-shadow:0 1px 1px #3c4b6424,0 2px 1px -1px #3c4b641f,0 1px 3px #3c4b6433}.dropzone{border:2px dashed #3B82F6;border-radius:5px;background:#DBEAFE}.dz-preview{background:#EFF6FF!important;border-radius:20px}.dz-remove{color:#333}.dropzone i.bi.bi-cloud-arrow-up{font-size:5rem;color:#60a5fa}.dropzone .dz-message{color:#0000008a;font-weight:500;font-size:initial}.dropzone .dz-preview .dz-image img{display:block;width:100%}table{width:990px!important}@media (min-width: 992px){table{width:100%!important}} diff --git a/public/build/assets/app-4bd38d4a.js b/public/build/assets/app-4bd38d4a.js new file mode 100644 index 00000000..4c4f9cf1 --- /dev/null +++ b/public/build/assets/app-4bd38d4a.js @@ -0,0 +1,48 @@ +/**! + * @fileOverview Kickass library to create and place poppers near their reference elements. + * @version 1.16.1 + * @license + * Copyright (c) 2016 Federico Zivolo and contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */var Po=typeof window<"u"&&typeof document<"u"&&typeof navigator<"u",is=function(){for(var v=["Edge","Trident","Firefox"],b=0;b=0)return 1;return 0}();function rs(v){var b=!1;return function(){b||(b=!0,window.Promise.resolve().then(function(){b=!1,v()}))}}function os(v){var b=!1;return function(){b||(b=!0,setTimeout(function(){b=!1,v()},is))}}var as=Po&&window.Promise,ss=as?rs:os;function Ra(v){var b={};return v&&b.toString.call(v)==="[object Function]"}function Xr(v,b){if(v.nodeType!==1)return[];var A=v.ownerDocument.defaultView,N=A.getComputedStyle(v,null);return b?N[b]:N}function ya(v){return v.nodeName==="HTML"?v:v.parentNode||v.host}function jo(v){if(!v)return document.body;switch(v.nodeName){case"HTML":case"BODY":return v.ownerDocument.body;case"#document":return v.body}var b=Xr(v),A=b.overflow,N=b.overflowX,X=b.overflowY;return/(auto|scroll|overlay)/.test(A+X+N)?v:jo(ya(v))}function Pa(v){return v&&v.referenceNode?v.referenceNode:v}var Oa=Po&&!!(window.MSInputMethodContext&&document.documentMode),Na=Po&&/MSIE 10/.test(navigator.userAgent);function bo(v){return v===11?Oa:v===10?Na:Oa||Na}function mo(v){if(!v)return document.documentElement;for(var b=bo(10)?document.body:null,A=v.offsetParent||null;A===b&&v.nextElementSibling;)A=(v=v.nextElementSibling).offsetParent;var N=A&&A.nodeName;return!N||N==="BODY"||N==="HTML"?v?v.ownerDocument.documentElement:document.documentElement:["TH","TD","TABLE"].indexOf(A.nodeName)!==-1&&Xr(A,"position")==="static"?mo(A):A}function ls(v){var b=v.nodeName;return b==="BODY"?!1:b==="HTML"||mo(v.firstElementChild)===v}function va(v){return v.parentNode!==null?va(v.parentNode):v}function na(v,b){if(!v||!v.nodeType||!b||!b.nodeType)return document.documentElement;var A=v.compareDocumentPosition(b)&Node.DOCUMENT_POSITION_FOLLOWING,N=A?v:b,X=A?b:v,F=document.createRange();F.setStart(N,0),F.setEnd(X,0);var f=F.commonAncestorContainer;if(v!==f&&b!==f||N.contains(X))return ls(f)?f:mo(f);var J=va(v);return J.host?na(J.host,b):na(v,va(b).host)}function _o(v){var b=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"top",A=b==="top"?"scrollTop":"scrollLeft",N=v.nodeName;if(N==="BODY"||N==="HTML"){var X=v.ownerDocument.documentElement,F=v.ownerDocument.scrollingElement||X;return F[A]}return v[A]}function us(v,b){var A=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,N=_o(b,"top"),X=_o(b,"left"),F=A?-1:1;return v.top+=N*F,v.bottom+=N*F,v.left+=X*F,v.right+=X*F,v}function La(v,b){var A=b==="x"?"Left":"Top",N=A==="Left"?"Right":"Bottom";return parseFloat(v["border"+A+"Width"])+parseFloat(v["border"+N+"Width"])}function Da(v,b,A,N){return Math.max(b["offset"+v],b["scroll"+v],A["client"+v],A["offset"+v],A["scroll"+v],bo(10)?parseInt(A["offset"+v])+parseInt(N["margin"+(v==="Height"?"Top":"Left")])+parseInt(N["margin"+(v==="Height"?"Bottom":"Right")]):0)}function ja(v){var b=v.body,A=v.documentElement,N=bo(10)&&getComputedStyle(A);return{height:Da("Height",b,A,N),width:Da("Width",b,A,N)}}var fs=function(v,b){if(!(v instanceof b))throw new TypeError("Cannot call a class as a function")},cs=function(){function v(b,A){for(var N=0;N2&&arguments[2]!==void 0?arguments[2]:!1,N=bo(10),X=b.nodeName==="HTML",F=ma(v),f=ma(b),J=jo(v),te=Xr(b),se=parseFloat(te.borderTopWidth),oe=parseFloat(te.borderLeftWidth);A&&X&&(f.top=Math.max(f.top,0),f.left=Math.max(f.left,0));var ee=_r({top:F.top-f.top-se,left:F.left-f.left-oe,width:F.width,height:F.height});if(ee.marginTop=0,ee.marginLeft=0,!N&&X){var Se=parseFloat(te.marginTop),Ee=parseFloat(te.marginLeft);ee.top-=se-Se,ee.bottom-=se-Se,ee.left-=oe-Ee,ee.right-=oe-Ee,ee.marginTop=Se,ee.marginLeft=Ee}return(N&&!A?b.contains(J):b===J&&J.nodeName!=="BODY")&&(ee=us(ee,b)),ee}function ds(v){var b=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,A=v.ownerDocument.documentElement,N=ba(v,A),X=Math.max(A.clientWidth,window.innerWidth||0),F=Math.max(A.clientHeight,window.innerHeight||0),f=b?0:_o(A),J=b?0:_o(A,"left"),te={top:f-N.top+N.marginTop,left:J-N.left+N.marginLeft,width:X,height:F};return _r(te)}function Ma(v){var b=v.nodeName;if(b==="BODY"||b==="HTML")return!1;if(Xr(v,"position")==="fixed")return!0;var A=ya(v);return A?Ma(A):!1}function Ha(v){if(!v||!v.parentElement||bo())return document.documentElement;for(var b=v.parentElement;b&&Xr(b,"transform")==="none";)b=b.parentElement;return b||document.documentElement}function Ea(v,b,A,N){var X=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1,F={top:0,left:0},f=X?Ha(v):na(v,Pa(b));if(N==="viewport")F=ds(f,X);else{var J=void 0;N==="scrollParent"?(J=jo(ya(b)),J.nodeName==="BODY"&&(J=v.ownerDocument.documentElement)):N==="window"?J=v.ownerDocument.documentElement:J=N;var te=ba(J,f,X);if(J.nodeName==="HTML"&&!Ma(f)){var se=ja(v.ownerDocument),oe=se.height,ee=se.width;F.top+=te.top-te.marginTop,F.bottom=oe+te.top,F.left+=te.left-te.marginLeft,F.right=ee+te.left}else F=te}A=A||0;var Se=typeof A=="number";return F.left+=Se?A:A.left||0,F.top+=Se?A:A.top||0,F.right-=Se?A:A.right||0,F.bottom-=Se?A:A.bottom||0,F}function hs(v){var b=v.width,A=v.height;return b*A}function Wa(v,b,A,N,X){var F=arguments.length>5&&arguments[5]!==void 0?arguments[5]:0;if(v.indexOf("auto")===-1)return v;var f=Ea(A,N,F,X),J={top:{width:f.width,height:b.top-f.top},right:{width:f.right-b.right,height:f.height},bottom:{width:f.width,height:f.bottom-b.bottom},left:{width:b.left-f.left,height:f.height}},te=Object.keys(J).map(function(Se){return Fn({key:Se},J[Se],{area:hs(J[Se])})}).sort(function(Se,Ee){return Ee.area-Se.area}),se=te.filter(function(Se){var Ee=Se.width,ne=Se.height;return Ee>=A.clientWidth&&ne>=A.clientHeight}),oe=se.length>0?se[0].key:te[0].key,ee=v.split("-")[1];return oe+(ee?"-"+ee:"")}function Ba(v,b,A){var N=arguments.length>3&&arguments[3]!==void 0?arguments[3]:null,X=N?Ha(b):na(b,Pa(A));return ba(A,X,N)}function Fa(v){var b=v.ownerDocument.defaultView,A=b.getComputedStyle(v),N=parseFloat(A.marginTop||0)+parseFloat(A.marginBottom||0),X=parseFloat(A.marginLeft||0)+parseFloat(A.marginRight||0),F={width:v.offsetWidth+X,height:v.offsetHeight+N};return F}function ia(v){var b={left:"right",right:"left",bottom:"top",top:"bottom"};return v.replace(/left|right|bottom|top/g,function(A){return b[A]})}function qa(v,b,A){A=A.split("-")[0];var N=Fa(v),X={width:N.width,height:N.height},F=["right","left"].indexOf(A)!==-1,f=F?"top":"left",J=F?"left":"top",te=F?"height":"width",se=F?"width":"height";return X[f]=b[f]+b[te]/2-N[te]/2,A===J?X[J]=b[J]-N[se]:X[J]=b[ia(J)],X}function Mo(v,b){return Array.prototype.find?v.find(b):v.filter(b)[0]}function ps(v,b,A){if(Array.prototype.findIndex)return v.findIndex(function(X){return X[b]===A});var N=Mo(v,function(X){return X[b]===A});return v.indexOf(N)}function $a(v,b,A){var N=A===void 0?v:v.slice(0,ps(v,"name",A));return N.forEach(function(X){X.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var F=X.function||X.fn;X.enabled&&Ra(F)&&(b.offsets.popper=_r(b.offsets.popper),b.offsets.reference=_r(b.offsets.reference),b=F(b,X))}),b}function gs(){if(!this.state.isDestroyed){var v={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};v.offsets.reference=Ba(this.state,this.popper,this.reference,this.options.positionFixed),v.placement=Wa(this.options.placement,v.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),v.originalPlacement=v.placement,v.positionFixed=this.options.positionFixed,v.offsets.popper=qa(this.popper,v.offsets.reference,v.placement),v.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",v=$a(this.modifiers,v),this.state.isCreated?this.options.onUpdate(v):(this.state.isCreated=!0,this.options.onCreate(v))}}function Va(v,b){return v.some(function(A){var N=A.name,X=A.enabled;return X&&N===b})}function Ta(v){for(var b=[!1,"ms","Webkit","Moz","O"],A=v.charAt(0).toUpperCase()+v.slice(1),N=0;Nf[Ee]&&(v.offsets.popper[ee]+=J[ee]+ne-f[Ee]),v.offsets.popper=_r(v.offsets.popper);var ue=J[ee]+J[se]/2-ne/2,Be=Xr(v.instance.popper),me=parseFloat(Be["margin"+oe]),nt=parseFloat(Be["border"+oe+"Width"]),Ve=ue-v.offsets.popper[ee]-me-nt;return Ve=Math.max(Math.min(f[se]-ne,Ve),0),v.arrowElement=N,v.offsets.arrow=(A={},yo(A,ee,Math.round(Ve)),yo(A,Se,""),A),v}function Ns(v){return v==="end"?"start":v==="start"?"end":v}var Qa=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"],ha=Qa.slice(3);function xa(v){var b=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,A=ha.indexOf(v),N=ha.slice(A+1).concat(ha.slice(0,A));return b?N.reverse():N}var pa={FLIP:"flip",CLOCKWISE:"clockwise",COUNTERCLOCKWISE:"counterclockwise"};function Ls(v,b){if(Va(v.instance.modifiers,"inner")||v.flipped&&v.placement===v.originalPlacement)return v;var A=Ea(v.instance.popper,v.instance.reference,b.padding,b.boundariesElement,v.positionFixed),N=v.placement.split("-")[0],X=ia(N),F=v.placement.split("-")[1]||"",f=[];switch(b.behavior){case pa.FLIP:f=[N,X];break;case pa.CLOCKWISE:f=xa(N);break;case pa.COUNTERCLOCKWISE:f=xa(N,!0);break;default:f=b.behavior}return f.forEach(function(J,te){if(N!==J||f.length===te+1)return v;N=v.placement.split("-")[0],X=ia(N);var se=v.offsets.popper,oe=v.offsets.reference,ee=Math.floor,Se=N==="left"&&ee(se.right)>ee(oe.left)||N==="right"&&ee(se.left)ee(oe.top)||N==="bottom"&&ee(se.top)ee(A.right),ue=ee(se.top)ee(A.bottom),me=N==="left"&&Ee||N==="right"&&ne||N==="top"&&ue||N==="bottom"&&Be,nt=["top","bottom"].indexOf(N)!==-1,Ve=!!b.flipVariations&&(nt&&F==="start"&&Ee||nt&&F==="end"&&ne||!nt&&F==="start"&&ue||!nt&&F==="end"&&Be),ie=!!b.flipVariationsByContent&&(nt&&F==="start"&&ne||nt&&F==="end"&&Ee||!nt&&F==="start"&&Be||!nt&&F==="end"&&ue),Rt=Ve||ie;(Se||me||Rt)&&(v.flipped=!0,(Se||me)&&(N=f[te+1]),Rt&&(F=Ns(F)),v.placement=N+(F?"-"+F:""),v.offsets.popper=Fn({},v.offsets.popper,qa(v.instance.popper,v.offsets.reference,v.placement)),v=$a(v.instance.modifiers,v,"flip"))}),v}function Ds(v){var b=v.offsets,A=b.popper,N=b.reference,X=v.placement.split("-")[0],F=Math.floor,f=["top","bottom"].indexOf(X)!==-1,J=f?"right":"bottom",te=f?"left":"top",se=f?"width":"height";return A[J]F(N[J])&&(v.offsets.popper[te]=F(N[J])),v}function xs(v,b,A,N){var X=v.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),F=+X[1],f=X[2];if(!F)return v;if(f.indexOf("%")===0){var J=void 0;switch(f){case"%p":J=A;break;case"%":case"%r":default:J=N}var te=_r(J);return te[b]/100*F}else if(f==="vh"||f==="vw"){var se=void 0;return f==="vh"?se=Math.max(document.documentElement.clientHeight,window.innerHeight||0):se=Math.max(document.documentElement.clientWidth,window.innerWidth||0),se/100*F}else return F}function Is(v,b,A,N){var X=[0,0],F=["right","left"].indexOf(N)!==-1,f=v.split(/(\+|\-)/).map(function(oe){return oe.trim()}),J=f.indexOf(Mo(f,function(oe){return oe.search(/,|\s/)!==-1}));f[J]&&f[J].indexOf(",")===-1&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var te=/\s*,\s*|\s+/,se=J!==-1?[f.slice(0,J).concat([f[J].split(te)[0]]),[f[J].split(te)[1]].concat(f.slice(J+1))]:[f];return se=se.map(function(oe,ee){var Se=(ee===1?!F:F)?"height":"width",Ee=!1;return oe.reduce(function(ne,ue){return ne[ne.length-1]===""&&["+","-"].indexOf(ue)!==-1?(ne[ne.length-1]=ue,Ee=!0,ne):Ee?(ne[ne.length-1]+=ue,Ee=!1,ne):ne.concat(ue)},[]).map(function(ne){return xs(ne,Se,b,A)})}),se.forEach(function(oe,ee){oe.forEach(function(Se,Ee){wa(Se)&&(X[ee]+=Se*(oe[Ee-1]==="-"?-1:1))})}),X}function ks(v,b){var A=b.offset,N=v.placement,X=v.offsets,F=X.popper,f=X.reference,J=N.split("-")[0],te=void 0;return wa(+A)?te=[+A,0]:te=Is(A,F,f,J),J==="left"?(F.top+=te[0],F.left-=te[1]):J==="right"?(F.top+=te[0],F.left+=te[1]):J==="top"?(F.left+=te[0],F.top-=te[1]):J==="bottom"&&(F.left+=te[0],F.top+=te[1]),v.popper=F,v}function Rs(v,b){var A=b.boundariesElement||mo(v.instance.popper);v.instance.reference===A&&(A=mo(A));var N=Ta("transform"),X=v.instance.popper.style,F=X.top,f=X.left,J=X[N];X.top="",X.left="",X[N]="";var te=Ea(v.instance.popper,v.instance.reference,b.padding,A,v.positionFixed);X.top=F,X.left=f,X[N]=J,b.boundaries=te;var se=b.priority,oe=v.offsets.popper,ee={primary:function(Ee){var ne=oe[Ee];return oe[Ee]te[Ee]&&!b.escapeWithReference&&(ue=Math.min(oe[ne],te[Ee]-(Ee==="right"?oe.width:oe.height))),yo({},ne,ue)}};return se.forEach(function(Se){var Ee=["left","top"].indexOf(Se)!==-1?"primary":"secondary";oe=Fn({},oe,ee[Ee](Se))}),v.offsets.popper=oe,v}function Ps(v){var b=v.placement,A=b.split("-")[0],N=b.split("-")[1];if(N){var X=v.offsets,F=X.reference,f=X.popper,J=["bottom","top"].indexOf(A)!==-1,te=J?"left":"top",se=J?"width":"height",oe={start:yo({},te,F[te]),end:yo({},te,F[te]+F[se]-f[se])};v.offsets.popper=Fn({},f,oe[N])}return v}function js(v){if(!Xa(v.instance.modifiers,"hide","preventOverflow"))return v;var b=v.offsets.reference,A=Mo(v.instance.modifiers,function(N){return N.name==="preventOverflow"}).boundaries;if(b.bottomA.right||b.top>A.bottom||b.right2&&arguments[2]!==void 0?arguments[2]:{};fs(this,v),this.scheduleUpdate=function(){return requestAnimationFrame(N.update)},this.update=ss(this.update.bind(this)),this.options=Fn({},v.Defaults,X),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=b&&b.jquery?b[0]:b,this.popper=A&&A.jquery?A[0]:A,this.options.modifiers={},Object.keys(Fn({},v.Defaults.modifiers,X.modifiers)).forEach(function(f){N.options.modifiers[f]=Fn({},v.Defaults.modifiers[f]||{},X.modifiers?X.modifiers[f]:{})}),this.modifiers=Object.keys(this.options.modifiers).map(function(f){return Fn({name:f},N.options.modifiers[f])}).sort(function(f,J){return f.order-J.order}),this.modifiers.forEach(function(f){f.enabled&&Ra(f.onLoad)&&f.onLoad(N.reference,N.popper,N.options,f,N.state)}),this.update();var F=this.options.eventsEnabled;F&&this.enableEventListeners(),this.state.eventsEnabled=F}return cs(v,[{key:"update",value:function(){return gs.call(this)}},{key:"destroy",value:function(){return vs.call(this)}},{key:"enableEventListeners",value:function(){return _s.call(this)}},{key:"disableEventListeners",value:function(){return bs.call(this)}}]),v}();ra.Utils=(typeof window<"u"?window:global).PopperUtils;ra.placements=Qa;ra.Defaults=Ws;const Ka=ra,Bs=Object.freeze(Object.defineProperty({__proto__:null,default:Ka},Symbol.toStringTag,{value:"Module"}));var Ro=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Fs(v){if(v.__esModule)return v;var b=v.default;if(typeof b=="function"){var A=function N(){return this instanceof N?Reflect.construct(b,arguments,this.constructor):b.apply(this,arguments)};A.prototype=b.prototype}else A={};return Object.defineProperty(A,"__esModule",{value:!0}),Object.keys(v).forEach(function(N){var X=Object.getOwnPropertyDescriptor(v,N);Object.defineProperty(A,N,X.get?X:{enumerable:!0,get:function(){return v[N]}})}),A}var Ia={exports:{}},ga={exports:{}};/*! + * jQuery JavaScript Library v3.7.0 + * https://jquery.com/ + * + * Copyright OpenJS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2023-05-11T18:29Z + */var ka;function qs(){return ka||(ka=1,function(v){(function(b,A){v.exports=b.document?A(b,!0):function(N){if(!N.document)throw new Error("jQuery requires a window with a document");return A(N)}})(typeof window<"u"?window:Ro,function(b,A){var N=[],X=Object.getPrototypeOf,F=N.slice,f=N.flat?function(e){return N.flat.call(e)}:function(e){return N.concat.apply([],e)},J=N.push,te=N.indexOf,se={},oe=se.toString,ee=se.hasOwnProperty,Se=ee.toString,Ee=Se.call(Object),ne={},ue=function(n){return typeof n=="function"&&typeof n.nodeType!="number"&&typeof n.item!="function"},Be=function(n){return n!=null&&n===n.window},me=b.document,nt={type:!0,src:!0,nonce:!0,noModule:!0};function Ve(e,n,a){a=a||me;var s,d,h=a.createElement("script");if(h.text=e,n)for(s in nt)d=n[s]||n.getAttribute&&n.getAttribute(s),d&&h.setAttribute(s,d);a.head.appendChild(h).parentNode.removeChild(h)}function ie(e){return e==null?e+"":typeof e=="object"||typeof e=="function"?se[oe.call(e)]||"object":typeof e}var Rt="3.7.0",Eo=/HTML$/i,u=function(e,n){return new u.fn.init(e,n)};u.fn=u.prototype={jquery:Rt,constructor:u,length:0,toArray:function(){return F.call(this)},get:function(e){return e==null?F.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var n=u.merge(this.constructor(),e);return n.prevObject=this,n},each:function(e){return u.each(this,e)},map:function(e){return this.pushStack(u.map(this,function(n,a){return e.call(n,a,n)}))},slice:function(){return this.pushStack(F.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(u.grep(this,function(e,n){return(n+1)%2}))},odd:function(){return this.pushStack(u.grep(this,function(e,n){return n%2}))},eq:function(e){var n=this.length,a=+e+(e<0?n:0);return this.pushStack(a>=0&&a0&&n-1 in e}function xe(e,n){return e.nodeName&&e.nodeName.toLowerCase()===n.toLowerCase()}var yr=N.pop,rt=N.sort,Pe=N.splice,je="[\\x20\\t\\r\\n\\f]",qn=new RegExp("^"+je+"+|((?:^|[^\\\\])(?:\\\\.)*)"+je+"+$","g");u.contains=function(e,n){var a=n&&n.parentNode;return e===a||!!(a&&a.nodeType===1&&(e.contains?e.contains(a):e.compareDocumentPosition&&e.compareDocumentPosition(a)&16))};var Qr=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;function To(e,n){return n?e==="\0"?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e}u.escapeSelector=function(e){return(e+"").replace(Qr,To)};var jt=me,Kt=J;(function(){var e,n,a,s,d,h=Kt,g,C,T,D,B,V=u.expando,x=0,G=0,ye=Mn(),ke=Mn(),Le=Mn(),lt=Mn(),$e=function(y,O){return y===O&&(d=!0),0},vt="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",on="(?:\\\\[\\da-fA-F]{1,6}"+je+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",He="\\["+je+"*("+on+")(?:"+je+"*([*^$|!~]?=)"+je+`*(?:'((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)"|(`+on+"))|)"+je+"*\\]",Lt=":("+on+`)(?:\\((('((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)")|((?:\\\\.|[^\\\\()[\\]]|`+He+")*)|.*)\\)|)",De=new RegExp(je+"+","g"),Qe=new RegExp("^"+je+"*,"+je+"*"),jn=new RegExp("^"+je+"*([>+~]|"+je+")"+je+"*"),Hi=new RegExp(je+"|>"),Yt=new RegExp(Lt),an=new RegExp("^"+on+"$"),Ct={ID:new RegExp("^#("+on+")"),CLASS:new RegExp("^\\.("+on+")"),TAG:new RegExp("^("+on+"|[*])"),ATTR:new RegExp("^"+He),PSEUDO:new RegExp("^"+Lt),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+je+"*(even|odd|(([+-]|)(\\d*)n|)"+je+"*(?:([+-]|)"+je+"*(\\d+)|))"+je+"*\\)|)","i"),bool:new RegExp("^(?:"+vt+")$","i"),needsContext:new RegExp("^"+je+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+je+"*((?:-\\d)?\\d*)"+je+"*\\)|)(?=[^-]|$)","i")},Cn=/^(?:input|select|textarea|button)$/i,sn=/^h\d$/i,St=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ur=/[+~]/,ln=new RegExp("\\\\[\\da-fA-F]{1,6}"+je+"?|\\\\([^\\r\\n\\f])","g"),mt=function(y,O){var I="0x"+y.slice(1)-65536;return O||(I<0?String.fromCharCode(I+65536):String.fromCharCode(I>>10|55296,I&1023|56320))},un=function(){Sn()},so=fr(function(y){return y.disabled===!0&&xe(y,"fieldset")},{dir:"parentNode",next:"legend"});function Wi(){try{return g.activeElement}catch{}}try{h.apply(N=F.call(jt.childNodes),jt.childNodes),N[jt.childNodes.length].nodeType}catch{h={apply:function(O,I){Kt.apply(O,F.call(I))},call:function(O){Kt.apply(O,F.call(arguments,1))}}}function Re(y,O,I,j){var Y,re,ae,fe,le,Me,we,Oe=O&&O.ownerDocument,Ne=O?O.nodeType:9;if(I=I||[],typeof y!="string"||!y||Ne!==1&&Ne!==9&&Ne!==11)return I;if(!j&&(Sn(O),O=O||g,T)){if(Ne!==11&&(le=St.exec(y)))if(Y=le[1]){if(Ne===9)if(ae=O.getElementById(Y)){if(ae.id===Y)return h.call(I,ae),I}else return I;else if(Oe&&(ae=Oe.getElementById(Y))&&Re.contains(O,ae)&&ae.id===Y)return h.call(I,ae),I}else{if(le[2])return h.apply(I,O.getElementsByTagName(y)),I;if((Y=le[3])&&O.getElementsByClassName)return h.apply(I,O.getElementsByClassName(Y)),I}if(!lt[y+" "]&&(!D||!D.test(y))){if(we=y,Oe=O,Ne===1&&(Hi.test(y)||jn.test(y))){for(Oe=ur.test(y)&&bi(O.parentNode)||O,(Oe!=O||!ne.scope)&&((fe=O.getAttribute("id"))?fe=u.escapeSelector(fe):O.setAttribute("id",fe=V)),Me=at(y),re=Me.length;re--;)Me[re]=(fe?"#"+fe:":scope")+" "+Ei(Me[re]);we=Me.join(",")}try{return h.apply(I,Oe.querySelectorAll(we)),I}catch{lt(y,!0)}finally{fe===V&&O.removeAttribute("id")}}}return dr(y.replace(qn,"$1"),O,I,j)}function Mn(){var y=[];function O(I,j){return y.push(I+" ")>n.cacheLength&&delete O[y.shift()],O[I+" "]=j}return O}function ut(y){return y[V]=!0,y}function _i(y){var O=g.createElement("fieldset");try{return!!y(O)}catch{return!1}finally{O.parentNode&&O.parentNode.removeChild(O),O=null}}function Oo(y){return function(O){return xe(O,"input")&&O.type===y}}function Bi(y){return function(O){return(xe(O,"input")||xe(O,"button"))&&O.type===y}}function yi(y){return function(O){return"form"in O?O.parentNode&&O.disabled===!1?"label"in O?"label"in O.parentNode?O.parentNode.disabled===y:O.disabled===y:O.isDisabled===y||O.isDisabled!==!y&&so(O)===y:O.disabled===y:"label"in O?O.disabled===y:!1}}function Ut(y){return ut(function(O){return O=+O,ut(function(I,j){for(var Y,re=y([],I.length,O),ae=re.length;ae--;)I[Y=re[ae]]&&(I[Y]=!(j[Y]=I[Y]))})})}function bi(y){return y&&typeof y.getElementsByTagName<"u"&&y}function Sn(y){var O,I=y?y.ownerDocument||y:jt;return I==g||I.nodeType!==9||!I.documentElement||(g=I,C=g.documentElement,T=!u.isXMLDoc(g),B=C.matches||C.webkitMatchesSelector||C.msMatchesSelector,jt!=g&&(O=g.defaultView)&&O.top!==O&&O.addEventListener("unload",un),ne.getById=_i(function(j){return C.appendChild(j).id=u.expando,!g.getElementsByName||!g.getElementsByName(u.expando).length}),ne.disconnectedMatch=_i(function(j){return B.call(j,"*")}),ne.scope=_i(function(){return g.querySelectorAll(":scope")}),ne.cssHas=_i(function(){try{return g.querySelector(":has(*,:jqfake)"),!1}catch{return!0}}),ne.getById?(n.filter.ID=function(j){var Y=j.replace(ln,mt);return function(re){return re.getAttribute("id")===Y}},n.find.ID=function(j,Y){if(typeof Y.getElementById<"u"&&T){var re=Y.getElementById(j);return re?[re]:[]}}):(n.filter.ID=function(j){var Y=j.replace(ln,mt);return function(re){var ae=typeof re.getAttributeNode<"u"&&re.getAttributeNode("id");return ae&&ae.value===Y}},n.find.ID=function(j,Y){if(typeof Y.getElementById<"u"&&T){var re,ae,fe,le=Y.getElementById(j);if(le){if(re=le.getAttributeNode("id"),re&&re.value===j)return[le];for(fe=Y.getElementsByName(j),ae=0;le=fe[ae++];)if(re=le.getAttributeNode("id"),re&&re.value===j)return[le]}return[]}}),n.find.TAG=function(j,Y){return typeof Y.getElementsByTagName<"u"?Y.getElementsByTagName(j):Y.querySelectorAll(j)},n.find.CLASS=function(j,Y){if(typeof Y.getElementsByClassName<"u"&&T)return Y.getElementsByClassName(j)},D=[],_i(function(j){var Y;C.appendChild(j).innerHTML="",j.querySelectorAll("[selected]").length||D.push("\\["+je+"*(?:value|"+vt+")"),j.querySelectorAll("[id~="+V+"-]").length||D.push("~="),j.querySelectorAll("a#"+V+"+*").length||D.push(".#.+[+~]"),j.querySelectorAll(":checked").length||D.push(":checked"),Y=g.createElement("input"),Y.setAttribute("type","hidden"),j.appendChild(Y).setAttribute("name","D"),C.appendChild(j).disabled=!0,j.querySelectorAll(":disabled").length!==2&&D.push(":enabled",":disabled"),Y=g.createElement("input"),Y.setAttribute("name",""),j.appendChild(Y),j.querySelectorAll("[name='']").length||D.push("\\["+je+"*name"+je+"*="+je+`*(?:''|"")`)}),ne.cssHas||D.push(":has"),D=D.length&&new RegExp(D.join("|")),$e=function(j,Y){if(j===Y)return d=!0,0;var re=!j.compareDocumentPosition-!Y.compareDocumentPosition;return re||(re=(j.ownerDocument||j)==(Y.ownerDocument||Y)?j.compareDocumentPosition(Y):1,re&1||!ne.sortDetached&&Y.compareDocumentPosition(j)===re?j===g||j.ownerDocument==jt&&Re.contains(jt,j)?-1:Y===g||Y.ownerDocument==jt&&Re.contains(jt,Y)?1:s?te.call(s,j)-te.call(s,Y):0:re&4?-1:1)}),g}Re.matches=function(y,O){return Re(y,null,null,O)},Re.matchesSelector=function(y,O){if(Sn(y),T&&!lt[O+" "]&&(!D||!D.test(O)))try{var I=B.call(y,O);if(I||ne.disconnectedMatch||y.document&&y.document.nodeType!==11)return I}catch{lt(O,!0)}return Re(O,g,null,[y]).length>0},Re.contains=function(y,O){return(y.ownerDocument||y)!=g&&Sn(y),u.contains(y,O)},Re.attr=function(y,O){(y.ownerDocument||y)!=g&&Sn(y);var I=n.attrHandle[O.toLowerCase()],j=I&&ee.call(n.attrHandle,O.toLowerCase())?I(y,O,!T):void 0;return j!==void 0?j:y.getAttribute(O)},Re.error=function(y){throw new Error("Syntax error, unrecognized expression: "+y)},u.uniqueSort=function(y){var O,I=[],j=0,Y=0;if(d=!ne.sortStable,s=!ne.sortStable&&F.call(y,0),rt.call(y,$e),d){for(;O=y[Y++];)O===y[Y]&&(j=I.push(Y));for(;j--;)Pe.call(y,I[j],1)}return s=null,y},u.fn.uniqueSort=function(){return this.pushStack(u.uniqueSort(F.apply(this)))},n=u.expr={cacheLength:50,createPseudo:ut,match:Ct,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(y){return y[1]=y[1].replace(ln,mt),y[3]=(y[3]||y[4]||y[5]||"").replace(ln,mt),y[2]==="~="&&(y[3]=" "+y[3]+" "),y.slice(0,4)},CHILD:function(y){return y[1]=y[1].toLowerCase(),y[1].slice(0,3)==="nth"?(y[3]||Re.error(y[0]),y[4]=+(y[4]?y[5]+(y[6]||1):2*(y[3]==="even"||y[3]==="odd")),y[5]=+(y[7]+y[8]||y[3]==="odd")):y[3]&&Re.error(y[0]),y},PSEUDO:function(y){var O,I=!y[6]&&y[2];return Ct.CHILD.test(y[0])?null:(y[3]?y[2]=y[4]||y[5]||"":I&&Yt.test(I)&&(O=at(I,!0))&&(O=I.indexOf(")",I.length-O)-I.length)&&(y[0]=y[0].slice(0,O),y[2]=I.slice(0,O)),y.slice(0,3))}},filter:{TAG:function(y){var O=y.replace(ln,mt).toLowerCase();return y==="*"?function(){return!0}:function(I){return xe(I,O)}},CLASS:function(y){var O=ye[y+" "];return O||(O=new RegExp("(^|"+je+")"+y+"("+je+"|$)"))&&ye(y,function(I){return O.test(typeof I.className=="string"&&I.className||typeof I.getAttribute<"u"&&I.getAttribute("class")||"")})},ATTR:function(y,O,I){return function(j){var Y=Re.attr(j,y);return Y==null?O==="!=":O?(Y+="",O==="="?Y===I:O==="!="?Y!==I:O==="^="?I&&Y.indexOf(I)===0:O==="*="?I&&Y.indexOf(I)>-1:O==="$="?I&&Y.slice(-I.length)===I:O==="~="?(" "+Y.replace(De," ")+" ").indexOf(I)>-1:O==="|="?Y===I||Y.slice(0,I.length+1)===I+"-":!1):!0}},CHILD:function(y,O,I,j,Y){var re=y.slice(0,3)!=="nth",ae=y.slice(-4)!=="last",fe=O==="of-type";return j===1&&Y===0?function(le){return!!le.parentNode}:function(le,Me,we){var Oe,Ne,pe,Ye,Ge,Je=re!==ae?"nextSibling":"previousSibling",xt=le.parentNode,Qt=fe&&le.nodeName.toLowerCase(),Ti=!we&&!fe,Ze=!1;if(xt){if(re){for(;Je;){for(pe=le;pe=pe[Je];)if(fe?xe(pe,Qt):pe.nodeType===1)return!1;Ge=Je=y==="only"&&!Ge&&"nextSibling"}return!0}if(Ge=[ae?xt.firstChild:xt.lastChild],ae&&Ti){for(Ne=xt[V]||(xt[V]={}),Oe=Ne[y]||[],Ye=Oe[0]===x&&Oe[1],Ze=Ye&&Oe[2],pe=Ye&&xt.childNodes[Ye];pe=++Ye&&pe&&pe[Je]||(Ze=Ye=0)||Ge.pop();)if(pe.nodeType===1&&++Ze&&pe===le){Ne[y]=[x,Ye,Ze];break}}else if(Ti&&(Ne=le[V]||(le[V]={}),Oe=Ne[y]||[],Ye=Oe[0]===x&&Oe[1],Ze=Ye),Ze===!1)for(;(pe=++Ye&&pe&&pe[Je]||(Ze=Ye=0)||Ge.pop())&&!((fe?xe(pe,Qt):pe.nodeType===1)&&++Ze&&(Ti&&(Ne=pe[V]||(pe[V]={}),Ne[y]=[x,Ze]),pe===le)););return Ze-=Y,Ze===j||Ze%j===0&&Ze/j>=0}}},PSEUDO:function(y,O){var I,j=n.pseudos[y]||n.setFilters[y.toLowerCase()]||Re.error("unsupported pseudo: "+y);return j[V]?j(O):j.length>1?(I=[y,y,"",O],n.setFilters.hasOwnProperty(y.toLowerCase())?ut(function(Y,re){for(var ae,fe=j(Y,O),le=fe.length;le--;)ae=te.call(Y,fe[le]),Y[ae]=!(re[ae]=fe[le])}):function(Y){return j(Y,0,I)}):j}},pseudos:{not:ut(function(y){var O=[],I=[],j=Dt(y.replace(qn,"$1"));return j[V]?ut(function(Y,re,ae,fe){for(var le,Me=j(Y,null,fe,[]),we=Y.length;we--;)(le=Me[we])&&(Y[we]=!(re[we]=le))}):function(Y,re,ae){return O[0]=Y,j(O,null,ae,I),O[0]=null,!I.pop()}}),has:ut(function(y){return function(O){return Re(y,O).length>0}}),contains:ut(function(y){return y=y.replace(ln,mt),function(O){return(O.textContent||u.text(O)).indexOf(y)>-1}}),lang:ut(function(y){return an.test(y||"")||Re.error("unsupported lang: "+y),y=y.replace(ln,mt).toLowerCase(),function(O){var I;do if(I=T?O.lang:O.getAttribute("xml:lang")||O.getAttribute("lang"))return I=I.toLowerCase(),I===y||I.indexOf(y+"-")===0;while((O=O.parentNode)&&O.nodeType===1);return!1}}),target:function(y){var O=b.location&&b.location.hash;return O&&O.slice(1)===y.id},root:function(y){return y===C},focus:function(y){return y===Wi()&&g.hasFocus()&&!!(y.type||y.href||~y.tabIndex)},enabled:yi(!1),disabled:yi(!0),checked:function(y){return xe(y,"input")&&!!y.checked||xe(y,"option")&&!!y.selected},selected:function(y){return y.parentNode&&y.parentNode.selectedIndex,y.selected===!0},empty:function(y){for(y=y.firstChild;y;y=y.nextSibling)if(y.nodeType<6)return!1;return!0},parent:function(y){return!n.pseudos.empty(y)},header:function(y){return sn.test(y.nodeName)},input:function(y){return Cn.test(y.nodeName)},button:function(y){return xe(y,"input")&&y.type==="button"||xe(y,"button")},text:function(y){var O;return xe(y,"input")&&y.type==="text"&&((O=y.getAttribute("type"))==null||O.toLowerCase()==="text")},first:Ut(function(){return[0]}),last:Ut(function(y,O){return[O-1]}),eq:Ut(function(y,O,I){return[I<0?I+O:I]}),even:Ut(function(y,O){for(var I=0;IO?j=O:j=I;--j>=0;)y.push(j);return y}),gt:Ut(function(y,O,I){for(var j=I<0?I+O:I;++j1?function(O,I,j){for(var Y=y.length;Y--;)if(!y[Y](O,I,j))return!1;return!0}:y[0]}function No(y,O,I){for(var j=0,Y=O.length;j-1&&(ae[we]=!(fe[we]=Ne))}}else pe=cr(pe===fe?pe.splice(Je,pe.length):pe),Y?Y(null,fe,pe,Me):h.apply(fe,pe)})}function ni(y){for(var O,I,j,Y=y.length,re=n.relative[y[0].type],ae=re||n.relative[" "],fe=re?1:0,le=fr(function(Oe){return Oe===O},ae,!0),Me=fr(function(Oe){return te.call(O,Oe)>-1},ae,!0),we=[function(Oe,Ne,pe){var Ye=!re&&(pe||Ne!=a)||((O=Ne).nodeType?le(Oe,Ne,pe):Me(Oe,Ne,pe));return O=null,Ye}];fe1&&Rr(we),fe>1&&Ei(y.slice(0,fe-1).concat({value:y[fe-2].type===" "?"*":""})).replace(qn,"$1"),I,fe0,j=y.length>0,Y=function(re,ae,fe,le,Me){var we,Oe,Ne,pe=0,Ye="0",Ge=re&&[],Je=[],xt=a,Qt=re||j&&n.find.TAG("*",Me),Ti=x+=xt==null?1:Math.random()||.1,Ze=Qt.length;for(Me&&(a=ae==g||ae||Me);Ye!==Ze&&(we=Qt[Ye])!=null;Ye++){if(j&&we){for(Oe=0,!ae&&we.ownerDocument!=g&&(Sn(we),fe=!T);Ne=y[Oe++];)if(Ne(we,ae||g,fe)){h.call(le,we);break}Me&&(x=Ti)}I&&((we=!Ne&&we)&&pe--,re&&Ge.push(we))}if(pe+=Ye,I&&Ye!==pe){for(Oe=0;Ne=O[Oe++];)Ne(Ge,Je,ae,fe);if(re){if(pe>0)for(;Ye--;)Ge[Ye]||Je[Ye]||(Je[Ye]=yr.call(le));Je=cr(Je)}h.apply(le,Je),Me&&!re&&Je.length>0&&pe+O.length>1&&u.uniqueSort(le)}return Me&&(x=Ti,a=xt),Ge};return I?ut(Y):Y}function Dt(y,O){var I,j=[],Y=[],re=Le[y+" "];if(!re){for(O||(O=at(y)),I=O.length;I--;)re=ni(O[I]),re[V]?j.push(re):Y.push(re);re=Le(y,Xt(Y,j)),re.selector=y}return re}function dr(y,O,I,j){var Y,re,ae,fe,le,Me=typeof y=="function"&&y,we=!j&&at(y=Me.selector||y);if(I=I||[],we.length===1){if(re=we[0]=we[0].slice(0),re.length>2&&(ae=re[0]).type==="ID"&&O.nodeType===9&&T&&n.relative[re[1].type]){if(O=(n.find.ID(ae.matches[0].replace(ln,mt),O)||[])[0],O)Me&&(O=O.parentNode);else return I;y=y.slice(re.shift().value.length)}for(Y=Ct.needsContext.test(y)?0:re.length;Y--&&(ae=re[Y],!n.relative[fe=ae.type]);)if((le=n.find[fe])&&(j=le(ae.matches[0].replace(ln,mt),ur.test(re[0].type)&&bi(O.parentNode)||O))){if(re.splice(Y,1),y=j.length&&Ei(re),!y)return h.apply(I,j),I;break}}return(Me||Dt(y,we))(j,O,!T,I,!O||ur.test(y)&&bi(O.parentNode)||O),I}ne.sortStable=V.split("").sort($e).join("")===V,Sn(),ne.sortDetached=_i(function(y){return y.compareDocumentPosition(g.createElement("fieldset"))&1}),u.find=Re,u.expr[":"]=u.expr.pseudos,u.unique=u.uniqueSort,Re.compile=Dt,Re.select=dr,Re.setDocument=Sn,Re.escape=u.escapeSelector,Re.getText=u.text,Re.isXML=u.isXMLDoc,Re.selectors=u.expr,Re.support=u.support,Re.uniqueSort=u.uniqueSort})();var zt=function(e,n,a){for(var s=[],d=a!==void 0;(e=e[n])&&e.nodeType!==9;)if(e.nodeType===1){if(d&&u(e).is(a))break;s.push(e)}return s},br=function(e,n){for(var a=[];e;e=e.nextSibling)e.nodeType===1&&e!==n&&a.push(e);return a},Ai=u.expr.match.needsContext,$n=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function Vn(e,n,a){return ue(n)?u.grep(e,function(s,d){return!!n.call(s,d,s)!==a}):n.nodeType?u.grep(e,function(s){return s===n!==a}):typeof n!="string"?u.grep(e,function(s){return te.call(n,s)>-1!==a}):u.filter(n,e,a)}u.filter=function(e,n,a){var s=n[0];return a&&(e=":not("+e+")"),n.length===1&&s.nodeType===1?u.find.matchesSelector(s,e)?[s]:[]:u.find.matches(e,u.grep(n,function(d){return d.nodeType===1}))},u.fn.extend({find:function(e){var n,a,s=this.length,d=this;if(typeof e!="string")return this.pushStack(u(e).filter(function(){for(n=0;n1?u.uniqueSort(a):a},filter:function(e){return this.pushStack(Vn(this,e||[],!1))},not:function(e){return this.pushStack(Vn(this,e||[],!0))},is:function(e){return!!Vn(this,typeof e=="string"&&Ai.test(e)?u(e):e||[],!1).length}});var Kr,Gt=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,zr=u.fn.init=function(e,n,a){var s,d;if(!e)return this;if(a=a||Kr,typeof e=="string")if(e[0]==="<"&&e[e.length-1]===">"&&e.length>=3?s=[null,e,null]:s=Gt.exec(e),s&&(s[1]||!n))if(s[1]){if(n=n instanceof u?n[0]:n,u.merge(this,u.parseHTML(s[1],n&&n.nodeType?n.ownerDocument||n:me,!0)),$n.test(s[1])&&u.isPlainObject(n))for(s in n)ue(this[s])?this[s](n[s]):this.attr(s,n[s]);return this}else return d=me.getElementById(s[2]),d&&(this[0]=d,this.length=1),this;else return!n||n.jquery?(n||a).find(e):this.constructor(n).find(e);else{if(e.nodeType)return this[0]=e,this.length=1,this;if(ue(e))return a.ready!==void 0?a.ready(e):e(u)}return u.makeArray(e,this)};zr.prototype=u.fn,Kr=u(me);var Gr=/^(?:parents|prev(?:Until|All))/,Jr={children:!0,contents:!0,next:!0,prev:!0};u.fn.extend({has:function(e){var n=u(e,this),a=n.length;return this.filter(function(){for(var s=0;s-1:a.nodeType===1&&u.find.matchesSelector(a,e))){h.push(a);break}}return this.pushStack(h.length>1?u.uniqueSort(h):h)},index:function(e){return e?typeof e=="string"?te.call(u(e),this[0]):te.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,n){return this.pushStack(u.uniqueSort(u.merge(this.get(),u(e,n))))},addBack:function(e){return this.add(e==null?this.prevObject:this.prevObject.filter(e))}});function Er(e,n){for(;(e=e[n])&&e.nodeType!==1;);return e}u.each({parent:function(e){var n=e.parentNode;return n&&n.nodeType!==11?n:null},parents:function(e){return zt(e,"parentNode")},parentsUntil:function(e,n,a){return zt(e,"parentNode",a)},next:function(e){return Er(e,"nextSibling")},prev:function(e){return Er(e,"previousSibling")},nextAll:function(e){return zt(e,"nextSibling")},prevAll:function(e){return zt(e,"previousSibling")},nextUntil:function(e,n,a){return zt(e,"nextSibling",a)},prevUntil:function(e,n,a){return zt(e,"previousSibling",a)},siblings:function(e){return br((e.parentNode||{}).firstChild,e)},children:function(e){return br(e.firstChild)},contents:function(e){return e.contentDocument!=null&&X(e.contentDocument)?e.contentDocument:(xe(e,"template")&&(e=e.content||e),u.merge([],e.childNodes))}},function(e,n){u.fn[e]=function(a,s){var d=u.map(this,n,a);return e.slice(-5)!=="Until"&&(s=a),s&&typeof s=="string"&&(d=u.filter(s,d)),this.length>1&&(Jr[e]||u.uniqueSort(d),Gr.test(e)&&d.reverse()),this.pushStack(d)}});var Mt=/[^\x20\t\r\n\f]+/g;function Xi(e){var n={};return u.each(e.match(Mt)||[],function(a,s){n[s]=!0}),n}u.Callbacks=function(e){e=typeof e=="string"?Xi(e):u.extend({},e);var n,a,s,d,h=[],g=[],C=-1,T=function(){for(d=d||e.once,s=n=!0;g.length;C=-1)for(a=g.shift();++C-1;)h.splice(x,1),x<=C&&C--}),this},has:function(B){return B?u.inArray(B,h)>-1:h.length>0},empty:function(){return h&&(h=[]),this},disable:function(){return d=g=[],h=a="",this},disabled:function(){return!h},lock:function(){return d=g=[],!a&&!n&&(h=a=""),this},locked:function(){return!!d},fireWith:function(B,V){return d||(V=V||[],V=[B,V.slice?V.slice():V],g.push(V),n||T()),this},fire:function(){return D.fireWith(this,arguments),this},fired:function(){return!!s}};return D};function W(e){return e}function Nn(e){throw e}function Zr(e,n,a,s){var d;try{e&&ue(d=e.promise)?d.call(e).done(n).fail(a):e&&ue(d=e.then)?d.call(e,n,a):n.apply(void 0,[e].slice(s))}catch(h){a.apply(void 0,[h])}}u.extend({Deferred:function(e){var n=[["notify","progress",u.Callbacks("memory"),u.Callbacks("memory"),2],["resolve","done",u.Callbacks("once memory"),u.Callbacks("once memory"),0,"resolved"],["reject","fail",u.Callbacks("once memory"),u.Callbacks("once memory"),1,"rejected"]],a="pending",s={state:function(){return a},always:function(){return d.done(arguments).fail(arguments),this},catch:function(h){return s.then(null,h)},pipe:function(){var h=arguments;return u.Deferred(function(g){u.each(n,function(C,T){var D=ue(h[T[4]])&&h[T[4]];d[T[1]](function(){var B=D&&D.apply(this,arguments);B&&ue(B.promise)?B.promise().progress(g.notify).done(g.resolve).fail(g.reject):g[T[0]+"With"](this,D?[B]:arguments)})}),h=null}).promise()},then:function(h,g,C){var T=0;function D(B,V,x,G){return function(){var ye=this,ke=arguments,Le=function(){var $e,vt;if(!(B=T&&(x!==Nn&&(ye=void 0,ke=[$e]),V.rejectWith(ye,ke))}};B?lt():(u.Deferred.getErrorHook?lt.error=u.Deferred.getErrorHook():u.Deferred.getStackHook&&(lt.error=u.Deferred.getStackHook()),b.setTimeout(lt))}}return u.Deferred(function(B){n[0][3].add(D(0,B,ue(C)?C:W,B.notifyWith)),n[1][3].add(D(0,B,ue(h)?h:W)),n[2][3].add(D(0,B,ue(g)?g:Nn))}).promise()},promise:function(h){return h!=null?u.extend(h,s):s}},d={};return u.each(n,function(h,g){var C=g[2],T=g[5];s[g[1]]=C.add,T&&C.add(function(){a=T},n[3-h][2].disable,n[3-h][3].disable,n[0][2].lock,n[0][3].lock),C.add(g[3].fire),d[g[0]]=function(){return d[g[0]+"With"](this===d?void 0:this,arguments),this},d[g[0]+"With"]=C.fireWith}),s.promise(d),e&&e.call(d,d),d},when:function(e){var n=arguments.length,a=n,s=Array(a),d=F.call(arguments),h=u.Deferred(),g=function(C){return function(T){s[C]=this,d[C]=arguments.length>1?F.call(arguments):T,--n||h.resolveWith(s,d)}};if(n<=1&&(Zr(e,h.done(g(a)).resolve,h.reject,!n),h.state()==="pending"||ue(d[a]&&d[a].then)))return h.then();for(;a--;)Zr(d[a],g(a),h.reject);return h.promise()}});var Oi=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;u.Deferred.exceptionHook=function(e,n){b.console&&b.console.warn&&e&&Oi.test(e.name)&&b.console.warn("jQuery.Deferred exception: "+e.message,e.stack,n)},u.readyException=function(e){b.setTimeout(function(){throw e})};var Qi=u.Deferred();u.fn.ready=function(e){return Qi.then(e).catch(function(n){u.readyException(n)}),this},u.extend({isReady:!1,readyWait:1,ready:function(e){(e===!0?--u.readyWait:u.isReady)||(u.isReady=!0,!(e!==!0&&--u.readyWait>0)&&Qi.resolveWith(me,[u]))}}),u.ready.then=Qi.then;function li(){me.removeEventListener("DOMContentLoaded",li),b.removeEventListener("load",li),u.ready()}me.readyState==="complete"||me.readyState!=="loading"&&!me.documentElement.doScroll?b.setTimeout(u.ready):(me.addEventListener("DOMContentLoaded",li),b.addEventListener("load",li));var ct=function(e,n,a,s,d,h,g){var C=0,T=e.length,D=a==null;if(ie(a)==="object"){d=!0;for(C in a)ct(e,n,C,a[C],!0,h,g)}else if(s!==void 0&&(d=!0,ue(s)||(g=!0),D&&(g?(n.call(e,s),n=null):(D=n,n=function(B,V,x){return D.call(u(B),x)})),n))for(;C1,null,!0)},removeData:function(e){return this.each(function(){_t.remove(this,e)})}}),u.extend({queue:function(e,n,a){var s;if(e)return n=(n||"fx")+"queue",s=ge.get(e,n),a&&(!s||Array.isArray(a)?s=ge.access(e,n,u.makeArray(a)):s.push(a)),s||[]},dequeue:function(e,n){n=n||"fx";var a=u.queue(e,n),s=a.length,d=a.shift(),h=u._queueHooks(e,n),g=function(){u.dequeue(e,n)};d==="inprogress"&&(d=a.shift(),s--),d&&(n==="fx"&&a.unshift("inprogress"),delete h.stop,d.call(e,g,h)),!s&&h&&h.empty.fire()},_queueHooks:function(e,n){var a=n+"queueHooks";return ge.get(e,a)||ge.access(e,a,{empty:u.Callbacks("once memory").add(function(){ge.remove(e,[n+"queue",a])})})}}),u.fn.extend({queue:function(e,n){var a=2;return typeof e!="string"&&(n=e,e="fx",a--),arguments.length\x20\t\r\n\f]*)/i,eo=/^$|^module$|\/(?:java|ecma)script/i;(function(){var e=me.createDocumentFragment(),n=e.appendChild(me.createElement("div")),a=me.createElement("input");a.setAttribute("type","radio"),a.setAttribute("checked","checked"),a.setAttribute("name","t"),n.appendChild(a),ne.checkClone=n.cloneNode(!0).cloneNode(!0).lastChild.checked,n.innerHTML="",ne.noCloneChecked=!!n.cloneNode(!0).lastChild.defaultValue,n.innerHTML="",ne.option=!!n.lastChild})();var ht={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ht.tbody=ht.tfoot=ht.colgroup=ht.caption=ht.thead,ht.th=ht.td,ne.option||(ht.optgroup=ht.option=[1,""]);function st(e,n){var a;return typeof e.getElementsByTagName<"u"?a=e.getElementsByTagName(n||"*"):typeof e.querySelectorAll<"u"?a=e.querySelectorAll(n||"*"):a=[],n===void 0||n&&xe(e,n)?u.merge([e],a):a}function Di(e,n){for(var a=0,s=e.length;a-1){d&&d.push(h);continue}if(D=Bt(h),g=st(V.appendChild(h),"script"),D&&Di(g),a)for(B=0;h=g[B++];)eo.test(h.type||"")&&a.push(h)}return V}var wr=/^([^.]*)(?:\.(.+)|)/;function Ft(){return!0}function qt(){return!1}function Cr(e,n,a,s,d,h){var g,C;if(typeof n=="object"){typeof a!="string"&&(s=s||a,a=void 0);for(C in n)Cr(e,C,a,s,n[C],h);return e}if(s==null&&d==null?(d=a,s=a=void 0):d==null&&(typeof a=="string"?(d=s,s=void 0):(d=s,s=a,a=void 0)),d===!1)d=qt;else if(!d)return e;return h===1&&(g=d,d=function(T){return u().off(T),g.apply(this,arguments)},d.guid=g.guid||(g.guid=u.guid++)),e.each(function(){u.event.add(this,n,d,s,a)})}u.event={global:{},add:function(e,n,a,s,d){var h,g,C,T,D,B,V,x,G,ye,ke,Le=ge.get(e);if(pn(e))for(a.handler&&(h=a,a=h.handler,d=h.selector),d&&u.find.matchesSelector(Wt,d),a.guid||(a.guid=u.guid++),(T=Le.events)||(T=Le.events=Object.create(null)),(g=Le.handle)||(g=Le.handle=function(lt){return typeof u<"u"&&u.event.triggered!==lt.type?u.event.dispatch.apply(e,arguments):void 0}),n=(n||"").match(Mt)||[""],D=n.length;D--;)C=wr.exec(n[D])||[],G=ke=C[1],ye=(C[2]||"").split(".").sort(),G&&(V=u.event.special[G]||{},G=(d?V.delegateType:V.bindType)||G,V=u.event.special[G]||{},B=u.extend({type:G,origType:ke,data:s,handler:a,guid:a.guid,selector:d,needsContext:d&&u.expr.match.needsContext.test(d),namespace:ye.join(".")},h),(x=T[G])||(x=T[G]=[],x.delegateCount=0,(!V.setup||V.setup.call(e,s,ye,g)===!1)&&e.addEventListener&&e.addEventListener(G,g)),V.add&&(V.add.call(e,B),B.handler.guid||(B.handler.guid=a.guid)),d?x.splice(x.delegateCount++,0,B):x.push(B),u.event.global[G]=!0)},remove:function(e,n,a,s,d){var h,g,C,T,D,B,V,x,G,ye,ke,Le=ge.hasData(e)&&ge.get(e);if(!(!Le||!(T=Le.events))){for(n=(n||"").match(Mt)||[""],D=n.length;D--;){if(C=wr.exec(n[D])||[],G=ke=C[1],ye=(C[2]||"").split(".").sort(),!G){for(G in T)u.event.remove(e,G+n[D],a,s,!0);continue}for(V=u.event.special[G]||{},G=(s?V.delegateType:V.bindType)||G,x=T[G]||[],C=C[2]&&new RegExp("(^|\\.)"+ye.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=h=x.length;h--;)B=x[h],(d||ke===B.origType)&&(!a||a.guid===B.guid)&&(!C||C.test(B.namespace))&&(!s||s===B.selector||s==="**"&&B.selector)&&(x.splice(h,1),B.selector&&x.delegateCount--,V.remove&&V.remove.call(e,B));g&&!x.length&&((!V.teardown||V.teardown.call(e,ye,Le.handle)===!1)&&u.removeEvent(e,G,Le.handle),delete T[G])}u.isEmptyObject(T)&&ge.remove(e,"handle events")}},dispatch:function(e){var n,a,s,d,h,g,C=new Array(arguments.length),T=u.event.fix(e),D=(ge.get(this,"events")||Object.create(null))[T.type]||[],B=u.event.special[T.type]||{};for(C[0]=T,n=1;n=1)){for(;D!==this;D=D.parentNode||this)if(D.nodeType===1&&!(e.type==="click"&&D.disabled===!0)){for(h=[],g={},a=0;a-1:u.find(d,this,null,[D]).length),g[d]&&h.push(s);h.length&&C.push({elem:D,handlers:h})}}return D=this,T\s*$/g;function Sr(e,n){return xe(e,"table")&&xe(n.nodeType!==11?n:n.firstChild,"tr")&&u(e).children("tbody")[0]||e}function Ji(e){return e.type=(e.getAttribute("type")!==null)+"/"+e.type,e}function to(e){return(e.type||"").slice(0,5)==="true/"?e.type=e.type.slice(5):e.removeAttribute("type"),e}function mn(e,n){var a,s,d,h,g,C,T;if(n.nodeType===1){if(ge.hasData(e)&&(h=ge.get(e),T=h.events,T)){ge.remove(n,"handle events");for(d in T)for(a=0,s=T[d].length;a1&&typeof G=="string"&&!ne.checkClone&&Co.test(G))return e.each(function(ke){var Le=e.eq(ke);ye&&(n[0]=G.call(this,ke,Le.html())),fi(Le,n,a,s)});if(V&&(d=Gi(n,e[0].ownerDocument,!1,e,s),h=d.firstChild,d.childNodes.length===1&&(d=h),h||s)){for(g=u.map(st(d,"script"),Ji),C=g.length;B0&&Di(g,!T&&st(e,"script")),C},cleanData:function(e){for(var n,a,s,d=u.event.special,h=0;(a=e[h])!==void 0;h++)if(pn(a)){if(n=a[ge.expando]){if(n.events)for(s in n.events)d[s]?u.event.remove(a,s):u.removeEvent(a,s,n.handle);a[ge.expando]=void 0}a[_t.expando]&&(a[_t.expando]=void 0)}}}),u.fn.extend({detach:function(e){return xn(this,e,!0)},remove:function(e){return xn(this,e)},text:function(e){return ct(this,function(n){return n===void 0?u.text(this):this.empty().each(function(){(this.nodeType===1||this.nodeType===11||this.nodeType===9)&&(this.textContent=n)})},null,e,arguments.length)},append:function(){return fi(this,arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var n=Sr(this,e);n.appendChild(e)}})},prepend:function(){return fi(this,arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var n=Sr(this,e);n.insertBefore(e,n.firstChild)}})},before:function(){return fi(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return fi(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,n=0;(e=this[n])!=null;n++)e.nodeType===1&&(u.cleanData(st(e,!1)),e.textContent="");return this},clone:function(e,n){return e=e??!1,n=n??e,this.map(function(){return u.clone(this,e,n)})},html:function(e){return ct(this,function(n){var a=this[0]||{},s=0,d=this.length;if(n===void 0&&a.nodeType===1)return a.innerHTML;if(typeof n=="string"&&!xi.test(n)&&!ht[(zi.exec(n)||["",""])[1].toLowerCase()]){n=u.htmlPrefilter(n);try{for(;s=0&&(T+=Math.max(0,Math.ceil(e["offset"+n[0].toUpperCase()+n.slice(1)]-h-T-C-.5))||0),T+D}function ci(e,n,a){var s=Zi(e),d=!ne.boxSizingReliable()||a,h=d&&u.css(e,"boxSizing",!1,s)==="border-box",g=h,C=In(e,n,s),T="offset"+n[0].toUpperCase()+n.slice(1);if(yt.test(C)){if(!a)return C;C="auto"}return(!ne.boxSizingReliable()&&h||!ne.reliableTrDimensions()&&xe(e,"tr")||C==="auto"||!parseFloat(C)&&u.css(e,"display",!1,s)==="inline")&&e.getClientRects().length&&(h=u.css(e,"boxSizing",!1,s)==="border-box",g=T in e,g&&(C=e[T])),C=parseFloat(C)||0,C+ki(e,n,a||(h?"border":"content"),g,s,C)+"px"}u.extend({cssHooks:{opacity:{get:function(e,n){if(n){var a=In(e,"opacity");return a===""?"1":a}}}},cssNumber:{animationIterationCount:!0,aspectRatio:!0,borderImageSlice:!0,columnCount:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,scale:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeMiterlimit:!0,strokeOpacity:!0},cssProps:{},style:function(e,n,a,s){if(!(!e||e.nodeType===3||e.nodeType===8||!e.style)){var d,h,g,C=ze(n),T=en.test(n),D=e.style;if(T||(n=er(C)),g=u.cssHooks[n]||u.cssHooks[C],a!==void 0){if(h=typeof a,h==="string"&&(d=Un.exec(a))&&d[1]&&(a=Xn(e,n,d),h="number"),a==null||a!==a)return;h==="number"&&!T&&(a+=d&&d[3]||(u.cssNumber[C]?"":"px")),!ne.clearCloneStyle&&a===""&&n.indexOf("background")===0&&(D[n]="inherit"),(!g||!("set"in g)||(a=g.set(e,a,s))!==void 0)&&(T?D.setProperty(n,a):D[n]=a)}else return g&&"get"in g&&(d=g.get(e,!1,s))!==void 0?d:D[n]}},css:function(e,n,a,s){var d,h,g,C=ze(n),T=en.test(n);return T||(n=er(C)),g=u.cssHooks[n]||u.cssHooks[C],g&&"get"in g&&(d=g.get(e,!0,a)),d===void 0&&(d=In(e,n,s)),d==="normal"&&n in Nt&&(d=Nt[n]),a===""||a?(h=parseFloat(d),a===!0||isFinite(h)?h||0:d):d}}),u.each(["height","width"],function(e,n){u.cssHooks[n]={get:function(a,s,d){if(s)return Ot.test(u.css(a,"display"))&&(!a.getClientRects().length||!a.getBoundingClientRect().width)?bt(a,$t,function(){return ci(a,n,d)}):ci(a,n,d)},set:function(a,s,d){var h,g=Zi(a),C=!ne.scrollboxSize()&&g.position==="absolute",T=C||d,D=T&&u.css(a,"boxSizing",!1,g)==="border-box",B=d?ki(a,n,d,D,g):0;return D&&C&&(B-=Math.ceil(a["offset"+n[0].toUpperCase()+n.slice(1)]-parseFloat(g[n])-ki(a,n,"border",!1,g)-.5)),B&&(h=Un.exec(s))&&(h[3]||"px")!=="px"&&(a.style[n]=s,s=u.css(a,n)),Tt(a,s,B)}}}),u.cssHooks.marginLeft=Ii(ne.reliableMarginLeft,function(e,n){if(n)return(parseFloat(In(e,"marginLeft"))||e.getBoundingClientRect().left-bt(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),u.each({margin:"",padding:"",border:"Width"},function(e,n){u.cssHooks[e+n]={expand:function(a){for(var s=0,d={},h=typeof a=="string"?a.split(" "):[a];s<4;s++)d[e+Ht[s]+n]=h[s]||h[s-2]||h[0];return d}},e!=="margin"&&(u.cssHooks[e+n].set=Tt)}),u.fn.extend({css:function(e,n){return ct(this,function(a,s,d){var h,g,C={},T=0;if(Array.isArray(s)){for(h=Zi(a),g=s.length;T1)}});function it(e,n,a,s,d){return new it.prototype.init(e,n,a,s,d)}u.Tween=it,it.prototype={constructor:it,init:function(e,n,a,s,d,h){this.elem=e,this.prop=a,this.easing=d||u.easing._default,this.options=n,this.start=this.now=this.cur(),this.end=s,this.unit=h||(u.cssNumber[a]?"":"px")},cur:function(){var e=it.propHooks[this.prop];return e&&e.get?e.get(this):it.propHooks._default.get(this)},run:function(e){var n,a=it.propHooks[this.prop];return this.options.duration?this.pos=n=u.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=n=e,this.now=(this.end-this.start)*n+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),a&&a.set?a.set(this):it.propHooks._default.set(this),this}},it.prototype.init.prototype=it.prototype,it.propHooks={_default:{get:function(e){var n;return e.elem.nodeType!==1||e.elem[e.prop]!=null&&e.elem.style[e.prop]==null?e.elem[e.prop]:(n=u.css(e.elem,e.prop,""),!n||n==="auto"?0:n)},set:function(e){u.fx.step[e.prop]?u.fx.step[e.prop](e):e.elem.nodeType===1&&(u.cssHooks[e.prop]||e.elem.style[er(e.prop)]!=null)?u.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},it.propHooks.scrollTop=it.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},u.easing={linear:function(e){return e},swing:function(e){return .5-Math.cos(e*Math.PI)/2},_default:"swing"},u.fx=it.prototype.init,u.fx.step={};var Tn,zn,Ri=/^(?:toggle|show|hide)$/,di=/queueHooks$/;function wn(){zn&&(me.hidden===!1&&b.requestAnimationFrame?b.requestAnimationFrame(wn):b.setTimeout(wn,u.fx.interval),u.fx.tick())}function no(){return b.setTimeout(function(){Tn=void 0}),Tn=Date.now()}function ot(e,n){var a,s=0,d={height:e};for(n=n?1:0;s<4;s+=2-n)a=Ht[s],d["margin"+a]=d["padding"+a]=e;return n&&(d.opacity=d.width=e),d}function tt(e,n,a){for(var s,d=(Xe.tweeners[n]||[]).concat(Xe.tweeners["*"]),h=0,g=d.length;h1)},removeAttr:function(e){return this.each(function(){u.removeAttr(this,e)})}}),u.extend({attr:function(e,n,a){var s,d,h=e.nodeType;if(!(h===3||h===8||h===2)){if(typeof e.getAttribute>"u")return u.prop(e,n,a);if((h!==1||!u.isXMLDoc(e))&&(d=u.attrHooks[n.toLowerCase()]||(u.expr.match.bool.test(n)?Pi:void 0)),a!==void 0){if(a===null){u.removeAttr(e,n);return}return d&&"set"in d&&(s=d.set(e,a,n))!==void 0?s:(e.setAttribute(n,a+""),a)}return d&&"get"in d&&(s=d.get(e,n))!==null?s:(s=u.find.attr(e,n),s??void 0)}},attrHooks:{type:{set:function(e,n){if(!ne.radioValue&&n==="radio"&&xe(e,"input")){var a=e.value;return e.setAttribute("type",n),a&&(e.value=a),n}}}},removeAttr:function(e,n){var a,s=0,d=n&&n.match(Mt);if(d&&e.nodeType===1)for(;a=d[s++];)e.removeAttribute(a)}}),Pi={set:function(e,n,a){return n===!1?u.removeAttr(e,a):e.setAttribute(a,a),a}},u.each(u.expr.match.bool.source.match(/\w+/g),function(e,n){var a=Jn[n]||u.find.attr;Jn[n]=function(s,d,h){var g,C,T=d.toLowerCase();return h||(C=Jn[T],Jn[T]=g,g=a(s,d,h)!=null?T:null,Jn[T]=C),g}});var Vt=/^(?:input|select|textarea|button)$/i,Ar=/^(?:a|area)$/i;u.fn.extend({prop:function(e,n){return ct(this,u.prop,e,n,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[u.propFix[e]||e]})}}),u.extend({prop:function(e,n,a){var s,d,h=e.nodeType;if(!(h===3||h===8||h===2))return(h!==1||!u.isXMLDoc(e))&&(n=u.propFix[n]||n,d=u.propHooks[n]),a!==void 0?d&&"set"in d&&(s=d.set(e,a,n))!==void 0?s:e[n]=a:d&&"get"in d&&(s=d.get(e,n))!==null?s:e[n]},propHooks:{tabIndex:{get:function(e){var n=u.find.attr(e,"tabindex");return n?parseInt(n,10):Vt.test(e.nodeName)||Ar.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),ne.optSelected||(u.propHooks.selected={get:function(e){var n=e.parentNode;return n&&n.parentNode&&n.parentNode.selectedIndex,null},set:function(e){var n=e.parentNode;n&&(n.selectedIndex,n.parentNode&&n.parentNode.selectedIndex)}}),u.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){u.propFix[this.toLowerCase()]=this});function pt(e){var n=e.match(Mt)||[];return n.join(" ")}function nn(e){return e.getAttribute&&e.getAttribute("class")||""}function Zn(e){return Array.isArray(e)?e:typeof e=="string"?e.match(Mt)||[]:[]}u.fn.extend({addClass:function(e){var n,a,s,d,h,g;return ue(e)?this.each(function(C){u(this).addClass(e.call(this,C,nn(this)))}):(n=Zn(e),n.length?this.each(function(){if(s=nn(this),a=this.nodeType===1&&" "+pt(s)+" ",a){for(h=0;h-1;)a=a.replace(" "+d+" "," ");g=pt(a),s!==g&&this.setAttribute("class",g)}}):this):this.attr("class","")},toggleClass:function(e,n){var a,s,d,h,g=typeof e,C=g==="string"||Array.isArray(e);return ue(e)?this.each(function(T){u(this).toggleClass(e.call(this,T,nn(this),n),n)}):typeof n=="boolean"&&C?n?this.addClass(e):this.removeClass(e):(a=Zn(e),this.each(function(){if(C)for(h=u(this),d=0;d-1)return!0;return!1}});var gt=/\r/g;u.fn.extend({val:function(e){var n,a,s,d=this[0];return arguments.length?(s=ue(e),this.each(function(h){var g;this.nodeType===1&&(s?g=e.call(this,h,u(this).val()):g=e,g==null?g="":typeof g=="number"?g+="":Array.isArray(g)&&(g=u.map(g,function(C){return C==null?"":C+""})),n=u.valHooks[this.type]||u.valHooks[this.nodeName.toLowerCase()],(!n||!("set"in n)||n.set(this,g,"value")===void 0)&&(this.value=g))})):d?(n=u.valHooks[d.type]||u.valHooks[d.nodeName.toLowerCase()],n&&"get"in n&&(a=n.get(d,"value"))!==void 0?a:(a=d.value,typeof a=="string"?a.replace(gt,""):a??"")):void 0}}),u.extend({valHooks:{option:{get:function(e){var n=u.find.attr(e,"value");return n??pt(u.text(e))}},select:{get:function(e){var n,a,s,d=e.options,h=e.selectedIndex,g=e.type==="select-one",C=g?null:[],T=g?h+1:d.length;for(h<0?s=T:s=g?h:0;s-1)&&(a=!0);return a||(e.selectedIndex=-1),h}}}}),u.each(["radio","checkbox"],function(){u.valHooks[this]={set:function(e,n){if(Array.isArray(n))return e.checked=u.inArray(u(e).val(),n)>-1}},ne.checkOn||(u.valHooks[this].get=function(e){return e.getAttribute("value")===null?"on":e.value})});var ei=b.location,ji={guid:Date.now()},tr=/\?/;u.parseXML=function(e){var n,a;if(!e||typeof e!="string")return null;try{n=new b.DOMParser().parseFromString(e,"text/xml")}catch{}return a=n&&n.getElementsByTagName("parsererror")[0],(!n||a)&&u.error("Invalid XML: "+(a?u.map(a.childNodes,function(s){return s.textContent}).join(` +`):e)),n};var nr=/^(?:focusinfocus|focusoutblur)$/,io=function(e){e.stopPropagation()};u.extend(u.event,{trigger:function(e,n,a,s){var d,h,g,C,T,D,B,V,x=[a||me],G=ee.call(e,"type")?e.type:e,ye=ee.call(e,"namespace")?e.namespace.split("."):[];if(h=V=g=a=a||me,!(a.nodeType===3||a.nodeType===8)&&!nr.test(G+u.event.triggered)&&(G.indexOf(".")>-1&&(ye=G.split("."),G=ye.shift(),ye.sort()),T=G.indexOf(":")<0&&"on"+G,e=e[u.expando]?e:new u.Event(G,typeof e=="object"&&e),e.isTrigger=s?2:3,e.namespace=ye.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+ye.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=a),n=n==null?[e]:u.makeArray(n,[e]),B=u.event.special[G]||{},!(!s&&B.trigger&&B.trigger.apply(a,n)===!1))){if(!s&&!B.noBubble&&!Be(a)){for(C=B.delegateType||G,nr.test(C+G)||(h=h.parentNode);h;h=h.parentNode)x.push(h),g=h;g===(a.ownerDocument||me)&&x.push(g.defaultView||g.parentWindow||b)}for(d=0;(h=x[d++])&&!e.isPropagationStopped();)V=h,e.type=d>1?C:B.bindType||G,D=(ge.get(h,"events")||Object.create(null))[e.type]&&ge.get(h,"handle"),D&&D.apply(h,n),D=T&&h[T],D&&D.apply&&pn(h)&&(e.result=D.apply(h,n),e.result===!1&&e.preventDefault());return e.type=G,!s&&!e.isDefaultPrevented()&&(!B._default||B._default.apply(x.pop(),n)===!1)&&pn(a)&&T&&ue(a[G])&&!Be(a)&&(g=a[T],g&&(a[T]=null),u.event.triggered=G,e.isPropagationStopped()&&V.addEventListener(G,io),a[G](),e.isPropagationStopped()&&V.removeEventListener(G,io),u.event.triggered=void 0,g&&(a[T]=g)),e.result}},simulate:function(e,n,a){var s=u.extend(new u.Event,a,{type:e,isSimulated:!0});u.event.trigger(s,null,n)}}),u.fn.extend({trigger:function(e,n){return this.each(function(){u.event.trigger(e,n,this)})},triggerHandler:function(e,n){var a=this[0];if(a)return u.event.trigger(e,n,a,!0)}});var Or=/\[\]$/,hi=/\r?\n/g,Ao=/^(?:submit|button|image|reset|file)$/i,ir=/^(?:input|select|textarea|keygen)/i;function Nr(e,n,a,s){var d;if(Array.isArray(n))u.each(n,function(h,g){a||Or.test(e)?s(e,g):Nr(e+"["+(typeof g=="object"&&g!=null?h:"")+"]",g,a,s)});else if(!a&&ie(n)==="object")for(d in n)Nr(e+"["+d+"]",n[d],a,s);else s(e,n)}u.param=function(e,n){var a,s=[],d=function(h,g){var C=ue(g)?g():g;s[s.length]=encodeURIComponent(h)+"="+encodeURIComponent(C??"")};if(e==null)return"";if(Array.isArray(e)||e.jquery&&!u.isPlainObject(e))u.each(e,function(){d(this.name,this.value)});else for(a in e)Nr(a,e[a],n,d);return s.join("&")},u.fn.extend({serialize:function(){return u.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=u.prop(this,"elements");return e?u.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!u(this).is(":disabled")&&ir.test(this.nodeName)&&!Ao.test(e)&&(this.checked||!Qn.test(e))}).map(function(e,n){var a=u(this).val();return a==null?null:Array.isArray(a)?u.map(a,function(s){return{name:n.name,value:s.replace(hi,`\r +`)}}):{name:n.name,value:a.replace(hi,`\r +`)}}).get()}});var rr=/%20/g,pi=/#.*$/,Lr=/([?&])_=[^&]*/,gi=/^(.*?):[ \t]*([^\r\n]*)$/mg,Dr=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,or=/^(?:GET|HEAD)$/,Mi=/^\/\//,ar={},sr={},ro="*/".concat("*"),ti=me.createElement("a");ti.href=ei.href;function xr(e){return function(n,a){typeof n!="string"&&(a=n,n="*");var s,d=0,h=n.toLowerCase().match(Mt)||[];if(ue(a))for(;s=h[d++];)s[0]==="+"?(s=s.slice(1)||"*",(e[s]=e[s]||[]).unshift(a)):(e[s]=e[s]||[]).push(a)}}function vi(e,n,a,s){var d={},h=e===sr;function g(C){var T;return d[C]=!0,u.each(e[C]||[],function(D,B){var V=B(n,a,s);if(typeof V=="string"&&!h&&!d[V])return n.dataTypes.unshift(V),g(V),!1;if(h)return!(T=V)}),T}return g(n.dataTypes[0])||!d["*"]&&g("*")}function Ir(e,n){var a,s,d=u.ajaxSettings.flatOptions||{};for(a in n)n[a]!==void 0&&((d[a]?e:s||(s={}))[a]=n[a]);return s&&u.extend(!0,e,s),e}function oo(e,n,a){for(var s,d,h,g,C=e.contents,T=e.dataTypes;T[0]==="*";)T.shift(),s===void 0&&(s=e.mimeType||n.getResponseHeader("Content-Type"));if(s){for(d in C)if(C[d]&&C[d].test(s)){T.unshift(d);break}}if(T[0]in a)h=T[0];else{for(d in a){if(!T[0]||e.converters[d+" "+T[0]]){h=d;break}g||(g=d)}h=h||g}if(h)return h!==T[0]&&T.unshift(h),a[h]}function ao(e,n,a,s){var d,h,g,C,T,D={},B=e.dataTypes.slice();if(B[1])for(g in e.converters)D[g.toLowerCase()]=e.converters[g];for(h=B.shift();h;)if(e.responseFields[h]&&(a[e.responseFields[h]]=n),!T&&s&&e.dataFilter&&(n=e.dataFilter(n,e.dataType)),T=h,h=B.shift(),h){if(h==="*")h=T;else if(T!=="*"&&T!==h){if(g=D[T+" "+h]||D["* "+h],!g){for(d in D)if(C=d.split(" "),C[1]===h&&(g=D[T+" "+C[0]]||D["* "+C[0]],g)){g===!0?g=D[d]:D[d]!==!0&&(h=C[0],B.unshift(C[1]));break}}if(g!==!0)if(g&&e.throws)n=g(n);else try{n=g(n)}catch(V){return{state:"parsererror",error:g?V:"No conversion from "+T+" to "+h}}}}return{state:"success",data:n}}u.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:ei.href,type:"GET",isLocal:Dr.test(ei.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":ro,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":u.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,n){return n?Ir(Ir(e,u.ajaxSettings),n):Ir(u.ajaxSettings,e)},ajaxPrefilter:xr(ar),ajaxTransport:xr(sr),ajax:function(e,n){typeof e=="object"&&(n=e,e=void 0),n=n||{};var a,s,d,h,g,C,T,D,B,V,x=u.ajaxSetup({},n),G=x.context||x,ye=x.context&&(G.nodeType||G.jquery)?u(G):u.event,ke=u.Deferred(),Le=u.Callbacks("once memory"),lt=x.statusCode||{},$e={},vt={},on="canceled",He={readyState:0,getResponseHeader:function(De){var Qe;if(T){if(!h)for(h={};Qe=gi.exec(d);)h[Qe[1].toLowerCase()+" "]=(h[Qe[1].toLowerCase()+" "]||[]).concat(Qe[2]);Qe=h[De.toLowerCase()+" "]}return Qe==null?null:Qe.join(", ")},getAllResponseHeaders:function(){return T?d:null},setRequestHeader:function(De,Qe){return T==null&&(De=vt[De.toLowerCase()]=vt[De.toLowerCase()]||De,$e[De]=Qe),this},overrideMimeType:function(De){return T==null&&(x.mimeType=De),this},statusCode:function(De){var Qe;if(De)if(T)He.always(De[He.status]);else for(Qe in De)lt[Qe]=[lt[Qe],De[Qe]];return this},abort:function(De){var Qe=De||on;return a&&a.abort(Qe),Lt(0,Qe),this}};if(ke.promise(He),x.url=((e||x.url||ei.href)+"").replace(Mi,ei.protocol+"//"),x.type=n.method||n.type||x.method||x.type,x.dataTypes=(x.dataType||"*").toLowerCase().match(Mt)||[""],x.crossDomain==null){C=me.createElement("a");try{C.href=x.url,C.href=C.href,x.crossDomain=ti.protocol+"//"+ti.host!=C.protocol+"//"+C.host}catch{x.crossDomain=!0}}if(x.data&&x.processData&&typeof x.data!="string"&&(x.data=u.param(x.data,x.traditional)),vi(ar,x,n,He),T)return He;D=u.event&&x.global,D&&u.active++===0&&u.event.trigger("ajaxStart"),x.type=x.type.toUpperCase(),x.hasContent=!or.test(x.type),s=x.url.replace(pi,""),x.hasContent?x.data&&x.processData&&(x.contentType||"").indexOf("application/x-www-form-urlencoded")===0&&(x.data=x.data.replace(rr,"+")):(V=x.url.slice(s.length),x.data&&(x.processData||typeof x.data=="string")&&(s+=(tr.test(s)?"&":"?")+x.data,delete x.data),x.cache===!1&&(s=s.replace(Lr,"$1"),V=(tr.test(s)?"&":"?")+"_="+ji.guid+++V),x.url=s+V),x.ifModified&&(u.lastModified[s]&&He.setRequestHeader("If-Modified-Since",u.lastModified[s]),u.etag[s]&&He.setRequestHeader("If-None-Match",u.etag[s])),(x.data&&x.hasContent&&x.contentType!==!1||n.contentType)&&He.setRequestHeader("Content-Type",x.contentType),He.setRequestHeader("Accept",x.dataTypes[0]&&x.accepts[x.dataTypes[0]]?x.accepts[x.dataTypes[0]]+(x.dataTypes[0]!=="*"?", "+ro+"; q=0.01":""):x.accepts["*"]);for(B in x.headers)He.setRequestHeader(B,x.headers[B]);if(x.beforeSend&&(x.beforeSend.call(G,He,x)===!1||T))return He.abort();if(on="abort",Le.add(x.complete),He.done(x.success),He.fail(x.error),a=vi(sr,x,n,He),!a)Lt(-1,"No Transport");else{if(He.readyState=1,D&&ye.trigger("ajaxSend",[He,x]),T)return He;x.async&&x.timeout>0&&(g=b.setTimeout(function(){He.abort("timeout")},x.timeout));try{T=!1,a.send($e,Lt)}catch(De){if(T)throw De;Lt(-1,De)}}function Lt(De,Qe,jn,Hi){var Yt,an,Ct,Cn,sn,St=Qe;T||(T=!0,g&&b.clearTimeout(g),a=void 0,d=Hi||"",He.readyState=De>0?4:0,Yt=De>=200&&De<300||De===304,jn&&(Cn=oo(x,He,jn)),!Yt&&u.inArray("script",x.dataTypes)>-1&&u.inArray("json",x.dataTypes)<0&&(x.converters["text script"]=function(){}),Cn=ao(x,Cn,He,Yt),Yt?(x.ifModified&&(sn=He.getResponseHeader("Last-Modified"),sn&&(u.lastModified[s]=sn),sn=He.getResponseHeader("etag"),sn&&(u.etag[s]=sn)),De===204||x.type==="HEAD"?St="nocontent":De===304?St="notmodified":(St=Cn.state,an=Cn.data,Ct=Cn.error,Yt=!Ct)):(Ct=St,(De||!St)&&(St="error",De<0&&(De=0))),He.status=De,He.statusText=(Qe||St)+"",Yt?ke.resolveWith(G,[an,St,He]):ke.rejectWith(G,[He,St,Ct]),He.statusCode(lt),lt=void 0,D&&ye.trigger(Yt?"ajaxSuccess":"ajaxError",[He,x,Yt?an:Ct]),Le.fireWith(G,[He,St]),D&&(ye.trigger("ajaxComplete",[He,x]),--u.active||u.event.trigger("ajaxStop")))}return He},getJSON:function(e,n,a){return u.get(e,n,a,"json")},getScript:function(e,n){return u.get(e,void 0,n,"script")}}),u.each(["get","post"],function(e,n){u[n]=function(a,s,d,h){return ue(s)&&(h=h||d,d=s,s=void 0),u.ajax(u.extend({url:a,type:n,dataType:h,data:s,success:d},u.isPlainObject(a)&&a))}}),u.ajaxPrefilter(function(e){var n;for(n in e.headers)n.toLowerCase()==="content-type"&&(e.contentType=e.headers[n]||"")}),u._evalUrl=function(e,n,a){return u.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(s){u.globalEval(s,n,a)}})},u.fn.extend({wrapAll:function(e){var n;return this[0]&&(ue(e)&&(e=e.call(this[0])),n=u(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&n.insertBefore(this[0]),n.map(function(){for(var a=this;a.firstElementChild;)a=a.firstElementChild;return a}).append(this)),this},wrapInner:function(e){return ue(e)?this.each(function(n){u(this).wrapInner(e.call(this,n))}):this.each(function(){var n=u(this),a=n.contents();a.length?a.wrapAll(e):n.append(e)})},wrap:function(e){var n=ue(e);return this.each(function(a){u(this).wrapAll(n?e.call(this,a):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){u(this).replaceWith(this.childNodes)}),this}}),u.expr.pseudos.hidden=function(e){return!u.expr.pseudos.visible(e)},u.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},u.ajaxSettings.xhr=function(){try{return new b.XMLHttpRequest}catch{}};var Rn={0:200,1223:204},rn=u.ajaxSettings.xhr();ne.cors=!!rn&&"withCredentials"in rn,ne.ajax=rn=!!rn,u.ajaxTransport(function(e){var n,a;if(ne.cors||rn&&!e.crossDomain)return{send:function(s,d){var h,g=e.xhr();if(g.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(h in e.xhrFields)g[h]=e.xhrFields[h];e.mimeType&&g.overrideMimeType&&g.overrideMimeType(e.mimeType),!e.crossDomain&&!s["X-Requested-With"]&&(s["X-Requested-With"]="XMLHttpRequest");for(h in s)g.setRequestHeader(h,s[h]);n=function(C){return function(){n&&(n=a=g.onload=g.onerror=g.onabort=g.ontimeout=g.onreadystatechange=null,C==="abort"?g.abort():C==="error"?typeof g.status!="number"?d(0,"error"):d(g.status,g.statusText):d(Rn[g.status]||g.status,g.statusText,(g.responseType||"text")!=="text"||typeof g.responseText!="string"?{binary:g.response}:{text:g.responseText},g.getAllResponseHeaders()))}},g.onload=n(),a=g.onerror=g.ontimeout=n("error"),g.onabort!==void 0?g.onabort=a:g.onreadystatechange=function(){g.readyState===4&&b.setTimeout(function(){n&&a()})},n=n("abort");try{g.send(e.hasContent&&e.data||null)}catch(C){if(n)throw C}},abort:function(){n&&n()}}}),u.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),u.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return u.globalEval(e),e}}}),u.ajaxPrefilter("script",function(e){e.cache===void 0&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),u.ajaxTransport("script",function(e){if(e.crossDomain||e.scriptAttrs){var n,a;return{send:function(s,d){n=u(" + @vite('resources/js/chart-config.js') @endpush diff --git a/resources/views/includes/main-css.blade.php b/resources/views/includes/main-css.blade.php index eb2ff8ad..0a8db150 100644 --- a/resources/views/includes/main-css.blade.php +++ b/resources/views/includes/main-css.blade.php @@ -1,7 +1,8 @@ - +@vite('resources/sass/app.scss') + diff --git a/resources/views/includes/main-js.blade.php b/resources/views/includes/main-js.blade.php index ae409c32..73c12248 100644 --- a/resources/views/includes/main-js.blade.php +++ b/resources/views/includes/main-js.blade.php @@ -1,6 +1,10 @@ - - - + +@vite('resources/js/app.js') + + + + + @include('sweetalert::alert') diff --git a/resources/views/layouts/footer.blade.php b/resources/views/layouts/footer.blade.php index 141ea78f..b9b0039c 100644 --- a/resources/views/layouts/footer.blade.php +++ b/resources/views/layouts/footer.blade.php @@ -1,5 +1,5 @@ diff --git a/resources/views/livewire/pos/product-list.blade.php b/resources/views/livewire/pos/product-list.blade.php index 304232ee..f665d6dc 100644 --- a/resources/views/livewire/pos/product-list.blade.php +++ b/resources/views/livewire/pos/product-list.blade.php @@ -9,7 +9,7 @@
@forelse($products as $product) -
+
Product Image diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 00000000..7f5bf01f --- /dev/null +++ b/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; + +export default defineConfig({ + plugins: [ + laravel([ + 'resources/sass/app.scss', + 'resources/js/app.js', + 'resources/js/chart-config.js', + ]), + ], +}); diff --git a/webpack.mix.js b/webpack.mix.js deleted file mode 100644 index ebde44d7..00000000 --- a/webpack.mix.js +++ /dev/null @@ -1,16 +0,0 @@ -const mix = require('laravel-mix'); - -/* - |-------------------------------------------------------------------------- - | Mix Asset Management - |-------------------------------------------------------------------------- - | - | Mix provides a clean, fluent API for defining some Webpack build steps - | for your Laravel application. By default, we are compiling the Sass - | file for the application as well as bundling up all the JS files. - | - */ - -mix.js('resources/js/app.js', 'public/js') - .js('resources/js/chart-config.js', 'public/js') - .sass('resources/sass/app.scss', 'public/css');