diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 00000000..fe1a7a37 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,15 @@ +module.exports = { + plugins: [ + // npm packages: eslint eslint-plugin-vue + "vue" + ], + extends: [ + "plugin:vue/base", + "plugin:vue/essential", + "plugin:vue/strongly-recommended", + "plugin:vue/recommended" + ], + rules: { + "vue/component-definition-name-casing": ["error", "kebab-case"] + } +} diff --git a/.github/workflows/laravel-install.yml b/.github/workflows/laravel-install.yml index 2c8fabf5..fcb4b871 100644 --- a/.github/workflows/laravel-install.yml +++ b/.github/workflows/laravel-install.yml @@ -13,7 +13,7 @@ jobs: fail-fast: true matrix: os: ["ubuntu-18.04", "windows-latest"] - php: ["7.3", "7.4", "8.0"] + php: ["7.4", "8.0"] stability: ["prefer-stable"] name: "${{ matrix.os }} - PHP ${{ matrix.php }} - ${{ matrix.stability }}" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fafea634..2fc0e64a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: fail-fast: true matrix: os: ["ubuntu-18.04", "windows-latest"] - php: ["7.3", "7.4", "8.0"] + php: ["7.4", "8.0"] stability: ["prefer-stable"] name: "${{ matrix.os }} - PHP ${{ matrix.php }} - ${{ matrix.stability }}" @@ -42,7 +42,7 @@ jobs: run: vendor/bin/phpunit --verbose - name: Send coverage to Coveralls - if: "matrix.os == 'ubuntu-18.04' && matrix.php == '7.3'" + if: "matrix.os == 'ubuntu-18.04' && matrix.php == '7.4'" env: COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | diff --git a/composer.json b/composer.json index 0740f626..84782323 100644 --- a/composer.json +++ b/composer.json @@ -24,12 +24,12 @@ "require": { "ext-gd": "*", "ext-exif": "*", - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "laravel/framework": "^8.22.1", "inertiajs/inertia-laravel": "^0.3.6" }, "require-dev": { - "fzaninotto/faker": "^1.9.1", + "fakerphp/faker": "^1.9.1", "mockery/mockery": "^1.3.1", "phpunit/phpunit": "^9.0", "laravel/laravel": "^8.0" diff --git a/database/factories/ProductFactory.php b/database/factories/ProductFactory.php index 1d933292..4a60ba29 100644 --- a/database/factories/ProductFactory.php +++ b/database/factories/ProductFactory.php @@ -26,7 +26,7 @@ public function definition(): array 'name' => $this->faker->company, 'slug' => Str::random(), 'description' => $this->faker->sentences(3, true), - 'options' => ['Size' => ['XS', 'S', 'M', 'L']], + 'properties' => ['Size' => ['XS', 'S', 'M', 'L']], 'prices' => [ 'usd' => [ 'default' => $price = mt_rand(10, 1000) / 10, diff --git a/database/factories/VariantFactory.php b/database/factories/VariantFactory.php index 360153d4..87358950 100644 --- a/database/factories/VariantFactory.php +++ b/database/factories/VariantFactory.php @@ -23,7 +23,7 @@ class VariantFactory extends Factory public function definition(): array { return [ - 'option' => ['Size' => 'XS'], + 'variation' => ['Size' => 'XS'], 'prices' => ['usd' => ['default' => mt_rand(10, 1000) / 10]], 'inventory' => [ 'files' => [], diff --git a/database/migrations/2020_01_01_000000_extend_users_table.php b/database/migrations/2020_01_01_000000_extend_users_table.php index a431a72c..363a71f1 100644 --- a/database/migrations/2020_01_01_000000_extend_users_table.php +++ b/database/migrations/2020_01_01_000000_extend_users_table.php @@ -1,6 +1,6 @@ getDeletedAtColumn(); + $column = User::proxy()->getDeletedAtColumn(); Schema::table('users', static function (Blueprint $table) use ($column): void { if (! Schema::hasColumn('users', $column)) { diff --git a/database/migrations/2020_01_01_000200_create_bazar_products_table.php b/database/migrations/2020_01_01_000200_create_bazar_products_table.php index ce337274..259d23f0 100644 --- a/database/migrations/2020_01_01_000200_create_bazar_products_table.php +++ b/database/migrations/2020_01_01_000200_create_bazar_products_table.php @@ -19,7 +19,7 @@ public function up(): void $table->string('slug')->unique(); $table->text('description')->nullable(); $table->json('prices')->nullable(); - $table->json('options')->nullable(); + $table->json('properties')->nullable(); $table->json('inventory')->nullable(); $table->timestamps(); $table->softDeletes(); diff --git a/database/migrations/2020_01_01_000300_create_bazar_items_table.php b/database/migrations/2020_01_01_000300_create_bazar_items_table.php index 87e6ebc1..138569b9 100644 --- a/database/migrations/2020_01_01_000300_create_bazar_items_table.php +++ b/database/migrations/2020_01_01_000300_create_bazar_items_table.php @@ -14,7 +14,7 @@ class CreateBazarItemsTable extends Migration public function up(): void { Schema::create('bazar_items', static function (Blueprint $table): void { - $table->uuid('id'); + $table->uuid('id')->primary(); $table->foreignId('product_id')->nullable()->constrained('bazar_products')->nullOnDelete(); $table->morphs('itemable'); $table->unsignedDecimal('price'); diff --git a/database/migrations/2020_01_01_000700_create_bazar_carts_table.php b/database/migrations/2020_01_01_000700_create_bazar_carts_table.php index abba58f7..74b70b5a 100644 --- a/database/migrations/2020_01_01_000700_create_bazar_carts_table.php +++ b/database/migrations/2020_01_01_000700_create_bazar_carts_table.php @@ -14,9 +14,8 @@ class CreateBazarCartsTable extends Migration public function up(): void { Schema::create('bazar_carts', static function (Blueprint $table): void { - $table->id(); + $table->uuid('id')->primary(); $table->foreignId('user_id')->nullable()->constrained()->cascadeOnDelete(); - $table->uuid('token'); $table->string('currency'); $table->unsignedDecimal('discount')->default(0); $table->boolean('locked')->default(false); diff --git a/database/migrations/2020_01_01_000900_create_bazar_variants_table.php b/database/migrations/2020_01_01_000900_create_bazar_variants_table.php index 20e0910d..2e52de20 100644 --- a/database/migrations/2020_01_01_000900_create_bazar_variants_table.php +++ b/database/migrations/2020_01_01_000900_create_bazar_variants_table.php @@ -17,7 +17,7 @@ public function up(): void $table->id(); $table->foreignId('product_id')->constrained('bazar_products')->cascadeOnDelete(); $table->string('alias')->nullable(); - $table->json('option'); + $table->json('variation'); $table->json('prices')->nullable(); $table->json('inventory')->nullable(); $table->timestamps(); diff --git a/public/app.css b/public/app.css index f2d1497a..f3294bda 100644 --- a/public/app.css +++ b/public/app.css @@ -1,10 +1,10 @@ -[data-simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.simplebar-mask{direction:inherit;overflow:hidden;width:auto!important;height:auto!important;z-index:0}.simplebar-mask,.simplebar-offset{position:absolute;padding:0;margin:0;left:0;top:0;bottom:0;right:0}.simplebar-offset{direction:inherit!important;box-sizing:inherit!important;resize:none!important;-webkit-overflow-scrolling:touch}.simplebar-content-wrapper{direction:inherit;box-sizing:border-box!important;position:relative;display:block;height:100%;width:auto;max-width:100%;max-height:100%;scrollbar-width:none;-ms-overflow-style:none}.simplebar-content-wrapper::-webkit-scrollbar,.simplebar-hide-scrollbar::-webkit-scrollbar{width:0;height:0}.simplebar-content:after,.simplebar-content:before{content:" ";display:table}.simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;height:100%;width:100%;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;z-index:-1}.simplebar-height-auto-observer,.simplebar-track{position:absolute;overflow:hidden;pointer-events:none}.simplebar-track{z-index:1;right:0;bottom:0}[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.simplebar-scrollbar{position:absolute;left:0;right:0;min-height:10px}.simplebar-scrollbar:before{position:absolute;content:"";background:#000;border-radius:7px;left:2px;right:2px;opacity:0;transition:opacity .2s linear}.simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition:opacity 0s linear}.simplebar-track.simplebar-vertical{top:0;width:11px}.simplebar-track.simplebar-vertical .simplebar-scrollbar:before{top:2px;bottom:2px}.simplebar-track.simplebar-horizontal{left:0;height:11px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{height:100%;left:2px;right:2px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{right:auto;left:0;top:2px;height:7px;min-height:0;min-width:10px;width:auto}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{right:auto;left:0}.hs-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll}.simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none} /*! * Quill Editor v1.3.7 * https://quilljs.com/ * Copyright (c) 2014, Jason Chen * Copyright (c) 2013, salesforce.com */.ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;line-height:1.42;height:100%;outline:none;overflow-y:auto;padding:12px 15px;-o-tab-size:4;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6,.ql-editor ol,.ql-editor p,.ql-editor pre,.ql-editor ul{margin:0;padding:0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:"\2022"}.ql-editor ul[data-checked=false],.ql-editor ul[data-checked=true]{pointer-events:none}.ql-editor ul[data-checked=false]>li *,.ql-editor ul[data-checked=true]>li *{pointer-events:all}.ql-editor ul[data-checked=false]>li:before,.ql-editor ul[data-checked=true]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:"\2611"}.ql-editor ul[data-checked=false]>li:before{content:"\2610"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:1.2em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-editor li.ql-direction-rtl:before{margin-left:.3em;margin-right:-1.5em}.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl){padding-left:1.5em}.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl{padding-right:1.5em}.ql-editor ol li{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment:list-0}.ql-editor ol li:before{content:counter(list-0,decimal) ". "}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) ". "}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) ". "}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) ". "}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) ". "}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) ". "}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) ". "}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) ". "}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) ". "}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) ". "}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-snow.ql-toolbar:after,.ql-snow .ql-toolbar:after{clear:both;content:"";display:table}.ql-snow.ql-toolbar button,.ql-snow .ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-snow.ql-toolbar button svg,.ql-snow .ql-toolbar button svg{float:left;height:100%}.ql-snow.ql-toolbar button:active:hover,.ql-snow .ql-toolbar button:active:hover{outline:none}.ql-snow.ql-toolbar input.ql-image[type=file],.ql-snow .ql-toolbar input.ql-image[type=file]{display:none}.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item.ql-selected,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar button.ql-active,.ql-snow .ql-toolbar button.ql-active,.ql-snow.ql-toolbar button:focus,.ql-snow .ql-toolbar button:focus,.ql-snow.ql-toolbar button:hover,.ql-snow .ql-toolbar button:hover{color:#06c}.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill{fill:#06c}.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke-miter{stroke:#06c}@media (pointer:coarse){.ql-snow.ql-toolbar button:hover:not(.ql-active),.ql-snow .ql-toolbar button:hover:not(.ql-active){color:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#444}}.ql-snow,.ql-snow *{box-sizing:border-box}.ql-snow .ql-hidden{display:none}.ql-snow .ql-out-bottom,.ql-snow .ql-out-top{visibility:hidden}.ql-snow .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-snow .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-snow .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-snow .ql-formats{display:inline-block;vertical-align:middle}.ql-snow .ql-formats:after{clear:both;content:"";display:table}.ql-snow .ql-stroke{fill:none;stroke:#444;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-snow .ql-stroke-miter{fill:none;stroke:#444;stroke-miterlimit:10;stroke-width:2}.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill{fill:#444}.ql-snow .ql-empty{fill:none}.ql-snow .ql-even{fill-rule:evenodd}.ql-snow .ql-stroke.ql-thin,.ql-snow .ql-thin{stroke-width:1}.ql-snow .ql-transparent{opacity:.4}.ql-snow .ql-direction svg:last-child{display:none}.ql-snow .ql-direction.ql-active svg:last-child{display:inline}.ql-snow .ql-direction.ql-active svg:first-child{display:none}.ql-snow .ql-editor h1{font-size:2em}.ql-snow .ql-editor h2{font-size:1.5em}.ql-snow .ql-editor h3{font-size:1.17em}.ql-snow .ql-editor h4{font-size:1em}.ql-snow .ql-editor h5{font-size:.83em}.ql-snow .ql-editor h6{font-size:.67em}.ql-snow .ql-editor a{text-decoration:underline}.ql-snow .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-snow .ql-editor code,.ql-snow .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-snow .ql-editor pre{white-space:pre-wrap;margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-snow .ql-editor code{font-size:85%;padding:2px 4px}.ql-snow .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-snow .ql-editor img{max-width:100%}.ql-snow .ql-picker{color:#444;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-snow .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-snow .ql-picker-label:before{display:inline-block;line-height:22px}.ql-snow .ql-picker-options{background-color:#fff;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-snow .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#ccc;z-index:2}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker{width:28px}.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg{right:4px}.ql-snow .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-snow .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-snow .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""]):before{content:attr(data-label)}.ql-snow .ql-picker.ql-header{width:98px}.ql-snow .ql-picker.ql-header .ql-picker-item:before,.ql-snow .ql-picker.ql-header .ql-picker-label:before{content:"Normal"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]:before{content:"Heading 1"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]:before{content:"Heading 2"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]:before{content:"Heading 3"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]:before{content:"Heading 4"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]:before{content:"Heading 5"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]:before{content:"Heading 6"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before{font-size:2em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before{font-size:1.5em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before{font-size:1.17em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before{font-size:1em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before{font-size:.83em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before{font-size:.67em}.ql-snow .ql-picker.ql-font{width:108px}.ql-snow .ql-picker.ql-font .ql-picker-item:before,.ql-snow .ql-picker.ql-font .ql-picker-label:before{content:"Sans Serif"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before{content:"Serif"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before{content:"Monospace"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-snow .ql-picker.ql-size{width:98px}.ql-snow .ql-picker.ql-size .ql-picker-item:before,.ql-snow .ql-picker.ql-size .ql-picker-label:before{content:"Normal"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before{content:"Small"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before{content:"Large"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before{content:"Huge"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-snow .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-snow .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-toolbar.ql-snow{border:1px solid #ccc;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:8px}.ql-toolbar.ql-snow .ql-formats{margin-right:15px}.ql-toolbar.ql-snow .ql-picker-label{border:1px solid transparent}.ql-toolbar.ql-snow .ql-picker-options{border:1px solid transparent;box-shadow:0 2px 8px rgba(0,0,0,.2)}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label,.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-color:#ccc}.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover{border-color:#000}.ql-toolbar.ql-snow+.ql-container.ql-snow{border-top:0}.ql-snow .ql-tooltip{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ddd;color:#444;padding:5px 12px;white-space:nowrap}.ql-snow .ql-tooltip:before{content:"Visit URL:";line-height:26px;margin-right:8px}.ql-snow .ql-tooltip input[type=text]{display:none;border:1px solid #ccc;font-size:13px;height:26px;margin:0;padding:3px 5px;width:170px}.ql-snow .ql-tooltip a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-snow .ql-tooltip a.ql-action:after{border-right:1px solid #ccc;content:"Edit";margin-left:16px;padding-right:8px}.ql-snow .ql-tooltip a.ql-remove:before{content:"Remove";margin-left:8px}.ql-snow .ql-tooltip a{line-height:26px}.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove{display:none}.ql-snow .ql-tooltip.ql-editing input[type=text]{display:inline-block}.ql-snow .ql-tooltip.ql-editing a.ql-action:after{border-right:0;content:"Save";padding-right:0}.ql-snow .ql-tooltip[data-mode=link]:before{content:"Enter link:"}.ql-snow .ql-tooltip[data-mode=formula]:before{content:"Enter formula:"}.ql-snow .ql-tooltip[data-mode=video]:before{content:"Enter video:"}.ql-snow a{color:#06c}.ql-container.ql-snow{border:1px solid #ccc} +[data-simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.simplebar-mask{direction:inherit;overflow:hidden;width:auto!important;height:auto!important;z-index:0}.simplebar-mask,.simplebar-offset{position:absolute;padding:0;margin:0;left:0;top:0;bottom:0;right:0}.simplebar-offset{direction:inherit!important;box-sizing:inherit!important;resize:none!important;-webkit-overflow-scrolling:touch}.simplebar-content-wrapper{direction:inherit;box-sizing:border-box!important;position:relative;display:block;height:100%;width:auto;max-width:100%;max-height:100%;scrollbar-width:none;-ms-overflow-style:none}.simplebar-content-wrapper::-webkit-scrollbar,.simplebar-hide-scrollbar::-webkit-scrollbar{width:0;height:0}.simplebar-content:after,.simplebar-content:before{content:" ";display:table}.simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;height:100%;width:100%;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;z-index:-1}.simplebar-height-auto-observer,.simplebar-track{position:absolute;overflow:hidden;pointer-events:none}.simplebar-track{z-index:1;right:0;bottom:0}[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.simplebar-scrollbar{position:absolute;left:0;right:0;min-height:10px}.simplebar-scrollbar:before{position:absolute;content:"";background:#000;border-radius:7px;left:2px;right:2px;opacity:0;transition:opacity .2s linear}.simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition:opacity 0s linear}.simplebar-track.simplebar-vertical{top:0;width:11px}.simplebar-track.simplebar-vertical .simplebar-scrollbar:before{top:2px;bottom:2px}.simplebar-track.simplebar-horizontal{left:0;height:11px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{height:100%;left:2px;right:2px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{right:auto;left:0;top:2px;height:7px;min-height:0;min-width:10px;width:auto}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{right:auto;left:0}.hs-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll}.simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none} @-webkit-keyframes chartjs-render-animation{0%{opacity:.99}to{opacity:1}}@keyframes chartjs-render-animation{0%{opacity:.99}to{opacity:1}}.chartjs-render-monitor{-webkit-animation:chartjs-render-animation 1ms;animation:chartjs-render-animation 1ms}.chartjs-size-monitor,.chartjs-size-monitor-expand,.chartjs-size-monitor-shrink{position:absolute;direction:ltr;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1}.chartjs-size-monitor-expand>div{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0} /*! * Bootstrap Reboot v4.6.0 (https://getbootstrap.com/) @@ -19,6 +19,6 @@ * Copyright 2011-2021 The Bootstrap Authors * Copyright 2011-2021 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */html{box-sizing:border-box;-ms-overflow-style:scrollbar}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:1rem;padding-left:1rem;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1260px}}.row{display:flex;flex-wrap:wrap;margin-right:-1rem;margin-left:-1rem}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{position:relative;width:100%;padding-right:1rem;padding-left:1rem}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.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;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;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;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;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%}}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.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}}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:2rem!important}.mt-5,.my-5{margin-top:2rem!important}.mr-5,.mx-5{margin-right:2rem!important}.mb-5,.my-5{margin-bottom:2rem!important}.ml-5,.mx-5{margin-left:2rem!important}.m-6{margin:3rem!important}.mt-6,.my-6{margin-top:3rem!important}.mr-6,.mx-6{margin-right:3rem!important}.mb-6,.my-6{margin-bottom:3rem!important}.ml-6,.mx-6{margin-left:3rem!important}.m-7{margin:4rem!important}.mt-7,.my-7{margin-top:4rem!important}.mr-7,.mx-7{margin-right:4rem!important}.mb-7,.my-7{margin-bottom:4rem!important}.ml-7,.mx-7{margin-left:4rem!important}.m-8{margin:5rem!important}.mt-8,.my-8{margin-top:5rem!important}.mr-8,.mx-8{margin-right:5rem!important}.mb-8,.my-8{margin-bottom:5rem!important}.ml-8,.mx-8{margin-left:5rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:2rem!important}.pt-5,.py-5{padding-top:2rem!important}.pr-5,.px-5{padding-right:2rem!important}.pb-5,.py-5{padding-bottom:2rem!important}.pl-5,.px-5{padding-left:2rem!important}.p-6{padding:3rem!important}.pt-6,.py-6{padding-top:3rem!important}.pr-6,.px-6{padding-right:3rem!important}.pb-6,.py-6{padding-bottom:3rem!important}.pl-6,.px-6{padding-left:3rem!important}.p-7{padding:4rem!important}.pt-7,.py-7{padding-top:4rem!important}.pr-7,.px-7{padding-right:4rem!important}.pb-7,.py-7{padding-bottom:4rem!important}.pl-7,.px-7{padding-left:4rem!important}.p-8{padding:5rem!important}.pt-8,.py-8{padding-top:5rem!important}.pr-8,.px-8{padding-right:5rem!important}.pb-8,.py-8{padding-bottom:5rem!important}.pl-8,.px-8{padding-left:5rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-2rem!important}.mt-n5,.my-n5{margin-top:-2rem!important}.mr-n5,.mx-n5{margin-right:-2rem!important}.mb-n5,.my-n5{margin-bottom:-2rem!important}.ml-n5,.mx-n5{margin-left:-2rem!important}.m-n6{margin:-3rem!important}.mt-n6,.my-n6{margin-top:-3rem!important}.mr-n6,.mx-n6{margin-right:-3rem!important}.mb-n6,.my-n6{margin-bottom:-3rem!important}.ml-n6,.mx-n6{margin-left:-3rem!important}.m-n7{margin:-4rem!important}.mt-n7,.my-n7{margin-top:-4rem!important}.mr-n7,.mx-n7{margin-right:-4rem!important}.mb-n7,.my-n7{margin-bottom:-4rem!important}.ml-n7,.mx-n7{margin-left:-4rem!important}.m-n8{margin:-5rem!important}.mt-n8,.my-n8{margin-top:-5rem!important}.mr-n8,.mx-n8{margin-right:-5rem!important}.mb-n8,.my-n8{margin-bottom:-5rem!important}.ml-n8,.mx-n8{margin-left:-5rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:2rem!important}.mt-sm-5,.my-sm-5{margin-top:2rem!important}.mr-sm-5,.mx-sm-5{margin-right:2rem!important}.mb-sm-5,.my-sm-5{margin-bottom:2rem!important}.ml-sm-5,.mx-sm-5{margin-left:2rem!important}.m-sm-6{margin:3rem!important}.mt-sm-6,.my-sm-6{margin-top:3rem!important}.mr-sm-6,.mx-sm-6{margin-right:3rem!important}.mb-sm-6,.my-sm-6{margin-bottom:3rem!important}.ml-sm-6,.mx-sm-6{margin-left:3rem!important}.m-sm-7{margin:4rem!important}.mt-sm-7,.my-sm-7{margin-top:4rem!important}.mr-sm-7,.mx-sm-7{margin-right:4rem!important}.mb-sm-7,.my-sm-7{margin-bottom:4rem!important}.ml-sm-7,.mx-sm-7{margin-left:4rem!important}.m-sm-8{margin:5rem!important}.mt-sm-8,.my-sm-8{margin-top:5rem!important}.mr-sm-8,.mx-sm-8{margin-right:5rem!important}.mb-sm-8,.my-sm-8{margin-bottom:5rem!important}.ml-sm-8,.mx-sm-8{margin-left:5rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:2rem!important}.pt-sm-5,.py-sm-5{padding-top:2rem!important}.pr-sm-5,.px-sm-5{padding-right:2rem!important}.pb-sm-5,.py-sm-5{padding-bottom:2rem!important}.pl-sm-5,.px-sm-5{padding-left:2rem!important}.p-sm-6{padding:3rem!important}.pt-sm-6,.py-sm-6{padding-top:3rem!important}.pr-sm-6,.px-sm-6{padding-right:3rem!important}.pb-sm-6,.py-sm-6{padding-bottom:3rem!important}.pl-sm-6,.px-sm-6{padding-left:3rem!important}.p-sm-7{padding:4rem!important}.pt-sm-7,.py-sm-7{padding-top:4rem!important}.pr-sm-7,.px-sm-7{padding-right:4rem!important}.pb-sm-7,.py-sm-7{padding-bottom:4rem!important}.pl-sm-7,.px-sm-7{padding-left:4rem!important}.p-sm-8{padding:5rem!important}.pt-sm-8,.py-sm-8{padding-top:5rem!important}.pr-sm-8,.px-sm-8{padding-right:5rem!important}.pb-sm-8,.py-sm-8{padding-bottom:5rem!important}.pl-sm-8,.px-sm-8{padding-left:5rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-2rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-2rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-2rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-2rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-2rem!important}.m-sm-n6{margin:-3rem!important}.mt-sm-n6,.my-sm-n6{margin-top:-3rem!important}.mr-sm-n6,.mx-sm-n6{margin-right:-3rem!important}.mb-sm-n6,.my-sm-n6{margin-bottom:-3rem!important}.ml-sm-n6,.mx-sm-n6{margin-left:-3rem!important}.m-sm-n7{margin:-4rem!important}.mt-sm-n7,.my-sm-n7{margin-top:-4rem!important}.mr-sm-n7,.mx-sm-n7{margin-right:-4rem!important}.mb-sm-n7,.my-sm-n7{margin-bottom:-4rem!important}.ml-sm-n7,.mx-sm-n7{margin-left:-4rem!important}.m-sm-n8{margin:-5rem!important}.mt-sm-n8,.my-sm-n8{margin-top:-5rem!important}.mr-sm-n8,.mx-sm-n8{margin-right:-5rem!important}.mb-sm-n8,.my-sm-n8{margin-bottom:-5rem!important}.ml-sm-n8,.mx-sm-n8{margin-left:-5rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:2rem!important}.mt-md-5,.my-md-5{margin-top:2rem!important}.mr-md-5,.mx-md-5{margin-right:2rem!important}.mb-md-5,.my-md-5{margin-bottom:2rem!important}.ml-md-5,.mx-md-5{margin-left:2rem!important}.m-md-6{margin:3rem!important}.mt-md-6,.my-md-6{margin-top:3rem!important}.mr-md-6,.mx-md-6{margin-right:3rem!important}.mb-md-6,.my-md-6{margin-bottom:3rem!important}.ml-md-6,.mx-md-6{margin-left:3rem!important}.m-md-7{margin:4rem!important}.mt-md-7,.my-md-7{margin-top:4rem!important}.mr-md-7,.mx-md-7{margin-right:4rem!important}.mb-md-7,.my-md-7{margin-bottom:4rem!important}.ml-md-7,.mx-md-7{margin-left:4rem!important}.m-md-8{margin:5rem!important}.mt-md-8,.my-md-8{margin-top:5rem!important}.mr-md-8,.mx-md-8{margin-right:5rem!important}.mb-md-8,.my-md-8{margin-bottom:5rem!important}.ml-md-8,.mx-md-8{margin-left:5rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:2rem!important}.pt-md-5,.py-md-5{padding-top:2rem!important}.pr-md-5,.px-md-5{padding-right:2rem!important}.pb-md-5,.py-md-5{padding-bottom:2rem!important}.pl-md-5,.px-md-5{padding-left:2rem!important}.p-md-6{padding:3rem!important}.pt-md-6,.py-md-6{padding-top:3rem!important}.pr-md-6,.px-md-6{padding-right:3rem!important}.pb-md-6,.py-md-6{padding-bottom:3rem!important}.pl-md-6,.px-md-6{padding-left:3rem!important}.p-md-7{padding:4rem!important}.pt-md-7,.py-md-7{padding-top:4rem!important}.pr-md-7,.px-md-7{padding-right:4rem!important}.pb-md-7,.py-md-7{padding-bottom:4rem!important}.pl-md-7,.px-md-7{padding-left:4rem!important}.p-md-8{padding:5rem!important}.pt-md-8,.py-md-8{padding-top:5rem!important}.pr-md-8,.px-md-8{padding-right:5rem!important}.pb-md-8,.py-md-8{padding-bottom:5rem!important}.pl-md-8,.px-md-8{padding-left:5rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-2rem!important}.mt-md-n5,.my-md-n5{margin-top:-2rem!important}.mr-md-n5,.mx-md-n5{margin-right:-2rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-2rem!important}.ml-md-n5,.mx-md-n5{margin-left:-2rem!important}.m-md-n6{margin:-3rem!important}.mt-md-n6,.my-md-n6{margin-top:-3rem!important}.mr-md-n6,.mx-md-n6{margin-right:-3rem!important}.mb-md-n6,.my-md-n6{margin-bottom:-3rem!important}.ml-md-n6,.mx-md-n6{margin-left:-3rem!important}.m-md-n7{margin:-4rem!important}.mt-md-n7,.my-md-n7{margin-top:-4rem!important}.mr-md-n7,.mx-md-n7{margin-right:-4rem!important}.mb-md-n7,.my-md-n7{margin-bottom:-4rem!important}.ml-md-n7,.mx-md-n7{margin-left:-4rem!important}.m-md-n8{margin:-5rem!important}.mt-md-n8,.my-md-n8{margin-top:-5rem!important}.mr-md-n8,.mx-md-n8{margin-right:-5rem!important}.mb-md-n8,.my-md-n8{margin-bottom:-5rem!important}.ml-md-n8,.mx-md-n8{margin-left:-5rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:2rem!important}.mt-lg-5,.my-lg-5{margin-top:2rem!important}.mr-lg-5,.mx-lg-5{margin-right:2rem!important}.mb-lg-5,.my-lg-5{margin-bottom:2rem!important}.ml-lg-5,.mx-lg-5{margin-left:2rem!important}.m-lg-6{margin:3rem!important}.mt-lg-6,.my-lg-6{margin-top:3rem!important}.mr-lg-6,.mx-lg-6{margin-right:3rem!important}.mb-lg-6,.my-lg-6{margin-bottom:3rem!important}.ml-lg-6,.mx-lg-6{margin-left:3rem!important}.m-lg-7{margin:4rem!important}.mt-lg-7,.my-lg-7{margin-top:4rem!important}.mr-lg-7,.mx-lg-7{margin-right:4rem!important}.mb-lg-7,.my-lg-7{margin-bottom:4rem!important}.ml-lg-7,.mx-lg-7{margin-left:4rem!important}.m-lg-8{margin:5rem!important}.mt-lg-8,.my-lg-8{margin-top:5rem!important}.mr-lg-8,.mx-lg-8{margin-right:5rem!important}.mb-lg-8,.my-lg-8{margin-bottom:5rem!important}.ml-lg-8,.mx-lg-8{margin-left:5rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:2rem!important}.pt-lg-5,.py-lg-5{padding-top:2rem!important}.pr-lg-5,.px-lg-5{padding-right:2rem!important}.pb-lg-5,.py-lg-5{padding-bottom:2rem!important}.pl-lg-5,.px-lg-5{padding-left:2rem!important}.p-lg-6{padding:3rem!important}.pt-lg-6,.py-lg-6{padding-top:3rem!important}.pr-lg-6,.px-lg-6{padding-right:3rem!important}.pb-lg-6,.py-lg-6{padding-bottom:3rem!important}.pl-lg-6,.px-lg-6{padding-left:3rem!important}.p-lg-7{padding:4rem!important}.pt-lg-7,.py-lg-7{padding-top:4rem!important}.pr-lg-7,.px-lg-7{padding-right:4rem!important}.pb-lg-7,.py-lg-7{padding-bottom:4rem!important}.pl-lg-7,.px-lg-7{padding-left:4rem!important}.p-lg-8{padding:5rem!important}.pt-lg-8,.py-lg-8{padding-top:5rem!important}.pr-lg-8,.px-lg-8{padding-right:5rem!important}.pb-lg-8,.py-lg-8{padding-bottom:5rem!important}.pl-lg-8,.px-lg-8{padding-left:5rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-2rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-2rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-2rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-2rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-2rem!important}.m-lg-n6{margin:-3rem!important}.mt-lg-n6,.my-lg-n6{margin-top:-3rem!important}.mr-lg-n6,.mx-lg-n6{margin-right:-3rem!important}.mb-lg-n6,.my-lg-n6{margin-bottom:-3rem!important}.ml-lg-n6,.mx-lg-n6{margin-left:-3rem!important}.m-lg-n7{margin:-4rem!important}.mt-lg-n7,.my-lg-n7{margin-top:-4rem!important}.mr-lg-n7,.mx-lg-n7{margin-right:-4rem!important}.mb-lg-n7,.my-lg-n7{margin-bottom:-4rem!important}.ml-lg-n7,.mx-lg-n7{margin-left:-4rem!important}.m-lg-n8{margin:-5rem!important}.mt-lg-n8,.my-lg-n8{margin-top:-5rem!important}.mr-lg-n8,.mx-lg-n8{margin-right:-5rem!important}.mb-lg-n8,.my-lg-n8{margin-bottom:-5rem!important}.ml-lg-n8,.mx-lg-n8{margin-left:-5rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:2rem!important}.mt-xl-5,.my-xl-5{margin-top:2rem!important}.mr-xl-5,.mx-xl-5{margin-right:2rem!important}.mb-xl-5,.my-xl-5{margin-bottom:2rem!important}.ml-xl-5,.mx-xl-5{margin-left:2rem!important}.m-xl-6{margin:3rem!important}.mt-xl-6,.my-xl-6{margin-top:3rem!important}.mr-xl-6,.mx-xl-6{margin-right:3rem!important}.mb-xl-6,.my-xl-6{margin-bottom:3rem!important}.ml-xl-6,.mx-xl-6{margin-left:3rem!important}.m-xl-7{margin:4rem!important}.mt-xl-7,.my-xl-7{margin-top:4rem!important}.mr-xl-7,.mx-xl-7{margin-right:4rem!important}.mb-xl-7,.my-xl-7{margin-bottom:4rem!important}.ml-xl-7,.mx-xl-7{margin-left:4rem!important}.m-xl-8{margin:5rem!important}.mt-xl-8,.my-xl-8{margin-top:5rem!important}.mr-xl-8,.mx-xl-8{margin-right:5rem!important}.mb-xl-8,.my-xl-8{margin-bottom:5rem!important}.ml-xl-8,.mx-xl-8{margin-left:5rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:2rem!important}.pt-xl-5,.py-xl-5{padding-top:2rem!important}.pr-xl-5,.px-xl-5{padding-right:2rem!important}.pb-xl-5,.py-xl-5{padding-bottom:2rem!important}.pl-xl-5,.px-xl-5{padding-left:2rem!important}.p-xl-6{padding:3rem!important}.pt-xl-6,.py-xl-6{padding-top:3rem!important}.pr-xl-6,.px-xl-6{padding-right:3rem!important}.pb-xl-6,.py-xl-6{padding-bottom:3rem!important}.pl-xl-6,.px-xl-6{padding-left:3rem!important}.p-xl-7{padding:4rem!important}.pt-xl-7,.py-xl-7{padding-top:4rem!important}.pr-xl-7,.px-xl-7{padding-right:4rem!important}.pb-xl-7,.py-xl-7{padding-bottom:4rem!important}.pl-xl-7,.px-xl-7{padding-left:4rem!important}.p-xl-8{padding:5rem!important}.pt-xl-8,.py-xl-8{padding-top:5rem!important}.pr-xl-8,.px-xl-8{padding-right:5rem!important}.pb-xl-8,.py-xl-8{padding-bottom:5rem!important}.pl-xl-8,.px-xl-8{padding-left:5rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-2rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-2rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-2rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-2rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-2rem!important}.m-xl-n6{margin:-3rem!important}.mt-xl-n6,.my-xl-n6{margin-top:-3rem!important}.mr-xl-n6,.mx-xl-n6{margin-right:-3rem!important}.mb-xl-n6,.my-xl-n6{margin-bottom:-3rem!important}.ml-xl-n6,.mx-xl-n6{margin-left:-3rem!important}.m-xl-n7{margin:-4rem!important}.mt-xl-n7,.my-xl-n7{margin-top:-4rem!important}.mr-xl-n7,.mx-xl-n7{margin-right:-4rem!important}.mb-xl-n7,.my-xl-n7{margin-bottom:-4rem!important}.ml-xl-n7,.mx-xl-n7{margin-left:-4rem!important}.m-xl-n8{margin:-5rem!important}.mt-xl-n8,.my-xl-n8{margin-top:-5rem!important}.mr-xl-n8,.mx-xl-n8{margin-right:-5rem!important}.mb-xl-n8,.my-xl-n8{margin-bottom:-5rem!important}.ml-xl-n8,.mx-xl-n8{margin-left:-5rem!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}}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#0a4481;background-color:#d0e6fe;border-color:#bddcfd}.alert-primary hr{border-top-color:#a4cffc}.alert-primary .alert-link{color:#062b52}.alert-secondary{color:#83012f;background-color:#feccde;border-color:#feb8d1}.alert-secondary hr{border-top-color:#fe9fc1}.alert-secondary .alert-link{color:#50011d}.alert-success{color:#1b7240;background-color:#d6f8e5;border-color:#c6f5da}.alert-success hr{border-top-color:#b0f1cc}.alert-success .alert-link{color:#114929}.alert-info{color:#204f82;background-color:#d8eafe;border-color:#c9e2fe}.alert-info hr{border-top-color:#b0d5fe}.alert-info .alert-link{color:#163659}.alert-warning{color:#776a11;background-color:#faf5d3;border-color:#f7f1c1}.alert-warning hr{border-top-color:#f4ecaa}.alert-warning .alert-link{color:#4a420b}.alert-danger{color:#732424;background-color:#f8dada;border-color:#f5cbcb}.alert-danger hr{border-top-color:#f1b6b6}.alert-danger .alert-link{color:#4c1818}.alert-light{color:#7f7f83;background-color:#fdfdfe;border-color:#fcfcfe}.alert-light hr{border-top-color:#e9e9f8}.alert-light .alert-link{color:#666669}.alert-dark{color:#575960;background-color:#eeeef1;border-color:#e7e7eb}.alert-dark hr{border-top-color:#d9d9df}.alert-dark .alert-link{color:#3f4045}.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:focus,a.badge:hover{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:#1382f9}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0569d4}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(19,130,249,.5)}.badge-secondary{color:#fff;background-color:#fc025a}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#c90248}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(252,2,90,.5)}.badge-success{color:#212529;background-color:#34db7c}a.badge-success:focus,a.badge-success:hover{color:#212529;background-color:#21bb63}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,219,124,.5)}.badge-info{color:#fff;background-color:#3d98fa}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#0b7ef9}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(61,152,250,.5)}.badge-warning{color:#212529;background-color:#e4cc21}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#bba717}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(228,204,33,.5)}.badge-danger{color:#fff;background-color:#dd4646}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#cb2525}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(221,70,70,.5)}.badge-light{color:#212529;background-color:#f5f5fc}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#cecef0}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(245,245,252,.5)}.badge-dark{color:#212529;background-color:#a8abb8}a.badge-dark:focus,a.badge-dark:hover{color:#212529;background-color:#8c90a1}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(168,171,184,.5)}.btn{display:inline-block;font-weight:600;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:.9375rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(19,130,249,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#1382f9;border-color:#1382f9}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{color:#fff;background-color:#066fe0;border-color:#0569d4}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(54,149,250,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#1382f9;border-color:#1382f9}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0569d4;border-color:#0563c7}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(54,149,250,.5)}.btn-secondary{color:#fff;background-color:#fc025a;border-color:#fc025a}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{color:#fff;background-color:#d6024c;border-color:#c90248}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(252,40,115,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#fc025a;border-color:#fc025a}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#c90248;border-color:#bd0143}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(252,40,115,.5)}.btn-success{color:#212529;background-color:#34db7c;border-color:#34db7c}.btn-success.focus,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#23c669;border-color:#21bb63}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(49,192,112,.5)}.btn-success.disabled,.btn-success:disabled{color:#212529;background-color:#34db7c;border-color:#34db7c}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#21bb63;border-color:#1fb05e}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(49,192,112,.5)}.btn-info{color:#fff;background-color:#3d98fa;border-color:#3d98fa}.btn-info.focus,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#1884f9;border-color:#0b7ef9}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(90,167,251,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#3d98fa;border-color:#3d98fa}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#0b7ef9;border-color:#0677f1}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(90,167,251,.5)}.btn-warning{color:#212529;background-color:#e4cc21;border-color:#e4cc21}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{color:#212529;background-color:#c7b118;border-color:#bba717}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(199,179,34,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#e4cc21;border-color:#e4cc21}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#bba717;border-color:#b09d15}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(199,179,34,.5)}.btn-danger{color:#fff;background-color:#dd4646;border-color:#dd4646}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#d62727;border-color:#cb2525}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(226,98,98,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dd4646;border-color:#dd4646}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#cb2525;border-color:#c02323}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(226,98,98,.5)}.btn-light{color:#212529;background-color:#f5f5fc;border-color:#f5f5fc}.btn-light.focus,.btn-light:focus,.btn-light:hover{color:#212529;background-color:#d8d8f3;border-color:#cecef0}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(213,214,220,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f5f5fc;border-color:#f5f5fc}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#cecef0;border-color:#c4c4ed}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(213,214,220,.5)}.btn-dark{color:#212529;background-color:#a8abb8;border-color:#a8abb8}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{color:#212529;background-color:#9397a7;border-color:#8c90a1}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(148,151,163,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#212529;background-color:#a8abb8;border-color:#a8abb8}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#8c90a1;border-color:#85899b}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(148,151,163,.5)}.btn-outline-primary{color:#1382f9;border-color:#1382f9}.btn-outline-primary:hover{color:#fff;background-color:#1382f9;border-color:#1382f9}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(19,130,249,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#1382f9;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#1382f9;border-color:#1382f9}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(19,130,249,.5)}.btn-outline-secondary{color:#fc025a;border-color:#fc025a}.btn-outline-secondary:hover{color:#fff;background-color:#fc025a;border-color:#fc025a}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(252,2,90,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#fc025a;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#fc025a;border-color:#fc025a}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(252,2,90,.5)}.btn-outline-success{color:#34db7c;border-color:#34db7c}.btn-outline-success:hover{color:#212529;background-color:#34db7c;border-color:#34db7c}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(52,219,124,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#34db7c;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#212529;background-color:#34db7c;border-color:#34db7c}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,219,124,.5)}.btn-outline-info{color:#3d98fa;border-color:#3d98fa}.btn-outline-info:hover{color:#fff;background-color:#3d98fa;border-color:#3d98fa}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(61,152,250,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#3d98fa;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#3d98fa;border-color:#3d98fa}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(61,152,250,.5)}.btn-outline-warning{color:#e4cc21;border-color:#e4cc21}.btn-outline-warning:hover{color:#212529;background-color:#e4cc21;border-color:#e4cc21}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(228,204,33,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#e4cc21;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#e4cc21;border-color:#e4cc21}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(228,204,33,.5)}.btn-outline-danger{color:#dd4646;border-color:#dd4646}.btn-outline-danger:hover{color:#fff;background-color:#dd4646;border-color:#dd4646}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(221,70,70,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dd4646;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dd4646;border-color:#dd4646}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(221,70,70,.5)}.btn-outline-light{color:#f5f5fc;border-color:#f5f5fc}.btn-outline-light:hover{color:#212529;background-color:#f5f5fc;border-color:#f5f5fc}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(245,245,252,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f5f5fc;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f5f5fc;border-color:#f5f5fc}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(245,245,252,.5)}.btn-outline-dark{color:#a8abb8;border-color:#a8abb8}.btn-outline-dark:hover{color:#212529;background-color:#a8abb8;border-color:#a8abb8}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(168,171,184,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#a8abb8;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#212529;background-color:#a8abb8;border-color:#a8abb8}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(168,171,184,.5)}.btn-link{font-weight:400;color:#1382f9;text-decoration:none}.btn-link:hover{color:#055dbb}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label:before{color:#fff;border-color:#1382f9;background-color:#1382f9}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(19,130,249,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#8fc4fc}.custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#c1defd;border-color:#c1defd}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label:before{pointer-events:none;background-color:#fff;border:1px solid #adb5bd}.custom-control-label:after,.custom-control-label:before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:""}.custom-control-label:after{background:50%/50% 50% no-repeat}.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;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='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:#1382f9;background-color:#1382f9}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(19,130,249,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(19,130,249,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(19,130,249,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label:after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;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}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(19,130,249,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 1.2rem + 2px);padding:.6rem 1.75rem .6rem .75rem;font-size:.9375rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #bdc5ce;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#8fc4fc;outline:0;box-shadow:0 0 0 .2rem rgba(19,130,249,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{position:relative;width:100%;height:calc(1.5em + 1.2rem + 2px)}.custom-file-input{z-index:2;margin:0;overflow:hidden;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#8fc4fc;box-shadow:0 0 0 .2rem rgba(19,130,249,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.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{left:0;z-index:1;height:calc(1.5em + 1.2rem + 2px);overflow:hidden;font-weight:400;background-color:#fff;border:1px solid #bdc5ce;border-radius:.25rem}.custom-file-label,.custom-file-label:after{position:absolute;top:0;right:0;padding:.6rem .75rem;line-height:1.5;color:#495057}.custom-file-label:after{bottom:0;z-index:3;display:block;height:calc(1.5em + 1.2rem);content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 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:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(19,130,249,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(19,130,249,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(19,130,249,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#1382f9;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#c1defd}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1382f9;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#c1defd}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#1382f9;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#c1defd}.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,.custom-range::-ms-fill-upper{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.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}}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.6rem .75rem;margin-bottom:0;font-size:.9375rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #bdc5ce;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#1382f9}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.form-control{display:block;width:100%;height:calc(1.5em + 1.2rem + 2px);padding:.6rem .75rem;font-size:.9375rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #bdc5ce;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 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#8fc4fc;outline:0;box-shadow:0 0 0 .2rem rgba(19,130,249,.25)}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.6rem + 1px);padding-bottom:calc(.6rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.6rem 0;margin-bottom:0;font-size:.9375rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.5rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem}.form-row>.col,.form-row>[class*=col-]{padding-right:.5rem;padding-left:.5rem}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.5rem;font-size:80%;color:#34db7c}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#212529;background-color:rgba(52,219,124,.9);border-radius:.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:.5rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#34db7c;padding-right:calc(1.5em + 1.2rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2334DB7C' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .3rem) center;background-size:calc(.75em + .6rem) calc(.75em + .6rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#34db7c;box-shadow:0 0 0 .2rem rgba(52,219,124,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 1.2rem);background-position:top calc(.375em + .3rem) right calc(.375em + .3rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#34db7c;padding-right:calc(.75em + 2.65rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2334DB7C' 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") center right 1.75rem/calc(.75em + .6rem) calc(.75em + .6rem) no-repeat}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#34db7c;box-shadow:0 0 0 .2rem rgba(52,219,124,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#34db7c}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#34db7c}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#34db7c}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#5fe398;background-color:#5fe398}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(52,219,124,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#34db7c}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#34db7c;box-shadow:0 0 0 .2rem rgba(52,219,124,.25)}.invalid-feedback{display:none;width:100%;margin-top:.5rem;font-size:80%;color:#dd4646}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(221,70,70,.9);border-radius:.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:.5rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dd4646;padding-right:calc(1.5em + 1.2rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23DD4646'%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='%23DD4646' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .3rem) center;background-size:calc(.75em + .6rem) calc(.75em + .6rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dd4646;box-shadow:0 0 0 .2rem rgba(221,70,70,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 1.2rem);background-position:top calc(.375em + .3rem) right calc(.375em + .3rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dd4646;padding-right:calc(.75em + 2.65rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23DD4646'%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='%23DD4646' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .6rem) calc(.75em + .6rem) no-repeat}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dd4646;box-shadow:0 0 0 .2rem rgba(221,70,70,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dd4646}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dd4646}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#dd4646}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#e57171;background-color:#e57171}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(221,70,70,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dd4646}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dd4646;box-shadow:0 0 0 .2rem rgba(221,70,70,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{display:flex;align-items:center;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.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-footer,.modal-dialog-scrollable .modal-header{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:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.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:-webkit-min-content;height:-moz-min-content;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}}.pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#1382f9;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#055dbb;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(19,130,249,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#1382f9;border-color:#1382f9}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #f5f5fc}.table thead th{vertical-align:bottom;border-bottom:2px solid #f5f5fc}.table tbody+tbody{border-top:2px solid #f5f5fc}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #f5f5fc}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:#f5f5fc}.table-primary,.table-primary>td,.table-primary>th{background-color:#d0e6fe}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#aad2fd}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#b7d9fd}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#feccde}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#fea4c4}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#feb3ce}.table-success,.table-success>td,.table-success>th{background-color:#d6f8e5}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#b6f2d0}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#c0f4d7}.table-info,.table-info>td,.table-info>th{background-color:#d8eafe}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#b9dafd}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#bfddfd}.table-warning,.table-warning>td,.table-warning>th{background-color:#faf5d3}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#f5edaf}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#f7f0bc}.table-danger,.table-danger>td,.table-danger>th{background-color:#f8dada}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#f3bcbc}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f4c5c5}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfbfe}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#eeeef1}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#e0e1e5}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#e0e0e5}.table-active,.table-active>td,.table-active>th{background-color:#f5f5fc}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#e1e1f6}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#f5f5fc;border-color:#f5f5fc}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:hsla(0,0%,100%,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#1382f9;border-color:#1382f9}.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}}.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:#0a4481;background-color:#bddcfd}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#0a4481;background-color:#a4cffc}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0a4481;border-color:#0a4481}.list-group-item-secondary{color:#83012f;background-color:#feb8d1}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#83012f;background-color:#fe9fc1}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#83012f;border-color:#83012f}.list-group-item-success{color:#1b7240;background-color:#c6f5da}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#1b7240;background-color:#b0f1cc}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#1b7240;border-color:#1b7240}.list-group-item-info{color:#204f82;background-color:#c9e2fe}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#204f82;background-color:#b0d5fe}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#204f82;border-color:#204f82}.list-group-item-warning{color:#776a11;background-color:#f7f1c1}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#776a11;background-color:#f4ecaa}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#776a11;border-color:#776a11}.list-group-item-danger{color:#732424;background-color:#f5cbcb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#732424;background-color:#f1b6b6}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#732424;border-color:#732424}.list-group-item-light{color:#7f7f83;background-color:#fcfcfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#7f7f83;background-color:#e9e9f8}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#7f7f83;border-color:#7f7f83}.list-group-item-dark{color:#575960;background-color:#e7e7eb}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#575960;background-color:#d9d9df}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#575960;border-color:#575960}.toast{flex-basis:350px;max-width:350px;font-size:.875rem;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#1382f9!important}a.text-primary:focus,a.text-primary:hover{color:#055dbb!important}.text-secondary{color:#fc025a!important}a.text-secondary:focus,a.text-secondary:hover{color:#b0013f!important}.text-success{color:#34db7c!important}a.text-success:focus,a.text-success:hover{color:#1da558!important}.text-info{color:#3d98fa!important}a.text-info:focus,a.text-info:hover{color:#0671e5!important}.text-warning{color:#e4cc21!important}a.text-warning:focus,a.text-warning:hover{color:#a49314!important}.text-danger{color:#dd4646!important}a.text-danger:focus,a.text-danger:hover{color:#b52121!important}.text-light{color:#f5f5fc!important}a.text-light:focus,a.text-light:hover{color:#babaea!important}.text-dark{color:#a8abb8!important}a.text-dark:focus,a.text-dark:hover{color:#7e8296!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.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}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#1382f9!important}.border-secondary{border-color:#fc025a!important}.border-success{border-color:#34db7c!important}.border-info{border-color:#3d98fa!important}.border-warning{border-color:#e4cc21!important}.border-danger{border-color:#dd4646!important}.border-light{border-color:#f5f5fc!important}.border-dark{border-color:#a8abb8!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}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-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}.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:-webkit-sticky!important;position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}@supports ((position: -webkit-sticky) or (position: sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.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}.screen-reader-response,.screen-reader-text,.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}.dropdown-menu{border:none;box-shadow:0 0 10px rgba(0,0,0,.1)}.table.has-filled-header thead th{border:none;background-color:#ededfa}.table.has-filled-header thead th th{border:none}.table.is-headless tr:first-of-type td,.table.is-headless tr:first-of-type th{border-top:none}.table td,.table th{vertical-align:middle}.table.table-hover .table-active.table-danger>td,.table.table-hover .table-active.table-danger>th{background-color:#f8dada}.table.table-hover .table-active.table-danger:hover>td,.table.table-hover .table-active.table-danger:hover>th{background-color:#f4c5c5}.form-text{color:#a8abb8;line-height:1.4}.form-group.is-checkbox-list>*+*{margin-top:.5rem}.form-group label{font-weight:500}.form-group-sm .form-control{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-group-lg .form-control{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.img-fluid{max-width:100%;height:auto}.sticky-helper{position:-webkit-sticky;position:sticky;top:2rem}.breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin:0;list-style:none;font-weight:600}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{display:inline-block;padding-right:.5rem;color:rgba(0,0,0,.2);content:"/";font-size:.7rem}.breadcrumb-item.active,.breadcrumb-item a{color:#a8abb8}.card{background-color:#fff;border-radius:.25rem;box-shadow:0 5px 25px 0 rgba(42,51,83,.1),0 5px 10px rgba(0,0,0,.05)}.card__footer{padding:1.15rem 1.5rem;background-color:rgba(0,0,0,.02);border-radius:0 0 .25rem .25rem;line-height:1.35}.card__footer>:last-child{margin-bottom:0}.card__inner{padding:1.5rem}.card__header{padding:.2rem 1.5rem;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;border-bottom:1px solid rgba(0,0,0,.05);min-height:56px}.card__header>*{margin-top:.5rem;margin-bottom:.5rem}.card__title{font-size:1rem;color:#434651}.card.is-sticky{position:-webkit-sticky;position:sticky;top:2rem}.card.has-full-height{height:100%}.card.is-quick-action .card__inner{padding:1.5rem}.card.is-widget{display:flex;flex-direction:column;align-items:space-between;justify-content:space-between}.card.is-widget .card__inner{padding:1rem;height:100%;display:flex;flex-direction:column;justify-content:space-around}.card.is-widget .card__inner-title{font-size:.8rem;text-transform:uppercase;font-weight:600;margin:0 0 .4rem;color:#434651}.card.is-widget .card__inner-data{color:#434651;font-weight:600;font-size:1.8rem;margin:0;line-height:1.2}.card.is-widget .card__footer{padding:.7rem 1rem;border-top:1px solid #f5f5fc;color:#434651}.card.is-primary{background-color:#1382f9}.card.is-primary .card__footer,.card.is-primary .card__inner-data,.card.is-primary .card__inner-title{color:#fff}.card.is-primary .card__footer{border-color:hsla(0,0%,100%,.1);background-color:#0569d4}.card.is-primary .card__footer a{color:#fff}.form-group-wrapper>*,.form-group-wrapper>div:not([class])>*{margin-top:0;margin-bottom:0}.form-group-wrapper>*+*,.form-group-wrapper>div:not([class])>*+*{margin-top:1rem}.tag-control{display:flex;flex-wrap:wrap;min-height:calc(1.5em + 1.2rem + 2px);width:100%;padding:.3rem;font-size:.9375rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #bdc5ce;border-radius:.25rem}.tag-control .tag{margin:.25rem}.tag-control .form-control-plaintext{padding:0;height:1.75rem;margin:.25rem}.input-group-append svg.icon{width:1.25rem;height:1.25rem;color:#fff;position:relative;top:-.1rem}.form-option-list>*+*{margin-top:1.5rem;border-top:1px solid rgba(0,0,0,.05);padding-top:1.5rem}.icon-btn{padding:0;border:none;border-radius:.25rem;width:1.4rem;height:1.4rem;display:inline-flex;align-items:center;justify-content:center;transition:.15s ease;position:relative}.icon-btn[aria-label]:before{display:none;content:attr(aria-label);position:absolute;top:0;left:50%;transform:translate(-50%,calc(-100% - .5rem));background-color:rgba(62,65,76,.9);color:#fff;font-size:.6375rem;font-weight:700;line-height:1.1;letter-spacing:.2px;text-transform:uppercase;padding:.6em;border-radius:.25rem}.icon-btn[aria-label]:focus:before,.icon-btn[aria-label]:hover:before{display:inline-block}.icon-btn .icon{width:1rem;height:1rem;color:#fff}.icon-btn-primary{color:#fff;background-color:#1382f9;border-color:#1382f9}.icon-btn-primary.focus,.icon-btn-primary:focus,.icon-btn-primary:hover{color:#fff;background-color:#066fe0;border-color:#0569d4}.icon-btn-primary.focus,.icon-btn-primary:focus{box-shadow:0 0 0 .2rem rgba(54,149,250,.5)}.icon-btn-primary.disabled,.icon-btn-primary:disabled{color:#fff;background-color:#1382f9;border-color:#1382f9}.icon-btn-primary:not(:disabled):not(.disabled).active,.icon-btn-primary:not(:disabled):not(.disabled):active,.show>.icon-btn-primary.dropdown-toggle{color:#fff;background-color:#0569d4;border-color:#0563c7}.icon-btn-primary:not(:disabled):not(.disabled).active:focus,.icon-btn-primary:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(54,149,250,.5)}.icon-btn-secondary{color:#fff;background-color:#fc025a;border-color:#fc025a}.icon-btn-secondary.focus,.icon-btn-secondary:focus,.icon-btn-secondary:hover{color:#fff;background-color:#d6024c;border-color:#c90248}.icon-btn-secondary.focus,.icon-btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(252,40,115,.5)}.icon-btn-secondary.disabled,.icon-btn-secondary:disabled{color:#fff;background-color:#fc025a;border-color:#fc025a}.icon-btn-secondary:not(:disabled):not(.disabled).active,.icon-btn-secondary:not(:disabled):not(.disabled):active,.show>.icon-btn-secondary.dropdown-toggle{color:#fff;background-color:#c90248;border-color:#bd0143}.icon-btn-secondary:not(:disabled):not(.disabled).active:focus,.icon-btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(252,40,115,.5)}.icon-btn-success{color:#212529;background-color:#34db7c;border-color:#34db7c}.icon-btn-success.focus,.icon-btn-success:focus,.icon-btn-success:hover{color:#fff;background-color:#23c669;border-color:#21bb63}.icon-btn-success.focus,.icon-btn-success:focus{box-shadow:0 0 0 .2rem rgba(49,192,112,.5)}.icon-btn-success.disabled,.icon-btn-success:disabled{color:#212529;background-color:#34db7c;border-color:#34db7c}.icon-btn-success:not(:disabled):not(.disabled).active,.icon-btn-success:not(:disabled):not(.disabled):active,.show>.icon-btn-success.dropdown-toggle{color:#fff;background-color:#21bb63;border-color:#1fb05e}.icon-btn-success:not(:disabled):not(.disabled).active:focus,.icon-btn-success:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(49,192,112,.5)}.icon-btn-info{color:#fff;background-color:#3d98fa;border-color:#3d98fa}.icon-btn-info.focus,.icon-btn-info:focus,.icon-btn-info:hover{color:#fff;background-color:#1884f9;border-color:#0b7ef9}.icon-btn-info.focus,.icon-btn-info:focus{box-shadow:0 0 0 .2rem rgba(90,167,251,.5)}.icon-btn-info.disabled,.icon-btn-info:disabled{color:#fff;background-color:#3d98fa;border-color:#3d98fa}.icon-btn-info:not(:disabled):not(.disabled).active,.icon-btn-info:not(:disabled):not(.disabled):active,.show>.icon-btn-info.dropdown-toggle{color:#fff;background-color:#0b7ef9;border-color:#0677f1}.icon-btn-info:not(:disabled):not(.disabled).active:focus,.icon-btn-info:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(90,167,251,.5)}.icon-btn-warning{color:#212529;background-color:#e4cc21;border-color:#e4cc21}.icon-btn-warning.focus,.icon-btn-warning:focus,.icon-btn-warning:hover{color:#212529;background-color:#c7b118;border-color:#bba717}.icon-btn-warning.focus,.icon-btn-warning:focus{box-shadow:0 0 0 .2rem rgba(199,179,34,.5)}.icon-btn-warning.disabled,.icon-btn-warning:disabled{color:#212529;background-color:#e4cc21;border-color:#e4cc21}.icon-btn-warning:not(:disabled):not(.disabled).active,.icon-btn-warning:not(:disabled):not(.disabled):active,.show>.icon-btn-warning.dropdown-toggle{color:#212529;background-color:#bba717;border-color:#b09d15}.icon-btn-warning:not(:disabled):not(.disabled).active:focus,.icon-btn-warning:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(199,179,34,.5)}.icon-btn-danger{color:#fff;background-color:#dd4646;border-color:#dd4646}.icon-btn-danger.focus,.icon-btn-danger:focus,.icon-btn-danger:hover{color:#fff;background-color:#d62727;border-color:#cb2525}.icon-btn-danger.focus,.icon-btn-danger:focus{box-shadow:0 0 0 .2rem rgba(226,98,98,.5)}.icon-btn-danger.disabled,.icon-btn-danger:disabled{color:#fff;background-color:#dd4646;border-color:#dd4646}.icon-btn-danger:not(:disabled):not(.disabled).active,.icon-btn-danger:not(:disabled):not(.disabled):active,.show>.icon-btn-danger.dropdown-toggle{color:#fff;background-color:#cb2525;border-color:#c02323}.icon-btn-danger:not(:disabled):not(.disabled).active:focus,.icon-btn-danger:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(226,98,98,.5)}.icon-btn-light{color:#212529;background-color:#f5f5fc;border-color:#f5f5fc}.icon-btn-light.focus,.icon-btn-light:focus,.icon-btn-light:hover{color:#212529;background-color:#d8d8f3;border-color:#cecef0}.icon-btn-light.focus,.icon-btn-light:focus{box-shadow:0 0 0 .2rem rgba(213,214,220,.5)}.icon-btn-light.disabled,.icon-btn-light:disabled{color:#212529;background-color:#f5f5fc;border-color:#f5f5fc}.icon-btn-light:not(:disabled):not(.disabled).active,.icon-btn-light:not(:disabled):not(.disabled):active,.show>.icon-btn-light.dropdown-toggle{color:#212529;background-color:#cecef0;border-color:#c4c4ed}.icon-btn-light:not(:disabled):not(.disabled).active:focus,.icon-btn-light:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(213,214,220,.5)}.icon-btn-dark{color:#212529;background-color:#a8abb8;border-color:#a8abb8}.icon-btn-dark.focus,.icon-btn-dark:focus,.icon-btn-dark:hover{color:#212529;background-color:#9397a7;border-color:#8c90a1}.icon-btn-dark.focus,.icon-btn-dark:focus{box-shadow:0 0 0 .2rem rgba(148,151,163,.5)}.icon-btn-dark.disabled,.icon-btn-dark:disabled{color:#212529;background-color:#a8abb8;border-color:#a8abb8}.icon-btn-dark:not(:disabled):not(.disabled).active,.icon-btn-dark:not(:disabled):not(.disabled):active,.show>.icon-btn-dark.dropdown-toggle{color:#fff;background-color:#8c90a1;border-color:#85899b}.icon-btn-dark:not(:disabled):not(.disabled).active:focus,.icon-btn-dark:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(148,151,163,.5)}.app__header{width:calc(100% - 280px);position:fixed;top:0;right:0;left:280px;height:75px;z-index:10}@media (min-width:992px){.app__sidebar{width:280px;min-height:calc(100vh - 5rem);position:fixed;top:2.5rem;bottom:2.5rem;left:0;z-index:20}}@media (min-width:992px){.app__main{width:calc(100% - 280px);margin:0 0 0 280px}}.app__body{padding:1.5rem;max-width:1400px;margin:0 auto}@media (min-width:992px){.app__body{padding:2.5rem}}.app.has-modal-open--body .app__main,.app.has-modal-open--sidebar .app__main{position:relative;z-index:100}.app.has-modal-open--body .form__body{z-index:10}.app.has-modal-open--body .form__sidebar,.app.has-modal-open--sidebar .form__body{z-index:5}.app.has-modal-open--sidebar .form__sidebar{z-index:10}.app-toast-bar{position:fixed;right:2rem;bottom:2rem;z-index:10}.dropdown.more-actions{width:1.5rem}.dropdown.more-actions .icon{color:#a8abb8;width:1.5rem;height:1.5rem}.table-preview-image{width:2rem;height:2rem;border-radius:.25rem}.table-sort-btn{padding:0;border:none;background-color:transparent}.table-sort-btn svg{width:1.25rem;height:1.25rem;color:#a8abb8;position:relative;top:-.1rem}.table.vertical-align-top td,.table.vertical-align-top th{vertical-align:top}.modal{background-color:rgba(0,0,0,.7);display:block}.modal-body{display:flex}.modal-body .container-fluid>.form-row,.modal-body .container-lg>.form-row,.modal-body .container-md>.form-row,.modal-body .container-sm>.form-row,.modal-body .container-xl>.form-row{height:100%}.modal-full-screen{width:100%;min-width:calc(100% - 3.5rem);max-width:calc(100% - 3.5rem)}.modal-full-screen .modal-content{height:100%}.modal-help-text{color:#5a5e6d;font-style:italic}.ql-toolbar.ql-snow{border:1px solid #bdc5ce;border-bottom:0;border-radius:.25rem .25rem 0 0;padding:.5rem}.ql-container{height:auto;border-radius:0 0 .25rem .25rem;font-family:Poppins,sans-serif;padding:1rem}.ql-container .ql-editor{height:120px;padding:0}.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item.ql-selected,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar button.ql-active,.ql-snow .ql-toolbar button.ql-active,.ql-snow.ql-toolbar button:focus,.ql-snow .ql-toolbar button:focus,.ql-snow.ql-toolbar button:hover,.ql-snow .ql-toolbar button:hover{color:#1382f9}.uploader-item{background-color:#f5f5fc;display:flex;align-items:center;justify-self:center;padding:1.5rem;height:100%}.uploader-item:after{content:"";display:block;padding-bottom:100%}.uploader-item__progress{height:1rem;border-radius:.25rem;background:linear-gradient(45deg,#1382f9,#1322f9)}.media-item{position:relative;height:100%}.media-item.is-document{background-color:#f5f5fc;display:flex;align-items:center;justify-self:center;justify-content:center}.media-item.is-selected:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;box-shadow:inset 0 0 0 5px #1382f9}.media-item__caption{display:flex;flex-direction:column;align-items:center;text-align:center;padding:1rem;line-height:1.25;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;cursor:default}.media-item__caption .icon{width:2rem;height:2rem;margin-bottom:.5rem;color:rgba(0,0,0,.1)}.media-item img{width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.media-sidebar{padding:1.5rem 1.5rem 1.5rem 2rem;height:100%;position:relative;z-index:1;font-size:.9rem;color:#434651}.media-sidebar:before{content:"";position:absolute;top:-1rem;right:-1rem;bottom:-1rem;left:.5rem;z-index:-1;background-color:#f5f5fc}.media-sidebar>*+*{padding-top:2rem;border-top:1px dashed rgba(0,0,0,.1);margin-top:2rem}.media-sidebar__title{text-transform:uppercase;font-size:.9rem;margin:0 0 1rem}.media-sidebar__list{margin:0;padding:0;list-style:none}.media-sidebar__list>li+li{margin-top:.5rem}.media-sidebar__list li{line-height:1.25}.selected-media-item{position:relative}.selected-media-item:hover .selected-media-item__remove{opacity:1}.selected-media-item__remove{position:absolute;top:.5rem;right:.5rem;background-color:rgba(221,70,70,.8);padding:0;border:none;border-radius:.25rem;width:1.4rem;height:1.4rem;display:flex;align-items:center;justify-content:center;opacity:0;transition:.15s ease}.selected-media-item__remove:hover{background-color:#dd4646}.selected-media-item__remove .icon{width:1rem;height:1rem;color:#fff}.selected-media-item__document{background-color:#f5f5fc;display:flex;align-items:center;justify-self:center;justify-content:center;border-radius:.25rem}.selected-media-item__document:after{content:"";display:block;padding-bottom:100%}.selected-media-item__document .icon{width:2.5rem;height:2.5rem;margin-bottom:.5rem;color:rgba(0,0,0,.1)}.modal-content.has-active-dropzone:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:5;background-color:rgba(19,130,249,.35);border:5px dashed #1382f9;pointer-events:none}.modal-content.has-active-dropzone:after{content:attr(data-dropzone-text);position:absolute;top:0;right:0;bottom:0;left:0;z-index:10;display:flex;align-items:center;justify-content:center;font-size:1.4rem;color:#fff;font-weight:700;text-shadow:0 0 5px rgba(0,0,0,.2);pointer-events:none}.media-accordions>*+*{margin-top:1rem;border-top:1px solid #efefef;padding-top:1rem}.media-accordion__heading{display:flex;align-items:center;justify-content:space-between;cursor:pointer}.media-accordion__title{font-size:.9375rem;font-weight:400;margin:0}.media-accordion__image{height:1.5rem;width:1.5rem;border-radius:.25rem;margin-right:.3rem}.media-accordion__icon{height:1.5rem;width:1.5rem;margin-right:.3rem;color:#a8abb8}.media-accordion__content{display:none}.media-accordion__content.is-open{display:block}.tag{display:inline-flex;align-items:stretch;background-color:#fc025a;border-radius:.25rem;font-size:.875rem}.tag.is-small{font-size:.775rem}.tag__label{display:inline-block;font-weight:700;color:#fff;padding:.45em .75em;margin:0;line-height:1.35}.tag__remove{background-color:#c90248;color:#fff;padding:0 .5em;display:flex;align-items:center;border-radius:0 .25rem .25rem 0;border:none}.tag__remove:hover{background-color:#b0013f}.tag__remove svg{width:1.1em;height:1.1em}.activities-scroll-helper{max-height:18rem;overflow-y:auto}.activities>.activity:not(:last-child){padding-bottom:2rem}.activities>.activity:last-child .activity__icon-helper:before{display:none}.activity{display:flex;align-items:stretch}.activity__icon-helper{margin-right:1rem;position:relative;z-index:1}.activity__icon-helper:before{content:"";width:1px;background-color:#e9f3fe;position:absolute;top:0;bottom:-2rem;left:calc(50% - 1px);z-index:-1}.activity__icon{width:2.5rem;height:2.5rem;color:#1382f9;background-color:#e9f3fe;border-radius:.25rem;display:flex;align-items:center;justify-content:center}.activity__icon svg{width:1.25rem;height:1.25rem}.activity__content{width:calc(100% - 3.5rem)}.activity__title{color:#434651;margin:0 0 .3rem;font-size:1rem}.activity__title a{color:#3e414c}.activity__description{margin:0 0 .3rem}.activity__meta{color:#a8abb8;font-size:.8rem}.notification-card{background-color:#fff;border-radius:.25rem;box-shadow:0 5px 25px 0 rgba(42,51,83,.1),0 5px 10px rgba(0,0,0,.05);display:flex}.notification-card.is-primary .notification-card__icon{background-color:#1382f9}.notification-card__icon{width:4rem;color:#fff;background-color:#a8abb8;display:flex;align-items:center;justify-content:center;border-radius:.25rem 0 0 .25rem}.notification-card__icon svg{width:2rem;height:2rem}.notification-card__content{padding:1.5rem 2rem;width:calc(100% - 4rem)}.notification-card__title{font-size:1.2rem;color:#434651}.notification-card__description>*{margin:0}.notification-card__description>*+*{margin-top:.5rem}.quick-actions>*+*{border-top:1px solid #efefef}.quick-action{display:flex;align-items:center;color:#434651;font-size:1rem;padding:.5rem}.quick-action:focus,.quick-action:hover{background-color:rgba(19,130,249,.05);text-decoration:none}.quick-action>*{margin-right:1rem}.quick-action__icon{background-color:#0450a2;width:2rem;height:2rem;color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.25rem}.quick-action__icon svg{width:1rem;height:1rem}.app-header{padding:0 0 2rem;margin:0 0 2rem;border-bottom:1px solid rgba(0,0,0,.1);color:#434651}.app-header__title{font-size:1.45rem;margin:0;display:flex;align-items:center}.app-header__title .icon{color:rgba(0,0,0,.2);margin-right:.5rem;width:1.7rem;height:1.7rem}.app-header__breadcrumb{overflow-x:auto}.app-header__breadcrumb .breadcrumb{white-space:nowrap;flex-wrap:nowrap}.app-mobile-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:2rem}@media (min-width:992px){.app-mobile-header{display:none}}.app-mobile-header__logo{display:inline-block;display:flex;align-items:center}.app-mobile-header__logo img{height:20px;width:auto}.app-mobile-header__menu-toggle{border:none;padding:0;background-color:#1382f9;border-radius:.25rem;height:2.5rem;width:2.5rem;color:#fff}.app-mobile-header__menu-toggle .icon{height:1.5rem;width:1.5rem}.app-logo-wrapper{height:40px;display:flex;padding:0 2.5rem}.app-logo{display:inline-block;display:flex;align-items:center}.app-logo img{height:20px;width:auto}@media (max-width:991.98px){.app-sidebar{position:fixed;top:0;bottom:0;left:0;z-index:1100;min-width:15rem;max-width:25rem;background:linear-gradient(45deg,#f5f5fc,#fff);box-shadow:0 5px 25px 0 rgba(42,51,83,.1),0 5px 10px rgba(0,0,0,.05);padding-top:1.5rem;padding-bottom:1.5rem}.app-sidebar:not(.is-open){visibility:hidden}}.app-sidebar__inside{padding:0 2.5rem;margin:1.5rem 0;overflow-y:auto;min-height:300px;height:calc(100vh - 5rem - 100px)}@media (min-width:992px){.app-sidebar__inside{height:calc(100vh - 8rem - 100px)}}.app-sidebar__title{font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:#a8abb8;padding-top:.75rem;margin-bottom:.5rem}.app-sidebar__footer{height:60px;display:flex;align-items:center;justify-content:flex-start;padding:0 2.5rem}.app-sidebar-menu{padding:0;margin:0;list-style:none}.app-sidebar-menu-item .app-sidebar-submenu{display:none}.app-sidebar-menu-item.is-open{position:relative}.app-sidebar-menu-item.is-open:before{content:"";position:absolute;top:.25rem;bottom:0;left:-2.5rem;width:4px;background-color:#1382f9}.app-sidebar-menu-item.is-open .app-sidebar-submenu{display:block}.app-sidebar-menu-item.is-open .app-sidebar-menu-link{text-decoration:none;color:#434651}.app-sidebar-menu-item.is-open .app-sidebar-menu-link .app-sidebar-menu-link__icon{color:#1382f9}.app-sidebar-menu-link{display:flex;align-items:center;padding-top:.75rem;padding-bottom:.75rem;color:#434651;font-weight:600;font-size:.9375rem}.app-sidebar-menu-link.is-active,.app-sidebar-menu-link:focus,.app-sidebar-menu-link:hover{text-decoration:none;color:#434651}.app-sidebar-menu-link.is-active .app-sidebar-menu-link__icon,.app-sidebar-menu-link:focus .app-sidebar-menu-link__icon,.app-sidebar-menu-link:hover .app-sidebar-menu-link__icon{color:#1382f9}.app-sidebar-menu-link__icon{display:inline-flex;margin-right:.6rem;color:rgba(0,0,0,.2)}.app-sidebar-menu-link__icon svg{height:22px;width:22px}.app-sidebar-submenu{padding:0;margin:0 0 .5rem 1rem;list-style:none}.app-sidebar-submenu>*+*{margin-top:.2rem}.app-sidebar-submenu-link{padding:.3rem 1rem;display:block;border-radius:.25rem;color:#434651}.app-sidebar-submenu-link.is-active,.app-sidebar-submenu-link:hover{background:rgba(19,130,249,.15);color:#1382f9;text-decoration:none}.app-sidebar-submenu-link.is-active{font-weight:700}.loggedin-user{color:#434651;display:flex;align-items:center;padding:.5rem 0;background:transparent;border:none}.loggedin-user__welcome{margin-right:.3rem}.loggedin-user__name{font-weight:700;margin-right:.5rem}.loggedin-user__avatar{height:2rem;width:2rem;border-radius:.25rem}.simplebar-track.simplebar-vertical{width:6px;border-radius:4px}.simplebar-scrollbar:before{position:absolute;content:"";background:rgba(0,0,0,.1);border-radius:4px;left:0;right:0;opacity:0;transition:opacity .2s linear}*,:after,:before{box-sizing:inherit}::-moz-selection{background:#1382f9;color:#fff}::selection{background:#1382f9;color:#fff}a{color:#1382f9}a:active,a:focus,a:hover{color:#0569d4}body{font-family:Poppins,sans-serif;font-size:.9375rem;line-height:1.6;color:#3d3d3d;background-color:#f5f5fc;background:linear-gradient(45deg,#f5f5fc,#fff);background-attachment:fixed}h1,h2,h3,h4,h5,h6{font-weight:600;line-height:1.3;color:#3e414c}[v-cloak]{display:none} + */html{box-sizing:border-box;-ms-overflow-style:scrollbar}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:1rem;padding-left:1rem;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1260px}}.row{display:flex;flex-wrap:wrap;margin-right:-1rem;margin-left:-1rem}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{position:relative;width:100%;padding-right:1rem;padding-left:1rem}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.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;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;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;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;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%}}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.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}}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:2rem!important}.mt-5,.my-5{margin-top:2rem!important}.mr-5,.mx-5{margin-right:2rem!important}.mb-5,.my-5{margin-bottom:2rem!important}.ml-5,.mx-5{margin-left:2rem!important}.m-6{margin:3rem!important}.mt-6,.my-6{margin-top:3rem!important}.mr-6,.mx-6{margin-right:3rem!important}.mb-6,.my-6{margin-bottom:3rem!important}.ml-6,.mx-6{margin-left:3rem!important}.m-7{margin:4rem!important}.mt-7,.my-7{margin-top:4rem!important}.mr-7,.mx-7{margin-right:4rem!important}.mb-7,.my-7{margin-bottom:4rem!important}.ml-7,.mx-7{margin-left:4rem!important}.m-8{margin:5rem!important}.mt-8,.my-8{margin-top:5rem!important}.mr-8,.mx-8{margin-right:5rem!important}.mb-8,.my-8{margin-bottom:5rem!important}.ml-8,.mx-8{margin-left:5rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:2rem!important}.pt-5,.py-5{padding-top:2rem!important}.pr-5,.px-5{padding-right:2rem!important}.pb-5,.py-5{padding-bottom:2rem!important}.pl-5,.px-5{padding-left:2rem!important}.p-6{padding:3rem!important}.pt-6,.py-6{padding-top:3rem!important}.pr-6,.px-6{padding-right:3rem!important}.pb-6,.py-6{padding-bottom:3rem!important}.pl-6,.px-6{padding-left:3rem!important}.p-7{padding:4rem!important}.pt-7,.py-7{padding-top:4rem!important}.pr-7,.px-7{padding-right:4rem!important}.pb-7,.py-7{padding-bottom:4rem!important}.pl-7,.px-7{padding-left:4rem!important}.p-8{padding:5rem!important}.pt-8,.py-8{padding-top:5rem!important}.pr-8,.px-8{padding-right:5rem!important}.pb-8,.py-8{padding-bottom:5rem!important}.pl-8,.px-8{padding-left:5rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-2rem!important}.mt-n5,.my-n5{margin-top:-2rem!important}.mr-n5,.mx-n5{margin-right:-2rem!important}.mb-n5,.my-n5{margin-bottom:-2rem!important}.ml-n5,.mx-n5{margin-left:-2rem!important}.m-n6{margin:-3rem!important}.mt-n6,.my-n6{margin-top:-3rem!important}.mr-n6,.mx-n6{margin-right:-3rem!important}.mb-n6,.my-n6{margin-bottom:-3rem!important}.ml-n6,.mx-n6{margin-left:-3rem!important}.m-n7{margin:-4rem!important}.mt-n7,.my-n7{margin-top:-4rem!important}.mr-n7,.mx-n7{margin-right:-4rem!important}.mb-n7,.my-n7{margin-bottom:-4rem!important}.ml-n7,.mx-n7{margin-left:-4rem!important}.m-n8{margin:-5rem!important}.mt-n8,.my-n8{margin-top:-5rem!important}.mr-n8,.mx-n8{margin-right:-5rem!important}.mb-n8,.my-n8{margin-bottom:-5rem!important}.ml-n8,.mx-n8{margin-left:-5rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:2rem!important}.mt-sm-5,.my-sm-5{margin-top:2rem!important}.mr-sm-5,.mx-sm-5{margin-right:2rem!important}.mb-sm-5,.my-sm-5{margin-bottom:2rem!important}.ml-sm-5,.mx-sm-5{margin-left:2rem!important}.m-sm-6{margin:3rem!important}.mt-sm-6,.my-sm-6{margin-top:3rem!important}.mr-sm-6,.mx-sm-6{margin-right:3rem!important}.mb-sm-6,.my-sm-6{margin-bottom:3rem!important}.ml-sm-6,.mx-sm-6{margin-left:3rem!important}.m-sm-7{margin:4rem!important}.mt-sm-7,.my-sm-7{margin-top:4rem!important}.mr-sm-7,.mx-sm-7{margin-right:4rem!important}.mb-sm-7,.my-sm-7{margin-bottom:4rem!important}.ml-sm-7,.mx-sm-7{margin-left:4rem!important}.m-sm-8{margin:5rem!important}.mt-sm-8,.my-sm-8{margin-top:5rem!important}.mr-sm-8,.mx-sm-8{margin-right:5rem!important}.mb-sm-8,.my-sm-8{margin-bottom:5rem!important}.ml-sm-8,.mx-sm-8{margin-left:5rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:2rem!important}.pt-sm-5,.py-sm-5{padding-top:2rem!important}.pr-sm-5,.px-sm-5{padding-right:2rem!important}.pb-sm-5,.py-sm-5{padding-bottom:2rem!important}.pl-sm-5,.px-sm-5{padding-left:2rem!important}.p-sm-6{padding:3rem!important}.pt-sm-6,.py-sm-6{padding-top:3rem!important}.pr-sm-6,.px-sm-6{padding-right:3rem!important}.pb-sm-6,.py-sm-6{padding-bottom:3rem!important}.pl-sm-6,.px-sm-6{padding-left:3rem!important}.p-sm-7{padding:4rem!important}.pt-sm-7,.py-sm-7{padding-top:4rem!important}.pr-sm-7,.px-sm-7{padding-right:4rem!important}.pb-sm-7,.py-sm-7{padding-bottom:4rem!important}.pl-sm-7,.px-sm-7{padding-left:4rem!important}.p-sm-8{padding:5rem!important}.pt-sm-8,.py-sm-8{padding-top:5rem!important}.pr-sm-8,.px-sm-8{padding-right:5rem!important}.pb-sm-8,.py-sm-8{padding-bottom:5rem!important}.pl-sm-8,.px-sm-8{padding-left:5rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-2rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-2rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-2rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-2rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-2rem!important}.m-sm-n6{margin:-3rem!important}.mt-sm-n6,.my-sm-n6{margin-top:-3rem!important}.mr-sm-n6,.mx-sm-n6{margin-right:-3rem!important}.mb-sm-n6,.my-sm-n6{margin-bottom:-3rem!important}.ml-sm-n6,.mx-sm-n6{margin-left:-3rem!important}.m-sm-n7{margin:-4rem!important}.mt-sm-n7,.my-sm-n7{margin-top:-4rem!important}.mr-sm-n7,.mx-sm-n7{margin-right:-4rem!important}.mb-sm-n7,.my-sm-n7{margin-bottom:-4rem!important}.ml-sm-n7,.mx-sm-n7{margin-left:-4rem!important}.m-sm-n8{margin:-5rem!important}.mt-sm-n8,.my-sm-n8{margin-top:-5rem!important}.mr-sm-n8,.mx-sm-n8{margin-right:-5rem!important}.mb-sm-n8,.my-sm-n8{margin-bottom:-5rem!important}.ml-sm-n8,.mx-sm-n8{margin-left:-5rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:2rem!important}.mt-md-5,.my-md-5{margin-top:2rem!important}.mr-md-5,.mx-md-5{margin-right:2rem!important}.mb-md-5,.my-md-5{margin-bottom:2rem!important}.ml-md-5,.mx-md-5{margin-left:2rem!important}.m-md-6{margin:3rem!important}.mt-md-6,.my-md-6{margin-top:3rem!important}.mr-md-6,.mx-md-6{margin-right:3rem!important}.mb-md-6,.my-md-6{margin-bottom:3rem!important}.ml-md-6,.mx-md-6{margin-left:3rem!important}.m-md-7{margin:4rem!important}.mt-md-7,.my-md-7{margin-top:4rem!important}.mr-md-7,.mx-md-7{margin-right:4rem!important}.mb-md-7,.my-md-7{margin-bottom:4rem!important}.ml-md-7,.mx-md-7{margin-left:4rem!important}.m-md-8{margin:5rem!important}.mt-md-8,.my-md-8{margin-top:5rem!important}.mr-md-8,.mx-md-8{margin-right:5rem!important}.mb-md-8,.my-md-8{margin-bottom:5rem!important}.ml-md-8,.mx-md-8{margin-left:5rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:2rem!important}.pt-md-5,.py-md-5{padding-top:2rem!important}.pr-md-5,.px-md-5{padding-right:2rem!important}.pb-md-5,.py-md-5{padding-bottom:2rem!important}.pl-md-5,.px-md-5{padding-left:2rem!important}.p-md-6{padding:3rem!important}.pt-md-6,.py-md-6{padding-top:3rem!important}.pr-md-6,.px-md-6{padding-right:3rem!important}.pb-md-6,.py-md-6{padding-bottom:3rem!important}.pl-md-6,.px-md-6{padding-left:3rem!important}.p-md-7{padding:4rem!important}.pt-md-7,.py-md-7{padding-top:4rem!important}.pr-md-7,.px-md-7{padding-right:4rem!important}.pb-md-7,.py-md-7{padding-bottom:4rem!important}.pl-md-7,.px-md-7{padding-left:4rem!important}.p-md-8{padding:5rem!important}.pt-md-8,.py-md-8{padding-top:5rem!important}.pr-md-8,.px-md-8{padding-right:5rem!important}.pb-md-8,.py-md-8{padding-bottom:5rem!important}.pl-md-8,.px-md-8{padding-left:5rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-2rem!important}.mt-md-n5,.my-md-n5{margin-top:-2rem!important}.mr-md-n5,.mx-md-n5{margin-right:-2rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-2rem!important}.ml-md-n5,.mx-md-n5{margin-left:-2rem!important}.m-md-n6{margin:-3rem!important}.mt-md-n6,.my-md-n6{margin-top:-3rem!important}.mr-md-n6,.mx-md-n6{margin-right:-3rem!important}.mb-md-n6,.my-md-n6{margin-bottom:-3rem!important}.ml-md-n6,.mx-md-n6{margin-left:-3rem!important}.m-md-n7{margin:-4rem!important}.mt-md-n7,.my-md-n7{margin-top:-4rem!important}.mr-md-n7,.mx-md-n7{margin-right:-4rem!important}.mb-md-n7,.my-md-n7{margin-bottom:-4rem!important}.ml-md-n7,.mx-md-n7{margin-left:-4rem!important}.m-md-n8{margin:-5rem!important}.mt-md-n8,.my-md-n8{margin-top:-5rem!important}.mr-md-n8,.mx-md-n8{margin-right:-5rem!important}.mb-md-n8,.my-md-n8{margin-bottom:-5rem!important}.ml-md-n8,.mx-md-n8{margin-left:-5rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:2rem!important}.mt-lg-5,.my-lg-5{margin-top:2rem!important}.mr-lg-5,.mx-lg-5{margin-right:2rem!important}.mb-lg-5,.my-lg-5{margin-bottom:2rem!important}.ml-lg-5,.mx-lg-5{margin-left:2rem!important}.m-lg-6{margin:3rem!important}.mt-lg-6,.my-lg-6{margin-top:3rem!important}.mr-lg-6,.mx-lg-6{margin-right:3rem!important}.mb-lg-6,.my-lg-6{margin-bottom:3rem!important}.ml-lg-6,.mx-lg-6{margin-left:3rem!important}.m-lg-7{margin:4rem!important}.mt-lg-7,.my-lg-7{margin-top:4rem!important}.mr-lg-7,.mx-lg-7{margin-right:4rem!important}.mb-lg-7,.my-lg-7{margin-bottom:4rem!important}.ml-lg-7,.mx-lg-7{margin-left:4rem!important}.m-lg-8{margin:5rem!important}.mt-lg-8,.my-lg-8{margin-top:5rem!important}.mr-lg-8,.mx-lg-8{margin-right:5rem!important}.mb-lg-8,.my-lg-8{margin-bottom:5rem!important}.ml-lg-8,.mx-lg-8{margin-left:5rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:2rem!important}.pt-lg-5,.py-lg-5{padding-top:2rem!important}.pr-lg-5,.px-lg-5{padding-right:2rem!important}.pb-lg-5,.py-lg-5{padding-bottom:2rem!important}.pl-lg-5,.px-lg-5{padding-left:2rem!important}.p-lg-6{padding:3rem!important}.pt-lg-6,.py-lg-6{padding-top:3rem!important}.pr-lg-6,.px-lg-6{padding-right:3rem!important}.pb-lg-6,.py-lg-6{padding-bottom:3rem!important}.pl-lg-6,.px-lg-6{padding-left:3rem!important}.p-lg-7{padding:4rem!important}.pt-lg-7,.py-lg-7{padding-top:4rem!important}.pr-lg-7,.px-lg-7{padding-right:4rem!important}.pb-lg-7,.py-lg-7{padding-bottom:4rem!important}.pl-lg-7,.px-lg-7{padding-left:4rem!important}.p-lg-8{padding:5rem!important}.pt-lg-8,.py-lg-8{padding-top:5rem!important}.pr-lg-8,.px-lg-8{padding-right:5rem!important}.pb-lg-8,.py-lg-8{padding-bottom:5rem!important}.pl-lg-8,.px-lg-8{padding-left:5rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-2rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-2rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-2rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-2rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-2rem!important}.m-lg-n6{margin:-3rem!important}.mt-lg-n6,.my-lg-n6{margin-top:-3rem!important}.mr-lg-n6,.mx-lg-n6{margin-right:-3rem!important}.mb-lg-n6,.my-lg-n6{margin-bottom:-3rem!important}.ml-lg-n6,.mx-lg-n6{margin-left:-3rem!important}.m-lg-n7{margin:-4rem!important}.mt-lg-n7,.my-lg-n7{margin-top:-4rem!important}.mr-lg-n7,.mx-lg-n7{margin-right:-4rem!important}.mb-lg-n7,.my-lg-n7{margin-bottom:-4rem!important}.ml-lg-n7,.mx-lg-n7{margin-left:-4rem!important}.m-lg-n8{margin:-5rem!important}.mt-lg-n8,.my-lg-n8{margin-top:-5rem!important}.mr-lg-n8,.mx-lg-n8{margin-right:-5rem!important}.mb-lg-n8,.my-lg-n8{margin-bottom:-5rem!important}.ml-lg-n8,.mx-lg-n8{margin-left:-5rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:2rem!important}.mt-xl-5,.my-xl-5{margin-top:2rem!important}.mr-xl-5,.mx-xl-5{margin-right:2rem!important}.mb-xl-5,.my-xl-5{margin-bottom:2rem!important}.ml-xl-5,.mx-xl-5{margin-left:2rem!important}.m-xl-6{margin:3rem!important}.mt-xl-6,.my-xl-6{margin-top:3rem!important}.mr-xl-6,.mx-xl-6{margin-right:3rem!important}.mb-xl-6,.my-xl-6{margin-bottom:3rem!important}.ml-xl-6,.mx-xl-6{margin-left:3rem!important}.m-xl-7{margin:4rem!important}.mt-xl-7,.my-xl-7{margin-top:4rem!important}.mr-xl-7,.mx-xl-7{margin-right:4rem!important}.mb-xl-7,.my-xl-7{margin-bottom:4rem!important}.ml-xl-7,.mx-xl-7{margin-left:4rem!important}.m-xl-8{margin:5rem!important}.mt-xl-8,.my-xl-8{margin-top:5rem!important}.mr-xl-8,.mx-xl-8{margin-right:5rem!important}.mb-xl-8,.my-xl-8{margin-bottom:5rem!important}.ml-xl-8,.mx-xl-8{margin-left:5rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:2rem!important}.pt-xl-5,.py-xl-5{padding-top:2rem!important}.pr-xl-5,.px-xl-5{padding-right:2rem!important}.pb-xl-5,.py-xl-5{padding-bottom:2rem!important}.pl-xl-5,.px-xl-5{padding-left:2rem!important}.p-xl-6{padding:3rem!important}.pt-xl-6,.py-xl-6{padding-top:3rem!important}.pr-xl-6,.px-xl-6{padding-right:3rem!important}.pb-xl-6,.py-xl-6{padding-bottom:3rem!important}.pl-xl-6,.px-xl-6{padding-left:3rem!important}.p-xl-7{padding:4rem!important}.pt-xl-7,.py-xl-7{padding-top:4rem!important}.pr-xl-7,.px-xl-7{padding-right:4rem!important}.pb-xl-7,.py-xl-7{padding-bottom:4rem!important}.pl-xl-7,.px-xl-7{padding-left:4rem!important}.p-xl-8{padding:5rem!important}.pt-xl-8,.py-xl-8{padding-top:5rem!important}.pr-xl-8,.px-xl-8{padding-right:5rem!important}.pb-xl-8,.py-xl-8{padding-bottom:5rem!important}.pl-xl-8,.px-xl-8{padding-left:5rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-2rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-2rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-2rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-2rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-2rem!important}.m-xl-n6{margin:-3rem!important}.mt-xl-n6,.my-xl-n6{margin-top:-3rem!important}.mr-xl-n6,.mx-xl-n6{margin-right:-3rem!important}.mb-xl-n6,.my-xl-n6{margin-bottom:-3rem!important}.ml-xl-n6,.mx-xl-n6{margin-left:-3rem!important}.m-xl-n7{margin:-4rem!important}.mt-xl-n7,.my-xl-n7{margin-top:-4rem!important}.mr-xl-n7,.mx-xl-n7{margin-right:-4rem!important}.mb-xl-n7,.my-xl-n7{margin-bottom:-4rem!important}.ml-xl-n7,.mx-xl-n7{margin-left:-4rem!important}.m-xl-n8{margin:-5rem!important}.mt-xl-n8,.my-xl-n8{margin-top:-5rem!important}.mr-xl-n8,.mx-xl-n8{margin-right:-5rem!important}.mb-xl-n8,.my-xl-n8{margin-bottom:-5rem!important}.ml-xl-n8,.mx-xl-n8{margin-left:-5rem!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}}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#0a4481;background-color:#d0e6fe;border-color:#bddcfd}.alert-primary hr{border-top-color:#a4cffc}.alert-primary .alert-link{color:#062b52}.alert-secondary{color:#83012f;background-color:#feccde;border-color:#feb8d1}.alert-secondary hr{border-top-color:#fe9fc1}.alert-secondary .alert-link{color:#50011d}.alert-success{color:#1b7240;background-color:#d6f8e5;border-color:#c6f5da}.alert-success hr{border-top-color:#b0f1cc}.alert-success .alert-link{color:#114929}.alert-info{color:#204f82;background-color:#d8eafe;border-color:#c9e2fe}.alert-info hr{border-top-color:#b0d5fe}.alert-info .alert-link{color:#163659}.alert-warning{color:#776a11;background-color:#faf5d3;border-color:#f7f1c1}.alert-warning hr{border-top-color:#f4ecaa}.alert-warning .alert-link{color:#4a420b}.alert-danger{color:#732424;background-color:#f8dada;border-color:#f5cbcb}.alert-danger hr{border-top-color:#f1b6b6}.alert-danger .alert-link{color:#4c1818}.alert-light{color:#7f7f83;background-color:#fdfdfe;border-color:#fcfcfe}.alert-light hr{border-top-color:#e9e9f8}.alert-light .alert-link{color:#666669}.alert-dark{color:#575960;background-color:#eeeef1;border-color:#e7e7eb}.alert-dark hr{border-top-color:#d9d9df}.alert-dark .alert-link{color:#3f4045}.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:focus,a.badge:hover{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:#1382f9}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0569d4}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(19,130,249,.5)}.badge-secondary{color:#fff;background-color:#fc025a}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#c90248}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(252,2,90,.5)}.badge-success{color:#212529;background-color:#34db7c}a.badge-success:focus,a.badge-success:hover{color:#212529;background-color:#21bb63}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,219,124,.5)}.badge-info{color:#fff;background-color:#3d98fa}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#0b7ef9}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(61,152,250,.5)}.badge-warning{color:#212529;background-color:#e4cc21}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#bba717}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(228,204,33,.5)}.badge-danger{color:#fff;background-color:#dd4646}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#cb2525}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(221,70,70,.5)}.badge-light{color:#212529;background-color:#f5f5fc}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#cecef0}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(245,245,252,.5)}.badge-dark{color:#212529;background-color:#a8abb8}a.badge-dark:focus,a.badge-dark:hover{color:#212529;background-color:#8c90a1}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(168,171,184,.5)}.btn{display:inline-block;font-weight:600;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:.9375rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(19,130,249,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#1382f9;border-color:#1382f9}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{color:#fff;background-color:#066fe0;border-color:#0569d4}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(54,149,250,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#1382f9;border-color:#1382f9}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0569d4;border-color:#0563c7}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(54,149,250,.5)}.btn-secondary{color:#fff;background-color:#fc025a;border-color:#fc025a}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{color:#fff;background-color:#d6024c;border-color:#c90248}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(252,40,115,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#fc025a;border-color:#fc025a}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#c90248;border-color:#bd0143}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(252,40,115,.5)}.btn-success{color:#212529;background-color:#34db7c;border-color:#34db7c}.btn-success.focus,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#23c669;border-color:#21bb63}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(49,192,112,.5)}.btn-success.disabled,.btn-success:disabled{color:#212529;background-color:#34db7c;border-color:#34db7c}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#21bb63;border-color:#1fb05e}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(49,192,112,.5)}.btn-info{color:#fff;background-color:#3d98fa;border-color:#3d98fa}.btn-info.focus,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#1884f9;border-color:#0b7ef9}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(90,167,251,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#3d98fa;border-color:#3d98fa}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#0b7ef9;border-color:#0677f1}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(90,167,251,.5)}.btn-warning{color:#212529;background-color:#e4cc21;border-color:#e4cc21}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{color:#212529;background-color:#c7b118;border-color:#bba717}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(199,179,34,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#e4cc21;border-color:#e4cc21}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#bba717;border-color:#b09d15}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(199,179,34,.5)}.btn-danger{color:#fff;background-color:#dd4646;border-color:#dd4646}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#d62727;border-color:#cb2525}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(226,98,98,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dd4646;border-color:#dd4646}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#cb2525;border-color:#c02323}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(226,98,98,.5)}.btn-light{color:#212529;background-color:#f5f5fc;border-color:#f5f5fc}.btn-light.focus,.btn-light:focus,.btn-light:hover{color:#212529;background-color:#d8d8f3;border-color:#cecef0}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(213,214,220,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f5f5fc;border-color:#f5f5fc}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#cecef0;border-color:#c4c4ed}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(213,214,220,.5)}.btn-dark{color:#212529;background-color:#a8abb8;border-color:#a8abb8}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{color:#212529;background-color:#9397a7;border-color:#8c90a1}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(148,151,163,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#212529;background-color:#a8abb8;border-color:#a8abb8}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#8c90a1;border-color:#85899b}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(148,151,163,.5)}.btn-outline-primary{color:#1382f9;border-color:#1382f9}.btn-outline-primary:hover{color:#fff;background-color:#1382f9;border-color:#1382f9}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(19,130,249,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#1382f9;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#1382f9;border-color:#1382f9}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(19,130,249,.5)}.btn-outline-secondary{color:#fc025a;border-color:#fc025a}.btn-outline-secondary:hover{color:#fff;background-color:#fc025a;border-color:#fc025a}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(252,2,90,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#fc025a;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#fc025a;border-color:#fc025a}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(252,2,90,.5)}.btn-outline-success{color:#34db7c;border-color:#34db7c}.btn-outline-success:hover{color:#212529;background-color:#34db7c;border-color:#34db7c}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(52,219,124,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#34db7c;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#212529;background-color:#34db7c;border-color:#34db7c}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,219,124,.5)}.btn-outline-info{color:#3d98fa;border-color:#3d98fa}.btn-outline-info:hover{color:#fff;background-color:#3d98fa;border-color:#3d98fa}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(61,152,250,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#3d98fa;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#3d98fa;border-color:#3d98fa}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(61,152,250,.5)}.btn-outline-warning{color:#e4cc21;border-color:#e4cc21}.btn-outline-warning:hover{color:#212529;background-color:#e4cc21;border-color:#e4cc21}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(228,204,33,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#e4cc21;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#e4cc21;border-color:#e4cc21}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(228,204,33,.5)}.btn-outline-danger{color:#dd4646;border-color:#dd4646}.btn-outline-danger:hover{color:#fff;background-color:#dd4646;border-color:#dd4646}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(221,70,70,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dd4646;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dd4646;border-color:#dd4646}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(221,70,70,.5)}.btn-outline-light{color:#f5f5fc;border-color:#f5f5fc}.btn-outline-light:hover{color:#212529;background-color:#f5f5fc;border-color:#f5f5fc}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(245,245,252,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f5f5fc;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f5f5fc;border-color:#f5f5fc}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(245,245,252,.5)}.btn-outline-dark{color:#a8abb8;border-color:#a8abb8}.btn-outline-dark:hover{color:#212529;background-color:#a8abb8;border-color:#a8abb8}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(168,171,184,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#a8abb8;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#212529;background-color:#a8abb8;border-color:#a8abb8}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(168,171,184,.5)}.btn-link{font-weight:400;color:#1382f9;text-decoration:none}.btn-link:hover{color:#055dbb}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label:before{color:#fff;border-color:#1382f9;background-color:#1382f9}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(19,130,249,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#8fc4fc}.custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#c1defd;border-color:#c1defd}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label:before{pointer-events:none;background-color:#fff;border:1px solid #adb5bd}.custom-control-label:after,.custom-control-label:before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:""}.custom-control-label:after{background:50%/50% 50% no-repeat}.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;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='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:#1382f9;background-color:#1382f9}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(19,130,249,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(19,130,249,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(19,130,249,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label:after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;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}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(19,130,249,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 1.2rem + 2px);padding:.6rem 1.75rem .6rem .75rem;font-size:.9375rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #bdc5ce;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#8fc4fc;outline:0;box-shadow:0 0 0 .2rem rgba(19,130,249,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{position:relative;width:100%;height:calc(1.5em + 1.2rem + 2px)}.custom-file-input{z-index:2;margin:0;overflow:hidden;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#8fc4fc;box-shadow:0 0 0 .2rem rgba(19,130,249,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.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{left:0;z-index:1;height:calc(1.5em + 1.2rem + 2px);overflow:hidden;font-weight:400;background-color:#fff;border:1px solid #bdc5ce;border-radius:.25rem}.custom-file-label,.custom-file-label:after{position:absolute;top:0;right:0;padding:.6rem .75rem;line-height:1.5;color:#495057}.custom-file-label:after{bottom:0;z-index:3;display:block;height:calc(1.5em + 1.2rem);content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 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:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(19,130,249,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(19,130,249,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(19,130,249,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#1382f9;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#c1defd}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#1382f9;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#c1defd}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#1382f9;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#c1defd}.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,.custom-range::-ms-fill-upper{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.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}}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.6rem .75rem;margin-bottom:0;font-size:.9375rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #bdc5ce;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#1382f9}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.form-control{display:block;width:100%;height:calc(1.5em + 1.2rem + 2px);padding:.6rem .75rem;font-size:.9375rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #bdc5ce;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 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#8fc4fc;outline:0;box-shadow:0 0 0 .2rem rgba(19,130,249,.25)}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.6rem + 1px);padding-bottom:calc(.6rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.6rem 0;margin-bottom:0;font-size:.9375rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.5rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem}.form-row>.col,.form-row>[class*=col-]{padding-right:.5rem;padding-left:.5rem}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.5rem;font-size:80%;color:#34db7c}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#212529;background-color:rgba(52,219,124,.9);border-radius:.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:.5rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#34db7c;padding-right:calc(1.5em + 1.2rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2334DB7C' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .3rem) center;background-size:calc(.75em + .6rem) calc(.75em + .6rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#34db7c;box-shadow:0 0 0 .2rem rgba(52,219,124,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 1.2rem);background-position:top calc(.375em + .3rem) right calc(.375em + .3rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#34db7c;padding-right:calc(.75em + 2.65rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2334DB7C' 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") center right 1.75rem/calc(.75em + .6rem) calc(.75em + .6rem) no-repeat}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#34db7c;box-shadow:0 0 0 .2rem rgba(52,219,124,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#34db7c}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#34db7c}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#34db7c}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#5fe398;background-color:#5fe398}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(52,219,124,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#34db7c}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#34db7c;box-shadow:0 0 0 .2rem rgba(52,219,124,.25)}.invalid-feedback{display:none;width:100%;margin-top:.5rem;font-size:80%;color:#dd4646}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(221,70,70,.9);border-radius:.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:.5rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dd4646;padding-right:calc(1.5em + 1.2rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23DD4646'%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='%23DD4646' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .3rem) center;background-size:calc(.75em + .6rem) calc(.75em + .6rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dd4646;box-shadow:0 0 0 .2rem rgba(221,70,70,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 1.2rem);background-position:top calc(.375em + .3rem) right calc(.375em + .3rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dd4646;padding-right:calc(.75em + 2.65rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23DD4646'%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='%23DD4646' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .6rem) calc(.75em + .6rem) no-repeat}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dd4646;box-shadow:0 0 0 .2rem rgba(221,70,70,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dd4646}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dd4646}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#dd4646}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#e57171;background-color:#e57171}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(221,70,70,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dd4646}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dd4646;box-shadow:0 0 0 .2rem rgba(221,70,70,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{display:flex;align-items:center;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.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-footer,.modal-dialog-scrollable .modal-header{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:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.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:-webkit-min-content;height:-moz-min-content;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}}.pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#1382f9;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#055dbb;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(19,130,249,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#1382f9;border-color:#1382f9}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #f5f5fc}.table thead th{vertical-align:bottom;border-bottom:2px solid #f5f5fc}.table tbody+tbody{border-top:2px solid #f5f5fc}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #f5f5fc}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:#f5f5fc}.table-primary,.table-primary>td,.table-primary>th{background-color:#d0e6fe}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#aad2fd}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#b7d9fd}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#feccde}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#fea4c4}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#feb3ce}.table-success,.table-success>td,.table-success>th{background-color:#d6f8e5}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#b6f2d0}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#c0f4d7}.table-info,.table-info>td,.table-info>th{background-color:#d8eafe}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#b9dafd}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#bfddfd}.table-warning,.table-warning>td,.table-warning>th{background-color:#faf5d3}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#f5edaf}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#f7f0bc}.table-danger,.table-danger>td,.table-danger>th{background-color:#f8dada}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#f3bcbc}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f4c5c5}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfbfe}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#eeeef1}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#e0e1e5}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#e0e0e5}.table-active,.table-active>td,.table-active>th{background-color:#f5f5fc}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#e1e1f6}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#f5f5fc;border-color:#f5f5fc}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:hsla(0,0%,100%,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#1382f9;border-color:#1382f9}.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}}.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:#0a4481;background-color:#bddcfd}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#0a4481;background-color:#a4cffc}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0a4481;border-color:#0a4481}.list-group-item-secondary{color:#83012f;background-color:#feb8d1}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#83012f;background-color:#fe9fc1}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#83012f;border-color:#83012f}.list-group-item-success{color:#1b7240;background-color:#c6f5da}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#1b7240;background-color:#b0f1cc}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#1b7240;border-color:#1b7240}.list-group-item-info{color:#204f82;background-color:#c9e2fe}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#204f82;background-color:#b0d5fe}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#204f82;border-color:#204f82}.list-group-item-warning{color:#776a11;background-color:#f7f1c1}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#776a11;background-color:#f4ecaa}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#776a11;border-color:#776a11}.list-group-item-danger{color:#732424;background-color:#f5cbcb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#732424;background-color:#f1b6b6}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#732424;border-color:#732424}.list-group-item-light{color:#7f7f83;background-color:#fcfcfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#7f7f83;background-color:#e9e9f8}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#7f7f83;border-color:#7f7f83}.list-group-item-dark{color:#575960;background-color:#e7e7eb}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#575960;background-color:#d9d9df}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#575960;border-color:#575960}.toast{flex-basis:350px;max-width:350px;font-size:.875rem;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#1382f9!important}a.text-primary:focus,a.text-primary:hover{color:#055dbb!important}.text-secondary{color:#fc025a!important}a.text-secondary:focus,a.text-secondary:hover{color:#b0013f!important}.text-success{color:#34db7c!important}a.text-success:focus,a.text-success:hover{color:#1da558!important}.text-info{color:#3d98fa!important}a.text-info:focus,a.text-info:hover{color:#0671e5!important}.text-warning{color:#e4cc21!important}a.text-warning:focus,a.text-warning:hover{color:#a49314!important}.text-danger{color:#dd4646!important}a.text-danger:focus,a.text-danger:hover{color:#b52121!important}.text-light{color:#f5f5fc!important}a.text-light:focus,a.text-light:hover{color:#babaea!important}.text-dark{color:#a8abb8!important}a.text-dark:focus,a.text-dark:hover{color:#7e8296!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.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}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#1382f9!important}.border-secondary{border-color:#fc025a!important}.border-success{border-color:#34db7c!important}.border-info{border-color:#3d98fa!important}.border-warning{border-color:#e4cc21!important}.border-danger{border-color:#dd4646!important}.border-light{border-color:#f5f5fc!important}.border-dark{border-color:#a8abb8!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}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-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}.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{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.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}.screen-reader-response,.screen-reader-text,.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}.dropdown-menu{border:none;box-shadow:0 0 10px rgba(0,0,0,.1)}.table.has-filled-header thead th{border:none;background-color:#ededfa}.table.has-filled-header thead th th{border:none}.table.is-headless tr:first-of-type td,.table.is-headless tr:first-of-type th{border-top:none}.table td,.table th{vertical-align:middle}.table.table-hover .table-active.table-danger>td,.table.table-hover .table-active.table-danger>th{background-color:#f8dada}.table.table-hover .table-active.table-danger:hover>td,.table.table-hover .table-active.table-danger:hover>th{background-color:#f4c5c5}.form-text{color:#a8abb8;line-height:1.4}.form-group.is-checkbox-list>*+*{margin-top:.5rem}.form-group label{font-weight:500}.form-group-sm .form-control{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-group-lg .form-control{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.img-fluid{max-width:100%;height:auto}.sticky-helper{position:sticky;top:2rem}.breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin:0;list-style:none;font-weight:600}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{display:inline-block;padding-right:.5rem;color:rgba(0,0,0,.2);content:"/";font-size:.7rem}.breadcrumb-item.active,.breadcrumb-item a{color:#a8abb8}.card{background-color:#fff;border-radius:.25rem;box-shadow:0 5px 25px 0 rgba(42,51,83,.1),0 5px 10px rgba(0,0,0,.05)}.card__footer{padding:1.15rem 1.5rem;background-color:rgba(0,0,0,.02);border-radius:0 0 .25rem .25rem;line-height:1.35}.card__footer>:last-child{margin-bottom:0}.card__inner{padding:1.5rem}.card__header{padding:.2rem 1.5rem;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;border-bottom:1px solid rgba(0,0,0,.05);min-height:56px}.card__header>*{margin-top:.5rem;margin-bottom:.5rem}.card__title{font-size:1rem;color:#434651}.card.is-sticky{position:sticky;top:2rem}.card.has-full-height{height:100%}.card.is-quick-action .card__inner{padding:1.5rem}.card.is-widget{display:flex;flex-direction:column;align-items:space-between;justify-content:space-between}.card.is-widget .card__inner{padding:1rem;height:100%;display:flex;flex-direction:column;justify-content:space-around}.card.is-widget .card__inner-title{font-size:.8rem;text-transform:uppercase;font-weight:600;margin:0 0 .4rem;color:#434651}.card.is-widget .card__inner-data{color:#434651;font-weight:600;font-size:1.8rem;margin:0;line-height:1.2}.card.is-widget .card__footer{padding:.7rem 1rem;border-top:1px solid #f5f5fc;color:#434651}.card.is-primary{background-color:#1382f9}.card.is-primary .card__footer,.card.is-primary .card__inner-data,.card.is-primary .card__inner-title{color:#fff}.card.is-primary .card__footer{border-color:hsla(0,0%,100%,.1);background-color:#0569d4}.card.is-primary .card__footer a{color:#fff}.form-group-wrapper>*,.form-group-wrapper>div:not([class])>*{margin-top:0;margin-bottom:0}.form-group-wrapper>*+*,.form-group-wrapper>div:not([class])>*+*{margin-top:1rem}.tag-control{display:flex;flex-wrap:wrap;min-height:calc(1.5em + 1.2rem + 2px);width:100%;padding:.3rem;font-size:.9375rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #bdc5ce;border-radius:.25rem}.tag-control .tag{margin:.25rem}.tag-control .form-control-plaintext{padding:0;height:1.75rem;margin:.25rem}.input-group-append svg.icon{width:1.25rem;height:1.25rem;color:#fff;position:relative;top:-.1rem}.form-option-list>*+*{margin-top:1.5rem;border-top:1px solid rgba(0,0,0,.05);padding-top:1.5rem}.icon-btn{padding:0;border:none;border-radius:.25rem;width:1.4rem;height:1.4rem;display:inline-flex;align-items:center;justify-content:center;transition:.15s ease;position:relative}.icon-btn[aria-label]:before{display:none;content:attr(aria-label);position:absolute;top:0;left:50%;transform:translate(-50%,calc(-100% - .5rem));background-color:rgba(62,65,76,.9);color:#fff;font-size:.6375rem;font-weight:700;line-height:1.1;letter-spacing:.2px;text-transform:uppercase;padding:.6em;border-radius:.25rem}.icon-btn[aria-label]:focus:before,.icon-btn[aria-label]:hover:before{display:inline-block}.icon-btn .icon{width:1rem;height:1rem;color:#fff}.icon-btn-primary{color:#fff;background-color:#1382f9;border-color:#1382f9}.icon-btn-primary.focus,.icon-btn-primary:focus,.icon-btn-primary:hover{color:#fff;background-color:#066fe0;border-color:#0569d4}.icon-btn-primary.focus,.icon-btn-primary:focus{box-shadow:0 0 0 .2rem rgba(54,149,250,.5)}.icon-btn-primary.disabled,.icon-btn-primary:disabled{color:#fff;background-color:#1382f9;border-color:#1382f9}.icon-btn-primary:not(:disabled):not(.disabled).active,.icon-btn-primary:not(:disabled):not(.disabled):active,.show>.icon-btn-primary.dropdown-toggle{color:#fff;background-color:#0569d4;border-color:#0563c7}.icon-btn-primary:not(:disabled):not(.disabled).active:focus,.icon-btn-primary:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(54,149,250,.5)}.icon-btn-secondary{color:#fff;background-color:#fc025a;border-color:#fc025a}.icon-btn-secondary.focus,.icon-btn-secondary:focus,.icon-btn-secondary:hover{color:#fff;background-color:#d6024c;border-color:#c90248}.icon-btn-secondary.focus,.icon-btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(252,40,115,.5)}.icon-btn-secondary.disabled,.icon-btn-secondary:disabled{color:#fff;background-color:#fc025a;border-color:#fc025a}.icon-btn-secondary:not(:disabled):not(.disabled).active,.icon-btn-secondary:not(:disabled):not(.disabled):active,.show>.icon-btn-secondary.dropdown-toggle{color:#fff;background-color:#c90248;border-color:#bd0143}.icon-btn-secondary:not(:disabled):not(.disabled).active:focus,.icon-btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(252,40,115,.5)}.icon-btn-success{color:#212529;background-color:#34db7c;border-color:#34db7c}.icon-btn-success.focus,.icon-btn-success:focus,.icon-btn-success:hover{color:#fff;background-color:#23c669;border-color:#21bb63}.icon-btn-success.focus,.icon-btn-success:focus{box-shadow:0 0 0 .2rem rgba(49,192,112,.5)}.icon-btn-success.disabled,.icon-btn-success:disabled{color:#212529;background-color:#34db7c;border-color:#34db7c}.icon-btn-success:not(:disabled):not(.disabled).active,.icon-btn-success:not(:disabled):not(.disabled):active,.show>.icon-btn-success.dropdown-toggle{color:#fff;background-color:#21bb63;border-color:#1fb05e}.icon-btn-success:not(:disabled):not(.disabled).active:focus,.icon-btn-success:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(49,192,112,.5)}.icon-btn-info{color:#fff;background-color:#3d98fa;border-color:#3d98fa}.icon-btn-info.focus,.icon-btn-info:focus,.icon-btn-info:hover{color:#fff;background-color:#1884f9;border-color:#0b7ef9}.icon-btn-info.focus,.icon-btn-info:focus{box-shadow:0 0 0 .2rem rgba(90,167,251,.5)}.icon-btn-info.disabled,.icon-btn-info:disabled{color:#fff;background-color:#3d98fa;border-color:#3d98fa}.icon-btn-info:not(:disabled):not(.disabled).active,.icon-btn-info:not(:disabled):not(.disabled):active,.show>.icon-btn-info.dropdown-toggle{color:#fff;background-color:#0b7ef9;border-color:#0677f1}.icon-btn-info:not(:disabled):not(.disabled).active:focus,.icon-btn-info:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(90,167,251,.5)}.icon-btn-warning{color:#212529;background-color:#e4cc21;border-color:#e4cc21}.icon-btn-warning.focus,.icon-btn-warning:focus,.icon-btn-warning:hover{color:#212529;background-color:#c7b118;border-color:#bba717}.icon-btn-warning.focus,.icon-btn-warning:focus{box-shadow:0 0 0 .2rem rgba(199,179,34,.5)}.icon-btn-warning.disabled,.icon-btn-warning:disabled{color:#212529;background-color:#e4cc21;border-color:#e4cc21}.icon-btn-warning:not(:disabled):not(.disabled).active,.icon-btn-warning:not(:disabled):not(.disabled):active,.show>.icon-btn-warning.dropdown-toggle{color:#212529;background-color:#bba717;border-color:#b09d15}.icon-btn-warning:not(:disabled):not(.disabled).active:focus,.icon-btn-warning:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(199,179,34,.5)}.icon-btn-danger{color:#fff;background-color:#dd4646;border-color:#dd4646}.icon-btn-danger.focus,.icon-btn-danger:focus,.icon-btn-danger:hover{color:#fff;background-color:#d62727;border-color:#cb2525}.icon-btn-danger.focus,.icon-btn-danger:focus{box-shadow:0 0 0 .2rem rgba(226,98,98,.5)}.icon-btn-danger.disabled,.icon-btn-danger:disabled{color:#fff;background-color:#dd4646;border-color:#dd4646}.icon-btn-danger:not(:disabled):not(.disabled).active,.icon-btn-danger:not(:disabled):not(.disabled):active,.show>.icon-btn-danger.dropdown-toggle{color:#fff;background-color:#cb2525;border-color:#c02323}.icon-btn-danger:not(:disabled):not(.disabled).active:focus,.icon-btn-danger:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(226,98,98,.5)}.icon-btn-light{color:#212529;background-color:#f5f5fc;border-color:#f5f5fc}.icon-btn-light.focus,.icon-btn-light:focus,.icon-btn-light:hover{color:#212529;background-color:#d8d8f3;border-color:#cecef0}.icon-btn-light.focus,.icon-btn-light:focus{box-shadow:0 0 0 .2rem rgba(213,214,220,.5)}.icon-btn-light.disabled,.icon-btn-light:disabled{color:#212529;background-color:#f5f5fc;border-color:#f5f5fc}.icon-btn-light:not(:disabled):not(.disabled).active,.icon-btn-light:not(:disabled):not(.disabled):active,.show>.icon-btn-light.dropdown-toggle{color:#212529;background-color:#cecef0;border-color:#c4c4ed}.icon-btn-light:not(:disabled):not(.disabled).active:focus,.icon-btn-light:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(213,214,220,.5)}.icon-btn-dark{color:#212529;background-color:#a8abb8;border-color:#a8abb8}.icon-btn-dark.focus,.icon-btn-dark:focus,.icon-btn-dark:hover{color:#212529;background-color:#9397a7;border-color:#8c90a1}.icon-btn-dark.focus,.icon-btn-dark:focus{box-shadow:0 0 0 .2rem rgba(148,151,163,.5)}.icon-btn-dark.disabled,.icon-btn-dark:disabled{color:#212529;background-color:#a8abb8;border-color:#a8abb8}.icon-btn-dark:not(:disabled):not(.disabled).active,.icon-btn-dark:not(:disabled):not(.disabled):active,.show>.icon-btn-dark.dropdown-toggle{color:#fff;background-color:#8c90a1;border-color:#85899b}.icon-btn-dark:not(:disabled):not(.disabled).active:focus,.icon-btn-dark:not(:disabled):not(.disabled):active:focus,.show>.icon-btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(148,151,163,.5)}.app__header{width:calc(100% - 280px);position:fixed;top:0;right:0;left:280px;height:75px;z-index:10}@media (min-width:992px){.app__sidebar{width:280px;min-height:calc(100vh - 5rem);position:fixed;top:2.5rem;bottom:2.5rem;left:0;z-index:20}}@media (min-width:992px){.app__main{width:calc(100% - 280px);margin:0 0 0 280px}}.app__body{padding:1.5rem;max-width:1400px;margin:0 auto}@media (min-width:992px){.app__body{padding:2.5rem}}.app.has-modal-open--body .app__main,.app.has-modal-open--sidebar .app__main{position:relative;z-index:100}.app.has-modal-open--body .form__body{z-index:10}.app.has-modal-open--body .form__sidebar,.app.has-modal-open--sidebar .form__body{z-index:5}.app.has-modal-open--sidebar .form__sidebar{z-index:10}.app-toast-bar{position:fixed;right:2rem;bottom:2rem;z-index:10}.dropdown.more-actions{width:1.5rem}.dropdown.more-actions .icon{color:#a8abb8;width:1.5rem;height:1.5rem}.table-preview-image{width:2rem;height:2rem;border-radius:.25rem}.table-sort-btn{padding:0;border:none;background-color:transparent}.table-sort-btn svg{width:1.25rem;height:1.25rem;color:#a8abb8;position:relative;top:-.1rem}.table.vertical-align-top td,.table.vertical-align-top th{vertical-align:top}.modal{background-color:rgba(0,0,0,.7);display:block}.modal-body{display:flex}.modal-body .container-fluid>.form-row,.modal-body .container-lg>.form-row,.modal-body .container-md>.form-row,.modal-body .container-sm>.form-row,.modal-body .container-xl>.form-row{height:100%}.modal-full-screen{width:100%;min-width:calc(100% - 3.5rem);max-width:calc(100% - 3.5rem)}.modal-full-screen .modal-content{height:100%}.modal-help-text{color:#5a5e6d;font-style:italic}.ql-toolbar.ql-snow{border:1px solid #bdc5ce;border-bottom:0;border-radius:.25rem .25rem 0 0;padding:.5rem}.ql-container{height:auto;border-radius:0 0 .25rem .25rem;font-family:Poppins,sans-serif;padding:1rem}.ql-container .ql-editor{height:120px;padding:0}.ql-snow .ql-picker-label{display:inline-flex}.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item.ql-selected,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar button.ql-active,.ql-snow .ql-toolbar button.ql-active,.ql-snow.ql-toolbar button:focus,.ql-snow .ql-toolbar button:focus,.ql-snow.ql-toolbar button:hover,.ql-snow .ql-toolbar button:hover{color:#1382f9}.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke-miter{stroke:#1382f9}.uploader-item{background-color:#f5f5fc;display:flex;align-items:center;justify-self:center;padding:1.5rem;height:100%}.uploader-item:after{content:"";display:block;padding-bottom:100%}.uploader-item__progress{height:1rem;border-radius:.25rem;background:linear-gradient(45deg,#1382f9,#1322f9)}.media-item{position:relative;height:100%}.media-item.is-document{background-color:#f5f5fc;display:flex;align-items:center;justify-self:center;justify-content:center}.media-item.is-selected:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;box-shadow:inset 0 0 0 5px #1382f9}.media-item__caption{display:flex;flex-direction:column;align-items:center;text-align:center;padding:1rem;line-height:1.25;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;cursor:default}.media-item__caption .icon{width:2rem;height:2rem;margin-bottom:.5rem;color:rgba(0,0,0,.1)}.media-item img{width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.media-sidebar{padding:1.5rem 1.5rem 1.5rem 2rem;height:100%;position:relative;z-index:1;font-size:.9rem;color:#434651}.media-sidebar:before{content:"";position:absolute;top:-1rem;right:-1rem;bottom:-1rem;left:.5rem;z-index:-1;background-color:#f5f5fc}.media-sidebar>*+*{padding-top:2rem;border-top:1px dashed rgba(0,0,0,.1);margin-top:2rem}.media-sidebar__title{text-transform:uppercase;font-size:.9rem;margin:0 0 1rem}.media-sidebar__list{margin:0;padding:0;list-style:none}.media-sidebar__list>li+li{margin-top:.5rem}.media-sidebar__list li{line-height:1.25}.selected-media-item{position:relative}.selected-media-item:hover .selected-media-item__remove{opacity:1}.selected-media-item__remove{position:absolute;top:.5rem;right:.5rem;background-color:rgba(221,70,70,.8);padding:0;border:none;border-radius:.25rem;width:1.4rem;height:1.4rem;display:flex;align-items:center;justify-content:center;opacity:0;transition:.15s ease}.selected-media-item__remove:hover{background-color:#dd4646}.selected-media-item__remove .icon{width:1rem;height:1rem;color:#fff}.selected-media-item__document{background-color:#f5f5fc;display:flex;align-items:center;justify-self:center;justify-content:center;border-radius:.25rem}.selected-media-item__document:after{content:"";display:block;padding-bottom:100%}.selected-media-item__document .icon{width:2.5rem;height:2.5rem;margin-bottom:.5rem;color:rgba(0,0,0,.1)}.modal-content.has-active-dropzone:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:5;background-color:rgba(19,130,249,.35);border:5px dashed #1382f9;pointer-events:none}.modal-content.has-active-dropzone:after{content:attr(data-dropzone-text);position:absolute;top:0;right:0;bottom:0;left:0;z-index:10;display:flex;align-items:center;justify-content:center;font-size:1.4rem;color:#fff;font-weight:700;text-shadow:0 0 5px rgba(0,0,0,.2);pointer-events:none}.media-accordions>*+*{margin-top:1rem;border-top:1px solid #efefef;padding-top:1rem}.media-accordion__heading{display:flex;align-items:center;justify-content:space-between;cursor:pointer}.media-accordion__title{font-size:.9375rem;font-weight:400;margin:0}.media-accordion__image{height:1.5rem;width:1.5rem;border-radius:.25rem;margin-right:.3rem}.media-accordion__icon{height:1.5rem;width:1.5rem;margin-right:.3rem;color:#a8abb8}.media-accordion__content{display:none}.media-accordion__content.is-open{display:block}.tag{display:inline-flex;align-items:stretch;background-color:#fc025a;border-radius:.25rem;font-size:.875rem}.tag.is-small{font-size:.775rem}.tag__label{display:inline-block;font-weight:700;color:#fff;padding:.45em .75em;margin:0;line-height:1.35}.tag__remove{background-color:#c90248;color:#fff;padding:0 .5em;display:flex;align-items:center;border-radius:0 .25rem .25rem 0;border:none}.tag__remove:hover{background-color:#b0013f}.tag__remove svg{width:1.1em;height:1.1em}.activities-scroll-helper{max-height:18rem;overflow-y:auto}.activities>.activity:not(:last-child){padding-bottom:2rem}.activities>.activity:last-child .activity__icon-helper:before{display:none}.activity{display:flex;align-items:stretch}.activity__icon-helper{margin-right:1rem;position:relative;z-index:1}.activity__icon-helper:before{content:"";width:1px;background-color:#e9f3fe;position:absolute;top:0;bottom:-2rem;left:calc(50% - 1px);z-index:-1}.activity__icon{width:2.5rem;height:2.5rem;color:#1382f9;background-color:#e9f3fe;border-radius:.25rem;display:flex;align-items:center;justify-content:center}.activity__icon svg{width:1.25rem;height:1.25rem}.activity__content{width:calc(100% - 3.5rem)}.activity__title{color:#434651;margin:0 0 .3rem;font-size:1rem}.activity__title a{color:#3e414c}.activity__description{margin:0 0 .3rem}.activity__meta{color:#a8abb8;font-size:.8rem}.notification-card{background-color:#fff;border-radius:.25rem;box-shadow:0 5px 25px 0 rgba(42,51,83,.1),0 5px 10px rgba(0,0,0,.05);display:flex}.notification-card.is-primary .notification-card__icon{background-color:#1382f9}.notification-card__icon{width:4rem;color:#fff;background-color:#a8abb8;display:flex;align-items:center;justify-content:center;border-radius:.25rem 0 0 .25rem}.notification-card__icon svg{width:2rem;height:2rem}.notification-card__content{padding:1.5rem 2rem;width:calc(100% - 4rem)}.notification-card__title{font-size:1.2rem;color:#434651}.notification-card__description>*{margin:0}.notification-card__description>*+*{margin-top:.5rem}.quick-actions>*+*{border-top:1px solid #efefef}.quick-action{display:flex;align-items:center;color:#434651;font-size:1rem;padding:.5rem}.quick-action:focus,.quick-action:hover{background-color:rgba(19,130,249,.05);text-decoration:none}.quick-action>*{margin-right:1rem}.quick-action__icon{background-color:#0450a2;width:2rem;height:2rem;color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.25rem}.quick-action__icon svg{width:1rem;height:1rem}.app-header{padding:0 0 2rem;margin:0 0 2rem;border-bottom:1px solid rgba(0,0,0,.1);color:#434651}.app-header__title{font-size:1.45rem;margin:0;display:flex;align-items:center}.app-header__title .icon{color:rgba(0,0,0,.2);margin-right:.5rem;width:1.7rem;height:1.7rem}.app-header__breadcrumb{overflow-x:auto}.app-header__breadcrumb .breadcrumb{white-space:nowrap;flex-wrap:nowrap}.app-mobile-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:2rem}@media (min-width:992px){.app-mobile-header{display:none}}.app-mobile-header__logo{display:inline-block;display:flex;align-items:center}.app-mobile-header__logo img{height:20px;width:auto}.app-mobile-header__menu-toggle{border:none;padding:0;background-color:#1382f9;border-radius:.25rem;height:2.5rem;width:2.5rem;color:#fff}.app-mobile-header__menu-toggle .icon{height:1.5rem;width:1.5rem}.app-logo-wrapper{height:40px;display:flex;padding:0 2.5rem}.app-logo{display:inline-block;display:flex;align-items:center}.app-logo img{height:20px;width:auto}@media (max-width:991.98px){.app-sidebar{position:fixed;top:0;bottom:0;left:0;z-index:1100;min-width:15rem;max-width:25rem;background:linear-gradient(45deg,#f5f5fc,#fff);box-shadow:0 5px 25px 0 rgba(42,51,83,.1),0 5px 10px rgba(0,0,0,.05);padding-top:1.5rem;padding-bottom:1.5rem}.app-sidebar:not(.is-open){visibility:hidden}}.app-sidebar__inside{padding:0 2.5rem;margin:1.5rem 0;overflow-y:auto;min-height:300px;height:calc(100vh - 5rem - 100px)}@media (min-width:992px){.app-sidebar__inside{height:calc(100vh - 8rem - 100px)}}.app-sidebar__title{font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:#a8abb8;padding-top:.75rem;margin-bottom:.5rem}.app-sidebar__footer{height:60px;display:flex;align-items:center;justify-content:flex-start;padding:0 2.5rem}.app-sidebar-menu{padding:0;margin:0;list-style:none}.app-sidebar-menu-item .app-sidebar-submenu{display:none}.app-sidebar-menu-item.is-open{position:relative}.app-sidebar-menu-item.is-open:before{content:"";position:absolute;top:.25rem;bottom:0;left:-2.5rem;width:4px;background-color:#1382f9}.app-sidebar-menu-item.is-open .app-sidebar-submenu{display:block}.app-sidebar-menu-item.is-open .app-sidebar-menu-link{text-decoration:none;color:#434651}.app-sidebar-menu-item.is-open .app-sidebar-menu-link .app-sidebar-menu-link__icon{color:#1382f9}.app-sidebar-menu-link{display:flex;align-items:center;padding-top:.75rem;padding-bottom:.75rem;color:#434651;font-weight:600;font-size:.9375rem}.app-sidebar-menu-link.is-active,.app-sidebar-menu-link:focus,.app-sidebar-menu-link:hover{text-decoration:none;color:#434651}.app-sidebar-menu-link.is-active .app-sidebar-menu-link__icon,.app-sidebar-menu-link:focus .app-sidebar-menu-link__icon,.app-sidebar-menu-link:hover .app-sidebar-menu-link__icon{color:#1382f9}.app-sidebar-menu-link__icon{display:inline-flex;margin-right:.6rem;color:rgba(0,0,0,.2)}.app-sidebar-menu-link__icon svg{height:22px;width:22px}.app-sidebar-submenu{padding:0;margin:0 0 .5rem 1rem;list-style:none}.app-sidebar-submenu>*+*{margin-top:.2rem}.app-sidebar-submenu-link{padding:.3rem 1rem;display:block;border-radius:.25rem;color:#434651}.app-sidebar-submenu-link.is-active,.app-sidebar-submenu-link:hover{background:rgba(19,130,249,.15);color:#1382f9;text-decoration:none}.app-sidebar-submenu-link.is-active{font-weight:700}.loggedin-user{color:#434651;display:flex;align-items:center;padding:.5rem 0;background:transparent;border:none}.loggedin-user__welcome{margin-right:.3rem}.loggedin-user__name{font-weight:700;margin-right:.5rem}.loggedin-user__avatar{height:2rem;width:2rem;border-radius:.25rem}.simplebar-track.simplebar-vertical{width:6px;border-radius:4px}.simplebar-scrollbar:before{position:absolute;content:"";background:rgba(0,0,0,.1);border-radius:4px;left:0;right:0;opacity:0;transition:opacity .2s linear}*,:after,:before{box-sizing:inherit}::-moz-selection{background:#1382f9;color:#fff}::selection{background:#1382f9;color:#fff}a{color:#1382f9}a:active,a:focus,a:hover{color:#0569d4}body{font-family:Poppins,sans-serif;font-size:.9375rem;line-height:1.6;color:#3d3d3d;background-color:#f5f5fc;background:linear-gradient(45deg,#f5f5fc,#fff);background-attachment:fixed}h1,h2,h3,h4,h5,h6{font-weight:600;line-height:1.3;color:#3e414c}[v-cloak]{display:none} /*# sourceMappingURL=app.css.map*/ \ No newline at end of file diff --git a/public/app.css.map b/public/app.css.map index f925e6e8..26b7a714 100644 --- a/public/app.css.map +++ b/public/app.css.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///./node_modules/simplebar/dist/simplebar.css","webpack:///./node_modules/quill/dist/quill.snow.css","webpack:///./node_modules/chart.js/dist/Chart.min.css","webpack:///./node_modules/bootstrap/scss/bootstrap-reboot.scss","webpack:///./node_modules/bootstrap/scss/_reboot.scss","webpack:///./resources/sass/app.scss","webpack:///./node_modules/bootstrap/scss/_variables.scss","webpack:///./node_modules/bootstrap/scss/vendor/_rfs.scss","webpack:///./node_modules/bootstrap/scss/mixins/_hover.scss","webpack:///./node_modules/bootstrap/scss/bootstrap-grid.scss","webpack:///./node_modules/bootstrap/scss/_grid.scss","webpack:///./node_modules/bootstrap/scss/mixins/_grid.scss","webpack:///./node_modules/bootstrap/scss/mixins/_breakpoints.scss","webpack:///./node_modules/bootstrap/scss/mixins/_grid-framework.scss","webpack:///./node_modules/bootstrap/scss/utilities/_display.scss","webpack:///./node_modules/bootstrap/scss/utilities/_flex.scss","webpack:///./node_modules/bootstrap/scss/utilities/_spacing.scss","webpack:///./node_modules/bootstrap/scss/_alert.scss","webpack:///./node_modules/bootstrap/scss/mixins/_border-radius.scss","webpack:///./node_modules/bootstrap/scss/mixins/_alert.scss","webpack:///./node_modules/bootstrap/scss/mixins/_gradients.scss","webpack:///./node_modules/bootstrap/scss/_badge.scss","webpack:///./node_modules/bootstrap/scss/mixins/_transition.scss","webpack:///./node_modules/bootstrap/scss/mixins/_badge.scss","webpack:///./node_modules/bootstrap/scss/_buttons.scss","webpack:///./resources/sass/partials/_bootstrap-variables.scss","webpack:///./node_modules/bootstrap/scss/mixins/_buttons.scss","webpack:///./node_modules/bootstrap/scss/_close.scss","webpack:///./node_modules/bootstrap/scss/_custom-forms.scss","webpack:///./node_modules/bootstrap/scss/_input-group.scss","webpack:///./node_modules/bootstrap/scss/_dropdown.scss","webpack:///./node_modules/bootstrap/scss/mixins/_caret.scss","webpack:///./node_modules/bootstrap/scss/mixins/_nav-divider.scss","webpack:///./node_modules/bootstrap/scss/_forms.scss","webpack:///./node_modules/bootstrap/scss/mixins/_forms.scss","webpack:///./node_modules/bootstrap/scss/_modal.scss","webpack:///./node_modules/bootstrap/scss/_pagination.scss","webpack:///./node_modules/bootstrap/scss/mixins/_lists.scss","webpack:///./node_modules/bootstrap/scss/mixins/_pagination.scss","webpack:///./node_modules/bootstrap/scss/_tables.scss","webpack:///./node_modules/bootstrap/scss/mixins/_table-row.scss","webpack:///./node_modules/bootstrap/scss/_list-group.scss","webpack:///./node_modules/bootstrap/scss/mixins/_list-group.scss","webpack:///./node_modules/bootstrap/scss/_toasts.scss","webpack:///./node_modules/bootstrap/scss/utilities/_text.scss","webpack:///./node_modules/bootstrap/scss/mixins/_text-truncate.scss","webpack:///./node_modules/bootstrap/scss/mixins/_text-emphasis.scss","webpack:///./node_modules/bootstrap/scss/mixins/_text-hide.scss","webpack:///./node_modules/bootstrap/scss/utilities/_visibility.scss","webpack:///./node_modules/bootstrap/scss/utilities/_screenreaders.scss","webpack:///./node_modules/bootstrap/scss/mixins/_screen-reader.scss","webpack:///./node_modules/bootstrap/scss/utilities/_borders.scss","webpack:///./node_modules/bootstrap/scss/utilities/_overflow.scss","webpack:///./node_modules/bootstrap/scss/utilities/_position.scss","webpack:///./node_modules/bootstrap/scss/utilities/_sizing.scss","webpack:///./resources/sass/partials/_accessibility.scss","webpack:///./resources/sass/partials/_bootstrap-extend.scss","webpack:///./resources/sass/partials/_helpers.scss","webpack:///./node_modules/bootstrap/scss/mixins/_image.scss","webpack:///./resources/sass/components/_breadcrumb.scss","webpack:///./resources/sass/components/_card.scss","webpack:///./resources/sass/components/_form.scss","webpack:///./resources/sass/components/_icon-btn.scss","webpack:///./resources/sass/components/_layout.scss","webpack:///./resources/sass/components/_table.scss","webpack:///./resources/sass/components/_modal.scss","webpack:///./resources/sass/components/_quill.scss","webpack:///./resources/sass/components/_media-manager.scss","webpack:///./resources/sass/components/_tag.scss","webpack:///./resources/sass/components/widgets/_activities.scss","webpack:///./resources/sass/components/widgets/_notification-card.scss","webpack:///./resources/sass/components/widgets/_quick-actions.scss","webpack:///./resources/sass/sections/_app-header.scss","webpack:///./resources/sass/sections/_app-mobile-header.scss","webpack:///./resources/sass/sections/_app-sidebar.scss","webpack:///./resources/sass/plugins/_simplebar.scss"],"names":[],"mappings":"AAAA,iBACE,iBAAkB,CAClB,qBAAsB,CACtB,cAAe,CACf,0BAA2B,CAC3B,wBAAyB,CACzB,sBACF,CAEA,mBACE,eAAgB,CAChB,aAAc,CACd,cAAe,CACf,iBAAkB,CAClB,kBACF,CAEA,gBACE,iBAAkB,CAElB,eAAgB,CAOhB,oBAAsB,CACtB,qBAAuB,CACvB,SACF,CAEA,kCAbE,iBAAkB,CAElB,SAAU,CACV,QAAS,CACT,MAAO,CACP,KAAM,CACN,QAAS,CACT,OAkBF,CAZA,kBACE,2BAA6B,CAC7B,4BAA8B,CAC9B,qBAAuB,CAQvB,gCACF,CAEA,2BACE,iBAAkB,CAClB,+BAAiC,CACjC,iBAAkB,CAClB,aAAc,CACd,WAAY,CACZ,UAAW,CACX,cAAe,CACf,eAAgB,CAChB,oBAAqB,CACrB,uBACF,CAEA,2FAEE,OAAQ,CACR,QACF,CAEA,mDAEE,WAAY,CACZ,aACF,CAEA,uBACE,eAAgB,CAChB,cAAe,CACf,UAAW,CACX,mBACF,CAEA,wCACE,4BAA8B,CAC9B,WAAY,CACZ,UAAW,CACX,aAAc,CACd,iBAAkB,CAClB,UAAW,CACX,cAAe,CACf,eAAgB,CAChB,UAAW,CACX,SAAU,CACV,QAAS,CACT,mBAAoB,CACpB,iBAAkB,CAClB,aAAc,CACd,YACF,CAEA,gCACE,kBAAmB,CACnB,aAAc,CACd,SAAU,CAEV,KAAM,CACN,MAAO,CACP,YAAa,CACb,WAAY,CACZ,cAAe,CACf,aAAc,CAGd,UACF,CAEA,iDAZE,iBAAkB,CAOlB,eAAgB,CAChB,mBAWF,CAPA,iBACE,SAAU,CAEV,OAAQ,CACR,QAGF,CAEA,uDACE,mBAAoB,CACpB,qBAAiB,CAAjB,oBAAiB,CAAjB,gBAAiB,CACjB,wBACF,CAEA,qDACE,kBACF,CAEA,qBACE,iBAAkB,CAClB,MAAO,CACP,OAAQ,CACR,eACF,CAEA,4BACE,iBAAkB,CAClB,UAAW,CACX,eAAiB,CACjB,iBAAkB,CAClB,QAAS,CACT,SAAU,CACV,SAAU,CACV,6BACF,CAEA,8CAEE,UAAY,CACZ,4BACF,CAEA,oCACE,KAAM,CACN,UACF,CAEA,gEACE,OAAQ,CACR,UACF,CAEA,sCACE,MAAO,CACP,WACF,CAEA,kEACE,WAAY,CACZ,QAAS,CACT,SACF,CAEA,2DACE,UAAW,CACX,MAAO,CACP,OAAQ,CACR,UAAW,CACX,YAAa,CACb,cAAe,CACf,UACF,CAGA,mEACE,UAAW,CACX,MACF,CAEA,yBACE,aAAc,CACd,cAAe,CACf,SAAU,CACV,iBAAkB,CAClB,YAAa,CACb,WAAY,CACZ,iBAAkB,CAClB,iBACF,CAEA,0BACE,cAAe,CACf,MAAO,CACP,iBAAkB,CAClB,iBAAkB,CAClB,oBAAqB,CACrB,uBACF,C;AClNA;;;;;EAKE,CACF,cACE,qBAAsB,CACtB,sCAAyC,CACzC,cAAe,CACf,WAAY,CACZ,QAAW,CACX,iBACF,CACA,sCACE,iBACF,CACA,gEACE,mBACF,CACA,cACE,cAAe,CACf,UAAW,CACX,iBAAkB,CAClB,iBAAkB,CAClB,OACF,CACA,gBACE,QAAS,CACT,SACF,CACA,WACE,qBAAsB,CACtB,gBAAiB,CACjB,WAAY,CACZ,YAAa,CACb,eAAgB,CAChB,iBAAkB,CAClB,aAAW,CAAX,UAAW,CACX,eAAgB,CAChB,eAAgB,CAChB,oBAAqB,CACrB,oBACF,CACA,aACE,WACF,CACA,kKAWE,QAAS,CACT,SAAU,CACV,4EACF,CACA,4BAEE,kBACF,CACA,kCAEE,oBACF,CACA,wBACE,eACF,CACA,mEAEE,mBACF,CACA,6EAEE,kBACF,CACA,uFAEE,UAAW,CACX,cAAe,CACf,kBACF,CACA,2CACE,eACF,CACA,4CACE,eACF,CACA,qBACE,oBAAqB,CACrB,kBAAmB,CACnB,WACF,CACA,4CACE,kBAAmB,CACnB,iBAAmB,CACnB,gBACF,CACA,sCACE,gBAAkB,CAClB,mBACF,CACA,gFAEE,kBACF,CACA,oEAEE,mBACF,CACA,iBACE,4EAA6E,CAC7E,wBACF,CACA,wBACE,oCACF,CACA,6BACE,wBACF,CACA,oCACE,wCACF,CACA,6BACE,qEACF,CACA,6BACE,wBACF,CACA,oCACE,wCACF,CACA,6BACE,8DACF,CACA,6BACE,wBACF,CACA,oCACE,oCACF,CACA,6BACE,uDACF,CACA,6BACE,wBACF,CACA,oCACE,wCACF,CACA,6BACE,gDACF,CACA,6BACE,wBACF,CACA,oCACE,wCACF,CACA,6BACE,yCACF,CACA,6BACE,wBACF,CACA,oCACE,oCACF,CACA,6BACE,kCACF,CACA,6BACE,wBACF,CACA,oCACE,wCACF,CACA,6BACE,2BACF,CACA,6BACE,wBACF,CACA,oCACE,wCACF,CACA,6BACE,oBACF,CACA,6BACE,wBACF,CACA,oCACE,oCACF,CACA,+CACE,gBACF,CACA,iDACE,kBACF,CACA,wDACE,iBACF,CACA,0DACE,mBACF,CACA,+CACE,gBACF,CACA,iDACE,kBACF,CACA,wDACE,iBACF,CACA,0DACE,mBACF,CACA,+CACE,gBACF,CACA,iDACE,mBACF,CACA,wDACE,iBACF,CACA,0DACE,oBACF,CACA,+CACE,iBACF,CACA,iDACE,mBACF,CACA,wDACE,kBACF,CACA,0DACE,oBACF,CACA,+CACE,iBACF,CACA,iDACE,mBACF,CACA,wDACE,kBACF,CACA,0DACE,oBACF,CACA,+CACE,iBACF,CACA,iDACE,mBACF,CACA,wDACE,kBACF,CACA,0DACE,oBACF,CACA,+CACE,iBACF,CACA,iDACE,mBACF,CACA,wDACE,kBACF,CACA,0DACE,oBACF,CACA,+CACE,iBACF,CACA,iDACE,mBACF,CACA,wDACE,kBACF,CACA,0DACE,oBACF,CACA,+CACE,iBACF,CACA,iDACE,mBACF,CACA,wDACE,kBACF,CACA,0DACE,oBACF,CACA,qBACE,aAAc,CACd,cACF,CACA,qCACE,aACF,CACA,oCACE,iBACF,CACA,wBACE,qBACF,CACA,sBACE,wBACF,CACA,yBACE,qBACF,CACA,yBACE,qBACF,CACA,wBACE,wBACF,CACA,uBACE,qBACF,CACA,yBACE,qBACF,CACA,2BACE,UACF,CACA,yBACE,aACF,CACA,4BACE,UACF,CACA,4BACE,UACF,CACA,2BACE,aACF,CACA,0BACE,UACF,CACA,4BACE,UACF,CACA,0BACE,yCACF,CACA,8BACE,wCACF,CACA,0BACE,eACF,CACA,0BACE,eACF,CACA,yBACE,eACF,CACA,6BACE,aAAc,CACd,kBACF,CACA,4BACE,iBACF,CACA,6BACE,kBACF,CACA,2BACE,gBACF,CACA,2BACE,oBAAsB,CACtB,8BAA+B,CAC/B,iBAAkB,CAClB,SAAU,CACV,mBAAoB,CACpB,iBAAkB,CAClB,UACF,CACA,qDAEE,UAAW,CACX,UAAW,CACX,aACF,CACA,uDAEE,eAAgB,CAChB,WAAY,CACZ,cAAe,CACf,oBAAqB,CACrB,UAAW,CACX,WAAY,CACZ,eAAgB,CAChB,UACF,CACA,+DAEE,UAAW,CACX,WACF,CACA,iFAEE,YACF,CACA,6FAEE,YACF,CACA,6jBAcE,UACF,CACA,kgDA4BE,SACF,CACA,kgDA4BE,WACF,CACA,wBACE,mGAEE,UACF,CACA,8PAIE,SACF,CACA,8PAIE,WACF,CACF,CAIA,oBACE,qBACF,CACA,oBACE,YACF,CACA,6CAEE,iBACF,CACA,qBACE,iBAAkB,CAClB,0BACF,CACA,uBACE,cAAe,CACf,oBACF,CACA,6BACE,2BACF,CACA,qBACE,oBAAqB,CACrB,qBACF,CACA,2BACE,UAAW,CACX,UAAW,CACX,aACF,CACA,oBACE,SAAU,CACV,WAAY,CACZ,oBAAqB,CACrB,qBAAsB,CACtB,cACF,CACA,0BACE,SAAU,CACV,WAAY,CACZ,oBAAqB,CACrB,cACF,CACA,8CAEE,SACF,CACA,mBACE,SACF,CACA,kBACE,iBACF,CACA,8CAEE,cACF,CACA,yBACE,UACF,CACA,sCACE,YACF,CACA,gDACE,cACF,CACA,iDACE,YACF,CACA,uBACE,aACF,CACA,uBACE,eACF,CACA,uBACE,gBACF,CACA,uBACE,aACF,CACA,uBACE,eACF,CACA,uBACE,eACF,CACA,sBACE,yBACF,CACA,+BACE,0BAA2B,CAC3B,iBAAkB,CAClB,cAAe,CACf,iBACF,CACA,iDAEE,wBAAyB,CACzB,iBACF,CACA,wBACE,oBAAqB,CACrB,iBAAkB,CAClB,cAAe,CACf,gBACF,CACA,yBACE,aAAc,CACd,eACF,CACA,kCACE,wBAAyB,CACzB,aAAc,CACd,gBACF,CACA,wBACE,cACF,CACA,oBACE,UAAW,CACX,oBAAqB,CACrB,UAAW,CACX,cAAe,CACf,eAAgB,CAChB,WAAY,CACZ,iBAAkB,CAClB,qBACF,CACA,0BACE,cAAe,CACf,oBAAqB,CACrB,WAAY,CACZ,gBAAiB,CACjB,iBAAkB,CAClB,iBAAkB,CAClB,UACF,CACA,iCACE,oBAAqB,CACrB,gBACF,CACA,4BACE,qBAAsB,CACtB,YAAa,CACb,cAAe,CACf,eAAgB,CAChB,iBAAkB,CAClB,kBACF,CACA,4CACE,cAAe,CACf,aAAc,CACd,kBAAmB,CACnB,eACF,CACA,iDACE,UAAW,CACX,SACF,CACA,0DACE,SACF,CACA,4DACE,WACF,CACA,mDACE,aAAc,CACd,eAAgB,CAChB,QAAS,CACT,SACF,CACA,mDAEE,UACF,CACA,qFAEE,eACF,CACA,6FAEE,SACF,CACA,4CACE,aACF,CACA,yCACE,WAAY,CACZ,UAAW,CACX,eACF,CACA,6CACE,eAAgB,CAChB,WACF,CACA,0CACE,4BAA6B,CAC7B,UAAW,CACX,WAAY,CACZ,UAAW,CACX,SAAY,CACZ,UACF,CACA,mEACE,iBAAkB,CAClB,eAAgB,CAChB,OAAQ,CACR,OAAQ,CACR,UACF,CACA,+fAME,wBACF,CACA,8BACE,UACF,CACA,2GAEE,gBACF,CACA,2IAEE,mBACF,CACA,2IAEE,mBACF,CACA,2IAEE,mBACF,CACA,2IAEE,mBACF,CACA,2IAEE,mBACF,CACA,2IAEE,mBACF,CACA,qEACE,aACF,CACA,qEACE,eACF,CACA,qEACE,gBACF,CACA,qEACE,aACF,CACA,qEACE,eACF,CACA,qEACE,eACF,CACA,4BACE,WACF,CACA,uGAEE,oBACF,CACA,2IAEE,eACF,CACA,mJAEE,mBACF,CACA,qEACE,yCACF,CACA,yEACE,wCACF,CACA,4BACE,UACF,CACA,uGAEE,gBACF,CACA,2IAEE,eACF,CACA,2IAEE,eACF,CACA,yIAEE,cACF,CACA,qEACE,cACF,CACA,qEACE,cACF,CACA,oEACE,cACF,CACA,wDACE,qBACF,CACA,mDACE,qBACF,CACA,oBACE,qBAAsB,CACtB,qBAAsB,CACtB,qDAA+D,CAC/D,WACF,CACA,gCACE,iBACF,CACA,qCACE,4BACF,CACA,uCACE,4BAA6B,CAC7B,mCACF,CAIA,0HACE,iBACF,CACA,4HAEE,iBACF,CACA,0CACE,YACF,CACA,qBACE,qBAAsB,CACtB,qBAAsB,CACtB,uBAA4B,CAC5B,UAAW,CACX,gBAAiB,CACjB,kBACF,CACA,4BACE,oBAAqB,CACrB,gBAAiB,CACjB,gBACF,CACA,sCACE,YAAa,CACb,qBAAsB,CACtB,cAAe,CACf,WAAY,CACZ,QAAW,CACX,eAAgB,CAChB,WACF,CACA,kCACE,oBAAqB,CACrB,eAAgB,CAChB,iBAAkB,CAClB,sBAAuB,CACvB,kBACF,CACA,uCACE,2BAA4B,CAC5B,cAAe,CACf,gBAAiB,CACjB,iBACF,CACA,wCACE,gBAAiB,CACjB,eACF,CACA,uBACE,gBACF,CACA,yFAEE,YACF,CACA,iDACE,oBACF,CACA,kDACE,cAAiB,CACjB,cAAe,CACf,eACF,CACA,4CACE,qBACF,CACA,+CACE,wBACF,CACA,6CACE,sBACF,CACA,WACE,UACF,CACA,sBACE,qBACF,C;ACh7BA,4CAAoC,GAAK,WAAW,CAAC,GAAG,SAAS,CAAC,CAAlE,oCAAoC,GAAK,WAAW,CAAC,GAAG,SAAS,CAAC,CAAC,wBAAwB,8CAAqC,CAArC,sCAAsC,CAAC,gFAAgF,iBAAiB,CAAC,aAAa,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,UAAU,CAAC,iCAAiC,iBAAiB,CAAC,eAAe,CAAC,gBAAgB,CAAC,MAAM,CAAC,KAAK,CAAC,iCAAiC,iBAAiB,CAAC,UAAU,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,C;ACAxgB;;;;;;EAAA,CCkBA,iBAGE,qBCPF,CDUA,KACE,uBACA,iBACA,8BACA,yCCPF,CDaA,sEACE,aCVF,CDoBA,KACE,SACA,wLEqO4B,CCrJxB,cAtCa,CHxCjB,eE8O4B,CF7O5B,eEkP4B,CFjP5B,aEnCS,CFoCT,gBACA,qBCjBF,CD6BA,0CACE,mBC1BF,CDmCA,GACE,uBACA,SACA,gBChCF,CD6CA,kBACE,aACA,mBC1CF,CDiDA,EACE,aACA,kBC9CF,CDyDA,sCAEE,0BACA,0EACA,YACA,gBACA,mECtDF,CDyDA,QAEE,kBACA,mBCtDF,CDyDA,iBALE,kBC7CF,CDkDA,SAGE,YCrDF,CDyDA,wBAIE,eCtDF,CDyDA,GACE,eCtDF,CDyDA,GACE,oBACA,aCtDF,CDyDA,WACE,eCtDF,CDyDA,SAEE,kBCtDF,CDyDA,MGxFI,aFmCJ,CD8DA,QAEE,kBGnGE,cHqGF,cACA,uBC3DF,CD8DA,IAAM,aC1DN,CD2DA,IAAM,SCvDN,CD8DA,EAEE,oBEXwC,CFYxC,4BC3DF,CGrHE,QJmLE,aEdsC,CFetC,yBC3DJ,CGzHE,4DJkME,cACA,oBCjEJ,CD0EA,kBAIE,sFEyD4B,CC7M1B,aF8EJ,CD0EA,IAEE,aAEA,mBAEA,cAGA,4BC5EF,CDoFA,OAEE,eClFF,CD0FA,IAEE,iBCvFF,CD0FA,QAJE,qBCjFF,CDqFA,IAGE,eCxFF,CDiGA,MACE,wBC9FF,CDiGA,QACE,kBE6E4B,CF5E5B,qBE4E4B,CF3E5B,aEtQS,CFuQT,gBACA,mBC9FF,CDqGA,GAEE,mBACA,+BCnGF,CD2GA,MAEE,qBACA,mBCzGF,CD+GA,OAEE,eC7GF,CDqHA,iCACE,SClHF,CDqHA,sCAKE,SACA,oBG5PE,kBH8PF,mBClHF,CDqHA,aAEE,gBClHF,CDqHA,cAEE,mBClHF,CDwHA,cACE,cCrHF,CD2HA,OACE,gBCxHF,CD+HA,gDAIE,yBC5HF,CDqII,4GACE,cC/HN,CDqIA,wHAIE,UACA,iBClIF,CDqIA,uCAEE,sBACA,SClIF,CDsIA,SACE,cAEA,eCpIF,CDuIA,SAME,YAEA,UACA,SACA,QC1IF,CD+IA,OACE,cACA,WACA,eACA,UACA,oBGnSI,gBAtCa,CH2UjB,oBACA,cACA,kBC5IF,CD+IA,SACE,uBC5IF,CDgJA,kFAEE,WC7IF,CDgJA,cAKE,oBACA,uBCjJF,CDwJA,yCACE,uBCrJF,CD6JA,6BACE,aACA,yBC1JF,CDiKA,OACE,oBC9JF,CDiKA,QACE,kBACA,cC9JF,CDiKA,SACE,YC9JF,CDmKA,SACE,sBChKF;;AIlUA;;;;;EAAA,CAOA,KACE,sBACA,4BJoUF,CKvUE,oFCDA,WACA,mBACA,kBACA,kBACA,gBNuVF,COpSI,yBFzCE,yBACE,eLiVN,CACF,CO1SI,yBFzCE,uCACE,eLsVN,CACF,CO/SI,yBFzCE,qDACE,eL2VN,CACF,COpTI,0BFzCE,mEACE,gBLgWN,CACF,CKrUE,KCnCA,aACA,eACA,mBACA,iBN2WF,CKrUE,YACE,eACA,aLwUJ,CKtUI,2CAEE,gBACA,cLwUN,CQ9XE,sqBACE,kBACA,WACA,mBACA,iBRsYJ,CQhXM,KACE,aACA,YACA,cRmXR,CMvVE,cACE,cACA,cN0VJ,CM5VE,cACE,aACA,aN+VJ,CMjWE,cACE,wBACA,wBNoWJ,CMtWE,cACE,aACA,aNyWJ,CM3WE,cACE,aACA,aN8WJ,CMhXE,cACE,wBACA,wBNmXJ,CQtYM,UFCJ,cACA,WACA,cNyYF,CQtYU,OFbR,uBAIA,uBNoZF,CQ3YU,OFbR,wBAIA,wBNyZF,CQhZU,OFbR,aAIA,aN8ZF,CQrZU,OFbR,wBAIA,wBNmaF,CQ1ZU,OFbR,wBAIA,wBNwaF,CQ/ZU,OFbR,aAIA,aN6aF,CQpaU,OFbR,wBAIA,wBNkbF,CQzaU,OFbR,wBAIA,wBNubF,CQ9aU,OFbR,aAIA,aN4bF,CQnbU,QFbR,wBAIA,wBNicF,CQxbU,QFbR,wBAIA,wBNscF,CQ7bU,QFbR,cAIA,cN2cF,CQ5bM,aAAwB,QRgc9B,CQ9bM,YAAuB,QRkc7B,CQ/bQ,SAAwB,ORmchC,CQncQ,SAAwB,ORuchC,CQvcQ,SAAwB,OR2chC,CQ3cQ,SAAwB,OR+chC,CQ/cQ,SAAwB,ORmdhC,CQndQ,SAAwB,ORudhC,CQvdQ,SAAwB,OR2dhC,CQ3dQ,SAAwB,OR+dhC,CQ/dQ,SAAwB,ORmehC,CQneQ,SAAwB,ORuehC,CQveQ,UAAwB,QR2ehC,CQ3eQ,UAAwB,QR+ehC,CQ/eQ,UAAwB,QRmfhC,CQ5eY,UFhBV,yBNggBF,CQhfY,UFhBV,0BNogBF,CQpfY,UFhBV,eNwgBF,CQxfY,UFhBV,0BN4gBF,CQ5fY,UFhBV,0BNghBF,CQhgBY,UFhBV,eNohBF,CQpgBY,UFhBV,0BNwhBF,CQxgBY,UFhBV,0BN4hBF,CQ5gBY,UFhBV,eNgiBF,CQhhBY,WFhBV,0BNoiBF,CQphBY,WFhBV,0BNwiBF,COniBI,yBC3BE,QACE,aACA,YACA,cRkkBN,CMtiBA,iBACE,cACA,cNyiBF,CM3iBA,iBACE,aACA,aN8iBF,CMhjBA,iBACE,wBACA,wBNmjBF,CMrjBA,iBACE,aACA,aNwjBF,CM1jBA,iBACE,aACA,aN6jBF,CM/jBA,iBACE,wBACA,wBNkkBF,CQrlBI,aFCJ,cACA,WACA,cNwlBA,CQrlBQ,UFbR,uBAIA,uBNmmBA,CQ1lBQ,UFbR,wBAIA,wBNwmBA,CQ/lBQ,UFbR,aAIA,aN6mBA,CQpmBQ,UFbR,wBAIA,wBNknBA,CQzmBQ,UFbR,wBAIA,wBNunBA,CQ9mBQ,UFbR,aAIA,aN4nBA,CQnnBQ,UFbR,wBAIA,wBNioBA,CQxnBQ,UFbR,wBAIA,wBNsoBA,CQ7nBQ,UFbR,aAIA,aN2oBA,CQloBQ,WFbR,wBAIA,wBNgpBA,CQvoBQ,WFbR,wBAIA,wBNqpBA,CQ5oBQ,WFbR,cAIA,cN0pBA,CQ3oBI,gBAAwB,QR+oB5B,CQ7oBI,eAAuB,QRipB3B,CQ9oBM,YAAwB,ORkpB9B,CQlpBM,YAAwB,ORspB9B,CQtpBM,YAAwB,OR0pB9B,CQ1pBM,YAAwB,OR8pB9B,CQ9pBM,YAAwB,ORkqB9B,CQlqBM,YAAwB,ORsqB9B,CQtqBM,YAAwB,OR0qB9B,CQ1qBM,YAAwB,OR8qB9B,CQ9qBM,YAAwB,ORkrB9B,CQlrBM,YAAwB,ORsrB9B,CQtrBM,aAAwB,QR0rB9B,CQ1rBM,aAAwB,QR8rB9B,CQ9rBM,aAAwB,QRksB9B,CQ3rBU,aFhBV,aN+sBA,CQ/rBU,aFhBV,yBNmtBA,CQnsBU,aFhBV,0BNutBA,CQvsBU,aFhBV,eN2tBA,CQ3sBU,aFhBV,0BN+tBA,CQ/sBU,aFhBV,0BNmuBA,CQntBU,aFhBV,eNuuBA,CQvtBU,aFhBV,0BN2uBA,CQ3tBU,aFhBV,0BN+uBA,CQ/tBU,aFhBV,eNmvBA,CQnuBU,cFhBV,0BNuvBA,CQvuBU,cFhBV,0BN2vBA,CACF,COvvBI,yBC3BE,QACE,aACA,YACA,cRqxBN,CMzvBA,iBACE,cACA,cN4vBF,CM9vBA,iBACE,aACA,aNiwBF,CMnwBA,iBACE,wBACA,wBNswBF,CMxwBA,iBACE,aACA,aN2wBF,CM7wBA,iBACE,aACA,aNgxBF,CMlxBA,iBACE,wBACA,wBNqxBF,CQxyBI,aFCJ,cACA,WACA,cN2yBA,CQxyBQ,UFbR,uBAIA,uBNszBA,CQ7yBQ,UFbR,wBAIA,wBN2zBA,CQlzBQ,UFbR,aAIA,aNg0BA,CQvzBQ,UFbR,wBAIA,wBNq0BA,CQ5zBQ,UFbR,wBAIA,wBN00BA,CQj0BQ,UFbR,aAIA,aN+0BA,CQt0BQ,UFbR,wBAIA,wBNo1BA,CQ30BQ,UFbR,wBAIA,wBNy1BA,CQh1BQ,UFbR,aAIA,aN81BA,CQr1BQ,WFbR,wBAIA,wBNm2BA,CQ11BQ,WFbR,wBAIA,wBNw2BA,CQ/1BQ,WFbR,cAIA,cN62BA,CQ91BI,gBAAwB,QRk2B5B,CQh2BI,eAAuB,QRo2B3B,CQj2BM,YAAwB,ORq2B9B,CQr2BM,YAAwB,ORy2B9B,CQz2BM,YAAwB,OR62B9B,CQ72BM,YAAwB,ORi3B9B,CQj3BM,YAAwB,ORq3B9B,CQr3BM,YAAwB,ORy3B9B,CQz3BM,YAAwB,OR63B9B,CQ73BM,YAAwB,ORi4B9B,CQj4BM,YAAwB,ORq4B9B,CQr4BM,YAAwB,ORy4B9B,CQz4BM,aAAwB,QR64B9B,CQ74BM,aAAwB,QRi5B9B,CQj5BM,aAAwB,QRq5B9B,CQ94BU,aFhBV,aNk6BA,CQl5BU,aFhBV,yBNs6BA,CQt5BU,aFhBV,0BN06BA,CQ15BU,aFhBV,eN86BA,CQ95BU,aFhBV,0BNk7BA,CQl6BU,aFhBV,0BNs7BA,CQt6BU,aFhBV,eN07BA,CQ16BU,aFhBV,0BN87BA,CQ96BU,aFhBV,0BNk8BA,CQl7BU,aFhBV,eNs8BA,CQt7BU,cFhBV,0BN08BA,CQ17BU,cFhBV,0BN88BA,CACF,CO18BI,yBC3BE,QACE,aACA,YACA,cRw+BN,CM58BA,iBACE,cACA,cN+8BF,CMj9BA,iBACE,aACA,aNo9BF,CMt9BA,iBACE,wBACA,wBNy9BF,CM39BA,iBACE,aACA,aN89BF,CMh+BA,iBACE,aACA,aNm+BF,CMr+BA,iBACE,wBACA,wBNw+BF,CQ3/BI,aFCJ,cACA,WACA,cN8/BA,CQ3/BQ,UFbR,uBAIA,uBNygCA,CQhgCQ,UFbR,wBAIA,wBN8gCA,CQrgCQ,UFbR,aAIA,aNmhCA,CQ1gCQ,UFbR,wBAIA,wBNwhCA,CQ/gCQ,UFbR,wBAIA,wBN6hCA,CQphCQ,UFbR,aAIA,aNkiCA,CQzhCQ,UFbR,wBAIA,wBNuiCA,CQ9hCQ,UFbR,wBAIA,wBN4iCA,CQniCQ,UFbR,aAIA,aNijCA,CQxiCQ,WFbR,wBAIA,wBNsjCA,CQ7iCQ,WFbR,wBAIA,wBN2jCA,CQljCQ,WFbR,cAIA,cNgkCA,CQjjCI,gBAAwB,QRqjC5B,CQnjCI,eAAuB,QRujC3B,CQpjCM,YAAwB,ORwjC9B,CQxjCM,YAAwB,OR4jC9B,CQ5jCM,YAAwB,ORgkC9B,CQhkCM,YAAwB,ORokC9B,CQpkCM,YAAwB,ORwkC9B,CQxkCM,YAAwB,OR4kC9B,CQ5kCM,YAAwB,ORglC9B,CQhlCM,YAAwB,ORolC9B,CQplCM,YAAwB,ORwlC9B,CQxlCM,YAAwB,OR4lC9B,CQ5lCM,aAAwB,QRgmC9B,CQhmCM,aAAwB,QRomC9B,CQpmCM,aAAwB,QRwmC9B,CQjmCU,aFhBV,aNqnCA,CQrmCU,aFhBV,yBNynCA,CQzmCU,aFhBV,0BN6nCA,CQ7mCU,aFhBV,eNioCA,CQjnCU,aFhBV,0BNqoCA,CQrnCU,aFhBV,0BNyoCA,CQznCU,aFhBV,eN6oCA,CQ7nCU,aFhBV,0BNipCA,CQjoCU,aFhBV,0BNqpCA,CQroCU,aFhBV,eNypCA,CQzoCU,cFhBV,0BN6pCA,CQ7oCU,cFhBV,0BNiqCA,CACF,CO7pCI,0BC3BE,QACE,aACA,YACA,cR2rCN,CM/pCA,iBACE,cACA,cNkqCF,CMpqCA,iBACE,aACA,aNuqCF,CMzqCA,iBACE,wBACA,wBN4qCF,CM9qCA,iBACE,aACA,aNirCF,CMnrCA,iBACE,aACA,aNsrCF,CMxrCA,iBACE,wBACA,wBN2rCF,CQ9sCI,aFCJ,cACA,WACA,cNitCA,CQ9sCQ,UFbR,uBAIA,uBN4tCA,CQntCQ,UFbR,wBAIA,wBNiuCA,CQxtCQ,UFbR,aAIA,aNsuCA,CQ7tCQ,UFbR,wBAIA,wBN2uCA,CQluCQ,UFbR,wBAIA,wBNgvCA,CQvuCQ,UFbR,aAIA,aNqvCA,CQ5uCQ,UFbR,wBAIA,wBN0vCA,CQjvCQ,UFbR,wBAIA,wBN+vCA,CQtvCQ,UFbR,aAIA,aNowCA,CQ3vCQ,WFbR,wBAIA,wBNywCA,CQhwCQ,WFbR,wBAIA,wBN8wCA,CQrwCQ,WFbR,cAIA,cNmxCA,CQpwCI,gBAAwB,QRwwC5B,CQtwCI,eAAuB,QR0wC3B,CQvwCM,YAAwB,OR2wC9B,CQ3wCM,YAAwB,OR+wC9B,CQ/wCM,YAAwB,ORmxC9B,CQnxCM,YAAwB,ORuxC9B,CQvxCM,YAAwB,OR2xC9B,CQ3xCM,YAAwB,OR+xC9B,CQ/xCM,YAAwB,ORmyC9B,CQnyCM,YAAwB,ORuyC9B,CQvyCM,YAAwB,OR2yC9B,CQ3yCM,YAAwB,OR+yC9B,CQ/yCM,aAAwB,QRmzC9B,CQnzCM,aAAwB,QRuzC9B,CQvzCM,aAAwB,QR2zC9B,CQpzCU,aFhBV,aNw0CA,CQxzCU,aFhBV,yBN40CA,CQ5zCU,aFhBV,0BNg1CA,CQh0CU,aFhBV,eNo1CA,CQp0CU,aFhBV,0BNw1CA,CQx0CU,aFhBV,0BN41CA,CQ50CU,aFhBV,eNg2CA,CQh1CU,aFhBV,0BNo2CA,CQp1CU,aFhBV,0BNw2CA,CQx1CU,aFhBV,eN42CA,CQ51CU,cFhBV,0BNg3CA,CQh2CU,cFhBV,0BNo3CA,CACF,CSj6CM,QAAwB,sBTo6C9B,CSp6CM,UAAwB,wBTw6C9B,CSx6CM,gBAAwB,8BT46C9B,CS56CM,SAAwB,uBTg7C9B,CSh7CM,SAAwB,uBTo7C9B,CSp7CM,aAAwB,2BTw7C9B,CSx7CM,cAAwB,4BT47C9B,CS57CM,QAAwB,sBTg8C9B,CSh8CM,eAAwB,6BTo8C9B,COn5CI,yBEjDE,WAAwB,sBTy8C5B,CSz8CI,aAAwB,wBT68C5B,CS78CI,mBAAwB,8BTi9C5B,CSj9CI,YAAwB,uBTq9C5B,CSr9CI,YAAwB,uBTy9C5B,CSz9CI,gBAAwB,2BT69C5B,CS79CI,iBAAwB,4BTi+C5B,CSj+CI,WAAwB,sBTq+C5B,CSr+CI,kBAAwB,6BTy+C5B,CACF,COz7CI,yBEjDE,WAAwB,sBT8+C5B,CS9+CI,aAAwB,wBTk/C5B,CSl/CI,mBAAwB,8BTs/C5B,CSt/CI,YAAwB,uBT0/C5B,CS1/CI,YAAwB,uBT8/C5B,CS9/CI,gBAAwB,2BTkgD5B,CSlgDI,iBAAwB,4BTsgD5B,CStgDI,WAAwB,sBT0gD5B,CS1gDI,kBAAwB,6BT8gD5B,CACF,CO99CI,yBEjDE,WAAwB,sBTmhD5B,CSnhDI,aAAwB,wBTuhD5B,CSvhDI,mBAAwB,8BT2hD5B,CS3hDI,YAAwB,uBT+hD5B,CS/hDI,YAAwB,uBTmiD5B,CSniDI,gBAAwB,2BTuiD5B,CSviDI,iBAAwB,4BT2iD5B,CS3iDI,WAAwB,sBT+iD5B,CS/iDI,kBAAwB,6BTmjD5B,CACF,COngDI,0BEjDE,WAAwB,sBTwjD5B,CSxjDI,aAAwB,wBT4jD5B,CS5jDI,mBAAwB,8BTgkD5B,CShkDI,YAAwB,uBTokD5B,CSpkDI,YAAwB,uBTwkD5B,CSxkDI,gBAAwB,2BT4kD5B,CS5kDI,iBAAwB,4BTglD5B,CShlDI,WAAwB,sBTolD5B,CSplDI,kBAAwB,6BTwlD5B,CACF,CS/kDA,aAEI,cAAqB,sBTilDvB,CSjlDE,gBAAqB,wBTqlDvB,CSrlDE,sBAAqB,8BTylDvB,CSzlDE,eAAqB,uBT6lDvB,CS7lDE,eAAqB,uBTimDvB,CSjmDE,mBAAqB,2BTqmDvB,CSrmDE,oBAAqB,4BTymDvB,CSzmDE,cAAqB,sBT6mDvB,CS7mDE,qBAAqB,6BTinDvB,CACF,CU/nDI,UAAgC,4BVkoDpC,CUjoDI,aAAgC,+BVqoDpC,CUpoDI,kBAAgC,oCVwoDpC,CUvoDI,qBAAgC,uCV2oDpC,CUzoDI,WAA8B,wBV6oDlC,CU5oDI,aAA8B,0BVgpDlC,CU/oDI,mBAA8B,gCVmpDlC,CUlpDI,WAA8B,uBVspDlC,CUrpDI,aAA8B,qBVypDlC,CUxpDI,aAA8B,qBV4pDlC,CU3pDI,eAA8B,uBV+pDlC,CU9pDI,eAA8B,uBVkqDlC,CUhqDI,uBAAoC,oCVoqDxC,CUnqDI,qBAAoC,kCVuqDxC,CUtqDI,wBAAoC,gCV0qDxC,CUzqDI,yBAAoC,uCV6qDxC,CU5qDI,wBAAoC,sCVgrDxC,CU9qDI,mBAAiC,gCVkrDrC,CUjrDI,iBAAiC,8BVqrDrC,CUprDI,oBAAiC,4BVwrDrC,CUvrDI,sBAAiC,8BV2rDrC,CU1rDI,qBAAiC,6BV8rDrC,CU5rDI,qBAAkC,kCVgsDtC,CU/rDI,mBAAkC,gCVmsDtC,CUlsDI,sBAAkC,8BVssDtC,CUrsDI,uBAAkC,qCVysDtC,CUxsDI,sBAAkC,oCV4sDtC,CU3sDI,uBAAkC,+BV+sDtC,CU7sDI,iBAAgC,yBVitDpC,CUhtDI,kBAAgC,+BVotDpC,CUntDI,gBAAgC,6BVutDpC,CUttDI,mBAAgC,2BV0tDpC,CUztDI,qBAAgC,6BV6tDpC,CU5tDI,oBAAgC,4BVguDpC,COptDI,yBGlDA,aAAgC,4BV2wDlC,CU1wDE,gBAAgC,+BV8wDlC,CU7wDE,qBAAgC,oCVixDlC,CUhxDE,wBAAgC,uCVoxDlC,CUlxDE,cAA8B,wBVsxDhC,CUrxDE,gBAA8B,0BVyxDhC,CUxxDE,sBAA8B,gCV4xDhC,CU3xDE,cAA8B,uBV+xDhC,CU9xDE,gBAA8B,qBVkyDhC,CUjyDE,gBAA8B,qBVqyDhC,CUpyDE,kBAA8B,uBVwyDhC,CUvyDE,kBAA8B,uBV2yDhC,CUzyDE,0BAAoC,oCV6yDtC,CU5yDE,wBAAoC,kCVgzDtC,CU/yDE,2BAAoC,gCVmzDtC,CUlzDE,4BAAoC,uCVszDtC,CUrzDE,2BAAoC,sCVyzDtC,CUvzDE,sBAAiC,gCV2zDnC,CU1zDE,oBAAiC,8BV8zDnC,CU7zDE,uBAAiC,4BVi0DnC,CUh0DE,yBAAiC,8BVo0DnC,CUn0DE,wBAAiC,6BVu0DnC,CUr0DE,wBAAkC,kCVy0DpC,CUx0DE,sBAAkC,gCV40DpC,CU30DE,yBAAkC,8BV+0DpC,CU90DE,0BAAkC,qCVk1DpC,CUj1DE,yBAAkC,oCVq1DpC,CUp1DE,0BAAkC,+BVw1DpC,CUt1DE,oBAAgC,yBV01DlC,CUz1DE,qBAAgC,+BV61DlC,CU51DE,mBAAgC,6BVg2DlC,CU/1DE,sBAAgC,2BVm2DlC,CUl2DE,wBAAgC,6BVs2DlC,CUr2DE,uBAAgC,4BVy2DlC,CACF,CO91DI,yBGlDA,aAAgC,4BVo5DlC,CUn5DE,gBAAgC,+BVu5DlC,CUt5DE,qBAAgC,oCV05DlC,CUz5DE,wBAAgC,uCV65DlC,CU35DE,cAA8B,wBV+5DhC,CU95DE,gBAA8B,0BVk6DhC,CUj6DE,sBAA8B,gCVq6DhC,CUp6DE,cAA8B,uBVw6DhC,CUv6DE,gBAA8B,qBV26DhC,CU16DE,gBAA8B,qBV86DhC,CU76DE,kBAA8B,uBVi7DhC,CUh7DE,kBAA8B,uBVo7DhC,CUl7DE,0BAAoC,oCVs7DtC,CUr7DE,wBAAoC,kCVy7DtC,CUx7DE,2BAAoC,gCV47DtC,CU37DE,4BAAoC,uCV+7DtC,CU97DE,2BAAoC,sCVk8DtC,CUh8DE,sBAAiC,gCVo8DnC,CUn8DE,oBAAiC,8BVu8DnC,CUt8DE,uBAAiC,4BV08DnC,CUz8DE,yBAAiC,8BV68DnC,CU58DE,wBAAiC,6BVg9DnC,CU98DE,wBAAkC,kCVk9DpC,CUj9DE,sBAAkC,gCVq9DpC,CUp9DE,yBAAkC,8BVw9DpC,CUv9DE,0BAAkC,qCV29DpC,CU19DE,yBAAkC,oCV89DpC,CU79DE,0BAAkC,+BVi+DpC,CU/9DE,oBAAgC,yBVm+DlC,CUl+DE,qBAAgC,+BVs+DlC,CUr+DE,mBAAgC,6BVy+DlC,CUx+DE,sBAAgC,2BV4+DlC,CU3+DE,wBAAgC,6BV++DlC,CU9+DE,uBAAgC,4BVk/DlC,CACF,COv+DI,yBGlDA,aAAgC,4BV6hElC,CU5hEE,gBAAgC,+BVgiElC,CU/hEE,qBAAgC,oCVmiElC,CUliEE,wBAAgC,uCVsiElC,CUpiEE,cAA8B,wBVwiEhC,CUviEE,gBAA8B,0BV2iEhC,CU1iEE,sBAA8B,gCV8iEhC,CU7iEE,cAA8B,uBVijEhC,CUhjEE,gBAA8B,qBVojEhC,CUnjEE,gBAA8B,qBVujEhC,CUtjEE,kBAA8B,uBV0jEhC,CUzjEE,kBAA8B,uBV6jEhC,CU3jEE,0BAAoC,oCV+jEtC,CU9jEE,wBAAoC,kCVkkEtC,CUjkEE,2BAAoC,gCVqkEtC,CUpkEE,4BAAoC,uCVwkEtC,CUvkEE,2BAAoC,sCV2kEtC,CUzkEE,sBAAiC,gCV6kEnC,CU5kEE,oBAAiC,8BVglEnC,CU/kEE,uBAAiC,4BVmlEnC,CUllEE,yBAAiC,8BVslEnC,CUrlEE,wBAAiC,6BVylEnC,CUvlEE,wBAAkC,kCV2lEpC,CU1lEE,sBAAkC,gCV8lEpC,CU7lEE,yBAAkC,8BVimEpC,CUhmEE,0BAAkC,qCVomEpC,CUnmEE,yBAAkC,oCVumEpC,CUtmEE,0BAAkC,+BV0mEpC,CUxmEE,oBAAgC,yBV4mElC,CU3mEE,qBAAgC,+BV+mElC,CU9mEE,mBAAgC,6BVknElC,CUjnEE,sBAAgC,2BVqnElC,CUpnEE,wBAAgC,6BVwnElC,CUvnEE,uBAAgC,4BV2nElC,CACF,COhnEI,0BGlDA,aAAgC,4BVsqElC,CUrqEE,gBAAgC,+BVyqElC,CUxqEE,qBAAgC,oCV4qElC,CU3qEE,wBAAgC,uCV+qElC,CU7qEE,cAA8B,wBVirEhC,CUhrEE,gBAA8B,0BVorEhC,CUnrEE,sBAA8B,gCVurEhC,CUtrEE,cAA8B,uBV0rEhC,CUzrEE,gBAA8B,qBV6rEhC,CU5rEE,gBAA8B,qBVgsEhC,CU/rEE,kBAA8B,uBVmsEhC,CUlsEE,kBAA8B,uBVssEhC,CUpsEE,0BAAoC,oCVwsEtC,CUvsEE,wBAAoC,kCV2sEtC,CU1sEE,2BAAoC,gCV8sEtC,CU7sEE,4BAAoC,uCVitEtC,CUhtEE,2BAAoC,sCVotEtC,CUltEE,sBAAiC,gCVstEnC,CUrtEE,oBAAiC,8BVytEnC,CUxtEE,uBAAiC,4BV4tEnC,CU3tEE,yBAAiC,8BV+tEnC,CU9tEE,wBAAiC,6BVkuEnC,CUhuEE,wBAAkC,kCVouEpC,CUnuEE,sBAAkC,gCVuuEpC,CUtuEE,yBAAkC,8BV0uEpC,CUzuEE,0BAAkC,qCV6uEpC,CU5uEE,yBAAkC,oCVgvEpC,CU/uEE,0BAAkC,+BVmvEpC,CUjvEE,oBAAgC,yBVqvElC,CUpvEE,qBAAgC,+BVwvElC,CUvvEE,mBAAgC,6BV2vElC,CU1vEE,sBAAgC,2BV8vElC,CU7vEE,wBAAgC,6BViwElC,CUhwEE,uBAAgC,4BVowElC,CACF,CW3yEQ,KAAgC,kBX8yExC,CW7yEQ,YAEE,sBXgzEV,CW9yEQ,YAEE,wBXizEV,CW/yEQ,YAEE,yBXkzEV,CWhzEQ,YAEE,uBXmzEV,CWl0EQ,KAAgC,uBXs0ExC,CWr0EQ,YAEE,2BXw0EV,CWt0EQ,YAEE,6BXy0EV,CWv0EQ,YAEE,8BX00EV,CWx0EQ,YAEE,4BX20EV,CW11EQ,KAAgC,sBX81ExC,CW71EQ,YAEE,0BXg2EV,CW91EQ,YAEE,4BXi2EV,CW/1EQ,YAEE,6BXk2EV,CWh2EQ,YAEE,2BXm2EV,CWl3EQ,KAAgC,qBXs3ExC,CWr3EQ,YAEE,yBXw3EV,CWt3EQ,YAEE,2BXy3EV,CWv3EQ,YAEE,4BX03EV,CWx3EQ,YAEE,0BX23EV,CW14EQ,KAAgC,uBX84ExC,CW74EQ,YAEE,2BXg5EV,CW94EQ,YAEE,6BXi5EV,CW/4EQ,YAEE,8BXk5EV,CWh5EQ,YAEE,4BXm5EV,CWl6EQ,KAAgC,qBXs6ExC,CWr6EQ,YAEE,yBXw6EV,CWt6EQ,YAEE,2BXy6EV,CWv6EQ,YAEE,4BX06EV,CWx6EQ,YAEE,0BX26EV,CW17EQ,KAAgC,qBX87ExC,CW77EQ,YAEE,yBXg8EV,CW97EQ,YAEE,2BXi8EV,CW/7EQ,YAEE,4BXk8EV,CWh8EQ,YAEE,0BXm8EV,CWl9EQ,KAAgC,qBXs9ExC,CWr9EQ,YAEE,yBXw9EV,CWt9EQ,YAEE,2BXy9EV,CWv9EQ,YAEE,4BX09EV,CWx9EQ,YAEE,0BX29EV,CW1+EQ,KAAgC,qBX8+ExC,CW7+EQ,YAEE,yBXg/EV,CW9+EQ,YAEE,2BXi/EV,CW/+EQ,YAEE,4BXk/EV,CWh/EQ,YAEE,0BXm/EV,CWlgFQ,KAAgC,mBXsgFxC,CWrgFQ,YAEE,uBXwgFV,CWtgFQ,YAEE,yBXygFV,CWvgFQ,YAEE,0BX0gFV,CWxgFQ,YAEE,wBX2gFV,CW1hFQ,KAAgC,wBX8hFxC,CW7hFQ,YAEE,4BXgiFV,CW9hFQ,YAEE,8BXiiFV,CW/hFQ,YAEE,+BXkiFV,CWhiFQ,YAEE,6BXmiFV,CWljFQ,KAAgC,uBXsjFxC,CWrjFQ,YAEE,2BXwjFV,CWtjFQ,YAEE,6BXyjFV,CWvjFQ,YAEE,8BX0jFV,CWxjFQ,YAEE,4BX2jFV,CW1kFQ,KAAgC,sBX8kFxC,CW7kFQ,YAEE,0BXglFV,CW9kFQ,YAEE,4BXilFV,CW/kFQ,YAEE,6BXklFV,CWhlFQ,YAEE,2BXmlFV,CWlmFQ,KAAgC,wBXsmFxC,CWrmFQ,YAEE,4BXwmFV,CWtmFQ,YAEE,8BXymFV,CWvmFQ,YAEE,+BX0mFV,CWxmFQ,YAEE,6BX2mFV,CW1nFQ,KAAgC,sBX8nFxC,CW7nFQ,YAEE,0BXgoFV,CW9nFQ,YAEE,4BXioFV,CW/nFQ,YAEE,6BXkoFV,CWhoFQ,YAEE,2BXmoFV,CWlpFQ,KAAgC,sBXspFxC,CWrpFQ,YAEE,0BXwpFV,CWtpFQ,YAEE,4BXypFV,CWvpFQ,YAEE,6BX0pFV,CWxpFQ,YAEE,2BX2pFV,CW1qFQ,KAAgC,sBX8qFxC,CW7qFQ,YAEE,0BXgrFV,CW9qFQ,YAEE,4BXirFV,CW/qFQ,YAEE,6BXkrFV,CWhrFQ,YAEE,2BXmrFV,CWlsFQ,KAAgC,sBXssFxC,CWrsFQ,YAEE,0BXwsFV,CWtsFQ,YAEE,4BXysFV,CWvsFQ,YAEE,6BX0sFV,CWxsFQ,YAEE,2BX2sFV,CWnsFQ,MAAwB,wBXusFhC,CWtsFQ,cAEE,4BXysFV,CWvsFQ,cAEE,8BX0sFV,CWxsFQ,cAEE,+BX2sFV,CWzsFQ,cAEE,6BX4sFV,CW3tFQ,MAAwB,uBX+tFhC,CW9tFQ,cAEE,2BXiuFV,CW/tFQ,cAEE,6BXkuFV,CWhuFQ,cAEE,8BXmuFV,CWjuFQ,cAEE,4BXouFV,CWnvFQ,MAAwB,sBXuvFhC,CWtvFQ,cAEE,0BXyvFV,CWvvFQ,cAEE,4BX0vFV,CWxvFQ,cAEE,6BX2vFV,CWzvFQ,cAEE,2BX4vFV,CW3wFQ,MAAwB,wBX+wFhC,CW9wFQ,cAEE,4BXixFV,CW/wFQ,cAEE,8BXkxFV,CWhxFQ,cAEE,+BXmxFV,CWjxFQ,cAEE,6BXoxFV,CWnyFQ,MAAwB,sBXuyFhC,CWtyFQ,cAEE,0BXyyFV,CWvyFQ,cAEE,4BX0yFV,CWxyFQ,cAEE,6BX2yFV,CWzyFQ,cAEE,2BX4yFV,CW3zFQ,MAAwB,sBX+zFhC,CW9zFQ,cAEE,0BXi0FV,CW/zFQ,cAEE,4BXk0FV,CWh0FQ,cAEE,6BXm0FV,CWj0FQ,cAEE,2BXo0FV,CWn1FQ,MAAwB,sBXu1FhC,CWt1FQ,cAEE,0BXy1FV,CWv1FQ,cAEE,4BX01FV,CWx1FQ,cAEE,6BX21FV,CWz1FQ,cAEE,2BX41FV,CW32FQ,MAAwB,sBX+2FhC,CW92FQ,cAEE,0BXi3FV,CW/2FQ,cAEE,4BXk3FV,CWh3FQ,cAEE,6BXm3FV,CWj3FQ,cAEE,2BXo3FV,CW92FI,QAAmB,qBXk3FvB,CWj3FI,kBAEE,yBXo3FN,CWl3FI,kBAEE,2BXq3FN,CWn3FI,kBAEE,4BXs3FN,CWp3FI,kBAEE,0BXu3FN,COh4FI,yBIlDI,QAAgC,kBXu7FtC,CWt7FM,kBAEE,sBXy7FR,CWv7FM,kBAEE,wBX07FR,CWx7FM,kBAEE,yBX27FR,CWz7FM,kBAEE,uBX47FR,CW38FM,QAAgC,uBX+8FtC,CW98FM,kBAEE,2BXi9FR,CW/8FM,kBAEE,6BXk9FR,CWh9FM,kBAEE,8BXm9FR,CWj9FM,kBAEE,4BXo9FR,CWn+FM,QAAgC,sBXu+FtC,CWt+FM,kBAEE,0BXy+FR,CWv+FM,kBAEE,4BX0+FR,CWx+FM,kBAEE,6BX2+FR,CWz+FM,kBAEE,2BX4+FR,CW3/FM,QAAgC,qBX+/FtC,CW9/FM,kBAEE,yBXigGR,CW//FM,kBAEE,2BXkgGR,CWhgGM,kBAEE,4BXmgGR,CWjgGM,kBAEE,0BXogGR,CWnhGM,QAAgC,uBXuhGtC,CWthGM,kBAEE,2BXyhGR,CWvhGM,kBAEE,6BX0hGR,CWxhGM,kBAEE,8BX2hGR,CWzhGM,kBAEE,4BX4hGR,CW3iGM,QAAgC,qBX+iGtC,CW9iGM,kBAEE,yBXijGR,CW/iGM,kBAEE,2BXkjGR,CWhjGM,kBAEE,4BXmjGR,CWjjGM,kBAEE,0BXojGR,CWnkGM,QAAgC,qBXukGtC,CWtkGM,kBAEE,yBXykGR,CWvkGM,kBAEE,2BX0kGR,CWxkGM,kBAEE,4BX2kGR,CWzkGM,kBAEE,0BX4kGR,CW3lGM,QAAgC,qBX+lGtC,CW9lGM,kBAEE,yBXimGR,CW/lGM,kBAEE,2BXkmGR,CWhmGM,kBAEE,4BXmmGR,CWjmGM,kBAEE,0BXomGR,CWnnGM,QAAgC,qBXunGtC,CWtnGM,kBAEE,yBXynGR,CWvnGM,kBAEE,2BX0nGR,CWxnGM,kBAEE,4BX2nGR,CWznGM,kBAEE,0BX4nGR,CW3oGM,QAAgC,mBX+oGtC,CW9oGM,kBAEE,uBXipGR,CW/oGM,kBAEE,yBXkpGR,CWhpGM,kBAEE,0BXmpGR,CWjpGM,kBAEE,wBXopGR,CWnqGM,QAAgC,wBXuqGtC,CWtqGM,kBAEE,4BXyqGR,CWvqGM,kBAEE,8BX0qGR,CWxqGM,kBAEE,+BX2qGR,CWzqGM,kBAEE,6BX4qGR,CW3rGM,QAAgC,uBX+rGtC,CW9rGM,kBAEE,2BXisGR,CW/rGM,kBAEE,6BXksGR,CWhsGM,kBAEE,8BXmsGR,CWjsGM,kBAEE,4BXosGR,CWntGM,QAAgC,sBXutGtC,CWttGM,kBAEE,0BXytGR,CWvtGM,kBAEE,4BX0tGR,CWxtGM,kBAEE,6BX2tGR,CWztGM,kBAEE,2BX4tGR,CW3uGM,QAAgC,wBX+uGtC,CW9uGM,kBAEE,4BXivGR,CW/uGM,kBAEE,8BXkvGR,CWhvGM,kBAEE,+BXmvGR,CWjvGM,kBAEE,6BXovGR,CWnwGM,QAAgC,sBXuwGtC,CWtwGM,kBAEE,0BXywGR,CWvwGM,kBAEE,4BX0wGR,CWxwGM,kBAEE,6BX2wGR,CWzwGM,kBAEE,2BX4wGR,CW3xGM,QAAgC,sBX+xGtC,CW9xGM,kBAEE,0BXiyGR,CW/xGM,kBAEE,4BXkyGR,CWhyGM,kBAEE,6BXmyGR,CWjyGM,kBAEE,2BXoyGR,CWnzGM,QAAgC,sBXuzGtC,CWtzGM,kBAEE,0BXyzGR,CWvzGM,kBAEE,4BX0zGR,CWxzGM,kBAEE,6BX2zGR,CWzzGM,kBAEE,2BX4zGR,CW30GM,QAAgC,sBX+0GtC,CW90GM,kBAEE,0BXi1GR,CW/0GM,kBAEE,4BXk1GR,CWh1GM,kBAEE,6BXm1GR,CWj1GM,kBAEE,2BXo1GR,CW50GM,SAAwB,wBXg1G9B,CW/0GM,oBAEE,4BXk1GR,CWh1GM,oBAEE,8BXm1GR,CWj1GM,oBAEE,+BXo1GR,CWl1GM,oBAEE,6BXq1GR,CWp2GM,SAAwB,uBXw2G9B,CWv2GM,oBAEE,2BX02GR,CWx2GM,oBAEE,6BX22GR,CWz2GM,oBAEE,8BX42GR,CW12GM,oBAEE,4BX62GR,CW53GM,SAAwB,sBXg4G9B,CW/3GM,oBAEE,0BXk4GR,CWh4GM,oBAEE,4BXm4GR,CWj4GM,oBAEE,6BXo4GR,CWl4GM,oBAEE,2BXq4GR,CWp5GM,SAAwB,wBXw5G9B,CWv5GM,oBAEE,4BX05GR,CWx5GM,oBAEE,8BX25GR,CWz5GM,oBAEE,+BX45GR,CW15GM,oBAEE,6BX65GR,CW56GM,SAAwB,sBXg7G9B,CW/6GM,oBAEE,0BXk7GR,CWh7GM,oBAEE,4BXm7GR,CWj7GM,oBAEE,6BXo7GR,CWl7GM,oBAEE,2BXq7GR,CWp8GM,SAAwB,sBXw8G9B,CWv8GM,oBAEE,0BX08GR,CWx8GM,oBAEE,4BX28GR,CWz8GM,oBAEE,6BX48GR,CW18GM,oBAEE,2BX68GR,CW59GM,SAAwB,sBXg+G9B,CW/9GM,oBAEE,0BXk+GR,CWh+GM,oBAEE,4BXm+GR,CWj+GM,oBAEE,6BXo+GR,CWl+GM,oBAEE,2BXq+GR,CWp/GM,SAAwB,sBXw/G9B,CWv/GM,oBAEE,0BX0/GR,CWx/GM,oBAEE,4BX2/GR,CWz/GM,oBAEE,6BX4/GR,CW1/GM,oBAEE,2BX6/GR,CWv/GE,WAAmB,qBX2/GrB,CW1/GE,wBAEE,yBX6/GJ,CW3/GE,wBAEE,2BX8/GJ,CW5/GE,wBAEE,4BX+/GJ,CW7/GE,wBAEE,0BXggHJ,CACF,CO1gHI,yBIlDI,QAAgC,kBXgkHtC,CW/jHM,kBAEE,sBXkkHR,CWhkHM,kBAEE,wBXmkHR,CWjkHM,kBAEE,yBXokHR,CWlkHM,kBAEE,uBXqkHR,CWplHM,QAAgC,uBXwlHtC,CWvlHM,kBAEE,2BX0lHR,CWxlHM,kBAEE,6BX2lHR,CWzlHM,kBAEE,8BX4lHR,CW1lHM,kBAEE,4BX6lHR,CW5mHM,QAAgC,sBXgnHtC,CW/mHM,kBAEE,0BXknHR,CWhnHM,kBAEE,4BXmnHR,CWjnHM,kBAEE,6BXonHR,CWlnHM,kBAEE,2BXqnHR,CWpoHM,QAAgC,qBXwoHtC,CWvoHM,kBAEE,yBX0oHR,CWxoHM,kBAEE,2BX2oHR,CWzoHM,kBAEE,4BX4oHR,CW1oHM,kBAEE,0BX6oHR,CW5pHM,QAAgC,uBXgqHtC,CW/pHM,kBAEE,2BXkqHR,CWhqHM,kBAEE,6BXmqHR,CWjqHM,kBAEE,8BXoqHR,CWlqHM,kBAEE,4BXqqHR,CWprHM,QAAgC,qBXwrHtC,CWvrHM,kBAEE,yBX0rHR,CWxrHM,kBAEE,2BX2rHR,CWzrHM,kBAEE,4BX4rHR,CW1rHM,kBAEE,0BX6rHR,CW5sHM,QAAgC,qBXgtHtC,CW/sHM,kBAEE,yBXktHR,CWhtHM,kBAEE,2BXmtHR,CWjtHM,kBAEE,4BXotHR,CWltHM,kBAEE,0BXqtHR,CWpuHM,QAAgC,qBXwuHtC,CWvuHM,kBAEE,yBX0uHR,CWxuHM,kBAEE,2BX2uHR,CWzuHM,kBAEE,4BX4uHR,CW1uHM,kBAEE,0BX6uHR,CW5vHM,QAAgC,qBXgwHtC,CW/vHM,kBAEE,yBXkwHR,CWhwHM,kBAEE,2BXmwHR,CWjwHM,kBAEE,4BXowHR,CWlwHM,kBAEE,0BXqwHR,CWpxHM,QAAgC,mBXwxHtC,CWvxHM,kBAEE,uBX0xHR,CWxxHM,kBAEE,yBX2xHR,CWzxHM,kBAEE,0BX4xHR,CW1xHM,kBAEE,wBX6xHR,CW5yHM,QAAgC,wBXgzHtC,CW/yHM,kBAEE,4BXkzHR,CWhzHM,kBAEE,8BXmzHR,CWjzHM,kBAEE,+BXozHR,CWlzHM,kBAEE,6BXqzHR,CWp0HM,QAAgC,uBXw0HtC,CWv0HM,kBAEE,2BX00HR,CWx0HM,kBAEE,6BX20HR,CWz0HM,kBAEE,8BX40HR,CW10HM,kBAEE,4BX60HR,CW51HM,QAAgC,sBXg2HtC,CW/1HM,kBAEE,0BXk2HR,CWh2HM,kBAEE,4BXm2HR,CWj2HM,kBAEE,6BXo2HR,CWl2HM,kBAEE,2BXq2HR,CWp3HM,QAAgC,wBXw3HtC,CWv3HM,kBAEE,4BX03HR,CWx3HM,kBAEE,8BX23HR,CWz3HM,kBAEE,+BX43HR,CW13HM,kBAEE,6BX63HR,CW54HM,QAAgC,sBXg5HtC,CW/4HM,kBAEE,0BXk5HR,CWh5HM,kBAEE,4BXm5HR,CWj5HM,kBAEE,6BXo5HR,CWl5HM,kBAEE,2BXq5HR,CWp6HM,QAAgC,sBXw6HtC,CWv6HM,kBAEE,0BX06HR,CWx6HM,kBAEE,4BX26HR,CWz6HM,kBAEE,6BX46HR,CW16HM,kBAEE,2BX66HR,CW57HM,QAAgC,sBXg8HtC,CW/7HM,kBAEE,0BXk8HR,CWh8HM,kBAEE,4BXm8HR,CWj8HM,kBAEE,6BXo8HR,CWl8HM,kBAEE,2BXq8HR,CWp9HM,QAAgC,sBXw9HtC,CWv9HM,kBAEE,0BX09HR,CWx9HM,kBAEE,4BX29HR,CWz9HM,kBAEE,6BX49HR,CW19HM,kBAEE,2BX69HR,CWr9HM,SAAwB,wBXy9H9B,CWx9HM,oBAEE,4BX29HR,CWz9HM,oBAEE,8BX49HR,CW19HM,oBAEE,+BX69HR,CW39HM,oBAEE,6BX89HR,CW7+HM,SAAwB,uBXi/H9B,CWh/HM,oBAEE,2BXm/HR,CWj/HM,oBAEE,6BXo/HR,CWl/HM,oBAEE,8BXq/HR,CWn/HM,oBAEE,4BXs/HR,CWrgIM,SAAwB,sBXygI9B,CWxgIM,oBAEE,0BX2gIR,CWzgIM,oBAEE,4BX4gIR,CW1gIM,oBAEE,6BX6gIR,CW3gIM,oBAEE,2BX8gIR,CW7hIM,SAAwB,wBXiiI9B,CWhiIM,oBAEE,4BXmiIR,CWjiIM,oBAEE,8BXoiIR,CWliIM,oBAEE,+BXqiIR,CWniIM,oBAEE,6BXsiIR,CWrjIM,SAAwB,sBXyjI9B,CWxjIM,oBAEE,0BX2jIR,CWzjIM,oBAEE,4BX4jIR,CW1jIM,oBAEE,6BX6jIR,CW3jIM,oBAEE,2BX8jIR,CW7kIM,SAAwB,sBXilI9B,CWhlIM,oBAEE,0BXmlIR,CWjlIM,oBAEE,4BXolIR,CWllIM,oBAEE,6BXqlIR,CWnlIM,oBAEE,2BXslIR,CWrmIM,SAAwB,sBXymI9B,CWxmIM,oBAEE,0BX2mIR,CWzmIM,oBAEE,4BX4mIR,CW1mIM,oBAEE,6BX6mIR,CW3mIM,oBAEE,2BX8mIR,CW7nIM,SAAwB,sBXioI9B,CWhoIM,oBAEE,0BXmoIR,CWjoIM,oBAEE,4BXooIR,CWloIM,oBAEE,6BXqoIR,CWnoIM,oBAEE,2BXsoIR,CWhoIE,WAAmB,qBXooIrB,CWnoIE,wBAEE,yBXsoIJ,CWpoIE,wBAEE,2BXuoIJ,CWroIE,wBAEE,4BXwoIJ,CWtoIE,wBAEE,0BXyoIJ,CACF,COnpII,yBIlDI,QAAgC,kBXysItC,CWxsIM,kBAEE,sBX2sIR,CWzsIM,kBAEE,wBX4sIR,CW1sIM,kBAEE,yBX6sIR,CW3sIM,kBAEE,uBX8sIR,CW7tIM,QAAgC,uBXiuItC,CWhuIM,kBAEE,2BXmuIR,CWjuIM,kBAEE,6BXouIR,CWluIM,kBAEE,8BXquIR,CWnuIM,kBAEE,4BXsuIR,CWrvIM,QAAgC,sBXyvItC,CWxvIM,kBAEE,0BX2vIR,CWzvIM,kBAEE,4BX4vIR,CW1vIM,kBAEE,6BX6vIR,CW3vIM,kBAEE,2BX8vIR,CW7wIM,QAAgC,qBXixItC,CWhxIM,kBAEE,yBXmxIR,CWjxIM,kBAEE,2BXoxIR,CWlxIM,kBAEE,4BXqxIR,CWnxIM,kBAEE,0BXsxIR,CWryIM,QAAgC,uBXyyItC,CWxyIM,kBAEE,2BX2yIR,CWzyIM,kBAEE,6BX4yIR,CW1yIM,kBAEE,8BX6yIR,CW3yIM,kBAEE,4BX8yIR,CW7zIM,QAAgC,qBXi0ItC,CWh0IM,kBAEE,yBXm0IR,CWj0IM,kBAEE,2BXo0IR,CWl0IM,kBAEE,4BXq0IR,CWn0IM,kBAEE,0BXs0IR,CWr1IM,QAAgC,qBXy1ItC,CWx1IM,kBAEE,yBX21IR,CWz1IM,kBAEE,2BX41IR,CW11IM,kBAEE,4BX61IR,CW31IM,kBAEE,0BX81IR,CW72IM,QAAgC,qBXi3ItC,CWh3IM,kBAEE,yBXm3IR,CWj3IM,kBAEE,2BXo3IR,CWl3IM,kBAEE,4BXq3IR,CWn3IM,kBAEE,0BXs3IR,CWr4IM,QAAgC,qBXy4ItC,CWx4IM,kBAEE,yBX24IR,CWz4IM,kBAEE,2BX44IR,CW14IM,kBAEE,4BX64IR,CW34IM,kBAEE,0BX84IR,CW75IM,QAAgC,mBXi6ItC,CWh6IM,kBAEE,uBXm6IR,CWj6IM,kBAEE,yBXo6IR,CWl6IM,kBAEE,0BXq6IR,CWn6IM,kBAEE,wBXs6IR,CWr7IM,QAAgC,wBXy7ItC,CWx7IM,kBAEE,4BX27IR,CWz7IM,kBAEE,8BX47IR,CW17IM,kBAEE,+BX67IR,CW37IM,kBAEE,6BX87IR,CW78IM,QAAgC,uBXi9ItC,CWh9IM,kBAEE,2BXm9IR,CWj9IM,kBAEE,6BXo9IR,CWl9IM,kBAEE,8BXq9IR,CWn9IM,kBAEE,4BXs9IR,CWr+IM,QAAgC,sBXy+ItC,CWx+IM,kBAEE,0BX2+IR,CWz+IM,kBAEE,4BX4+IR,CW1+IM,kBAEE,6BX6+IR,CW3+IM,kBAEE,2BX8+IR,CW7/IM,QAAgC,wBXigJtC,CWhgJM,kBAEE,4BXmgJR,CWjgJM,kBAEE,8BXogJR,CWlgJM,kBAEE,+BXqgJR,CWngJM,kBAEE,6BXsgJR,CWrhJM,QAAgC,sBXyhJtC,CWxhJM,kBAEE,0BX2hJR,CWzhJM,kBAEE,4BX4hJR,CW1hJM,kBAEE,6BX6hJR,CW3hJM,kBAEE,2BX8hJR,CW7iJM,QAAgC,sBXijJtC,CWhjJM,kBAEE,0BXmjJR,CWjjJM,kBAEE,4BXojJR,CWljJM,kBAEE,6BXqjJR,CWnjJM,kBAEE,2BXsjJR,CWrkJM,QAAgC,sBXykJtC,CWxkJM,kBAEE,0BX2kJR,CWzkJM,kBAEE,4BX4kJR,CW1kJM,kBAEE,6BX6kJR,CW3kJM,kBAEE,2BX8kJR,CW7lJM,QAAgC,sBXimJtC,CWhmJM,kBAEE,0BXmmJR,CWjmJM,kBAEE,4BXomJR,CWlmJM,kBAEE,6BXqmJR,CWnmJM,kBAEE,2BXsmJR,CW9lJM,SAAwB,wBXkmJ9B,CWjmJM,oBAEE,4BXomJR,CWlmJM,oBAEE,8BXqmJR,CWnmJM,oBAEE,+BXsmJR,CWpmJM,oBAEE,6BXumJR,CWtnJM,SAAwB,uBX0nJ9B,CWznJM,oBAEE,2BX4nJR,CW1nJM,oBAEE,6BX6nJR,CW3nJM,oBAEE,8BX8nJR,CW5nJM,oBAEE,4BX+nJR,CW9oJM,SAAwB,sBXkpJ9B,CWjpJM,oBAEE,0BXopJR,CWlpJM,oBAEE,4BXqpJR,CWnpJM,oBAEE,6BXspJR,CWppJM,oBAEE,2BXupJR,CWtqJM,SAAwB,wBX0qJ9B,CWzqJM,oBAEE,4BX4qJR,CW1qJM,oBAEE,8BX6qJR,CW3qJM,oBAEE,+BX8qJR,CW5qJM,oBAEE,6BX+qJR,CW9rJM,SAAwB,sBXksJ9B,CWjsJM,oBAEE,0BXosJR,CWlsJM,oBAEE,4BXqsJR,CWnsJM,oBAEE,6BXssJR,CWpsJM,oBAEE,2BXusJR,CWttJM,SAAwB,sBX0tJ9B,CWztJM,oBAEE,0BX4tJR,CW1tJM,oBAEE,4BX6tJR,CW3tJM,oBAEE,6BX8tJR,CW5tJM,oBAEE,2BX+tJR,CW9uJM,SAAwB,sBXkvJ9B,CWjvJM,oBAEE,0BXovJR,CWlvJM,oBAEE,4BXqvJR,CWnvJM,oBAEE,6BXsvJR,CWpvJM,oBAEE,2BXuvJR,CWtwJM,SAAwB,sBX0wJ9B,CWzwJM,oBAEE,0BX4wJR,CW1wJM,oBAEE,4BX6wJR,CW3wJM,oBAEE,6BX8wJR,CW5wJM,oBAEE,2BX+wJR,CWzwJE,WAAmB,qBX6wJrB,CW5wJE,wBAEE,yBX+wJJ,CW7wJE,wBAEE,2BXgxJJ,CW9wJE,wBAEE,4BXixJJ,CW/wJE,wBAEE,0BXkxJJ,CACF,CO5xJI,0BIlDI,QAAgC,kBXk1JtC,CWj1JM,kBAEE,sBXo1JR,CWl1JM,kBAEE,wBXq1JR,CWn1JM,kBAEE,yBXs1JR,CWp1JM,kBAEE,uBXu1JR,CWt2JM,QAAgC,uBX02JtC,CWz2JM,kBAEE,2BX42JR,CW12JM,kBAEE,6BX62JR,CW32JM,kBAEE,8BX82JR,CW52JM,kBAEE,4BX+2JR,CW93JM,QAAgC,sBXk4JtC,CWj4JM,kBAEE,0BXo4JR,CWl4JM,kBAEE,4BXq4JR,CWn4JM,kBAEE,6BXs4JR,CWp4JM,kBAEE,2BXu4JR,CWt5JM,QAAgC,qBX05JtC,CWz5JM,kBAEE,yBX45JR,CW15JM,kBAEE,2BX65JR,CW35JM,kBAEE,4BX85JR,CW55JM,kBAEE,0BX+5JR,CW96JM,QAAgC,uBXk7JtC,CWj7JM,kBAEE,2BXo7JR,CWl7JM,kBAEE,6BXq7JR,CWn7JM,kBAEE,8BXs7JR,CWp7JM,kBAEE,4BXu7JR,CWt8JM,QAAgC,qBX08JtC,CWz8JM,kBAEE,yBX48JR,CW18JM,kBAEE,2BX68JR,CW38JM,kBAEE,4BX88JR,CW58JM,kBAEE,0BX+8JR,CW99JM,QAAgC,qBXk+JtC,CWj+JM,kBAEE,yBXo+JR,CWl+JM,kBAEE,2BXq+JR,CWn+JM,kBAEE,4BXs+JR,CWp+JM,kBAEE,0BXu+JR,CWt/JM,QAAgC,qBX0/JtC,CWz/JM,kBAEE,yBX4/JR,CW1/JM,kBAEE,2BX6/JR,CW3/JM,kBAEE,4BX8/JR,CW5/JM,kBAEE,0BX+/JR,CW9gKM,QAAgC,qBXkhKtC,CWjhKM,kBAEE,yBXohKR,CWlhKM,kBAEE,2BXqhKR,CWnhKM,kBAEE,4BXshKR,CWphKM,kBAEE,0BXuhKR,CWtiKM,QAAgC,mBX0iKtC,CWziKM,kBAEE,uBX4iKR,CW1iKM,kBAEE,yBX6iKR,CW3iKM,kBAEE,0BX8iKR,CW5iKM,kBAEE,wBX+iKR,CW9jKM,QAAgC,wBXkkKtC,CWjkKM,kBAEE,4BXokKR,CWlkKM,kBAEE,8BXqkKR,CWnkKM,kBAEE,+BXskKR,CWpkKM,kBAEE,6BXukKR,CWtlKM,QAAgC,uBX0lKtC,CWzlKM,kBAEE,2BX4lKR,CW1lKM,kBAEE,6BX6lKR,CW3lKM,kBAEE,8BX8lKR,CW5lKM,kBAEE,4BX+lKR,CW9mKM,QAAgC,sBXknKtC,CWjnKM,kBAEE,0BXonKR,CWlnKM,kBAEE,4BXqnKR,CWnnKM,kBAEE,6BXsnKR,CWpnKM,kBAEE,2BXunKR,CWtoKM,QAAgC,wBX0oKtC,CWzoKM,kBAEE,4BX4oKR,CW1oKM,kBAEE,8BX6oKR,CW3oKM,kBAEE,+BX8oKR,CW5oKM,kBAEE,6BX+oKR,CW9pKM,QAAgC,sBXkqKtC,CWjqKM,kBAEE,0BXoqKR,CWlqKM,kBAEE,4BXqqKR,CWnqKM,kBAEE,6BXsqKR,CWpqKM,kBAEE,2BXuqKR,CWtrKM,QAAgC,sBX0rKtC,CWzrKM,kBAEE,0BX4rKR,CW1rKM,kBAEE,4BX6rKR,CW3rKM,kBAEE,6BX8rKR,CW5rKM,kBAEE,2BX+rKR,CW9sKM,QAAgC,sBXktKtC,CWjtKM,kBAEE,0BXotKR,CWltKM,kBAEE,4BXqtKR,CWntKM,kBAEE,6BXstKR,CWptKM,kBAEE,2BXutKR,CWtuKM,QAAgC,sBX0uKtC,CWzuKM,kBAEE,0BX4uKR,CW1uKM,kBAEE,4BX6uKR,CW3uKM,kBAEE,6BX8uKR,CW5uKM,kBAEE,2BX+uKR,CWvuKM,SAAwB,wBX2uK9B,CW1uKM,oBAEE,4BX6uKR,CW3uKM,oBAEE,8BX8uKR,CW5uKM,oBAEE,+BX+uKR,CW7uKM,oBAEE,6BXgvKR,CW/vKM,SAAwB,uBXmwK9B,CWlwKM,oBAEE,2BXqwKR,CWnwKM,oBAEE,6BXswKR,CWpwKM,oBAEE,8BXuwKR,CWrwKM,oBAEE,4BXwwKR,CWvxKM,SAAwB,sBX2xK9B,CW1xKM,oBAEE,0BX6xKR,CW3xKM,oBAEE,4BX8xKR,CW5xKM,oBAEE,6BX+xKR,CW7xKM,oBAEE,2BXgyKR,CW/yKM,SAAwB,wBXmzK9B,CWlzKM,oBAEE,4BXqzKR,CWnzKM,oBAEE,8BXszKR,CWpzKM,oBAEE,+BXuzKR,CWrzKM,oBAEE,6BXwzKR,CWv0KM,SAAwB,sBX20K9B,CW10KM,oBAEE,0BX60KR,CW30KM,oBAEE,4BX80KR,CW50KM,oBAEE,6BX+0KR,CW70KM,oBAEE,2BXg1KR,CW/1KM,SAAwB,sBXm2K9B,CWl2KM,oBAEE,0BXq2KR,CWn2KM,oBAEE,4BXs2KR,CWp2KM,oBAEE,6BXu2KR,CWr2KM,oBAEE,2BXw2KR,CWv3KM,SAAwB,sBX23K9B,CW13KM,oBAEE,0BX63KR,CW33KM,oBAEE,4BX83KR,CW53KM,oBAEE,6BX+3KR,CW73KM,oBAEE,2BXg4KR,CW/4KM,SAAwB,sBXm5K9B,CWl5KM,oBAEE,0BXq5KR,CWn5KM,oBAEE,4BXs5KR,CWp5KM,oBAEE,6BXu5KR,CWr5KM,oBAEE,2BXw5KR,CWl5KE,WAAmB,qBXs5KrB,CWr5KE,wBAEE,yBXw5KJ,CWt5KE,wBAEE,2BXy5KJ,CWv5KE,wBAEE,4BX05KJ,CWx5KE,wBAEE,0BX25KJ,CACF,CY79KA,OACE,kBACA,uBACA,kBXu9BkC,CWt9BlC,6BCUE,oBbs9KJ,CY39KA,eAEE,aZ69KF,CYz9KA,YACE,eZ49KF,CYp9KA,mBACE,kBZu9KF,CYp9KE,0BACE,kBACA,MACA,QACA,UACA,uBACA,aZs9KJ,CY58KE,eE/CA,aFgDqH,CG3CnH,wBH2CuB,CE9CzB,oBd+/KF,Cc7/KE,kBACE,wBd+/KJ,Cc5/KE,2BACE,ad8/KJ,CYx9KE,iBE/CA,aFgDqH,CG3CnH,wBH2CuB,CE9CzB,oBd2gLF,CczgLE,oBACE,wBd2gLJ,CcxgLE,6BACE,ad0gLJ,CYp+KE,eE/CA,aFgDqH,CG3CnH,wBH2CuB,CE9CzB,oBduhLF,CcrhLE,kBACE,wBduhLJ,CcphLE,2BACE,adshLJ,CYh/KE,YE/CA,aFgDqH,CG3CnH,wBH2CuB,CE9CzB,oBdmiLF,CcjiLE,eACE,wBdmiLJ,CchiLE,wBACE,adkiLJ,CY5/KE,eE/CA,aFgDqH,CG3CnH,wBH2CuB,CE9CzB,oBd+iLF,Cc7iLE,kBACE,wBd+iLJ,Cc5iLE,2BACE,ad8iLJ,CYxgLE,cE/CA,aFgDqH,CG3CnH,wBH2CuB,CE9CzB,oBd2jLF,CczjLE,iBACE,wBd2jLJ,CcxjLE,0BACE,ad0jLJ,CYphLE,aE/CA,aFgDqH,CG3CnH,wBH2CuB,CE9CzB,oBdukLF,CcrkLE,gBACE,wBdukLJ,CcpkLE,yBACE,adskLJ,CYhiLE,YE/CA,aFgDqH,CG3CnH,wBH2CuB,CE9CzB,oBdmlLF,CcjlLE,eACE,wBdmlLJ,CchlLE,wBACE,adklLJ,CgBvlLA,OACE,qBACA,mBdiEE,cc/DF,efuR4B,CetR5B,cACA,kBACA,mBACA,wBHKE,qBIFE,6HjBylLN,CiBrlLM,uCDfN,OCgBQ,ejBwlLN,CACF,CG9lLE,4BaGI,oBhB8lLN,CgBzlLE,aACE,YhB4lLJ,CgBvlLA,YACE,kBACA,QhB0lLF,CgBnlLA,YACE,kBf+3BkC,Ce93BlC,iBf83BkC,CYr5BhC,mBb8mLJ,CgB9kLE,eEjDA,WACA,wBlBmoLF,CGrnLE,4CeVI,WACA,wBlBkoLN,CkB/nLI,4CAEE,UACA,0ClBgoLN,CgB3lLE,iBEjDA,WACA,wBlBgpLF,CGloLE,gDeVI,WACA,wBlB+oLN,CkB5oLI,gDAEE,UACA,wClB6oLN,CgBxmLE,eEjDA,cACA,wBlB6pLF,CG/oLE,4CeVI,cACA,wBlB4pLN,CkBzpLI,4CAEE,UACA,0ClB0pLN,CgBrnLE,YEjDA,WACA,wBlB0qLF,CG5pLE,sCeVI,WACA,wBlByqLN,CkBtqLI,sCAEE,UACA,0ClBuqLN,CgBloLE,eEjDA,cACA,wBlBurLF,CGzqLE,4CeVI,cACA,wBlBsrLN,CkBnrLI,4CAEE,UACA,0ClBorLN,CgB/oLE,cEjDA,WACA,wBlBosLF,CGtrLE,0CeVI,WACA,wBlBmsLN,CkBhsLI,0CAEE,UACA,yClBisLN,CgB5pLE,aEjDA,cACA,wBlBitLF,CGnsLE,wCeVI,cACA,wBlBgtLN,CkB7sLI,wCAEE,UACA,2ClB8sLN,CgBzqLE,YEjDA,cACA,wBlB8tLF,CGhtLE,sCeVI,cACA,wBlB6tLN,CkB1tLI,sCAEE,UACA,2ClB2tLN,CmBluLA,KACE,qBAEA,eC0BgB,CDzBhB,alBMS,CkBLT,kBAGA,sBACA,qFACA,6BACA,6BEuFA,uBnBuBI,kBAtCa,CmBiBjB,epB0L4B,CYlR1B,qBIFE,6HjBwuLN,CiBpuLM,uCEdN,KFeQ,ejBuuLN,CACF,CGjvLE,WgBUE,alBNO,CkBOP,oBnB0uLJ,CmBvuLE,sBAEE,UACA,2CnBwuLJ,CmBpuLE,4BAEE,WnBquLJ,CmBjuLE,mCACE,cnBmuLJ,CmBrtLA,uCAEE,mBnButLF,CmB9sLE,aE3DA,WNAE,wBdsEW,CoBpEb,oBrB6wLF,CqBpwLE,yDALE,WNNA,wBMD2D,CAS3D,oBrBkxLJ,CqB/wLE,sCASI,0CrBswLN,CqBjwLE,4CAEE,WACA,wBpB0CW,CoBzCX,oBrBkwLJ,CqB3vLE,uIAGE,WACA,wBAzC+I,CA6C/I,oBrBwvLJ,CqBtvLI,yJAKI,0CrBovLR,CmB5uLE,eE3DA,WNAE,wBdsEW,CoBpEb,oBrB2yLF,CqBlyLE,+DALE,WNNA,wBMD2D,CAS3D,oBrBgzLJ,CqB7yLE,0CASI,0CrBoyLN,CqB/xLE,gDAEE,WACA,wBpB0CW,CoBzCX,oBrBgyLJ,CqBzxLE,6IAGE,WACA,wBAzC+I,CA6C/I,oBrBsxLJ,CqBpxLI,+JAKI,0CrBkxLR,CmB1wLE,aE3DA,cNAE,wBdsEW,CoBpEb,oBrBy0LF,CqBh0LE,yDALE,WNNA,wBMD2D,CAS3D,oBrB80LJ,CqB30LE,sCASI,0CrBk0LN,CqB7zLE,4CAEE,cACA,wBpB0CW,CoBzCX,oBrB8zLJ,CqBvzLE,uIAGE,WACA,wBAzC+I,CA6C/I,oBrBozLJ,CqBlzLI,yJAKI,0CrBgzLR,CmBxyLE,UE3DA,WNAE,wBdsEW,CoBpEb,oBrBu2LF,CqB91LE,gDALE,WNNA,wBMD2D,CAS3D,oBrB42LJ,CqBz2LE,gCASI,0CrBg2LN,CqB31LE,sCAEE,WACA,wBpB0CW,CoBzCX,oBrB41LJ,CqBr1LE,8HAGE,WACA,wBAzC+I,CA6C/I,oBrBk1LJ,CqBh1LI,gJAKI,0CrB80LR,CmBt0LE,aE3DA,cNAE,wBdsEW,CoBpEb,oBrBq4LF,CqB53LE,yDALE,cNNA,wBMD2D,CAS3D,oBrB04LJ,CqBv4LE,sCASI,0CrB83LN,CqBz3LE,4CAEE,cACA,wBpB0CW,CoBzCX,oBrB03LJ,CqBn3LE,uIAGE,cACA,wBAzC+I,CA6C/I,oBrBg3LJ,CqB92LI,yJAKI,0CrB42LR,CmBp2LE,YE3DA,WNAE,wBdsEW,CoBpEb,oBrBm6LF,CqB15LE,sDALE,WNNA,wBMD2D,CAS3D,oBrBw6LJ,CqBr6LE,oCASI,yCrB45LN,CqBv5LE,0CAEE,WACA,wBpB0CW,CoBzCX,oBrBw5LJ,CqBj5LE,oIAGE,WACA,wBAzC+I,CA6C/I,oBrB84LJ,CqB54LI,sJAKI,yCrB04LR,CmBl4LE,WE3DA,cNAE,wBdsEW,CoBpEb,oBrBi8LF,CqBx7LE,mDALE,cNNA,wBMD2D,CAS3D,oBrBs8LJ,CqBn8LE,kCASI,2CrB07LN,CqBr7LE,wCAEE,cACA,wBpB0CW,CoBzCX,oBrBs7LJ,CqB/6LE,iIAGE,cACA,wBAzC+I,CA6C/I,oBrB46LJ,CqB16LI,mJAKI,2CrBw6LR,CmBh6LE,UE3DA,cNAE,wBdsEW,CoBpEb,oBrB+9LF,CqBt9LE,gDALE,cNNA,wBMD2D,CAS3D,oBrBo+LJ,CqBj+LE,gCASI,2CrBw9LN,CqBn9LE,sCAEE,cACA,wBpB0CW,CoBzCX,oBrBo9LJ,CqB78LE,8HAGE,WACA,wBAzC+I,CA6C/I,oBrB08LJ,CqBx8LI,gJAKI,2CrBs8LR,CmBx7LE,qBEPA,apBYa,CoBXb,oBrBm8LF,CGx/LE,2BkBwDE,UALgD,CAMhD,wBpBOW,CoBNX,oBrBm8LJ,CqBh8LE,sDAEE,0CrBi8LJ,CqB97LE,4DAEE,apBJW,CoBKX,4BrB+7LJ,CqB57LE,+JAGE,WACA,wBpBZW,CoBaX,oBrB47LJ,CqB17LI,iLAKI,0CrBw7LR,CmBj9LE,uBEPA,apBYa,CoBXb,oBrB49LF,CGjhME,6BkBwDE,UALgD,CAMhD,wBpBOW,CoBNX,oBrB49LJ,CqBz9LE,0DAEE,wCrB09LJ,CqBv9LE,gEAEE,apBJW,CoBKX,4BrBw9LJ,CqBr9LE,qKAGE,WACA,wBpBZW,CoBaX,oBrBq9LJ,CqBn9LI,uLAKI,wCrBi9LR,CmB1+LE,qBEPA,apBYa,CoBXb,oBrBq/LF,CG1iME,2BkBwDE,aALgD,CAMhD,wBpBOW,CoBNX,oBrBq/LJ,CqBl/LE,sDAEE,0CrBm/LJ,CqBh/LE,4DAEE,apBJW,CoBKX,4BrBi/LJ,CqB9+LE,+JAGE,cACA,wBpBZW,CoBaX,oBrB8+LJ,CqB5+LI,iLAKI,0CrB0+LR,CmBngME,kBEPA,apBYa,CoBXb,oBrB8gMF,CGnkME,wBkBwDE,UALgD,CAMhD,wBpBOW,CoBNX,oBrB8gMJ,CqB3gME,gDAEE,0CrB4gMJ,CqBzgME,sDAEE,apBJW,CoBKX,4BrB0gMJ,CqBvgME,sJAGE,WACA,wBpBZW,CoBaX,oBrBugMJ,CqBrgMI,wKAKI,0CrBmgMR,CmB5hME,qBEPA,apBYa,CoBXb,oBrBuiMF,CG5lME,2BkBwDE,aALgD,CAMhD,wBpBOW,CoBNX,oBrBuiMJ,CqBpiME,sDAEE,0CrBqiMJ,CqBliME,4DAEE,apBJW,CoBKX,4BrBmiMJ,CqBhiME,+JAGE,cACA,wBpBZW,CoBaX,oBrBgiMJ,CqB9hMI,iLAKI,0CrB4hMR,CmBrjME,oBEPA,apBYa,CoBXb,oBrBgkMF,CGrnME,0BkBwDE,UALgD,CAMhD,wBpBOW,CoBNX,oBrBgkMJ,CqB7jME,oDAEE,yCrB8jMJ,CqB3jME,0DAEE,apBJW,CoBKX,4BrB4jMJ,CqBzjME,4JAGE,WACA,wBpBZW,CoBaX,oBrByjMJ,CqBvjMI,8KAKI,yCrBqjMR,CmB9kME,mBEPA,apBYa,CoBXb,oBrBylMF,CG9oME,yBkBwDE,aALgD,CAMhD,wBpBOW,CoBNX,oBrBylMJ,CqBtlME,kDAEE,2CrBulMJ,CqBplME,wDAEE,apBJW,CoBKX,4BrBqlMJ,CqBllME,yJAGE,cACA,wBpBZW,CoBaX,oBrBklMJ,CqBhlMI,2KAKI,2CrB8kMR,CmBvmME,kBEPA,apBYa,CoBXb,oBrBknMF,CGvqME,wBkBwDE,aALgD,CAMhD,wBpBOW,CoBNX,oBrBknMJ,CqB/mME,gDAEE,2CrBgnMJ,CqB7mME,sDAEE,apBJW,CoBKX,4BrB8mMJ,CqB3mME,sJAGE,cACA,wBpBZW,CoBaX,oBrB2mMJ,CqBzmMI,wKAKI,2CrBumMR,CmBrnMA,UACE,elB4M4B,CkB3M5B,alB2FwC,CkB1FxC,oBnBwnMF,CGjsME,gBgB4EE,anBynMJ,CmBrnME,gDAHE,yBnB2nMJ,CmBnnME,sCAEE,alBtFO,CkBuFP,mBnBonMJ,CmBzmMA,QEPE,mBnBuBI,iBAtCa,CmBiBjB,epB+H4B,CYvN1B,mBb6sMJ,CmB5mMA,QEXE,qBnBuBI,iBAtCa,CmBiBjB,epBgI4B,CYxN1B,mBbotMJ,CmB1mMA,WACE,cACA,UnB6mMF,CmB1mME,sBACE,gBnB4mMJ,CmBpmME,sFACE,UnBymMJ,CsBpvMA,OACE,YpB8HI,gBAtCa,CoBtFjB,erB6R4B,CqB5R5B,cACA,UrBYS,CqBXT,wBrBslCkC,CqBrlClC,UtBuvMF,CGlvME,amBDE,UrBMO,CqBLP,oBtBsvMJ,CGlvME,sFmBCI,WtBovMN,CsBzuMA,aACE,UACA,6BACA,QtB4uMF,CsBtuMA,iBACE,mBtByuMF,CuBtwMA,gBACE,kBACA,UACA,cACA,kBACA,oBACA,mDvBywMF,CuBtwMA,uBACE,oBACA,iBvBywMF,CuBtwMA,sBACE,kBACA,OACA,WACA,UtBofsC,CsBnftC,eACA,SvBywMF,CuBvwME,2DACE,UtBzBO,CsB0BP,oBtByN0B,CcpP1B,wBfqyMJ,CuBrwME,yDAKI,2CvBmwMN,CuB/vME,uEACE,oBvBiwMJ,CuB9vME,yEACE,UtB7CO,CsB8CP,wBtBif4C,CsBhf5C,oBvBgwMJ,CuBzvMI,2GACE,avB2vMN,CuBzvMM,yHACE,wBvB2vMR,CuBjvMA,sBACE,kBACA,gBAEA,kBvBmvMF,CuB/uME,6BAOE,oBAEA,qBtBrFO,CsBsFP,wBvBivMJ,CuB5uME,yDAdE,kBACA,WACA,aACA,cACA,UtBuboC,CsBtbpC,WtBsboC,CsBpbpC,UvB6vMJ,CuBtvME,4BAQE,gCvB8uMJ,CuBpuME,8CVlGE,oBb00MJ,CuBnuMI,2EACE,6NvBquMN,CuBhuMI,kFACE,oBtB0HwB,CcpP1B,wBf61MJ,CuB/tMI,iFACE,0KvBiuMN,CuB5tMI,qFRpIA,oCfm2MJ,CuB5tMI,2FRvIA,oCfs2MJ,CuBptME,2CAEE,iBvBstMJ,CuBltMI,wEACE,2LvBotMN,CuB/sMI,kFR9JA,oCfg3MJ,CuBvsMA,eACE,oBvB0sMF,CuBvsMI,4CACE,cACA,atBiY0C,CsBhY1C,mBAEA,mBvBwsMN,CuBrsMI,2CACE,uBACA,0BACA,sBtB0X0C,CsBzX1C,uBtByX0C,CsBxX1C,wBtBpLK,CsBsLL,mBtBqX0C,CgBviB1C,iIjBy3MN,CiBr3MM,uCMuKF,2CNtKI,ejBw3MN,CACF,CuBtsMI,yEACE,qBtBlMK,CsBmML,4BvBwsMN,CuBnsMI,mFRzMA,oCf+4MJ,CuBzrMA,eACE,qBACA,WACA,iCtBoRsC,CsBnRtC,mCrBjGI,kBAtCa,CqB0IjB,etB4D4B,CsB3D5B,etBgE4B,CsB/D5B,atBvNS,CsBwNT,sBACA,kOACA,yBVtNE,qBUyNF,4DvB0rMF,CuBxrME,qBACE,oBtBuPoC,CsBtPpC,UAKE,2CvBsrMN,CuBnrMI,gCAME,atB/OK,CsBgPL,qBvBgrMN,CuB5qME,8DAEE,YACA,oBtB8H0B,CsB7H1B,qBvB6qMJ,CuB1qME,wBACE,atB7PO,CsB8PP,wBvB4qMJ,CuBxqME,2BACE,YvB0qMJ,CuBtqME,8BACE,kBACA,yBvBwqMJ,CuBpqMA,kBACE,gCtByNsC,CsBxNtC,kBtBgH4B,CsB/G5B,qBtB+G4B,CsB9G5B,kBtB+G4B,CC9QxB,iBFu0MN,CuBpqMA,kBACE,+BtBkNsC,CsBjNtC,iBtB6G4B,CsB5G5B,oBtB4G4B,CsB3G5B,iBtB4G4B,CCnRxB,iBF+0MN,CuB/pMA,aAEE,qBAGA,evBkqMF,CuB/pMA,gCAPE,kBAEA,WACA,iCvB6qMF,CuBzqMA,mBAEE,UAGA,SACA,gBACA,SvBkqMF,CuBhqME,4CACE,oBtBoKoC,CsBnKpC,2CvBkqMJ,CuB9pME,+FAEE,wBvB+pMJ,CuB3pMI,qDACE,gBvB6pMN,CuBzpME,yDACE,yBvB2pMJ,CuBvpMA,mBAIE,OACA,UACA,iCtBuJsC,CsBrJtC,gBAEA,etBjE4B,CsBoE5B,qBtB5VS,CsB6VT,yBVlVE,oBb4+MJ,CuBtpME,4CAjBA,kBACA,MACA,QAIA,qBAIA,etB7D4B,CsB8D5B,avB4qMF,CuBtqME,yBAIE,SACA,UACA,cACA,2BtBgIoC,CsB5HpC,iBR7WA,wBdGO,CsB4WP,oBVnWA,+Bb4/MJ,CuB9oMA,cACE,WACA,cACA,UACA,6BACA,4DvBipMF,CuB/oME,oBACE,SvBipMJ,CuB7oMI,0CAA0B,0DvBgpM9B,CuB/oMI,sCAA0B,0DvBkpM9B,CuBjpMI,+BAA0B,0DvBopM9B,CuBjpME,gCACE,QvBmpMJ,CuBhpME,oCACE,UtBmNyC,CsBlNzC,WtBkNyC,CsBjNzC,mBRlZA,wBdoP0B,CsBgK1B,QtBkNyC,CY1lBzC,mBIFE,8GM6YF,CN7YE,sGM6YF,CACA,uCvBipMJ,CiB3hNM,uCMiYJ,oCNhYM,uCjB8hNN,CACF,CuBppMI,2CR1ZA,wBfijNJ,CuBlpME,6CACE,UtB4LgC,CsB3LhC,YtB4LgC,CsB3LhC,kBACA,ctB2LgC,CsB1LhC,wBtBhaO,CsBiaP,yBVzZA,kBb8iNJ,CuBhpME,gCACE,UtBwLyC,CsBvLzC,WtBuLyC,CcnmBzC,wBdoP0B,CsB0L1B,QtBwLyC,CY1lBzC,mBIFE,2GMuaF,CNvaE,sGMuaF,CACA,oCvBipMJ,CiBrjNM,uCM4ZJ,gCN3ZM,oCjBwjNN,CACF,CuBppMI,uCRpbA,wBf2kNJ,CuBlpME,gCACE,UtBkKgC,CsBjKhC,YtBkKgC,CsBjKhC,kBACA,ctBiKgC,CsBhKhC,wBtB1bO,CsB2bP,yBVnbA,kBbwkNJ,CuBhpME,yBACE,UtB8JyC,CsB7JzC,WtB6JyC,CsB5JzC,aACA,kBtBtE0B,CsBuE1B,iBtBvE0B,CclY1B,wBdoP0B,CsBuN1B,QtB2JyC,CY1lBzC,mBIFE,0GMocF,CNpcE,sGMocF,CACA,evBipMJ,CiBllNM,uCMsbJ,yBNrbM,mCjBqlNN,CACF,CuBppMI,gCRjdA,wBfwmNJ,CuBlpME,yBACE,UtBqIgC,CsBpIhC,YtBqIgC,CsBpIhC,kBACA,ctBoIgC,CsBnIhC,6BACA,yBACA,kBvBopMJ,CuB3oME,4DAJE,wBtB9dO,CYQP,kBb8mNJ,CuBppME,8BACE,iBvBmpMJ,CuB7oMI,6CACE,wBvB+oMN,CuB5oMI,sDACE,cvB8oMN,CuB3oMI,yCACE,wBvB6oMN,CuB1oMI,yCACE,cvB4oMN,CuBzoMI,kCACE,wBvB2oMN,CuBtoMA,+DNzfM,sGjBqoNN,CiBjoNM,uCMqfN,+DNpfQ,ejBsoNN,CACF,CwBtpNA,aACE,kBACA,aACA,eACA,oBACA,UxBypNF,CwBvpNE,sHAIE,kBACA,cACA,SACA,YACA,exBypNJ,CwBvpNI,0gBAGE,gBxBkqNN,CwB7pNE,yIAGE,SxB+pNJ,CwB3pNE,mDACE,SxB6pNJ,CwBxpNI,2FXIA,yBACA,2BbwpNJ,CwBxpNE,0BACE,aACA,kBxB0pNJ,CwBxpNI,6HXLA,yBACA,2BbgqNJ,CwB/oNI,+aXhCA,0BACA,4Bb0rNJ,CwB5oNA,yCAEE,YxB+oNF,CwB1oNE,mDACE,kBACA,SxB6oNJ,CwB3oNI,+DACE,SxB8oNN,CwB1oNE,4VAIE,gBxBgpNJ,CwB5oNA,qBAAuB,iBxBgpNvB,CwB/oNA,oBAAsB,gBxBmpNtB,CwB3oNA,kBACE,aACA,mBACA,qBACA,gBtBSI,kBAtCa,CsB+BjB,evBuK4B,CuBtK5B,evB2K4B,CuB1K5B,avB5GS,CuB6GT,kBACA,mBACA,wBvBpHS,CuBqHT,yBX5GE,oBb2vNJ,CwB3oNE,2EAEE,YxB6oNJ,CwBnoNA,2EAEE,+BxBsoNF,CwBnoNA,6PAME,mBtB1BI,iBAtCa,CsBkEjB,evB8E4B,CYvN1B,mBbgxNJ,CwBnoNA,2EAEE,gCxBsoNF,CwBnoNA,6PAME,qBtB3CI,iBAtCa,CsBmFjB,evB8D4B,CYxN1B,mBbiyNJ,CwBnoNA,8DAEE,qBxBsoNF,CwB3nNA,skBX3JI,0BACA,4BbiyNJ,CwB5nNA,+WXxJI,yBACA,2Bb6xNJ,CyB70NA,uCAIE,iBzBg1NF,CyB70NA,iBACE,kBzBg1NF,C0B5zNI,uBACE,qBACA,kBzB+NwB,CyB9NxB,qBzB6NwB,CyB5NxB,WAhCJ,sBACA,oCACA,gBACA,kC1B+1NF,C0B1yNI,6BACE,a1B4yNN,CyBt1NA,eACE,kBACA,SACA,OACA,YxBwpBkC,CwBvpBlC,aACA,WACA,exBguBkC,CwB/tBlC,gBACA,mBvBsGI,cAtCa,CuB9DjB,axBXS,CwBYT,gBACA,gBACA,qBxBvBS,CwBwBT,4BACA,iCZdE,oBbw2NJ,CyBj1NI,oBACE,WACA,MzBo1NN,CyBj1NI,qBACE,QACA,SzBo1NN,COx0NI,yBkBnBA,uBACE,WACA,MzB+1NJ,CyB51NE,wBACE,QACA,SzB+1NJ,CACF,COp1NI,yBkBnBA,uBACE,WACA,MzB02NJ,CyBv2NE,wBACE,QACA,SzB02NJ,CACF,CO/1NI,yBkBnBA,uBACE,WACA,MzBq3NJ,CyBl3NE,wBACE,QACA,SzBq3NJ,CACF,CO12NI,0BkBnBA,uBACE,WACA,MzBg4NJ,CyB73NE,wBACE,QACA,SzBg4NJ,CACF,CyBz3NE,uBACE,SACA,YACA,aACA,qBzB23NJ,C0B15NI,+BACE,qBACA,kBzB+NwB,CyB9NxB,qBzB6NwB,CyB5NxB,WAzBJ,aACA,oCACA,yBACA,kC1Bs7NF,C0Bx4NI,qCACE,a1B04NN,CyB/3NE,0BACE,MACA,WACA,UACA,aACA,mBzBk4NJ,C0B/6NI,kCACE,qBACA,kBzB+NwB,CyB9NxB,qBzB6NwB,CyB5NxB,WAlBJ,kCACA,eACA,qCACA,sB1Bo8NF,C0B75NI,wCACE,a1B+5NN,CyB14NI,kCACE,gBzB44NN,CyBt4NE,yBACE,MACA,WACA,UACA,aACA,oBzBy4NJ,C0Bv8NI,iCACE,qBACA,kBzB+NwB,CyB9NxB,qBzB6NwB,CyB5NxB,WAYE,Y1B67NR,C0B17NM,kCACE,qBACA,mBzB4MsB,CyB3MtB,qBzB0MsB,CyBzMtB,WA9BN,kCACA,wBACA,oC1B89NF,C0B77NI,uCACE,a1B+7NN,CyBz5NI,kCACE,gBzB25NN,CyBn5NE,0IAIE,WACA,WzBm5NJ,CyB94NA,kBE9GE,SACA,eACA,gBACA,4B3BggOF,CyB94NA,eACE,cACA,WACA,sBACA,WACA,exBgK4B,CwB/J5B,axBhHS,CwBiHT,mBAEA,mBACA,6BACA,QzBg5NF,CGrgOE,0CsBoIE,axBmnBgC,CwBlnBhC,qBV/IA,wBfohOJ,CyBj4NE,4CAEE,UxBpJO,CwBqJP,qBVtJA,wBfyhOJ,CyB/3NE,gDAEE,axBtJO,CwBuJP,oBACA,4BzBg4NJ,CyBx3NA,oBACE,azB23NF,CyBv3NA,iBACE,cACA,oBxBgmBkC,CwB/lBlC,gBvBrDI,iBAtCa,CuB6FjB,axBzKS,CwB0KT,kBzB03NF,CyBt3NA,oBACE,cACA,sBACA,azBy3NF,C4BjjOA,cACE,cACA,WACA,iC3B0esC,C2BzetC,qB1BqHI,kBAtCa,C0B5EjB,e3BkR4B,C2BjR5B,e3BsR4B,C2BrR5B,a3BDS,C2BET,qB3BTS,C2BUT,4BACA,yBfAE,qBIFE,oEjBujON,CiBnjOM,uCWdN,cXeQ,ejBsjON,CACF,C4BjjOE,0BACE,6BACA,Q5BmjOJ,C4B/iOE,6BACE,kBACA,yB5BijOJ,C6BvkOE,oBACE,cACA,qB5BRO,C4BSP,oB5BqdoC,C4BpdpC,UAKE,2C7BqkON,C4BjjOE,gCACE,a3B9BO,C2BgCP,S5BkjOJ,C4BrjOE,oCACE,a3B9BO,C2BgCP,S5BkjOJ,C4BrjOE,2BACE,a3B9BO,C2BgCP,S5BkjOJ,C4B1iOE,+CAEE,wB3B9CO,C2BgDP,S5B0iOJ,C4BliOE,mIACE,4D5BwiOJ,C4BniOE,qCAME,a3B/DO,C2BgEP,qB5BiiOJ,C4B5hOA,uCAEE,cACA,U5B+hOF,C4BrhOA,gBACE,8BACA,iCACA,gB1B3BE,kB0B6BF,e5BwhOF,C4BrhOA,mBACE,8BACA,iC1BqBI,iBAtCa,C0BmBjB,e5BwhOF,C4BrhOA,mBACE,+BACA,kC1BcI,iBAtCa,C0B0BjB,e5BwhOF,C4B/gOA,wBACE,cACA,WACA,gBACA,gB1BDI,kBAtCa,C0ByCjB,e3BkK4B,C2BjK5B,a3BnHS,C2BoHT,6BAEA,2C5BkhOF,C4BhhOE,gFAEE,gBACA,c5BihOJ,C4BrgOA,iBACE,gC3B4VsC,C2B3VtC,qB1B1BI,iBAtCa,C0BkEjB,e3B+E4B,CYxN1B,mBbkpOJ,C4BrgOA,iBACE,+B3BqVsC,C2BpVtC,mB1BlCI,iBAtCa,C0B0EjB,e3BsE4B,CYvN1B,mBb0pOJ,C4B7/NA,8EACE,W5BogOF,C4B5/NA,YACE,kB5B+/NF,C4B5/NA,WACE,cACA,gB5B+/NF,C4Bv/NA,UACE,aACA,eACA,oBACA,kB5B0/NF,C4Bx/NE,uCAEE,oBACA,kB5B0/NJ,C4Bj/NA,YACE,kBACA,cACA,oB5Bo/NF,C4Bj/NA,kBACE,kBACA,gB3B4RsC,C2B3RtC,oB5Bo/NF,C4Bj/NE,2FAEE,a5Bk/NJ,C4B9+NA,kBACE,e5Bi/NF,C4B9+NA,mBACE,oBACA,mBACA,eACA,mB5Bi/NF,C4B9+NE,qCACE,gBACA,aACA,qB3BwQoC,C2BvQpC,a5Bg/NJ,C6B7rOE,gBACE,aACA,WACA,gBTYmB,ClBanB,c2BvBA,a7BgsOJ,C6B7rOE,eACE,kBACA,SACA,OACA,UACA,aACA,eACA,qBACA,iB3BmEE,iBAtCa,C2B3Bf,e5BsO0B,C4BrO1B,cACA,qChB9CA,oBb+uOJ,C6B5rOI,qEAEE,U7B6rON,C6BxrOI,8HAEE,a7B6rON,C6B3uOI,0DAoDE,oBDkLmC,CC/KjC,kC5BwZgC,C4BvZhC,6QACA,4BACA,sDACA,uD7ByrOR,C6BtrOM,sEACE,oBDuKiC,CCtKjC,2C7BwrOR,C6BxvOI,0EAyEI,kC5BsYgC,C4BrYhC,uE7BmrOR,C6B7vOI,4DAiFE,oBDqJmC,CClJjC,mC5BudoC,C4BtdpC,oiB7B8qOR,C6B3qOM,wEACE,oBD6IiC,CC5IjC,2C7B6qOR,C6BtqOM,sGACE,a7ByqOR,C6BtqOM,kMAEE,a7ByqOR,C6BlqOM,sHACE,a7BqqOR,C6BnqOQ,oIACE,oB7BqqOV,C6BhqOQ,oJACE,qBdlJN,wBfqzOJ,C6B7pOQ,gJACE,2C7B+pOV,C6BlpOM,sRACE,oB7BwpOR,C6BppOQ,sHACE,oBAzBqB,CA0BrB,2C7BspOV,C6B7xOE,kBACE,aACA,WACA,gBTYmB,ClBanB,c2BvBA,a7BgyOJ,C6B7xOE,iBACE,kBACA,SACA,OACA,UACA,aACA,eACA,qBACA,iB3BmEE,iBAtCa,C2B3Bf,e5BsO0B,C4BrO1B,WACA,oChB9CA,oBb+0OJ,C6B5xOI,yEAEE,U7B6xON,C6BxxOI,8IAEE,a7B6xON,C6B30OI,8DAoDE,oBDkLmC,CC/KjC,kC5BwZgC,C4BvZhC,sUACA,4BACA,sDACA,uD7ByxOR,C6BtxOM,0EACE,oBDuKiC,CCtKjC,0C7BwxOR,C6Bx1OI,8EAyEI,kC5BsYgC,C4BrYhC,uE7BmxOR,C6B71OI,gEAiFE,oBDqJmC,CClJjC,mC5BudoC,C4BtdpC,6lB7B8wOR,C6B3wOM,4EACE,oBD6IiC,CC5IjC,0C7B6wOR,C6BtwOM,0GACE,a7BywOR,C6BtwOM,kNAEE,a7BywOR,C6BlwOM,0HACE,a7BqwOR,C6BnwOQ,wIACE,oB7BqwOV,C6BhwOQ,wJACE,qBdlJN,wBfq5OJ,C6B7vOQ,oJACE,0C7B+vOV,C6BlvOM,8RACE,oB7BwvOR,C6BpvOQ,0HACE,oBAzBqB,CA0BrB,0C7BsvOV,C4BvpOA,aACE,aACA,mBACA,kB5B0pOF,C4BrpOE,yBACE,U5BupOJ,COt3OI,yBqBoOA,mBAGE,sB5BspOJ,C4BjpOE,4CAPE,aACA,mBAEA,e5B4pOJ,C4BxpOE,yBAEE,cACA,kB5BqpOJ,C4B/oOE,2BACE,qBACA,WACA,qB5BipOJ,C4B7oOE,qCACE,oB5B+oOJ,C4B5oOE,sDAEE,U5B8oOJ,C4BzoOE,yBACE,aACA,mBACA,uBACA,WACA,c5B2oOJ,C4BzoOE,+BACE,kBACA,cACA,aACA,mB3B+KkC,C2B9KlC,a5B2oOJ,C4BxoOE,6BACE,mBACA,sB5B0oOJ,C4BxoOE,mCACE,e5B0oOJ,CACF,C8B59OA,YAEE,e9B89OF,C8B59OE,mBACE,kBACA,e9B89OJ,C8Bz9OA,OACE,eACA,MACA,OACA,Y7B2pBkC,C6B1pBlC,aACA,WACA,YACA,gBAGA,S9B09OF,C8Bn9OA,cACE,kBACA,WACA,Y7B+4BkC,C6B74BlC,mB9Bq9OF,C8Bl9OE,0Bb3BI,iCa4BF,CACA,2B9Bo9OJ,CiB7+OM,uCauBJ,0BbtBM,ejBg/ON,CACF,C8Bv9OE,0BACE,c9By9OJ,C8Br9OE,kCACE,qB9Bu9OJ,C8Bn9OA,yBACE,aACA,4B9Bs9OF,C8Bp9OE,wCACE,8BACA,e9Bs9OJ,C8Bn9OE,8EAEE,a9Bq9OJ,C8Bl9OE,qCACE,e9Bo9OJ,C8Bh9OA,uBACE,aACA,mBACA,4B9Bm9OF,C8Bh9OE,8BACE,cACA,0BACA,sEACA,U9Bk9OJ,C8B98OE,+CACE,sBACA,uBACA,W9Bg9OJ,C8B98OI,8DACE,e9Bg9ON,C8B78OI,sDACE,Y9B+8ON,C8Bz8OA,eACE,kBACA,aACA,sBACA,WAGA,oBACA,qB7B3GS,C6B4GT,4BACA,gCjBlGE,oBiBsGF,S9Bw8OF,C8Bp8OA,gBACE,eACA,MACA,OACA,Y7B+iBkC,C6B9iBlC,YACA,aACA,qB9Bu8OF,C8Bp8OE,qBAAS,S9Bu8OX,C8Bt8OE,qBAAS,U9By8OX,C8Bp8OA,cACE,aACA,uBACA,8BACA,Y7B2zBkC,C6B1zBlC,gCjBtHE,yCACA,yCb8jPJ,C8Bt8OE,qBACE,Y7BszBgC,C6BpzBhC,6B9Bu8OJ,C8Bl8OA,aACE,gBACA,e9Bq8OF,C8Bh8OA,YACE,kBAGA,cACA,Y9Bi8OF,C8B77OA,cACE,aACA,eACA,mBACA,yBACA,eACA,6BjBzIE,6CACA,2Cb0kPJ,C8B57OE,gBACE,a9B87OJ,C8Bz7OA,yBACE,kBACA,YACA,WACA,YACA,e9B47OF,COnkPI,yBuB6IF,cACE,e7BqwBgC,C6BpwBhC,mB9B07OF,C8Bv7OA,yBACE,8B9B07OF,C8Bx7OE,wCACE,+B9B07OJ,C8Bt7OA,uBACE,8B9By7OF,C8Bv7OE,8BACE,4BACA,qE9By7OJ,C8Bj7OA,UAAY,e9Bq7OZ,CACF,CO7lPI,yBuB2KF,oBAEE,e9Bq7OF,CACF,COnmPI,0BuBkLF,UAAY,gB9Bq7OZ,CACF,C+BpqPA,YACE,aCGA,eACA,gBnBaE,oBbwpPJ,C+BpqPA,WACE,kBACA,cACA,qBACA,iBACA,gB9BmxBkC,C8BlxBlC,a9BmKwC,C8BjKxC,qB9BPS,C8BQT,wB/BsqPF,C+BpqPE,iBACE,UACA,a9B8JsC,C8B7JtC,qBACA,wB9BZO,C8BaP,oB/BsqPJ,C+BnqPE,iBACE,UACA,S9B2wBgC,C8B1wBhC,2C/BqqPJ,C+B/pPI,kCACE,clBaF,8BACA,gCbspPJ,C+B/pPI,iClBNA,+BACA,iCbwqPJ,C+B9pPE,6BACE,UACA,U9BxCO,C8ByCP,wB9B0M0B,C8BzM1B,oB/BgqPJ,C+B7pPE,+BACE,a9BxCO,C8ByCP,oBAEA,YACA,qB9BlDO,C8BmDP,oB/B8pPJ,CiCrtPE,0BACE,sB/B2HE,iBAtCa,C+BnFf,ejCwtPJ,CiCntPM,iDpBqCF,6BACA,+BbirPJ,CiCltPM,gDpBkBF,8BACA,gCbmsPJ,CiCnuPE,0BACE,qB/B2HE,iBAtCa,C+BnFf,ejCsuPJ,CiCjuPM,iDpBqCF,6BACA,+Bb+rPJ,CiChuPM,gDpBkBF,8BACA,gCbitPJ,CkChvPA,OACE,WACA,kBdCO,CcAP,alCmvPF,CkChvPE,oBAEE,cjCkV0B,CiCjV1B,mBACA,4BlCkvPJ,CkC/uPE,gBACE,sBACA,+BlCivPJ,CkC9uPE,mBACE,4BlCgvPJ,CkCtuPE,0BAEE,alCyuPJ,CkC7tPE,sDAEE,wBlCmuPJ,CkC/tPI,kDAEE,uBlCiuPN,CkC3tPE,mGAIE,QlC8tPJ,CkCrtPE,yCACE,gClCwtPJ,CGvxPE,4B+B2EI,ajCvEK,CiCwEL,wBlCgtPN,CmClyPI,mDAGE,wBnCqyPN,CmCjyPM,uFAIE,oBnCmyPR,CmCrxPQ,4GAEE,wBnC2xPV,CmCtzPI,yDAGE,wBnCyzPN,CmCrzPM,+FAIE,oBnCuzPR,CmCzyPQ,kHAEE,wBnC+yPV,CmC10PI,mDAGE,wBnC60PN,CmCz0PM,uFAIE,oBnC20PR,CmC7zPQ,4GAEE,wBnCm0PV,CmC91PI,0CAGE,wBnCi2PN,CmC71PM,2EAIE,oBnC+1PR,CmCj1PQ,mGAEE,wBnCu1PV,CmCl3PI,mDAGE,wBnCq3PN,CmCj3PM,uFAIE,oBnCm3PR,CmCr2PQ,4GAEE,wBnC22PV,CmCt4PI,gDAGE,wBnCy4PN,CmCr4PM,mFAIE,oBnCu4PR,CmCz3PQ,yGAEE,wBnC+3PV,CmC15PI,6CAGE,wBnC65PN,CmCz5PM,+EAIE,oBnC25PR,CmC74PQ,sGAEE,wBnCm5PV,CmC96PI,0CAGE,wBnCi7PN,CmC76PM,2EAIE,oBnC+6PR,CmCj6PQ,mGAEE,wBnCu6PV,CmCl8PI,gDAGE,wBnCq8PN,CmC/6PQ,yGAEE,wBnCq7PV,CkCr2PI,sBACE,UjC3GK,CiC4GL,wBjCpGK,CiCqGL,oBlCw2PN,CkCn2PI,uBACE,ajC5GK,CiC6GL,wBdvEU,CcwEV,oBlCq2PN,CkCh2PA,YACE,UjC3HS,CiC4HT,wBlCm2PF,CkCj2PE,mDAGE,oBlCm2PJ,CkCh2PE,2BACE,QlCk2PJ,CkC91PI,oDACE,oClCg2PN,CGr+PE,uC+B4IM,UjCjJG,CiCkJH,qClC41PR,CO56PI,4B2BiGA,qBAEI,cACA,WACA,gBACA,gClC80PN,CkC30PM,qCACE,QlC60PR,CACF,COx7PI,4B2BiGA,qBAEI,cACA,WACA,gBACA,gClCy1PN,CkCt1PM,qCACE,QlCw1PR,CACF,COn8PI,4B2BiGA,qBAEI,cACA,WACA,gBACA,gClCo2PN,CkCj2PM,qCACE,QlCm2PR,CACF,CO98PI,6B2BiGA,qBAEI,cACA,WACA,gBACA,gClC+2PN,CkC52PM,qCACE,QlC82PR,CACF,CkCx3PI,kBAEI,cACA,WACA,gBACA,gClCy3PR,CkCt3PQ,kCACE,QlCw3PV,CoCviQA,YACE,aACA,sBAGA,eACA,gBvBQE,oBbiiQJ,CoC/hQA,wBACE,WACA,anCRS,CmCST,kBpCkiQF,CGziQE,4DiCWE,UACA,anCdO,CmCeP,qBACA,wBpCiiQJ,CoC9hQE,+BACE,anClBO,CmCmBP,wBpCgiQJ,CoCvhQA,iBACE,kBACA,cACA,uBAGA,qBnC3CS,CmC4CT,iCpCwhQF,CoCthQE,6BvB1BE,+BACA,+BbmjQJ,CoCthQE,4BvBhBE,mCACA,iCbyiQJ,CoCthQE,oDAEE,anClDO,CmCmDP,oBACA,qBpCuhQJ,CoCnhQE,wBACE,UACA,UnChEO,CmCiEP,wBnCkL0B,CmCjL1B,oBpCqhQJ,CoClhQE,kCACE,kBpCohQJ,CoClhQI,yCACE,gBACA,oBpCohQN,CoCtgQI,uBACE,kBpCygQN,CoCtgQQ,oDvB1BJ,iCAZA,yBbgjQJ,CoCrgQQ,mDvB3CJ,+BAYA,2BbwiQJ,CoCpgQQ,+CACE,YpCsgQV,CoCngQQ,yDACE,oBnC0HoB,CmCzHpB,mBpCqgQV,CoCngQU,gEACE,iBACA,qBpCqgQZ,COhkQI,yB6BmCA,0BACE,kBpCiiQJ,CoC9hQM,uDvB1BJ,iCAZA,yBbwkQF,CoC7hQM,sDvB3CJ,+BAYA,2BbgkQF,CoC5hQM,kDACE,YpC8hQR,CoC3hQM,4DACE,oBnC0HoB,CmCzHpB,mBpC6hQR,CoC3hQQ,mEACE,iBACA,qBpC6hQV,CACF,COzlQI,yB6BmCA,0BACE,kBpCyjQJ,CoCtjQM,uDvB1BJ,iCAZA,yBbgmQF,CoCrjQM,sDvB3CJ,+BAYA,2BbwlQF,CoCpjQM,kDACE,YpCsjQR,CoCnjQM,4DACE,oBnC0HoB,CmCzHpB,mBpCqjQR,CoCnjQQ,mEACE,iBACA,qBpCqjQV,CACF,COjnQI,yB6BmCA,0BACE,kBpCilQJ,CoC9kQM,uDvB1BJ,iCAZA,yBbwnQF,CoC7kQM,sDvB3CJ,+BAYA,2BbgnQF,CoC5kQM,kDACE,YpC8kQR,CoC3kQM,4DACE,oBnC0HoB,CmCzHpB,mBpC6kQR,CoC3kQQ,mEACE,iBACA,qBpC6kQV,CACF,COzoQI,0B6BmCA,0BACE,kBpCymQJ,CoCtmQM,uDvB1BJ,iCAZA,yBbgpQF,CoCrmQM,sDvB3CJ,+BAYA,2BbwoQF,CoCpmQM,kDACE,YpCsmQR,CoCnmQM,4DACE,oBnC0HoB,CmCzHpB,mBpCqmQR,CoCnmQQ,mEACE,iBACA,qBpCqmQV,CACF,CoCxlQA,kBvBnHI,eb8sQJ,CoCxlQE,mCACE,oBpC0lQJ,CoCxlQI,8CACE,qBpC0lQN,CqCnuQE,yBACE,aDoJsE,CCnJtE,wBrCsuQJ,CG3tQE,4GkCPM,aD+IkE,CC9IlE,wBrCquQR,CqCluQM,uDACE,UpCPG,CoCQH,wBDyIkE,CCxIlE,oBrCouQR,CqCjvQE,2BACE,aDoJsE,CCnJtE,wBrCovQJ,CGzuQE,gHkCPM,aD+IkE,CC9IlE,wBrCmvQR,CqChvQM,yDACE,UpCPG,CoCQH,wBDyIkE,CCxIlE,oBrCkvQR,CqC/vQE,yBACE,aDoJsE,CCnJtE,wBrCkwQJ,CGvvQE,4GkCPM,aD+IkE,CC9IlE,wBrCiwQR,CqC9vQM,uDACE,UpCPG,CoCQH,wBDyIkE,CCxIlE,oBrCgwQR,CqC7wQE,sBACE,aDoJsE,CCnJtE,wBrCgxQJ,CGrwQE,sGkCPM,aD+IkE,CC9IlE,wBrC+wQR,CqC5wQM,oDACE,UpCPG,CoCQH,wBDyIkE,CCxIlE,oBrC8wQR,CqC3xQE,yBACE,aDoJsE,CCnJtE,wBrC8xQJ,CGnxQE,4GkCPM,aD+IkE,CC9IlE,wBrC6xQR,CqC1xQM,uDACE,UpCPG,CoCQH,wBDyIkE,CCxIlE,oBrC4xQR,CqCzyQE,wBACE,aDoJsE,CCnJtE,wBrC4yQJ,CGjyQE,0GkCPM,aD+IkE,CC9IlE,wBrC2yQR,CqCxyQM,sDACE,UpCPG,CoCQH,wBDyIkE,CCxIlE,oBrC0yQR,CqCvzQE,uBACE,aDoJsE,CCnJtE,wBrC0zQJ,CG/yQE,wGkCPM,aD+IkE,CC9IlE,wBrCyzQR,CqCtzQM,qDACE,UpCPG,CoCQH,wBDyIkE,CCxIlE,oBrCwzQR,CqCr0QE,sBACE,aDoJsE,CCnJtE,wBrCw0QJ,CG7zQE,sGkCPM,aD+IkE,CC9IlE,wBrCu0QR,CqCp0QM,oDACE,UpCPG,CoCQH,wBDyIkE,CCxIlE,oBrCs0QR,CsCt1QA,OAGE,gBrCy4BkC,CqCx4BlC,erCw4BkC,CC7wB9B,iBAtCa,CoClFjB,oCrC04BkC,CqCz4BlC,4BACA,gCACA,yCrC24BkC,CqC14BlC,UzBOE,oBbg1QJ,CsCp1QE,wBACE,oBtCs1QJ,CsCn1QE,eACE,StCq1QJ,CsCl1QE,YACE,cACA,StCo1QJ,CsCj1QE,YACE,YtCm1QJ,CsC/0QA,cACE,aACA,mBACA,sBACA,arCvBS,CqCwBT,oCrCm3BkC,CqCl3BlC,4BACA,wCzBZE,0CACA,0Cb+1QJ,CsCh1QA,YACE,ctCm1QF,CuCz3QA,gBAAkB,gGvC63QlB,CuCz3QA,cAAiB,4BvC63QjB,CuC53QA,WAAiB,4BvCg4QjB,CuC/3QA,aAAiB,4BvCm4QjB,CuCl4QA,eCTE,gBACA,uBACA,kBxC+4QF,CuCh4QI,WAAwB,yBvCo4Q5B,CuCn4QI,YAAwB,0BvCu4Q5B,CuCt4QI,aAAwB,2BvC04Q5B,COr2QI,yBgCvCA,cAAwB,yBvCi5Q1B,CuCh5QE,eAAwB,0BvCo5Q1B,CuCn5QE,gBAAwB,2BvCu5Q1B,CACF,COn3QI,yBgCvCA,cAAwB,yBvC85Q1B,CuC75QE,eAAwB,0BvCi6Q1B,CuCh6QE,gBAAwB,2BvCo6Q1B,CACF,COh4QI,yBgCvCA,cAAwB,yBvC26Q1B,CuC16QE,eAAwB,0BvC86Q1B,CuC76QE,gBAAwB,2BvCi7Q1B,CACF,CO74QI,0BgCvCA,cAAwB,yBvCw7Q1B,CuCv7QE,eAAwB,0BvC27Q1B,CuC17QE,gBAAwB,2BvC87Q1B,CACF,CuCz7QA,gBAAmB,kCvC47QnB,CuC37QA,gBAAmB,kCvC+7QnB,CuC97QA,iBAAmB,mCvCk8QnB,CuC97QA,mBAAuB,yBvCk8QvB,CuCj8QA,qBAAuB,6BvCq8QvB,CuCp8QA,oBAAuB,yBvCw8QvB,CuCv8QA,kBAAuB,yBvC28QvB,CuC18QA,oBAAuB,4BvC88QvB,CuC78QA,aAAuB,2BvCi9QvB,CuC78QA,YAAc,oBvCi9Qd,CyCx/QE,cACE,uBzC2/QJ,CGj/QE,0CsCLM,uBzC0/QR,CyChgRE,gBACE,uBzCmgRJ,CGz/QE,8CsCLM,uBzCkgRR,CyCxgRE,cACE,uBzC2gRJ,CGjgRE,0CsCLM,uBzC0gRR,CyChhRE,WACE,uBzCmhRJ,CGzgRE,oCsCLM,uBzCkhRR,CyCxhRE,cACE,uBzC2hRJ,CGjhRE,0CsCLM,uBzC0hRR,CyChiRE,aACE,uBzCmiRJ,CGzhRE,wCsCLM,uBzCkiRR,CyCxiRE,YACE,uBzC2iRJ,CGjiRE,sCsCLM,uBzC0iRR,CyChjRE,WACE,uBzCmjRJ,CGziRE,oCsCLM,uBzCkjRR,CuC3gRA,WAAa,uBvC+gRb,CuC9gRA,YAAc,uBvCkhRd,CuChhRA,eAAiB,8BvCohRjB,CuCnhRA,eAAiB,kCvCuhRjB,CuCnhRA,WGvDE,WACA,kBACA,iBACA,6BACA,Q1C8kRF,CuCvhRA,sBAAwB,8BvC2hRxB,CuCzhRA,YACE,gCACA,8BvC4hRF,CuCvhRA,YAAc,uBvC2hRd,C2C5lRA,SACE,4B3C+lRF,C2C5lRA,WACE,2B3C+lRF,C4CtmRA,SCEE,kBACA,UACA,WACA,UACA,YACA,gBACA,mBACA,mBACA,Q7CwmRF,C6C9lRE,mDAEE,gBACA,WACA,YACA,iBACA,UACA,kB7CgmRJ,C8CznRA,QAAkB,kC9C6nRlB,C8C5nRA,YAAkB,sC9CgoRlB,C8C/nRA,cAAkB,wC9CmoRlB,C8CloRA,eAAkB,yC9CsoRlB,C8CroRA,aAAkB,uC9CyoRlB,C8CvoRA,UAAmB,kB9C2oRnB,C8C1oRA,cAAmB,sB9C8oRnB,C8C7oRA,gBAAmB,wB9CipRnB,C8ChpRA,iBAAmB,yB9CopRnB,C8CnpRA,eAAmB,uB9CupRnB,C8CppRE,gBACE,8B9CupRJ,C8CxpRE,kBACE,8B9C2pRJ,C8C5pRE,gBACE,8B9C+pRJ,C8ChqRE,aACE,8B9CmqRJ,C8CpqRE,gBACE,8B9CuqRJ,C8CxqRE,eACE,8B9C2qRJ,C8C5qRE,cACE,8B9C+qRJ,C8ChrRE,aACE,8B9CmrRJ,C8C/qRA,cACE,2B9CkrRF,C8C3qRA,YACE,6B9C8qRF,C8C3qRA,SACE,8B9C8qRF,C8C3qRA,aACE,uC9C+qRF,C8C3qRA,4BAHE,wC9CmrRF,C8C3qRA,+BAHE,2C9CmrRF,C8C3qRA,8BAHE,0C9CmrRF,C8ChrRA,cACE,uC9C+qRF,C8C3qRA,YACE,6B9C8qRF,C8C3qRA,gBACE,2B9C8qRF,C8C3qRA,cACE,6B9C8qRF,C8C3qRA,WACE,yB9C8qRF,C+CpvRE,eAAsB,uB/CwvRxB,C+CxvRE,iBAAsB,yB/C4vRxB,CgD3vRE,iBAAyB,yBhD+vR3B,CgD/vRE,mBAAyB,2BhDmwR3B,CgDnwRE,mBAAyB,2BhDuwR3B,CgDvwRE,gBAAyB,wBhD2wR3B,CgD3wRE,iBAAyB,2DhD+wR3B,CgD1wRA,WAEE,KhDgxRF,CgD1wRA,yBAPE,eAEA,QACA,OACA,YhDqxRF,CgDlxRA,cAGE,QhD+wRF,CgDzwRE,6DADF,YAEI,wCACA,MACA,YhD6wRF,CACF,CiDryRI,MAAuB,mBjDyyR3B,CiDzyRI,MAAuB,mBjD6yR3B,CiD7yRI,MAAuB,mBjDizR3B,CiDjzRI,OAAuB,oBjDqzR3B,CiDrzRI,QAAuB,oBjDyzR3B,CiDzzRI,MAAuB,oBjD6zR3B,CiD7zRI,MAAuB,oBjDi0R3B,CiDj0RI,MAAuB,oBjDq0R3B,CiDr0RI,OAAuB,qBjDy0R3B,CiDz0RI,QAAuB,qBjD60R3B,CiDz0RA,QAAU,wBjD60RV,CiD50RA,QAAU,yBjDg1RV,CiD50RA,YAAc,yBjDg1Rd,CiD/0RA,YAAc,0BjDm1Rd,CiDj1RA,QAAU,qBjDq1RV,CiDp1RA,QAAU,sBjDw1RV,CkD32RA,qDLME,kBACA,UACA,WACA,UACA,YACA,gBACA,mBACA,mBACA,Q7C22RF,CmDz3RA,eACI,YACA,kCnD43RJ,CmDh3RY,kCACI,YACA,wBnDm3RhB,CmDj3RgB,qCACI,WnDm3RpB,CmD32RY,8EAEI,enD62RhB,CmDx2RI,oBAEI,qBnD02RR,CmDr2RY,kGAEI,wBnDs2RhB,CmDj2RY,8GAEI,wBnDk2RhB,CmD51RA,WACI,cACA,enD+1RJ,CmD11RQ,iCACI,gBnD61RZ,CmDz1RI,kBACI,enD21RR,CmDv1RQ,6BACI,gClD0a4B,CkDza5B,qBjDoDN,iBAtCa,CiDZP,elD6JkB,CYxN1B,mBbq5RJ,CmDp1RQ,6BACI,+BlDia4B,CkDha5B,mBjD0CN,iBAtCa,CiDFP,elDkJkB,CYvN1B,mBb45RJ,CoD36RA,WCQE,eAGA,WrDq6RF,CoD56RA,eACI,wCACA,QpD+6RJ,CsDx7RA,YACI,aACA,eACA,UACA,SACA,gBACA,etD27RJ,CsDv7RI,kCACI,kBtD07RR,CsDx7RQ,yCACI,qBACA,oBACA,qBACA,YACA,etD07RZ,CsDt7RI,2CAEI,atDu7RR,CuD/8RA,MACI,sBACA,qBACA,oEvDk9RJ,CuDh9RI,cACI,uBACA,iCACA,gCACA,gBvDk9RR,CuDh9RQ,0BACI,evDk9RZ,CuD98RI,aACI,cvDg9RR,CuD78RI,cACI,qBACA,aACA,mBACA,8BACA,eACA,wCACA,evD+8RR,CuD78RQ,gBACI,iBACA,mBvD+8RZ,CuD38RQ,aACI,eACA,avD68RZ,CuD18RI,gBACI,wCACA,QvD48RR,CuDz8RI,sBACI,WvD28RR,CuDx8RI,mCACI,cvD08RR,CuDv8RI,gBACI,aACA,sBACA,0BACA,6BvDy8RR,CuDv8RQ,6BACI,aACA,YACA,aACA,sBACA,4BvDy8RZ,CuDt8RQ,mCACI,gBACA,yBACA,gBACA,iBACA,avDw8RZ,CuDr8RQ,kCACI,cACA,gBACA,iBACA,SACA,evDu8RZ,CuDp8RQ,8BACI,mBACA,6BACA,avDs8RZ,CuDj8RI,iBACI,wBvDm8RR,CuDj8RQ,sGAGI,UvDm8RZ,CuDh8RQ,+BACI,gCACA,wBvDk8RZ,CuDh8RY,iCACI,UvDk8RhB,CwDziSI,6DACI,aACA,exD6iSR,CwD1iSI,iEACI,exD6iSR,CwDziSA,aACI,aACA,eACA,qCvDoeoC,CuDnepC,WAEA,ctD6GE,kBAtCa,CsDpEf,evD0Q0B,CuDzQ1B,evD8Q0B,CuD7Q1B,avDTO,CuDUP,qBvDjBO,CuDkBP,4BACA,yB3CRA,oBbojSJ,CwDziSI,kBACI,axD2iSR,CwDxiSI,qCACI,UACA,eACA,axD0iSR,CwDriSI,6BACI,cACA,eACA,WACA,kBACA,UxDwiSR,CwDniSI,sBACI,kBACA,qCACA,kBxDsiSR,CyD5lSA,UACI,UACA,YACA,qBACA,aACA,cACA,oBACA,mBACA,uBACA,qBACA,iBzD+lSJ,CyD5lSQ,6BACI,aACA,yBACA,kBACA,MACA,SACA,8CACA,mCACA,WACA,mBACA,gBACA,gBACA,oBACA,yBACA,aACA,oBzD8lSZ,CyDzlSY,sEACI,oBzD2lShB,CyDtlSI,gBACI,WACA,YACA,UzDwlSR,CyDnlSI,kBpCzCF,WNAE,wBdsEW,CoBpEb,oBrBgoSF,CqBvnSE,wEALE,WNNA,wBMD2D,CAS3D,oBrBqoSJ,CqBloSE,gDASI,0CrBynSN,CqBpnSE,sDAEE,WACA,wBpB0CW,CoBzCX,oBrBqnSJ,CqB9mSE,sJAGE,WACA,wBAzC+I,CA6C/I,oBrB2mSJ,CqBzmSI,wKAKI,0CrBumSR,CyDjnSI,oBpCzCF,WNAE,wBdsEW,CoBpEb,oBrB8pSF,CqBrpSE,8EALE,WNNA,wBMD2D,CAS3D,oBrBmqSJ,CqBhqSE,oDASI,0CrBupSN,CqBlpSE,0DAEE,WACA,wBpB0CW,CoBzCX,oBrBmpSJ,CqB5oSE,4JAGE,WACA,wBAzC+I,CA6C/I,oBrByoSJ,CqBvoSI,8KAKI,0CrBqoSR,CyD/oSI,kBpCzCF,cNAE,wBdsEW,CoBpEb,oBrB4rSF,CqBnrSE,wEALE,WNNA,wBMD2D,CAS3D,oBrBisSJ,CqB9rSE,gDASI,0CrBqrSN,CqBhrSE,sDAEE,cACA,wBpB0CW,CoBzCX,oBrBirSJ,CqB1qSE,sJAGE,WACA,wBAzC+I,CA6C/I,oBrBuqSJ,CqBrqSI,wKAKI,0CrBmqSR,CyD7qSI,epCzCF,WNAE,wBdsEW,CoBpEb,oBrB0tSF,CqBjtSE,+DALE,WNNA,wBMD2D,CAS3D,oBrB+tSJ,CqB5tSE,0CASI,0CrBmtSN,CqB9sSE,gDAEE,WACA,wBpB0CW,CoBzCX,oBrB+sSJ,CqBxsSE,6IAGE,WACA,wBAzC+I,CA6C/I,oBrBqsSJ,CqBnsSI,+JAKI,0CrBisSR,CyD3sSI,kBpCzCF,cNAE,wBdsEW,CoBpEb,oBrBwvSF,CqB/uSE,wEALE,cNNA,wBMD2D,CAS3D,oBrB6vSJ,CqB1vSE,gDASI,0CrBivSN,CqB5uSE,sDAEE,cACA,wBpB0CW,CoBzCX,oBrB6uSJ,CqBtuSE,sJAGE,cACA,wBAzC+I,CA6C/I,oBrBmuSJ,CqBjuSI,wKAKI,0CrB+tSR,CyDzuSI,iBpCzCF,WNAE,wBdsEW,CoBpEb,oBrBsxSF,CqB7wSE,qEALE,WNNA,wBMD2D,CAS3D,oBrB2xSJ,CqBxxSE,8CASI,yCrB+wSN,CqB1wSE,oDAEE,WACA,wBpB0CW,CoBzCX,oBrB2wSJ,CqBpwSE,mJAGE,WACA,wBAzC+I,CA6C/I,oBrBiwSJ,CqB/vSI,qKAKI,yCrB6vSR,CyDvwSI,gBpCzCF,cNAE,wBdsEW,CoBpEb,oBrBozSF,CqB3ySE,kEALE,cNNA,wBMD2D,CAS3D,oBrByzSJ,CqBtzSE,4CASI,2CrB6ySN,CqBxySE,kDAEE,cACA,wBpB0CW,CoBzCX,oBrByySJ,CqBlySE,gJAGE,cACA,wBAzC+I,CA6C/I,oBrB+xSJ,CqB7xSI,kKAKI,2CrB2xSR,CyDrySI,epCzCF,cNAE,wBdsEW,CoBpEb,oBrBk1SF,CqBz0SE,+DALE,cNNA,wBMD2D,CAS3D,oBrBu1SJ,CqBp1SE,0CASI,2CrB20SN,CqBt0SE,gDAEE,cACA,wBpB0CW,CoBzCX,oBrBu0SJ,CqBh0SE,6IAGE,WACA,wBAzC+I,CA6C/I,oBrB6zSJ,CqB3zSI,+JAKI,2CrByzSR,C0D92SI,aACI,yBACA,eACA,MACA,QACA,UARY,CASZ,YACA,U1Di3SR,COh0SI,yBmD9CA,cAEQ,WAfQ,CAgBR,8BACA,eACA,WACA,cACA,OACA,U1Dg3SV,CACF,CO30SI,yBmDlCA,WAEQ,yBACA,kB1D+2SV,CACF,C0D52SI,WACI,eACA,gBAjCa,CAkCb,a1D82SR,COt1SI,yBmD3BA,WAMQ,c1D+2SV,CACF,C0Dz2SQ,6EACI,kBACA,W1D22SZ,C0Dt2SQ,sCACI,U1Dw2SZ,C0D/1SQ,kFACI,S1Do2SZ,C0Dj2SQ,4CACI,U1Dm2SZ,C0D91SA,eACI,eACA,WACA,YACA,U1Di2SJ,C2D96SA,uBACI,Y3Di7SJ,C2D/6SI,6BACI,cACA,aACA,a3Di7SR,C2D76SA,qBACI,WACA,YACA,oB3Dg7SJ,C2D76SA,gBACI,UACA,YACA,4B3Dg7SJ,C2D96SI,oBACI,cACA,eACA,cACA,kBACA,U3Dg7SR,C2D16SQ,0DAEI,kB3D66SZ,C4D/8SA,OACI,gCACA,a5Dk9SJ,C4Dh9SI,YACI,Y5Dk9SR,C4Dh9SQ,uLACI,W5Dk9SZ,C4D78SA,mBACI,WACA,8BACA,6B5Dg9SJ,C4D98SI,kCACI,W5Dg9SR,C4D58SA,iBACI,cACA,iB5D+8SJ,C6Dx+SA,oBAII,yCACA,gCACA,a7D2+SJ,C6Dx+SA,cACI,YACA,gCACA,+BACA,Y7D2+SJ,C6Dz+SI,yBACI,aACA,S7D2+SR,C6Dv+SA,6jBAcI,a7D0+SJ,C8D7gTA,eACI,yBACA,aACA,mBACA,oBACA,eACA,W9DghTJ,C8D9gTI,qBACI,WACA,cACA,mB9DghTR,C8D7gTI,yBACI,YACA,qBACA,iD9D+gTR,C8D3gTA,YACI,kBACA,W9D8gTJ,C8D5gTI,wBACI,yBACA,aACA,mBACA,oBACA,sB9D8gTR,C8D1gTQ,+BACI,WACA,kBACA,MACA,QACA,SACA,OACA,kC9D4gTZ,C8DxgTI,qBACI,aACA,sBACA,mBACA,kBACA,aACA,iBACA,yBACA,qBACA,sBACA,mDACA,c9D0gTR,C8DxgTQ,2BACI,WACA,YACA,oBACA,oB9D0gTZ,C8DtgTI,gBACI,WACA,oF9DwgTR,C8DpgTA,eACI,kCACA,YACA,kBACA,UACA,gBACA,a9DugTJ,C8DrgTI,sBACI,WACA,kBACA,UACA,YACA,aACA,WACA,WACA,wB9DugTR,C8DpgTI,mBACI,iBACA,qCACA,e9DsgTR,C8DngTI,sBACI,yBACA,gBACA,e9DqgTR,C8DlgTI,qBACI,SACA,UACA,e9DogTR,C8DlgTQ,2BACI,gB9DogTZ,C8DjgTQ,wBACI,gB9DmgTZ,C8D9/SA,qBACI,iB9DigTJ,C8D9/SQ,wDACI,S9DggTZ,C8D5/SI,6BACI,kBACA,UACA,YACA,oCACA,UACA,YACA,qBACA,aACA,cACA,aACA,mBACA,uBACA,UACA,oB9D8/SR,C8D5/SQ,mCACI,wB9D8/SZ,C8D3/SQ,mCACI,WACA,YACA,U9D6/SZ,C8Dz/SI,+BACI,yBACA,aACA,mBACA,oBACA,uBACA,oB9D2/SR,C8Dz/SQ,qCACI,WACA,cACA,mB9D2/SZ,C8Dx/SQ,qCACI,aACA,cACA,oBACA,oB9D0/SZ,C8Dn/SQ,0CACI,WACA,kBACA,MACA,QACA,SACA,OACA,UACA,sCACA,0BACA,mB9Ds/SZ,C8Dn/SQ,yCACI,iCACA,kBACA,MACA,QACA,SACA,OACA,WACA,aACA,mBACA,uBACA,iBACA,WACA,gBACA,mCACA,mB9Dq/SZ,C8D/+SI,sBACI,gBACA,6BACA,gB9Dk/SR,C8D7+SI,0BACI,aACA,mBACA,8BACA,c9Dg/SR,C8D7+SI,wBACI,mBACA,gBACA,Q9D++SR,C8D5+SI,wBACI,cACA,aACA,qBACA,kB9D8+SR,C8D3+SI,uBACI,cACA,aACA,mBACA,a9D6+SR,C8D1+SI,0BACI,Y9D4+SR,C8D1+SQ,kCACI,a9D4+SZ,C+DxuTA,KACI,oBACA,oBACA,yBACA,qBACA,iB/D2uTJ,C+DzuTI,cACI,iB/D2uTR,C+DxuTI,YACI,qBACA,gBACA,WACA,oBACA,SACA,gB/D0uTR,C+DvuTI,aACI,yBACA,WACA,eACA,aACA,mBACA,gCACA,W/DyuTR,C+DvuTQ,mBACI,wB/DyuTZ,C+DtuTQ,iBACI,YACA,Y/DwuTZ,CgE3wTA,0BACI,iBACA,ehE8wTJ,CgE1wTI,uCACI,mBhE6wTR,CgEzwTQ,+DACI,YhE2wTZ,CgEtwTA,UACI,aACA,mBhEywTJ,CgEvwTI,uBACI,kBACA,kBACA,ShEywTR,CgEvwTQ,8BACI,WACA,UACA,yBACA,kBACA,MACA,aACA,qBACA,UhEywTZ,CgErwTI,gBACI,aACA,cACA,cACA,yBACA,qBACA,aACA,mBACA,sBhEuwTR,CgErwTQ,oBACI,cACA,chEuwTZ,CgEnwTI,mBACI,yBhEqwTR,CgElwTQ,iBACI,cACA,iBACA,chEowTZ,CgElwTY,mBACI,ahEowThB,CgEhwTQ,uBAEI,gBhEiwTZ,CgE9vTQ,gBACI,cACA,ehEgwTZ,CiE30TA,mBACI,sBACA,qBACA,qEACA,YjE80TJ,CiE30TQ,uDACI,wBjE60TZ,CiEz0TI,yBACI,WACA,WACA,yBACA,aACA,mBACA,uBACA,+BjE20TR,CiEz0TQ,6BACI,WACA,WjE20TZ,CiEv0TI,4BACI,oBACA,uBjEy0TR,CiEt0TQ,0BACI,iBACA,ajEw0TZ,CiEp0TY,kCACI,QjEs0ThB,CiEn0TY,oCACI,gBjEq0ThB,CkE/2TI,mBACI,4BlEk3TR,CkE92TA,cACI,aACA,mBACA,cACA,eACA,alEi3TJ,CkE/2TI,wCAEI,sCACA,oBlEg3TR,CkE72TI,gBACI,iBlE+2TR,CkE52TI,oBACI,yBACA,WACA,YACA,WACA,aACA,mBACA,uBACA,oBlE82TR,CkE52TQ,wBACI,WACA,WlE82TZ,CmEj5TA,YACI,iBACA,gBACA,uCACA,anEo5TJ,CmEl5TI,mBACI,kBACA,SACA,aACA,kBnEo5TR,CmEl5TQ,yBACI,qBACA,mBACA,aACA,anEo5TZ,CmEh5TI,wBACI,enEk5TR,CmEh5TQ,oCACI,mBACA,gBnEk5TZ,CoE36TA,mBACI,aACA,mBACA,8BACA,kBpE86TJ,COt3TI,yB6D5DJ,mBAOQ,YpE+6TN,CACF,CoE76TI,yBACI,qBACA,aACA,kBpE+6TR,CoE76TQ,6BACI,YACA,UpE+6TZ,CoE36TI,gCACI,YACA,UACA,yBACA,qBACA,cACA,aACA,UpE66TR,CoE36TQ,sCACI,cACA,YpE66TZ,CqE78TA,kBACI,YACA,aACA,gBrEg9TJ,CqE78TI,UACI,qBACA,aACA,kBrEg9TR,CqE98TQ,cACI,YACA,UrEg9TZ,COp5TI,4B8DxDJ,aAMQ,eACA,MACA,SACA,OACA,aACA,gBACA,gBACA,+CACA,qEACA,mBACA,qBrE28TN,CqEz9TM,2BACI,iBrE29TV,CACF,CqE58TI,qBACI,iBACA,gBACA,gBACA,iBACA,iCrE88TR,CO37TI,yB8DxBA,qBAQQ,iCrE+8TV,CACF,CqE58TI,oBACI,gBACA,gBACA,yBACA,qBACA,cACA,mBACA,mBrE88TR,CqE38TI,qBACI,YACA,aACA,mBACA,2BACA,gBrE68TR,CqEz8TA,kBACI,UACA,SACA,erE48TJ,CqEz8TQ,4CACI,YrE28TZ,CqEx8TQ,+BACI,iBrE08TZ,CqEx8TY,sCACI,WACA,kBACA,WACA,SACA,aACA,UACA,wBrE08ThB,CqEv8TY,oDACI,arEy8ThB,CqEt8TY,sDACI,qBACA,arEw8ThB,CqEt8TgB,mFACI,arEw8TpB,CqEh8TA,uBACI,aACA,mBACA,mBACA,sBACA,cACA,gBACA,kBrEm8TJ,CqEj8TI,2FAGI,qBACA,arEi8TR,CqE/7TQ,kLACI,arEi8TZ,CqE77TI,6BACI,oBACA,mBACA,oBrE+7TR,CqE77TQ,iCACI,YACA,UrE+7TZ,CqE17TA,qBACI,UACA,sBACA,erE67TJ,CqE37TI,yBACI,gBrE67TR,CqEz7TI,0BACI,mBACA,cACA,qBACA,arE47TR,CqEp7TQ,oEALI,gCACA,cACA,oBrEk8TZ,CqE/7TQ,oCAGI,erE47TZ,CqEt7TA,eACI,cACA,aACA,mBACA,gBACA,uBACA,WrEy7TJ,CqEv7TI,wBACI,kBrEy7TR,CqEt7TI,qBACI,gBACA,kBrEw7TR,CqEr7TI,uBACI,YACA,WACA,oBrEu7TR,CsEnnUA,oCACI,UACA,iBtEsnUJ,CsEnnUA,4BACI,kBACA,WACA,0BACA,kBACA,OACA,QACA,UACA,6BtEsnUJ,CA1nUA,iBAGI,kBA6nUJ,CA1nUA,iBACI,mBACA,UA6nUJ,CA/nUA,YACI,mBACA,UA6nUJ,CA1nUA,EACI,aA6nUJ,CA3nUI,yBAGI,aA2nUR,CAvnUA,KACI,+BACA,mBACA,gBACA,cACA,yBACA,+CACA,2BA0nUJ,CAvnUA,kBAMI,gBACA,gBACA,aA0nUJ,CAvnUA,UACI,YA0nUJ,C","file":"app.css","sourcesContent":["[data-simplebar] {\n position: relative;\n flex-direction: column;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n}\n\n.simplebar-wrapper {\n overflow: hidden;\n width: inherit;\n height: inherit;\n max-width: inherit;\n max-height: inherit;\n}\n\n.simplebar-mask {\n direction: inherit;\n position: absolute;\n overflow: hidden;\n padding: 0;\n margin: 0;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n width: auto !important;\n height: auto !important;\n z-index: 0;\n}\n\n.simplebar-offset {\n direction: inherit !important;\n box-sizing: inherit !important;\n resize: none !important;\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n padding: 0;\n margin: 0;\n -webkit-overflow-scrolling: touch;\n}\n\n.simplebar-content-wrapper {\n direction: inherit;\n box-sizing: border-box !important;\n position: relative;\n display: block;\n height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */\n width: auto;\n max-width: 100%; /* Not required for horizontal scroll to trigger */\n max-height: 100%; /* Needed for vertical scroll to trigger */\n scrollbar-width: none;\n -ms-overflow-style: none;\n}\n\n.simplebar-content-wrapper::-webkit-scrollbar,\n.simplebar-hide-scrollbar::-webkit-scrollbar {\n width: 0;\n height: 0;\n}\n\n.simplebar-content:before,\n.simplebar-content:after {\n content: ' ';\n display: table;\n}\n\n.simplebar-placeholder {\n max-height: 100%;\n max-width: 100%;\n width: 100%;\n pointer-events: none;\n}\n\n.simplebar-height-auto-observer-wrapper {\n box-sizing: inherit !important;\n height: 100%;\n width: 100%;\n max-width: 1px;\n position: relative;\n float: left;\n max-height: 1px;\n overflow: hidden;\n z-index: -1;\n padding: 0;\n margin: 0;\n pointer-events: none;\n flex-grow: inherit;\n flex-shrink: 0;\n flex-basis: 0;\n}\n\n.simplebar-height-auto-observer {\n box-sizing: inherit;\n display: block;\n opacity: 0;\n position: absolute;\n top: 0;\n left: 0;\n height: 1000%;\n width: 1000%;\n min-height: 1px;\n min-width: 1px;\n overflow: hidden;\n pointer-events: none;\n z-index: -1;\n}\n\n.simplebar-track {\n z-index: 1;\n position: absolute;\n right: 0;\n bottom: 0;\n pointer-events: none;\n overflow: hidden;\n}\n\n[data-simplebar].simplebar-dragging .simplebar-content {\n pointer-events: none;\n user-select: none;\n -webkit-user-select: none;\n}\n\n[data-simplebar].simplebar-dragging .simplebar-track {\n pointer-events: all;\n}\n\n.simplebar-scrollbar {\n position: absolute;\n left: 0;\n right: 0;\n min-height: 10px;\n}\n\n.simplebar-scrollbar:before {\n position: absolute;\n content: '';\n background: black;\n border-radius: 7px;\n left: 2px;\n right: 2px;\n opacity: 0;\n transition: opacity 0.2s linear;\n}\n\n.simplebar-scrollbar.simplebar-visible:before {\n /* When hovered, remove all transitions from drag handle */\n opacity: 0.5;\n transition: opacity 0s linear;\n}\n\n.simplebar-track.simplebar-vertical {\n top: 0;\n width: 11px;\n}\n\n.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {\n top: 2px;\n bottom: 2px;\n}\n\n.simplebar-track.simplebar-horizontal {\n left: 0;\n height: 11px;\n}\n\n.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {\n height: 100%;\n left: 2px;\n right: 2px;\n}\n\n.simplebar-track.simplebar-horizontal .simplebar-scrollbar {\n right: auto;\n left: 0;\n top: 2px;\n height: 7px;\n min-height: 0;\n min-width: 10px;\n width: auto;\n}\n\n/* Rtl support */\n[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {\n right: auto;\n left: 0;\n}\n\n.hs-dummy-scrollbar-size {\n direction: rtl;\n position: fixed;\n opacity: 0;\n visibility: hidden;\n height: 500px;\n width: 500px;\n overflow-y: hidden;\n overflow-x: scroll;\n}\n\n.simplebar-hide-scrollbar {\n position: fixed;\n left: 0;\n visibility: hidden;\n overflow-y: scroll;\n scrollbar-width: none;\n -ms-overflow-style: none;\n}\n","/*!\n * Quill Editor v1.3.7\n * https://quilljs.com/\n * Copyright (c) 2014, Jason Chen\n * Copyright (c) 2013, salesforce.com\n */\n.ql-container {\n box-sizing: border-box;\n font-family: Helvetica, Arial, sans-serif;\n font-size: 13px;\n height: 100%;\n margin: 0px;\n position: relative;\n}\n.ql-container.ql-disabled .ql-tooltip {\n visibility: hidden;\n}\n.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {\n pointer-events: none;\n}\n.ql-clipboard {\n left: -100000px;\n height: 1px;\n overflow-y: hidden;\n position: absolute;\n top: 50%;\n}\n.ql-clipboard p {\n margin: 0;\n padding: 0;\n}\n.ql-editor {\n box-sizing: border-box;\n line-height: 1.42;\n height: 100%;\n outline: none;\n overflow-y: auto;\n padding: 12px 15px;\n tab-size: 4;\n -moz-tab-size: 4;\n text-align: left;\n white-space: pre-wrap;\n word-wrap: break-word;\n}\n.ql-editor > * {\n cursor: text;\n}\n.ql-editor p,\n.ql-editor ol,\n.ql-editor ul,\n.ql-editor pre,\n.ql-editor blockquote,\n.ql-editor h1,\n.ql-editor h2,\n.ql-editor h3,\n.ql-editor h4,\n.ql-editor h5,\n.ql-editor h6 {\n margin: 0;\n padding: 0;\n counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;\n}\n.ql-editor ol,\n.ql-editor ul {\n padding-left: 1.5em;\n}\n.ql-editor ol > li,\n.ql-editor ul > li {\n list-style-type: none;\n}\n.ql-editor ul > li::before {\n content: '\\2022';\n}\n.ql-editor ul[data-checked=true],\n.ql-editor ul[data-checked=false] {\n pointer-events: none;\n}\n.ql-editor ul[data-checked=true] > li *,\n.ql-editor ul[data-checked=false] > li * {\n pointer-events: all;\n}\n.ql-editor ul[data-checked=true] > li::before,\n.ql-editor ul[data-checked=false] > li::before {\n color: #777;\n cursor: pointer;\n pointer-events: all;\n}\n.ql-editor ul[data-checked=true] > li::before {\n content: '\\2611';\n}\n.ql-editor ul[data-checked=false] > li::before {\n content: '\\2610';\n}\n.ql-editor li::before {\n display: inline-block;\n white-space: nowrap;\n width: 1.2em;\n}\n.ql-editor li:not(.ql-direction-rtl)::before {\n margin-left: -1.5em;\n margin-right: 0.3em;\n text-align: right;\n}\n.ql-editor li.ql-direction-rtl::before {\n margin-left: 0.3em;\n margin-right: -1.5em;\n}\n.ql-editor ol li:not(.ql-direction-rtl),\n.ql-editor ul li:not(.ql-direction-rtl) {\n padding-left: 1.5em;\n}\n.ql-editor ol li.ql-direction-rtl,\n.ql-editor ul li.ql-direction-rtl {\n padding-right: 1.5em;\n}\n.ql-editor ol li {\n counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;\n counter-increment: list-0;\n}\n.ql-editor ol li:before {\n content: counter(list-0, decimal) '. ';\n}\n.ql-editor ol li.ql-indent-1 {\n counter-increment: list-1;\n}\n.ql-editor ol li.ql-indent-1:before {\n content: counter(list-1, lower-alpha) '. ';\n}\n.ql-editor ol li.ql-indent-1 {\n counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;\n}\n.ql-editor ol li.ql-indent-2 {\n counter-increment: list-2;\n}\n.ql-editor ol li.ql-indent-2:before {\n content: counter(list-2, lower-roman) '. ';\n}\n.ql-editor ol li.ql-indent-2 {\n counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;\n}\n.ql-editor ol li.ql-indent-3 {\n counter-increment: list-3;\n}\n.ql-editor ol li.ql-indent-3:before {\n content: counter(list-3, decimal) '. ';\n}\n.ql-editor ol li.ql-indent-3 {\n counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;\n}\n.ql-editor ol li.ql-indent-4 {\n counter-increment: list-4;\n}\n.ql-editor ol li.ql-indent-4:before {\n content: counter(list-4, lower-alpha) '. ';\n}\n.ql-editor ol li.ql-indent-4 {\n counter-reset: list-5 list-6 list-7 list-8 list-9;\n}\n.ql-editor ol li.ql-indent-5 {\n counter-increment: list-5;\n}\n.ql-editor ol li.ql-indent-5:before {\n content: counter(list-5, lower-roman) '. ';\n}\n.ql-editor ol li.ql-indent-5 {\n counter-reset: list-6 list-7 list-8 list-9;\n}\n.ql-editor ol li.ql-indent-6 {\n counter-increment: list-6;\n}\n.ql-editor ol li.ql-indent-6:before {\n content: counter(list-6, decimal) '. ';\n}\n.ql-editor ol li.ql-indent-6 {\n counter-reset: list-7 list-8 list-9;\n}\n.ql-editor ol li.ql-indent-7 {\n counter-increment: list-7;\n}\n.ql-editor ol li.ql-indent-7:before {\n content: counter(list-7, lower-alpha) '. ';\n}\n.ql-editor ol li.ql-indent-7 {\n counter-reset: list-8 list-9;\n}\n.ql-editor ol li.ql-indent-8 {\n counter-increment: list-8;\n}\n.ql-editor ol li.ql-indent-8:before {\n content: counter(list-8, lower-roman) '. ';\n}\n.ql-editor ol li.ql-indent-8 {\n counter-reset: list-9;\n}\n.ql-editor ol li.ql-indent-9 {\n counter-increment: list-9;\n}\n.ql-editor ol li.ql-indent-9:before {\n content: counter(list-9, decimal) '. ';\n}\n.ql-editor .ql-indent-1:not(.ql-direction-rtl) {\n padding-left: 3em;\n}\n.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {\n padding-left: 4.5em;\n}\n.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {\n padding-right: 3em;\n}\n.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {\n padding-right: 4.5em;\n}\n.ql-editor .ql-indent-2:not(.ql-direction-rtl) {\n padding-left: 6em;\n}\n.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {\n padding-left: 7.5em;\n}\n.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {\n padding-right: 6em;\n}\n.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {\n padding-right: 7.5em;\n}\n.ql-editor .ql-indent-3:not(.ql-direction-rtl) {\n padding-left: 9em;\n}\n.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {\n padding-left: 10.5em;\n}\n.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {\n padding-right: 9em;\n}\n.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {\n padding-right: 10.5em;\n}\n.ql-editor .ql-indent-4:not(.ql-direction-rtl) {\n padding-left: 12em;\n}\n.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {\n padding-left: 13.5em;\n}\n.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {\n padding-right: 12em;\n}\n.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {\n padding-right: 13.5em;\n}\n.ql-editor .ql-indent-5:not(.ql-direction-rtl) {\n padding-left: 15em;\n}\n.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {\n padding-left: 16.5em;\n}\n.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {\n padding-right: 15em;\n}\n.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {\n padding-right: 16.5em;\n}\n.ql-editor .ql-indent-6:not(.ql-direction-rtl) {\n padding-left: 18em;\n}\n.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {\n padding-left: 19.5em;\n}\n.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {\n padding-right: 18em;\n}\n.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {\n padding-right: 19.5em;\n}\n.ql-editor .ql-indent-7:not(.ql-direction-rtl) {\n padding-left: 21em;\n}\n.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {\n padding-left: 22.5em;\n}\n.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {\n padding-right: 21em;\n}\n.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {\n padding-right: 22.5em;\n}\n.ql-editor .ql-indent-8:not(.ql-direction-rtl) {\n padding-left: 24em;\n}\n.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {\n padding-left: 25.5em;\n}\n.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {\n padding-right: 24em;\n}\n.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {\n padding-right: 25.5em;\n}\n.ql-editor .ql-indent-9:not(.ql-direction-rtl) {\n padding-left: 27em;\n}\n.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {\n padding-left: 28.5em;\n}\n.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {\n padding-right: 27em;\n}\n.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {\n padding-right: 28.5em;\n}\n.ql-editor .ql-video {\n display: block;\n max-width: 100%;\n}\n.ql-editor .ql-video.ql-align-center {\n margin: 0 auto;\n}\n.ql-editor .ql-video.ql-align-right {\n margin: 0 0 0 auto;\n}\n.ql-editor .ql-bg-black {\n background-color: #000;\n}\n.ql-editor .ql-bg-red {\n background-color: #e60000;\n}\n.ql-editor .ql-bg-orange {\n background-color: #f90;\n}\n.ql-editor .ql-bg-yellow {\n background-color: #ff0;\n}\n.ql-editor .ql-bg-green {\n background-color: #008a00;\n}\n.ql-editor .ql-bg-blue {\n background-color: #06c;\n}\n.ql-editor .ql-bg-purple {\n background-color: #93f;\n}\n.ql-editor .ql-color-white {\n color: #fff;\n}\n.ql-editor .ql-color-red {\n color: #e60000;\n}\n.ql-editor .ql-color-orange {\n color: #f90;\n}\n.ql-editor .ql-color-yellow {\n color: #ff0;\n}\n.ql-editor .ql-color-green {\n color: #008a00;\n}\n.ql-editor .ql-color-blue {\n color: #06c;\n}\n.ql-editor .ql-color-purple {\n color: #93f;\n}\n.ql-editor .ql-font-serif {\n font-family: Georgia, Times New Roman, serif;\n}\n.ql-editor .ql-font-monospace {\n font-family: Monaco, Courier New, monospace;\n}\n.ql-editor .ql-size-small {\n font-size: 0.75em;\n}\n.ql-editor .ql-size-large {\n font-size: 1.5em;\n}\n.ql-editor .ql-size-huge {\n font-size: 2.5em;\n}\n.ql-editor .ql-direction-rtl {\n direction: rtl;\n text-align: inherit;\n}\n.ql-editor .ql-align-center {\n text-align: center;\n}\n.ql-editor .ql-align-justify {\n text-align: justify;\n}\n.ql-editor .ql-align-right {\n text-align: right;\n}\n.ql-editor.ql-blank::before {\n color: rgba(0,0,0,0.6);\n content: attr(data-placeholder);\n font-style: italic;\n left: 15px;\n pointer-events: none;\n position: absolute;\n right: 15px;\n}\n.ql-snow.ql-toolbar:after,\n.ql-snow .ql-toolbar:after {\n clear: both;\n content: '';\n display: table;\n}\n.ql-snow.ql-toolbar button,\n.ql-snow .ql-toolbar button {\n background: none;\n border: none;\n cursor: pointer;\n display: inline-block;\n float: left;\n height: 24px;\n padding: 3px 5px;\n width: 28px;\n}\n.ql-snow.ql-toolbar button svg,\n.ql-snow .ql-toolbar button svg {\n float: left;\n height: 100%;\n}\n.ql-snow.ql-toolbar button:active:hover,\n.ql-snow .ql-toolbar button:active:hover {\n outline: none;\n}\n.ql-snow.ql-toolbar input.ql-image[type=file],\n.ql-snow .ql-toolbar input.ql-image[type=file] {\n display: none;\n}\n.ql-snow.ql-toolbar button:hover,\n.ql-snow .ql-toolbar button:hover,\n.ql-snow.ql-toolbar button:focus,\n.ql-snow .ql-toolbar button:focus,\n.ql-snow.ql-toolbar button.ql-active,\n.ql-snow .ql-toolbar button.ql-active,\n.ql-snow.ql-toolbar .ql-picker-label:hover,\n.ql-snow .ql-toolbar .ql-picker-label:hover,\n.ql-snow.ql-toolbar .ql-picker-label.ql-active,\n.ql-snow .ql-toolbar .ql-picker-label.ql-active,\n.ql-snow.ql-toolbar .ql-picker-item:hover,\n.ql-snow .ql-toolbar .ql-picker-item:hover,\n.ql-snow.ql-toolbar .ql-picker-item.ql-selected,\n.ql-snow .ql-toolbar .ql-picker-item.ql-selected {\n color: #06c;\n}\n.ql-snow.ql-toolbar button:hover .ql-fill,\n.ql-snow .ql-toolbar button:hover .ql-fill,\n.ql-snow.ql-toolbar button:focus .ql-fill,\n.ql-snow .ql-toolbar button:focus .ql-fill,\n.ql-snow.ql-toolbar button.ql-active .ql-fill,\n.ql-snow .ql-toolbar button.ql-active .ql-fill,\n.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,\n.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,\n.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,\n.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,\n.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,\n.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,\n.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,\n.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,\n.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,\n.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,\n.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,\n.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,\n.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,\n.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,\n.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,\n.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,\n.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,\n.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,\n.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,\n.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,\n.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,\n.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {\n fill: #06c;\n}\n.ql-snow.ql-toolbar button:hover .ql-stroke,\n.ql-snow .ql-toolbar button:hover .ql-stroke,\n.ql-snow.ql-toolbar button:focus .ql-stroke,\n.ql-snow .ql-toolbar button:focus .ql-stroke,\n.ql-snow.ql-toolbar button.ql-active .ql-stroke,\n.ql-snow .ql-toolbar button.ql-active .ql-stroke,\n.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,\n.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,\n.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,\n.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,\n.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,\n.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,\n.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,\n.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,\n.ql-snow.ql-toolbar button:hover .ql-stroke-miter,\n.ql-snow .ql-toolbar button:hover .ql-stroke-miter,\n.ql-snow.ql-toolbar button:focus .ql-stroke-miter,\n.ql-snow .ql-toolbar button:focus .ql-stroke-miter,\n.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,\n.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,\n.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,\n.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,\n.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,\n.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,\n.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,\n.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,\n.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,\n.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {\n stroke: #06c;\n}\n@media (pointer: coarse) {\n .ql-snow.ql-toolbar button:hover:not(.ql-active),\n .ql-snow .ql-toolbar button:hover:not(.ql-active) {\n color: #444;\n }\n .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,\n .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,\n .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,\n .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {\n fill: #444;\n }\n .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,\n .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,\n .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,\n .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {\n stroke: #444;\n }\n}\n.ql-snow {\n box-sizing: border-box;\n}\n.ql-snow * {\n box-sizing: border-box;\n}\n.ql-snow .ql-hidden {\n display: none;\n}\n.ql-snow .ql-out-bottom,\n.ql-snow .ql-out-top {\n visibility: hidden;\n}\n.ql-snow .ql-tooltip {\n position: absolute;\n transform: translateY(10px);\n}\n.ql-snow .ql-tooltip a {\n cursor: pointer;\n text-decoration: none;\n}\n.ql-snow .ql-tooltip.ql-flip {\n transform: translateY(-10px);\n}\n.ql-snow .ql-formats {\n display: inline-block;\n vertical-align: middle;\n}\n.ql-snow .ql-formats:after {\n clear: both;\n content: '';\n display: table;\n}\n.ql-snow .ql-stroke {\n fill: none;\n stroke: #444;\n stroke-linecap: round;\n stroke-linejoin: round;\n stroke-width: 2;\n}\n.ql-snow .ql-stroke-miter {\n fill: none;\n stroke: #444;\n stroke-miterlimit: 10;\n stroke-width: 2;\n}\n.ql-snow .ql-fill,\n.ql-snow .ql-stroke.ql-fill {\n fill: #444;\n}\n.ql-snow .ql-empty {\n fill: none;\n}\n.ql-snow .ql-even {\n fill-rule: evenodd;\n}\n.ql-snow .ql-thin,\n.ql-snow .ql-stroke.ql-thin {\n stroke-width: 1;\n}\n.ql-snow .ql-transparent {\n opacity: 0.4;\n}\n.ql-snow .ql-direction svg:last-child {\n display: none;\n}\n.ql-snow .ql-direction.ql-active svg:last-child {\n display: inline;\n}\n.ql-snow .ql-direction.ql-active svg:first-child {\n display: none;\n}\n.ql-snow .ql-editor h1 {\n font-size: 2em;\n}\n.ql-snow .ql-editor h2 {\n font-size: 1.5em;\n}\n.ql-snow .ql-editor h3 {\n font-size: 1.17em;\n}\n.ql-snow .ql-editor h4 {\n font-size: 1em;\n}\n.ql-snow .ql-editor h5 {\n font-size: 0.83em;\n}\n.ql-snow .ql-editor h6 {\n font-size: 0.67em;\n}\n.ql-snow .ql-editor a {\n text-decoration: underline;\n}\n.ql-snow .ql-editor blockquote {\n border-left: 4px solid #ccc;\n margin-bottom: 5px;\n margin-top: 5px;\n padding-left: 16px;\n}\n.ql-snow .ql-editor code,\n.ql-snow .ql-editor pre {\n background-color: #f0f0f0;\n border-radius: 3px;\n}\n.ql-snow .ql-editor pre {\n white-space: pre-wrap;\n margin-bottom: 5px;\n margin-top: 5px;\n padding: 5px 10px;\n}\n.ql-snow .ql-editor code {\n font-size: 85%;\n padding: 2px 4px;\n}\n.ql-snow .ql-editor pre.ql-syntax {\n background-color: #23241f;\n color: #f8f8f2;\n overflow: visible;\n}\n.ql-snow .ql-editor img {\n max-width: 100%;\n}\n.ql-snow .ql-picker {\n color: #444;\n display: inline-block;\n float: left;\n font-size: 14px;\n font-weight: 500;\n height: 24px;\n position: relative;\n vertical-align: middle;\n}\n.ql-snow .ql-picker-label {\n cursor: pointer;\n display: inline-block;\n height: 100%;\n padding-left: 8px;\n padding-right: 2px;\n position: relative;\n width: 100%;\n}\n.ql-snow .ql-picker-label::before {\n display: inline-block;\n line-height: 22px;\n}\n.ql-snow .ql-picker-options {\n background-color: #fff;\n display: none;\n min-width: 100%;\n padding: 4px 8px;\n position: absolute;\n white-space: nowrap;\n}\n.ql-snow .ql-picker-options .ql-picker-item {\n cursor: pointer;\n display: block;\n padding-bottom: 5px;\n padding-top: 5px;\n}\n.ql-snow .ql-picker.ql-expanded .ql-picker-label {\n color: #ccc;\n z-index: 2;\n}\n.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {\n fill: #ccc;\n}\n.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {\n stroke: #ccc;\n}\n.ql-snow .ql-picker.ql-expanded .ql-picker-options {\n display: block;\n margin-top: -1px;\n top: 100%;\n z-index: 1;\n}\n.ql-snow .ql-color-picker,\n.ql-snow .ql-icon-picker {\n width: 28px;\n}\n.ql-snow .ql-color-picker .ql-picker-label,\n.ql-snow .ql-icon-picker .ql-picker-label {\n padding: 2px 4px;\n}\n.ql-snow .ql-color-picker .ql-picker-label svg,\n.ql-snow .ql-icon-picker .ql-picker-label svg {\n right: 4px;\n}\n.ql-snow .ql-icon-picker .ql-picker-options {\n padding: 4px 0px;\n}\n.ql-snow .ql-icon-picker .ql-picker-item {\n height: 24px;\n width: 24px;\n padding: 2px 4px;\n}\n.ql-snow .ql-color-picker .ql-picker-options {\n padding: 3px 5px;\n width: 152px;\n}\n.ql-snow .ql-color-picker .ql-picker-item {\n border: 1px solid transparent;\n float: left;\n height: 16px;\n margin: 2px;\n padding: 0px;\n width: 16px;\n}\n.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {\n position: absolute;\n margin-top: -9px;\n right: 0;\n top: 50%;\n width: 18px;\n}\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,\n.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,\n.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,\n.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,\n.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {\n content: attr(data-label);\n}\n.ql-snow .ql-picker.ql-header {\n width: 98px;\n}\n.ql-snow .ql-picker.ql-header .ql-picker-label::before,\n.ql-snow .ql-picker.ql-header .ql-picker-item::before {\n content: 'Normal';\n}\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"1\"]::before,\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"1\"]::before {\n content: 'Heading 1';\n}\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"2\"]::before,\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"2\"]::before {\n content: 'Heading 2';\n}\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"3\"]::before,\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"3\"]::before {\n content: 'Heading 3';\n}\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"4\"]::before,\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"4\"]::before {\n content: 'Heading 4';\n}\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"5\"]::before,\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"5\"]::before {\n content: 'Heading 5';\n}\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"6\"]::before,\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"6\"]::before {\n content: 'Heading 6';\n}\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"1\"]::before {\n font-size: 2em;\n}\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"2\"]::before {\n font-size: 1.5em;\n}\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"3\"]::before {\n font-size: 1.17em;\n}\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"4\"]::before {\n font-size: 1em;\n}\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"5\"]::before {\n font-size: 0.83em;\n}\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"6\"]::before {\n font-size: 0.67em;\n}\n.ql-snow .ql-picker.ql-font {\n width: 108px;\n}\n.ql-snow .ql-picker.ql-font .ql-picker-label::before,\n.ql-snow .ql-picker.ql-font .ql-picker-item::before {\n content: 'Sans Serif';\n}\n.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,\n.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {\n content: 'Serif';\n}\n.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,\n.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {\n content: 'Monospace';\n}\n.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {\n font-family: Georgia, Times New Roman, serif;\n}\n.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {\n font-family: Monaco, Courier New, monospace;\n}\n.ql-snow .ql-picker.ql-size {\n width: 98px;\n}\n.ql-snow .ql-picker.ql-size .ql-picker-label::before,\n.ql-snow .ql-picker.ql-size .ql-picker-item::before {\n content: 'Normal';\n}\n.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,\n.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {\n content: 'Small';\n}\n.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,\n.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {\n content: 'Large';\n}\n.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,\n.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {\n content: 'Huge';\n}\n.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {\n font-size: 10px;\n}\n.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {\n font-size: 18px;\n}\n.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {\n font-size: 32px;\n}\n.ql-snow .ql-color-picker.ql-background .ql-picker-item {\n background-color: #fff;\n}\n.ql-snow .ql-color-picker.ql-color .ql-picker-item {\n background-color: #000;\n}\n.ql-toolbar.ql-snow {\n border: 1px solid #ccc;\n box-sizing: border-box;\n font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;\n padding: 8px;\n}\n.ql-toolbar.ql-snow .ql-formats {\n margin-right: 15px;\n}\n.ql-toolbar.ql-snow .ql-picker-label {\n border: 1px solid transparent;\n}\n.ql-toolbar.ql-snow .ql-picker-options {\n border: 1px solid transparent;\n box-shadow: rgba(0,0,0,0.2) 0 2px 8px;\n}\n.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {\n border-color: #ccc;\n}\n.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {\n border-color: #ccc;\n}\n.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,\n.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {\n border-color: #000;\n}\n.ql-toolbar.ql-snow + .ql-container.ql-snow {\n border-top: 0px;\n}\n.ql-snow .ql-tooltip {\n background-color: #fff;\n border: 1px solid #ccc;\n box-shadow: 0px 0px 5px #ddd;\n color: #444;\n padding: 5px 12px;\n white-space: nowrap;\n}\n.ql-snow .ql-tooltip::before {\n content: \"Visit URL:\";\n line-height: 26px;\n margin-right: 8px;\n}\n.ql-snow .ql-tooltip input[type=text] {\n display: none;\n border: 1px solid #ccc;\n font-size: 13px;\n height: 26px;\n margin: 0px;\n padding: 3px 5px;\n width: 170px;\n}\n.ql-snow .ql-tooltip a.ql-preview {\n display: inline-block;\n max-width: 200px;\n overflow-x: hidden;\n text-overflow: ellipsis;\n vertical-align: top;\n}\n.ql-snow .ql-tooltip a.ql-action::after {\n border-right: 1px solid #ccc;\n content: 'Edit';\n margin-left: 16px;\n padding-right: 8px;\n}\n.ql-snow .ql-tooltip a.ql-remove::before {\n content: 'Remove';\n margin-left: 8px;\n}\n.ql-snow .ql-tooltip a {\n line-height: 26px;\n}\n.ql-snow .ql-tooltip.ql-editing a.ql-preview,\n.ql-snow .ql-tooltip.ql-editing a.ql-remove {\n display: none;\n}\n.ql-snow .ql-tooltip.ql-editing input[type=text] {\n display: inline-block;\n}\n.ql-snow .ql-tooltip.ql-editing a.ql-action::after {\n border-right: 0px;\n content: 'Save';\n padding-right: 0px;\n}\n.ql-snow .ql-tooltip[data-mode=link]::before {\n content: \"Enter link:\";\n}\n.ql-snow .ql-tooltip[data-mode=formula]::before {\n content: \"Enter formula:\";\n}\n.ql-snow .ql-tooltip[data-mode=video]::before {\n content: \"Enter video:\";\n}\n.ql-snow a {\n color: #06c;\n}\n.ql-container.ql-snow {\n border: 1px solid #ccc;\n}\n","@keyframes chartjs-render-animation{from{opacity:.99}to{opacity:1}}.chartjs-render-monitor{animation:chartjs-render-animation 1ms}.chartjs-size-monitor,.chartjs-size-monitor-expand,.chartjs-size-monitor-shrink{position:absolute;direction:ltr;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1}.chartjs-size-monitor-expand>div{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0}","/*!\n * Bootstrap Reboot v4.6.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"reboot\";\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -webkit-tap-highlight-color: rgba($black, 0); // 5\n}\n\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\n// TODO: remove in v5\n// stylelint-disable-next-line selector-list-comma-newline-after\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use\n// the `inherit` value on things like `` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n @include font-size($font-size-base);\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Future-proof rule: in browsers that support :focus-visible, suppress the focus outline\n// on elements that programmatically receive focus but wouldn't normally show a visible\n// focus outline. In general, this would mean that the outline is only applied if the\n// interaction that led to the element receiving programmatic focus was a keyboard interaction,\n// or the browser has somehow determined that the user is primarily a keyboard user and/or\n// wants focus outlines to always be presented.\n//\n// See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible\n// and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable-next-line selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Remove the bottom border in Firefox 39-.\n// 5. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-original-title] { // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 4\n text-decoration-skip-ink: none; // 5\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n\nsmall {\n @include font-size(80%); // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n @include font-size(75%);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n\n @include hover() {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n color: inherit;\n text-decoration: none;\n\n @include hover() {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,\n // making it impossible to interact with the content\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: $label-margin-bottom;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// Set the cursor for non-`