diff --git a/.editorconfig b/.editorconfig old mode 100644 new mode 100755 diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml old mode 100644 new mode 100755 diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md old mode 100644 new mode 100755 diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml old mode 100644 new mode 100755 diff --git a/.github/SECURITY.md b/.github/SECURITY.md old mode 100644 new mode 100755 diff --git a/.github/workflows/monorepo-split.yml b/.github/workflows/monorepo-split.yml old mode 100644 new mode 100755 diff --git a/.github/workflows/npm-build.yml b/.github/workflows/npm-build.yml old mode 100644 new mode 100755 index 3b7040501..52feee2c6 --- a/.github/workflows/npm-build.yml +++ b/.github/workflows/npm-build.yml @@ -25,7 +25,7 @@ jobs: run: yarn install --frozen-lockfile - name: Build assets - run: yarn build + run: yarn run build - name: Commit changes uses: stefanzweifel/git-auto-commit-action@v4 diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml old mode 100644 new mode 100755 index 45a794cd4..476539c5d --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -11,33 +11,33 @@ jobs: strategy: fail-fast: false matrix: - php: ["8.1", "8.2"] - laravel: ["^9.0", "^10.0"] + php: [8.2] + laravel: [10.*] dependencies: ["highest"] - name: "PHP ${{ matrix.php }} - L${{ matrix.laravel }} ${{ matrix.dependencies == 'highest' && '↑' || '↓' }}" + name: "PHP ${{ matrix.php }} - L${{ matrix.laravel }} ${{ matrix.dependencies == 'highest' && '↑' || '↓' }}" - runs-on: "ubuntu-latest" + runs-on: "ubuntu-latest" - steps: - - name: "Checkout code" - uses: "actions/checkout@v3" + steps: + - name: "Checkout code" + uses: "actions/checkout@v3" - - name: "Setup PHP" - uses: "shivammathur/setup-php@v2" - with: - php-version: "${{ matrix.php }}" - extensions: "dom, curl, libxml, mbstring, zip, fileinfo" - tools: "composer:v2" - coverage: "none" + - name: "Setup PHP" + uses: "shivammathur/setup-php@v2" + with: + php-version: "${{ matrix.php }}" + extensions: "dom, curl, libxml, mbstring, zip, fileinfo" + tools: "composer:v2" + coverage: "none" - - name: "Install dependencies from composer.json" - if: "matrix.dependencies != 'lowest'" - run: "composer update --with='laravel/framework:${{ matrix.laravel }}' --no-interaction --no-progress" + - name: "Install dependencies from composer.json" + if: "matrix.dependencies != 'lowest'" + run: "composer update --with='laravel/framework:${{ matrix.laravel }}' --no-interaction --no-progress" - - name: "Install lowest dependencies from composer.json" - if: "matrix.dependencies == 'lowest'" - run: "composer update --with='laravel/framework:${{ matrix.laravel }}' --no-interaction --no-progress --prefer-lowest" + - name: "Install lowest dependencies from composer.json" + if: "matrix.dependencies == 'lowest'" + run: "composer update --with='laravel/framework:${{ matrix.laravel }}' --no-interaction --no-progress --prefer-lowest" - - name: "Run PHPStan" - run: ./vendor/bin/phpstan + - name: "Run PHPStan" + run: ./vendor/bin/phpstan diff --git a/.github/workflows/pint.yml b/.github/workflows/pint.yml old mode 100644 new mode 100755 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml old mode 100644 new mode 100755 index a768a7277..a14bee7b2 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,31 +10,38 @@ jobs: strategy: fail-fast: false matrix: - php: [8.2, 8.1] - laravel: [10.*, 9.*] - dependency-version: [prefer-stable] - include: - - laravel: 10.* - testbench: 8.* - - laravel: 9.* - testbench: 7.* - name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - steps: - - uses: actions/checkout@v3 - - name: Cache dependencies - uses: actions/cache@v2 - with: - path: ~/.composer/cache/files - key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: intl, mbstring, pdo, pdo_sqlite - coverage: none - - name: Install dependencies - run: | - composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update - composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction - - name: Execute tests - run: ./vendor/bin/pest --verbose + php: [8.2] + laravel: [10.*] + phpunit-versions: ['latest'] + name: PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }} + steps: + - uses: actions/checkout@v2 + - name: Setup PHP, with composer and extensions + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: mbstring, intl, amqp, dba + tools: composer:v2, phpunit:${{ matrix.php }} + + - name: Get composer cache directory + id: composer-cache + run: echo "::set-output name=dir::$(composer config cache-files-dir)" + + - name: Cache composer dependencies + uses: actions/cache@v2 + with: + path: ${{ steps.composer-cache.outputs.dir }} + key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} + restore-keys: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer- + + - name: Install Composer dependencies + run: | + composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update --dev + composer update --prefer-stable --no-interaction --no-suggest + + - name: Execute tests (Unit and Feature tests) + env: + APP_ENV: testing + DB_CONNECTION: testing + DB_DATABASE: ":memory:" + run: ./vendor/bin/pest --verbose diff --git a/.github/workflows/update-changelog.yml b/.github/workflows/update-changelog.yml old mode 100644 new mode 100755 diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 index fb04d0e84..54fc65724 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ /.idea /.vscode -/**/node_modules +/node_modules /node_modules.nosync yarn-error.log /**/vendor diff --git a/.prettierignore b/.prettierignore old mode 100644 new mode 100755 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md old mode 100644 new mode 100755 diff --git a/LICENSE.md b/LICENSE.md old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 index 64308dad8..a8d5e9d98 --- a/README.md +++ b/README.md @@ -20,9 +20,12 @@

+> [!CAUTION] +> This branch is Work In Progress and should not be considered production-ready. + ## Introduction -[Shopper](https://laravelshopper.io) is an Admin Management build for Laravel 9.0+ which includes all the necessary for your online market application. +[Shopper](https://laravelshopper.io) is a Headless e-commerce Admin Panel build for Laravel 10.0+ which includes all the necessary for your online store application. Web Application has made using Laravel. We feel building ecommerce websites has become a convoluted and confusing process that leaves developers unsatisfied. We want to turn you around to the simpler side and get back to basics. diff --git a/composer.json b/composer.json old mode 100644 new mode 100755 index dc64d597e..a9653f04c --- a/composer.json +++ b/composer.json @@ -4,26 +4,28 @@ "license": "MIT", "keywords": [ "e-commerce", - "Tallstack", - "Store" + "tallstack", + "store" ], "authors": [ { "name": "Arthur Monney", - "email": "monneylobe@gmail.com" + "email": "monneylobe@gmail.com", + "role": "Developer" } ], "require": { - "php": "^8.1", + "php": "^8.2", "ext-intl": "*", "composer-runtime-api": "^2.1" }, "require-dev": { - "blade-ui-kit/blade-heroicons": "^1.2", + "blade-ui-kit/blade-heroicons": "^2.0", "danharrin/livewire-rate-limiting": "^0.3|^1.0", "doctrine/dbal": "^3.6", "larastan/larastan": "^2.0", "laravel/pint": "^1.1", + "laravel/framework": "^10.0|^11.0", "mockery/mockery": "^1.4", "nunomaduro/collision": "^5.11|^6.1", "orchestra/testbench": "^7.0|^8.0", @@ -70,7 +72,6 @@ } }, "scripts": { - "baseline": "./vendor/bin/phpstan analyse --generate-baseline", "pint": "./vendor/bin/pint", "pest": "./vendor/bin/pest", "stan": "./vendor/bin/phpstan analyse --memory-limit=1G" diff --git a/composer.lock b/composer.lock old mode 100644 new mode 100755 index 02c10f934..d993af729 --- a/composer.lock +++ b/composer.lock @@ -4,31 +4,31 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c12b3d9dd12be5bb15e95c5af682755e", + "content-hash": "3745be792e03fed442892e9251810ce5", "packages": [], "packages-dev": [ { "name": "blade-ui-kit/blade-heroicons", - "version": "1.4.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/blade-ui-kit/blade-heroicons.git", - "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b" + "reference": "a265dbcf2a098121aad05752d0bba9f59022e4ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/dea08e8308d9bad9ebff1bc482d5985dbaacc91b", - "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b", + "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/a265dbcf2a098121aad05752d0bba9f59022e4ba", + "reference": "a265dbcf2a098121aad05752d0bba9f59022e4ba", "shasum": "" }, "require": { - "blade-ui-kit/blade-icons": "^1.1", - "illuminate/support": "^8.0|^9.0|^10.0", - "php": "^7.4|^8.0" + "blade-ui-kit/blade-icons": "^1.6", + "illuminate/support": "^9.0|^10.0|^11.0", + "php": "^8.0" }, "require-dev": { - "orchestra/testbench": "^6.0|^7.0|^8.0", - "phpunit/phpunit": "^9.0" + "orchestra/testbench": "^7.0|^8.0|^9.0", + "phpunit/phpunit": "^9.0|^10.5|^11.0" }, "type": "library", "extra": { @@ -62,19 +62,19 @@ ], "support": { "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues", - "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/1.4.0" + "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.3.0" }, "funding": [ { - "url": "https://github.com/caneco", + "url": "https://github.com/sponsors/driesvints", "type": "github" }, { - "url": "https://github.com/driesvints", - "type": "github" + "url": "https://www.paypal.com/paypalme/driesvints", + "type": "paypal" } ], - "time": "2023-01-25T17:57:58+00:00" + "time": "2024-02-07T16:33:46+00:00" }, { "name": "blade-ui-kit/blade-icons", @@ -159,16 +159,16 @@ }, { "name": "brianium/paratest", - "version": "v6.11.0", + "version": "v6.11.1", "source": { "type": "git", "url": "https://github.com/paratestphp/paratest.git", - "reference": "8083a421cee7dad847ee7c464529043ba30de380" + "reference": "78e297a969049ca7cc370e80ff5e102921ef39a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paratestphp/paratest/zipball/8083a421cee7dad847ee7c464529043ba30de380", - "reference": "8083a421cee7dad847ee7c464529043ba30de380", + "url": "https://api.github.com/repos/paratestphp/paratest/zipball/78e297a969049ca7cc370e80ff5e102921ef39a3", + "reference": "78e297a969049ca7cc370e80ff5e102921ef39a3", "shasum": "" }, "require": { @@ -235,7 +235,7 @@ ], "support": { "issues": "https://github.com/paratestphp/paratest/issues", - "source": "https://github.com/paratestphp/paratest/tree/v6.11.0" + "source": "https://github.com/paratestphp/paratest/tree/v6.11.1" }, "funding": [ { @@ -247,7 +247,7 @@ "type": "paypal" } ], - "time": "2023-10-31T09:13:57+00:00" + "time": "2024-03-13T06:54:29+00:00" }, { "name": "brick/math", @@ -678,16 +678,16 @@ }, { "name": "doctrine/dbal", - "version": "3.8.2", + "version": "3.8.3", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "a19a1d05ca211f41089dffcc387733a6875196cb" + "reference": "db922ba9436b7b18a23d1653a0b41ff2369ca41c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/a19a1d05ca211f41089dffcc387733a6875196cb", - "reference": "a19a1d05ca211f41089dffcc387733a6875196cb", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/db922ba9436b7b18a23d1653a0b41ff2369ca41c", + "reference": "db922ba9436b7b18a23d1653a0b41ff2369ca41c", "shasum": "" }, "require": { @@ -703,12 +703,12 @@ "doctrine/coding-standard": "12.0.0", "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2023.1", - "phpstan/phpstan": "1.10.57", + "phpstan/phpstan": "1.10.58", "phpstan/phpstan-strict-rules": "^1.5", "phpunit/phpunit": "9.6.16", "psalm/plugin-phpunit": "0.18.4", "slevomat/coding-standard": "8.13.1", - "squizlabs/php_codesniffer": "3.8.1", + "squizlabs/php_codesniffer": "3.9.0", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/console": "^4.4|^5.4|^6.0|^7.0", "vimeo/psalm": "4.30.0" @@ -771,7 +771,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.8.2" + "source": "https://github.com/doctrine/dbal/tree/3.8.3" }, "funding": [ { @@ -787,7 +787,7 @@ "type": "tidelift" } ], - "time": "2024-02-12T18:36:36+00:00" + "time": "2024-03-03T15:55:06+00:00" }, { "name": "doctrine/deprecations", @@ -1876,16 +1876,16 @@ }, { "name": "jean85/pretty-package-versions", - "version": "2.0.5", + "version": "2.0.6", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af" + "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af", - "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4", + "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4", "shasum": "" }, "require": { @@ -1893,9 +1893,9 @@ "php": "^7.1|^8.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.17", + "friendsofphp/php-cs-fixer": "^3.2", "jean85/composer-provided-replaced-stub-package": "^1.0", - "phpstan/phpstan": "^0.12.66", + "phpstan/phpstan": "^1.4", "phpunit/phpunit": "^7.5|^8.5|^9.4", "vimeo/psalm": "^4.3" }, @@ -1929,22 +1929,22 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6" }, - "time": "2021-10-08T21:21:46+00:00" + "time": "2024-03-08T09:58:59+00:00" }, { "name": "larastan/larastan", - "version": "v2.9.1", + "version": "v2.9.2", "source": { "type": "git", "url": "https://github.com/larastan/larastan.git", - "reference": "467113c58d110ad617cf9e07ff49b0948d1c03cc" + "reference": "a79b46b96060504b400890674b83f66aa7f5db6d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/larastan/larastan/zipball/467113c58d110ad617cf9e07ff49b0948d1c03cc", - "reference": "467113c58d110ad617cf9e07ff49b0948d1c03cc", + "url": "https://api.github.com/repos/larastan/larastan/zipball/a79b46b96060504b400890674b83f66aa7f5db6d", + "reference": "a79b46b96060504b400890674b83f66aa7f5db6d", "shasum": "" }, "require": { @@ -1961,6 +1961,7 @@ "phpstan/phpstan": "^1.10.50" }, "require-dev": { + "doctrine/coding-standard": "^12.0", "nikic/php-parser": "^4.17.1", "orchestra/canvas": "^7.11.1 || ^8.11.0 || ^9.0.0", "orchestra/testbench": "^7.33.0 || ^8.13.0 || ^9.0.0", @@ -2012,7 +2013,7 @@ ], "support": { "issues": "https://github.com/larastan/larastan/issues", - "source": "https://github.com/larastan/larastan/tree/v2.9.1" + "source": "https://github.com/larastan/larastan/tree/v2.9.2" }, "funding": [ { @@ -2032,20 +2033,20 @@ "type": "patreon" } ], - "time": "2024-02-26T14:10:20+00:00" + "time": "2024-02-27T03:16:03+00:00" }, { "name": "laravel/framework", - "version": "v10.45.1", + "version": "v10.48.4", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "dcf5d1d722b84ad38a5e053289130b6962f830bd" + "reference": "7e0701bf59cb76a51f7c1f7bea51c0c0c29c0b72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/dcf5d1d722b84ad38a5e053289130b6962f830bd", - "reference": "dcf5d1d722b84ad38a5e053289130b6962f830bd", + "url": "https://api.github.com/repos/laravel/framework/zipball/7e0701bf59cb76a51f7c1f7bea51c0c0c29c0b72", + "reference": "7e0701bf59cb76a51f7c1f7bea51c0c0c29c0b72", "shasum": "" }, "require": { @@ -2093,6 +2094,7 @@ "conflict": { "carbonphp/carbon-doctrine-types": ">=3.0", "doctrine/dbal": ">=4.0", + "mockery/mockery": "1.6.8", "phpunit/phpunit": ">=11.0.0", "tightenco/collect": "<5.5.33" }, @@ -2149,7 +2151,7 @@ "league/flysystem-sftp-v3": "^3.0", "mockery/mockery": "^1.5.1", "nyholm/psr7": "^1.2", - "orchestra/testbench-core": "^8.18", + "orchestra/testbench-core": "^8.23.4", "pda/pheanstalk": "^4.0", "phpstan/phpstan": "^1.4.7", "phpunit/phpunit": "^10.0.7", @@ -2238,20 +2240,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2024-02-21T14:07:36+00:00" + "time": "2024-03-21T13:36:36+00:00" }, { "name": "laravel/pint", - "version": "v1.14.0", + "version": "v1.15.0", "source": { "type": "git", "url": "https://github.com/laravel/pint.git", - "reference": "6b127276e3f263f7bb17d5077e9e0269e61b2a0e" + "reference": "c52de679b3ac01207016c179d7ce173e4be128c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/pint/zipball/6b127276e3f263f7bb17d5077e9e0269e61b2a0e", - "reference": "6b127276e3f263f7bb17d5077e9e0269e61b2a0e", + "url": "https://api.github.com/repos/laravel/pint/zipball/c52de679b3ac01207016c179d7ce173e4be128c4", + "reference": "c52de679b3ac01207016c179d7ce173e4be128c4", "shasum": "" }, "require": { @@ -2304,20 +2306,20 @@ "issues": "https://github.com/laravel/pint/issues", "source": "https://github.com/laravel/pint" }, - "time": "2024-02-20T17:38:05+00:00" + "time": "2024-03-26T16:40:24+00:00" }, { "name": "laravel/prompts", - "version": "v0.1.15", + "version": "v0.1.17", "source": { "type": "git", "url": "https://github.com/laravel/prompts.git", - "reference": "d814a27514d99b03c85aa42b22cfd946568636c1" + "reference": "8ee9f87f7f9eadcbe21e9e72cd4176b2f06cd5b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/prompts/zipball/d814a27514d99b03c85aa42b22cfd946568636c1", - "reference": "d814a27514d99b03c85aa42b22cfd946568636c1", + "url": "https://api.github.com/repos/laravel/prompts/zipball/8ee9f87f7f9eadcbe21e9e72cd4176b2f06cd5b5", + "reference": "8ee9f87f7f9eadcbe21e9e72cd4176b2f06cd5b5", "shasum": "" }, "require": { @@ -2359,9 +2361,9 @@ ], "support": { "issues": "https://github.com/laravel/prompts/issues", - "source": "https://github.com/laravel/prompts/tree/v0.1.15" + "source": "https://github.com/laravel/prompts/tree/v0.1.17" }, - "time": "2023-12-29T22:37:42+00:00" + "time": "2024-03-13T16:05:43+00:00" }, { "name": "laravel/serializable-closure", @@ -2679,16 +2681,16 @@ }, { "name": "league/flysystem", - "version": "3.24.0", + "version": "3.26.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "b25a361508c407563b34fac6f64a8a17a8819675" + "reference": "072735c56cc0da00e10716dd90d5a7f7b40b36be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/b25a361508c407563b34fac6f64a8a17a8819675", - "reference": "b25a361508c407563b34fac6f64a8a17a8819675", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/072735c56cc0da00e10716dd90d5a7f7b40b36be", + "reference": "072735c56cc0da00e10716dd90d5a7f7b40b36be", "shasum": "" }, "require": { @@ -2716,7 +2718,7 @@ "friendsofphp/php-cs-fixer": "^3.5", "google/cloud-storage": "^1.23", "microsoft/azure-storage-blob": "^1.1", - "phpseclib/phpseclib": "^3.0.34", + "phpseclib/phpseclib": "^3.0.36", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.5.11|^10.0", "sabre/dav": "^4.6.0" @@ -2753,7 +2755,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.24.0" + "source": "https://github.com/thephpleague/flysystem/tree/3.26.0" }, "funding": [ { @@ -2765,20 +2767,20 @@ "type": "github" } ], - "time": "2024-02-04T12:10:17+00:00" + "time": "2024-03-25T11:49:53+00:00" }, { "name": "league/flysystem-local", - "version": "3.23.1", + "version": "3.25.1", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-local.git", - "reference": "b884d2bf9b53bb4804a56d2df4902bb51e253f00" + "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/b884d2bf9b53bb4804a56d2df4902bb51e253f00", - "reference": "b884d2bf9b53bb4804a56d2df4902bb51e253f00", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/61a6a90d6e999e4ddd9ce5adb356de0939060b92", + "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92", "shasum": "" }, "require": { @@ -2812,8 +2814,7 @@ "local" ], "support": { - "issues": "https://github.com/thephpleague/flysystem-local/issues", - "source": "https://github.com/thephpleague/flysystem-local/tree/3.23.1" + "source": "https://github.com/thephpleague/flysystem-local/tree/3.25.1" }, "funding": [ { @@ -2825,7 +2826,7 @@ "type": "github" } ], - "time": "2024-01-26T18:25:23+00:00" + "time": "2024-03-15T19:58:44+00:00" }, { "name": "league/mime-type-detection", @@ -2958,16 +2959,16 @@ }, { "name": "mockery/mockery", - "version": "1.6.7", + "version": "1.6.11", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06" + "reference": "81a161d0b135df89951abd52296adf97deb0723d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06", - "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06", + "url": "https://api.github.com/repos/mockery/mockery/zipball/81a161d0b135df89951abd52296adf97deb0723d", + "reference": "81a161d0b135df89951abd52296adf97deb0723d", "shasum": "" }, "require": { @@ -2979,8 +2980,8 @@ "phpunit/phpunit": "<8.0" }, "require-dev": { - "phpunit/phpunit": "^8.5 || ^9.6.10", - "symplify/easy-coding-standard": "^12.0.8" + "phpunit/phpunit": "^8.5 || ^9.6.17", + "symplify/easy-coding-standard": "^12.1.14" }, "type": "library", "autoload": { @@ -3037,7 +3038,7 @@ "security": "https://github.com/mockery/mockery/security/advisories", "source": "https://github.com/mockery/mockery" }, - "time": "2023-12-10T02:24:34+00:00" + "time": "2024-03-21T18:34:15+00:00" }, { "name": "monolog/monolog", @@ -3456,16 +3457,16 @@ }, { "name": "nikic/php-parser", - "version": "v5.0.1", + "version": "v5.0.2", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69" + "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2218c2252c874a4624ab2f613d86ac32d227bc69", - "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13", + "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13", "shasum": "" }, "require": { @@ -3508,9 +3509,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.1" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2" }, - "time": "2024-02-21T19:24:10+00:00" + "time": "2024-03-05T20:51:40+00:00" }, { "name": "nunomaduro/collision", @@ -3688,25 +3689,25 @@ }, { "name": "orchestra/canvas", - "version": "v8.11.7", + "version": "v8.11.8", "source": { "type": "git", "url": "https://github.com/orchestral/canvas.git", - "reference": "e4a0157f522222725f1559bde0da1091a91542fb" + "reference": "31b1f338fb9d2f3c97ccbc62b27d3e5bf86a02e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/orchestral/canvas/zipball/e4a0157f522222725f1559bde0da1091a91542fb", - "reference": "e4a0157f522222725f1559bde0da1091a91542fb", + "url": "https://api.github.com/repos/orchestral/canvas/zipball/31b1f338fb9d2f3c97ccbc62b27d3e5bf86a02e5", + "reference": "31b1f338fb9d2f3c97ccbc62b27d3e5bf86a02e5", "shasum": "" }, "require": { "composer-runtime-api": "^2.2", "composer/semver": "^3.0", - "illuminate/console": "^10.39", - "illuminate/database": "^10.39", - "illuminate/filesystem": "^10.39", - "illuminate/support": "^10.39", + "illuminate/console": "^10.48.4", + "illuminate/database": "^10.48.4", + "illuminate/filesystem": "^10.48.4", + "illuminate/support": "^10.48.4", "orchestra/canvas-core": "^8.10.2", "orchestra/testbench-core": "^8.19", "php": "^8.1", @@ -3714,12 +3715,12 @@ "symfony/yaml": "^6.2" }, "require-dev": { - "laravel/framework": "^10.39", + "laravel/framework": "^10.48.4", "laravel/pint": "^1.6", "mockery/mockery": "^1.5.1", - "phpstan/phpstan": "^1.10.5", - "phpunit/phpunit": "^10.1", - "spatie/laravel-ray": "^1.32.4" + "phpstan/phpstan": "^1.10.56", + "phpunit/phpunit": "^10.5", + "spatie/laravel-ray": "^1.33" }, "bin": [ "canvas" @@ -3757,9 +3758,9 @@ "description": "Code Generators for Laravel Applications and Packages", "support": { "issues": "https://github.com/orchestral/canvas/issues", - "source": "https://github.com/orchestral/canvas/tree/v8.11.7" + "source": "https://github.com/orchestral/canvas/tree/v8.11.8" }, - "time": "2024-02-07T10:29:23+00:00" + "time": "2024-03-21T14:41:18+00:00" }, { "name": "orchestra/canvas-core", @@ -3835,16 +3836,16 @@ }, { "name": "orchestra/testbench", - "version": "v8.21.1", + "version": "v8.22.2", "source": { "type": "git", "url": "https://github.com/orchestral/testbench.git", - "reference": "c22a81802a68e746e032edf65cbb68af28a52670" + "reference": "d08b40877714370c8788ff1d9813d9fc9c6c55b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/orchestral/testbench/zipball/c22a81802a68e746e032edf65cbb68af28a52670", - "reference": "c22a81802a68e746e032edf65cbb68af28a52670", + "url": "https://api.github.com/repos/orchestral/testbench/zipball/d08b40877714370c8788ff1d9813d9fc9c6c55b2", + "reference": "d08b40877714370c8788ff1d9813d9fc9c6c55b2", "shasum": "" }, "require": { @@ -3852,8 +3853,8 @@ "fakerphp/faker": "^1.21", "laravel/framework": "^10.40", "mockery/mockery": "^1.5.1", - "orchestra/testbench-core": "^8.21.1", - "orchestra/workbench": "^1.2 || ^8.2", + "orchestra/testbench-core": "^8.23.5", + "orchestra/workbench": "^1.4 || ^8.4", "php": "^8.1", "phpunit/phpunit": "^9.6 || ^10.1", "symfony/process": "^6.2", @@ -3884,22 +3885,22 @@ ], "support": { "issues": "https://github.com/orchestral/testbench/issues", - "source": "https://github.com/orchestral/testbench/tree/v8.21.1" + "source": "https://github.com/orchestral/testbench/tree/v8.22.2" }, - "time": "2024-01-22T03:22:22+00:00" + "time": "2024-03-25T10:09:14+00:00" }, { "name": "orchestra/testbench-core", - "version": "v8.22.1", + "version": "v8.23.5", "source": { "type": "git", "url": "https://github.com/orchestral/testbench-core.git", - "reference": "b0006c092694828f4b0fa409a369b798e5e26f8d" + "reference": "0e5c930d247f50d1d6d5997441e57891af862634" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/b0006c092694828f4b0fa409a369b798e5e26f8d", - "reference": "b0006c092694828f4b0fa409a369b798e5e26f8d", + "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/0e5c930d247f50d1d6d5997441e57891af862634", + "reference": "0e5c930d247f50d1d6d5997441e57891af862634", "shasum": "" }, "require": { @@ -3909,7 +3910,7 @@ }, "conflict": { "brianium/paratest": "<6.4.0 || >=7.0.0 <7.1.4 || >=8.0.0", - "laravel/framework": "<10.40 || >=11.0.0", + "laravel/framework": "<10.48.2 || >=11.0.0", "nunomaduro/collision": "<6.4.0 || >=7.0.0 <7.4.0 || >=8.0.0", "orchestra/testbench-dusk": "<8.21.0 || >=9.0.0", "orchestra/workbench": "<1.0.0", @@ -3917,7 +3918,7 @@ }, "require-dev": { "fakerphp/faker": "^1.21", - "laravel/framework": "^10.40", + "laravel/framework": "^10.48.2", "laravel/pint": "^1.6", "mockery/mockery": "^1.5.1", "phpstan/phpstan": "^1.10.7", @@ -3931,7 +3932,7 @@ "brianium/paratest": "Allow using parallel testing (^6.4 || ^7.1.4).", "ext-pcntl": "Required to use all features of the console signal trapping.", "fakerphp/faker": "Allow using Faker for testing (^1.21).", - "laravel/framework": "Required for testing (^10.40).", + "laravel/framework": "Required for testing (^10.48.2).", "mockery/mockery": "Allow using Mockery for testing (^1.5.1).", "nunomaduro/collision": "Allow using Laravel style tests output and parallel testing (^6.4 || ^7.4).", "orchestra/testbench-browser-kit": "Allow using legacy Laravel BrowserKit for testing (^8.0).", @@ -3978,20 +3979,20 @@ "issues": "https://github.com/orchestral/testbench/issues", "source": "https://github.com/orchestral/testbench-core" }, - "time": "2024-02-21T23:33:22+00:00" + "time": "2024-03-25T04:32:37+00:00" }, { "name": "orchestra/workbench", - "version": "v8.2.1", + "version": "v8.4.0", "source": { "type": "git", "url": "https://github.com/orchestral/workbench.git", - "reference": "e8e6e4dcf6fb26ea1924c3581e49aa347691a8ea" + "reference": "7db7009377fd1afe25c783e9092af911cd04b3a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/orchestral/workbench/zipball/e8e6e4dcf6fb26ea1924c3581e49aa347691a8ea", - "reference": "e8e6e4dcf6fb26ea1924c3581e49aa347691a8ea", + "url": "https://api.github.com/repos/orchestral/workbench/zipball/7db7009377fd1afe25c783e9092af911cd04b3a9", + "reference": "7db7009377fd1afe25c783e9092af911cd04b3a9", "shasum": "" }, "require": { @@ -4000,7 +4001,7 @@ "laravel/framework": "^10.38.1", "laravel/tinker": "^2.8.2", "orchestra/canvas": "^8.11.4", - "orchestra/testbench-core": "^8.17", + "orchestra/testbench-core": "^8.22", "php": "^8.1", "spatie/laravel-ray": "^1.32.4", "symfony/polyfill-php83": "^1.28", @@ -4046,9 +4047,9 @@ ], "support": { "issues": "https://github.com/orchestral/workbench/issues", - "source": "https://github.com/orchestral/workbench/tree/v8.2.1" + "source": "https://github.com/orchestral/workbench/tree/v8.4.0" }, - "time": "2023-12-28T15:15:44+00:00" + "time": "2024-03-13T06:02:29+00:00" }, { "name": "pestphp/pest", @@ -4456,20 +4457,21 @@ }, { "name": "phar-io/manifest", - "version": "2.0.3", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/phar-io/manifest.git", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53" + "reference": "54750ef60c58e43759730615a392c31c80e23176" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", "shasum": "" }, "require": { "ext-dom": "*", + "ext-libxml": "*", "ext-phar": "*", "ext-xmlwriter": "*", "phar-io/version": "^3.0.1", @@ -4510,9 +4512,15 @@ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", "support": { "issues": "https://github.com/phar-io/manifest/issues", - "source": "https://github.com/phar-io/manifest/tree/2.0.3" + "source": "https://github.com/phar-io/manifest/tree/2.0.4" }, - "time": "2021-07-20T11:28:43+00:00" + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" }, { "name": "phar-io/version", @@ -4730,16 +4738,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.10.59", + "version": "1.10.65", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "e607609388d3a6d418a50a49f7940e8086798281" + "reference": "3c657d057a0b7ecae19cb12db446bbc99d8839c6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e607609388d3a6d418a50a49f7940e8086798281", - "reference": "e607609388d3a6d418a50a49f7940e8086798281", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/3c657d057a0b7ecae19cb12db446bbc99d8839c6", + "reference": "3c657d057a0b7ecae19cb12db446bbc99d8839c6", "shasum": "" }, "require": { @@ -4788,20 +4796,20 @@ "type": "tidelift" } ], - "time": "2024-02-20T13:59:13+00:00" + "time": "2024-03-23T10:30:26+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.30", + "version": "9.2.31", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089" + "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089", - "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965", + "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965", "shasum": "" }, "require": { @@ -4858,7 +4866,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31" }, "funding": [ { @@ -4866,7 +4874,7 @@ "type": "github" } ], - "time": "2023-12-22T06:47:57+00:00" + "time": "2024-03-02T06:37:42+00:00" }, { "name": "phpunit/php-file-iterator", @@ -5111,16 +5119,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.6.17", + "version": "9.6.18", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "1a156980d78a6666721b7e8e8502fe210b587fcd" + "reference": "32c2c2d6580b1d8ab3c10b1e9e4dc263cc69bb04" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1a156980d78a6666721b7e8e8502fe210b587fcd", - "reference": "1a156980d78a6666721b7e8e8502fe210b587fcd", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/32c2c2d6580b1d8ab3c10b1e9e4dc263cc69bb04", + "reference": "32c2c2d6580b1d8ab3c10b1e9e4dc263cc69bb04", "shasum": "" }, "require": { @@ -5194,7 +5202,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.17" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.18" }, "funding": [ { @@ -5210,7 +5218,7 @@ "type": "tidelift" } ], - "time": "2024-02-23T13:14:51+00:00" + "time": "2024-03-21T12:07:32+00:00" }, { "name": "pimple/pimple", @@ -5676,16 +5684,16 @@ }, { "name": "psy/psysh", - "version": "v0.12.0", + "version": "v0.12.2", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d" + "reference": "9185c66c2165bbf4d71de78a69dccf4974f9538d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d", - "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9185c66c2165bbf4d71de78a69dccf4974f9538d", + "reference": "9185c66c2165bbf4d71de78a69dccf4974f9538d", "shasum": "" }, "require": { @@ -5749,9 +5757,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.0" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.2" }, - "time": "2023-12-20T15:28:09+00:00" + "time": "2024-03-17T01:53:00+00:00" }, { "name": "ralouphie/getallheaders", @@ -5980,16 +5988,16 @@ }, { "name": "rector/rector", - "version": "1.0.1", + "version": "1.0.3", "source": { "type": "git", "url": "https://github.com/rectorphp/rector.git", - "reference": "258b775511e62a7188f8ce114d44acaf244d9a7d" + "reference": "c59507a9090b465d65e1aceed91e5b81986e375b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/rectorphp/rector/zipball/258b775511e62a7188f8ce114d44acaf244d9a7d", - "reference": "258b775511e62a7188f8ce114d44acaf244d9a7d", + "url": "https://api.github.com/repos/rectorphp/rector/zipball/c59507a9090b465d65e1aceed91e5b81986e375b", + "reference": "c59507a9090b465d65e1aceed91e5b81986e375b", "shasum": "" }, "require": { @@ -6024,7 +6032,7 @@ ], "support": { "issues": "https://github.com/rectorphp/rector/issues", - "source": "https://github.com/rectorphp/rector/tree/1.0.1" + "source": "https://github.com/rectorphp/rector/tree/1.0.3" }, "funding": [ { @@ -6032,7 +6040,7 @@ "type": "github" } ], - "time": "2024-02-16T07:53:23+00:00" + "time": "2024-03-14T15:04:18+00:00" }, { "name": "reecem/mocker", @@ -6105,16 +6113,16 @@ }, { "name": "sebastian/cli-parser", - "version": "1.0.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/cli-parser.git", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" + "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b", + "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b", "shasum": "" }, "require": { @@ -6149,7 +6157,7 @@ "homepage": "https://github.com/sebastianbergmann/cli-parser", "support": { "issues": "https://github.com/sebastianbergmann/cli-parser/issues", - "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" + "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2" }, "funding": [ { @@ -6157,7 +6165,7 @@ "type": "github" } ], - "time": "2020-09-28T06:08:49+00:00" + "time": "2024-03-02T06:27:43+00:00" }, { "name": "sebastian/code-unit", @@ -6403,16 +6411,16 @@ }, { "name": "sebastian/diff", - "version": "4.0.5", + "version": "4.0.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" + "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", - "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc", + "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc", "shasum": "" }, "require": { @@ -6457,7 +6465,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6" }, "funding": [ { @@ -6465,7 +6473,7 @@ "type": "github" } ], - "time": "2023-05-07T05:35:17+00:00" + "time": "2024-03-02T06:30:58+00:00" }, { "name": "sebastian/environment", @@ -6532,16 +6540,16 @@ }, { "name": "sebastian/exporter", - "version": "4.0.5", + "version": "4.0.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" + "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", - "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72", + "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72", "shasum": "" }, "require": { @@ -6597,7 +6605,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6" }, "funding": [ { @@ -6605,20 +6613,20 @@ "type": "github" } ], - "time": "2022-09-14T06:03:37+00:00" + "time": "2024-03-02T06:33:00+00:00" }, { "name": "sebastian/global-state", - "version": "5.0.6", + "version": "5.0.7", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "bde739e7565280bda77be70044ac1047bc007e34" + "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34", - "reference": "bde739e7565280bda77be70044ac1047bc007e34", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9", + "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9", "shasum": "" }, "require": { @@ -6661,7 +6669,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6" + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7" }, "funding": [ { @@ -6669,7 +6677,7 @@ "type": "github" } ], - "time": "2023-08-02T09:26:13+00:00" + "time": "2024-03-02T06:35:11+00:00" }, { "name": "sebastian/lines-of-code", @@ -6905,16 +6913,16 @@ }, { "name": "sebastian/resource-operations", - "version": "3.0.3", + "version": "3.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" + "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e", + "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e", "shasum": "" }, "require": { @@ -6926,7 +6934,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -6947,8 +6955,7 @@ "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", "support": { - "issues": "https://github.com/sebastianbergmann/resource-operations/issues", - "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" + "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4" }, "funding": [ { @@ -6956,7 +6963,7 @@ "type": "github" } ], - "time": "2020-09-28T06:45:17+00:00" + "time": "2024-03-14T16:00:52+00:00" }, { "name": "sebastian/type", @@ -7131,16 +7138,16 @@ }, { "name": "spatie/laravel-package-tools", - "version": "1.16.2", + "version": "1.16.4", "source": { "type": "git", "url": "https://github.com/spatie/laravel-package-tools.git", - "reference": "e62eeb1fe8a8a0b2e83227a6c279c8c59f7d3a15" + "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/e62eeb1fe8a8a0b2e83227a6c279c8c59f7d3a15", - "reference": "e62eeb1fe8a8a0b2e83227a6c279c8c59f7d3a15", + "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53", + "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53", "shasum": "" }, "require": { @@ -7179,7 +7186,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-package-tools/issues", - "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.2" + "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.4" }, "funding": [ { @@ -7187,7 +7194,7 @@ "type": "github" } ], - "time": "2024-01-11T08:43:00+00:00" + "time": "2024-03-20T07:29:11+00:00" }, { "name": "spatie/laravel-ray", @@ -8006,16 +8013,16 @@ }, { "name": "symfony/http-kernel", - "version": "v6.4.4", + "version": "v6.4.5", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "7a186f64a7f02787c04e8476538624d6aa888e42" + "reference": "f6947cb939d8efee137797382cb4db1af653ef75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/7a186f64a7f02787c04e8476538624d6aa888e42", - "reference": "7a186f64a7f02787c04e8476538624d6aa888e42", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f6947cb939d8efee137797382cb4db1af653ef75", + "reference": "f6947cb939d8efee137797382cb4db1af653ef75", "shasum": "" }, "require": { @@ -8099,7 +8106,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.4.4" + "source": "https://github.com/symfony/http-kernel/tree/v6.4.5" }, "funding": [ { @@ -8115,7 +8122,7 @@ "type": "tidelift" } ], - "time": "2024-02-27T06:32:13+00:00" + "time": "2024-03-04T21:00:47+00:00" }, { "name": "symfony/mailer", @@ -9135,16 +9142,16 @@ }, { "name": "symfony/routing", - "version": "v6.4.3", + "version": "v6.4.5", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842" + "reference": "7fe30068e207d9c31c0138501ab40358eb2d49a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842", - "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842", + "url": "https://api.github.com/repos/symfony/routing/zipball/7fe30068e207d9c31c0138501ab40358eb2d49a4", + "reference": "7fe30068e207d9c31c0138501ab40358eb2d49a4", "shasum": "" }, "require": { @@ -9198,7 +9205,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.4.3" + "source": "https://github.com/symfony/routing/tree/v6.4.5" }, "funding": [ { @@ -9214,7 +9221,7 @@ "type": "tidelift" } ], - "time": "2024-01-30T13:55:02+00:00" + "time": "2024-02-27T12:33:30+00:00" }, { "name": "symfony/service-contracts", @@ -9898,16 +9905,16 @@ }, { "name": "theseer/tokenizer", - "version": "1.2.2", + "version": "1.2.3", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96" + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96", - "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", "shasum": "" }, "require": { @@ -9936,7 +9943,7 @@ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "support": { "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/1.2.2" + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" }, "funding": [ { @@ -9944,7 +9951,7 @@ "type": "github" } ], - "time": "2023-11-20T00:12:19+00:00" + "time": "2024-03-03T12:36:25+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -10292,16 +10299,16 @@ }, { "name": "zbateson/mb-wrapper", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/zbateson/mb-wrapper.git", - "reference": "faf35dddfacfc5d4d5f9210143eafd7a7fe74334" + "reference": "09a8b77eb94af3823a9a6623dcc94f8d988da67f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/faf35dddfacfc5d4d5f9210143eafd7a7fe74334", - "reference": "faf35dddfacfc5d4d5f9210143eafd7a7fe74334", + "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/09a8b77eb94af3823a9a6623dcc94f8d988da67f", + "reference": "09a8b77eb94af3823a9a6623dcc94f8d988da67f", "shasum": "" }, "require": { @@ -10312,7 +10319,7 @@ "require-dev": { "friendsofphp/php-cs-fixer": "*", "phpstan/phpstan": "*", - "phpunit/phpunit": "<=9.0" + "phpunit/phpunit": "<10.0" }, "suggest": { "ext-iconv": "For best support/performance", @@ -10349,7 +10356,7 @@ ], "support": { "issues": "https://github.com/zbateson/mb-wrapper/issues", - "source": "https://github.com/zbateson/mb-wrapper/tree/1.2.0" + "source": "https://github.com/zbateson/mb-wrapper/tree/1.2.1" }, "funding": [ { @@ -10357,7 +10364,7 @@ "type": "github" } ], - "time": "2023-01-11T23:05:44+00:00" + "time": "2024-03-18T04:31:04+00:00" }, { "name": "zbateson/stream-decorators", @@ -10429,7 +10436,7 @@ "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": "^8.1", + "php": "^8.2", "ext-intl": "*", "composer-runtime-api": "^2.1" }, diff --git a/monorepo-builder.php b/monorepo-builder.php old mode 100644 new mode 100755 diff --git a/package.json b/package.json deleted file mode 100644 index 935c010f4..000000000 --- a/package.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "shopper", - "license": "MIT", - "scripts": { - "dev": "mix watch", - "build": "mix --production", - "prettier": "npx prettier --write ." - }, - "devDependencies": { - "@alpinejs/focus": "^3.12.0", - "@awcodes/alpine-floating-ui": "^3.5.0", - "@ryangjchandler/alpine-tooltip": "^1.2.0", - "@tailwindcss/forms": "^0.5.7", - "@tailwindcss/typography": "^0.5.10", - "alpinejs": "^3.10.5", - "autoprefixer": "^10.4.2", - "choices.js": "^9.0.1", - "filepond": "^4.30.3", - "flatpickr": "^4.6.13", - "intl-tel-input": "^17.0.19", - "laravel-mix": "^6.0.19", - "lodash": "^4.17.13", - "mapbox-gl": "^2.6.1", - "popper.js": "^1.16.0", - "postcss": "^8.4.5", - "prettier": "^2.3.1", - "prettier-plugin-tailwindcss": "^0.3.0", - "resolve-url-loader": "^2.3.1", - "sortablejs": "^1.15.0", - "tailwindcss": "^3.4.1", - "tom-select": "^2.2.2", - "trix": "^2.0.5" - } -} diff --git a/packages/admin/.gitignore b/packages/admin/.gitignore new file mode 100755 index 000000000..7d09900ab --- /dev/null +++ b/packages/admin/.gitignore @@ -0,0 +1,12 @@ +/.idea +/.vscode +/node_modules +/node_modules.nosync +yarn-error.log +/vendor +/composer.lock +/vendor.nosync +composer.phar +phpunit.xml +build + diff --git a/.prettierrc b/packages/admin/.prettierrc old mode 100644 new mode 100755 similarity index 100% rename from .prettierrc rename to packages/admin/.prettierrc diff --git a/packages/admin/composer.json b/packages/admin/composer.json old mode 100644 new mode 100755 index 5e1e92678..3eddd0f7b --- a/packages/admin/composer.json +++ b/packages/admin/composer.json @@ -17,36 +17,35 @@ "source": "https://github.com/shopperlabs/framework" }, "require": { - "php": "^8.1", + "php": "^8.2", "bacon/bacon-qr-code": "^2.0", "danharrin/livewire-rate-limiting": "^0.3|^1.0", - "filament/notifications": "^2.17", - "illuminate/console": "^9.0|^10.0", - "illuminate/contracts": "^9.0|^10.0", - "illuminate/cookie": "^9.0|^10.0", - "illuminate/database": "^9.0|^10.0", - "illuminate/http": "^9.0|^10.0", - "illuminate/routing": "^9.0|^10.0", - "illuminate/session": "^9.0|^10.0", - "illuminate/support": "^9.0|^10.0", - "illuminate/view": "^9.0|^10.0", + "filament/forms": "^3.2", + "gehrisandro/tailwind-merge-laravel": "^1.2", + "illuminate/console": "^10.0|^11.0", + "illuminate/contracts": "^10.0|^11.0", + "illuminate/cookie": "^10.0|^11.0", + "illuminate/database": "^10.0|^11.0", + "illuminate/http": "^10.0|^11.0", + "illuminate/routing": "^10.0|^11.0", + "illuminate/session": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", + "illuminate/view": "^10.0|^11.0", "jenssegers/agent": "^2.6", - "laravel/helpers": "^1.4.1", "laravel/prompts": "^0.1.15", - "livewire/livewire": "^2.10", + "livewire/livewire": "^3.4", "maatwebsite/excel": "^3.1", "mckenziearts/blade-untitledui-icons": "^1.2", - "milon/barcode": "^9.0|^10.0", + "milon/barcode": "^10.0|^11.0", "moneyphp/money": "^3.3", "pragmarx/google2fa": "^8.0", "psr/simple-cache": "^3.0", - "rappasoft/laravel-livewire-tables": "^2.12", "shopper/core": "self.version", "shopper/sidebar": "self.version", + "spatie/laravel-livewire-wizard": "^2.2", "spatie/laravel-package-tools": "^1.15", "stevebauman/location": "^6.3.1", - "wire-elements/modal": "^1.0.0", - "wireui/wireui": "^1.17.9" + "wire-elements/modal": "^2.0" }, "autoload": { "files": [ diff --git a/packages/admin/config/admin.php b/packages/admin/config/admin.php old mode 100644 new mode 100755 diff --git a/packages/admin/config/auth.php b/packages/admin/config/auth.php old mode 100644 new mode 100755 diff --git a/packages/admin/config/components.php b/packages/admin/config/components.php deleted file mode 100644 index c18d20e98..000000000 --- a/packages/admin/config/components.php +++ /dev/null @@ -1,157 +0,0 @@ - Pages\Dashboard::class, - - /* - |-------------------------------------------------------------------------- - | Account Livewire Components - |-------------------------------------------------------------------------- - */ - - 'account.devices' => Components\Account\Devices::class, - 'account.dropdown' => Components\Account\Dropdown::class, - 'account.password' => Components\Account\Password::class, - 'account.profile' => Components\Account\Profile::class, - 'account.two-factor' => Components\Account\TwoFactor::class, - - /* - |-------------------------------------------------------------------------- - | Shops Livewire Components - |-------------------------------------------------------------------------- - */ - - 'attributes.browse' => Components\Attributes\Browse::class, - 'attributes.create' => Components\Attributes\Create::class, - 'attributes.edit' => Components\Attributes\Edit::class, - 'attributes.values' => Components\Attributes\Values::class, - - 'brands.browse' => Components\Brands\Browse::class, - 'brands.create' => Components\Brands\Create::class, - 'brands.edit' => Components\Brands\Edit::class, - - 'categories.browse' => Components\Categories\Browse::class, - 'categories.create' => Components\Categories\Create::class, - 'categories.edit' => Components\Categories\Edit::class, - - 'collections.browse' => Components\Collections\Browse::class, - 'collections.create' => Components\Collections\Create::class, - 'collections.edit' => Components\Collections\Edit::class, - 'collections.products' => Components\Collections\Products::class, - - 'customers.addresses' => Components\Customers\Addresses::class, - 'customers.browse' => Components\Customers\Browse::class, - 'customers.create' => Components\Customers\Create::class, - 'customers.orders' => Components\Customers\Orders::class, - 'customers.profile' => Components\Customers\Profile::class, - 'customers.show' => Components\Customers\Show::class, - - 'discounts.browse' => Components\Discounts\Browse::class, - 'discounts.create' => Components\Discounts\Create::class, - 'discounts.edit' => Components\Discounts\Edit::class, - - 'orders.browse' => Components\Orders\Browse::class, - 'orders.show' => Components\Orders\Show::class, - - 'products.browse' => Components\Products\Browse::class, - 'products.create' => Components\Products\Create::class, - 'products.edit' => Components\Products\Edit::class, - 'products.form.attributes' => Components\Products\Form\Attributes::class, - 'products.form.edit' => Components\Products\Form\Edit::class, - 'products.form.inventory' => Components\Products\Form\Inventory::class, - 'products.form.related-products' => Components\Products\Form\RelatedProducts::class, - 'products.form.seo' => Components\Products\Form\Seo::class, - 'products.form.shipping' => Components\Products\Form\Shipping::class, - 'products.form.variants' => Components\Products\Form\Variants::class, - 'products.variant' => Components\Products\Variant::class, - 'products.variant-stock' => Components\Products\VariantStock::class, - - 'reviews.browse' => Components\Reviews\Browse::class, - 'reviews.show' => Components\Reviews\Show::class, - - // 'search' => Components\Search::class, - - /* - |-------------------------------------------------------------------------- - | Modals Livewire Components - |-------------------------------------------------------------------------- - */ - - 'modals.add-variant' => Livewire\Modals\AddVariant::class, - 'modals.archived-order' => Livewire\Modals\ArchiveOrder::class, - 'modals.create-payment-method' => Livewire\Modals\CreatePaymentMethod::class, - 'modals.create-permission' => Livewire\Modals\CreatePermission::class, - 'modals.create-role' => Livewire\Modals\CreateRole::class, - 'modals.create-value' => Livewire\Modals\CreateValue::class, - 'modals.confirm-password' => Livewire\Modals\ConfirmPassword::class, - 'modals.delete-customer' => Livewire\Modals\DeleteCustomer::class, - 'modals.delete-discount' => Livewire\Modals\DeleteDiscount::class, - 'modals.delete-inventory' => Livewire\Modals\DeleteInventory::class, - 'modals.delete-product' => Livewire\Modals\DeleteProduct::class, - 'modals.delete-review' => Livewire\Modals\DeleteReview::class, - 'modals.delete-role' => Livewire\Modals\DeleteRole::class, - 'modals.discount-products' => Livewire\Modals\DiscountProducts::class, - 'modals.discount-customers' => Livewire\Modals\DiscountCustomers::class, - 'modals.logout-others-browser' => Livewire\Modals\LogoutOthersBrowser::class, - 'modals.products-lists' => Livewire\Modals\ProductsLists::class, - 'modals.re-order-categories' => Livewire\Modals\ReOrderCategories::class, - 'modals.related-list' => Livewire\Modals\RelatedList::class, - 'modals.update-payment-method' => Livewire\Modals\UpdatePaymentMethod::class, - 'modals.update-value' => Livewire\Modals\UpdateValue::class, - 'modals.update-variant-stock' => Livewire\Modals\UpdateVariantStock::class, - - /* - |-------------------------------------------------------------------------- - | Settings Livewire Components - |-------------------------------------------------------------------------- - */ - - 'settings.analytics' => Components\Settings\Analytics::class, - 'settings.inventories.browse' => Components\Settings\Inventories\Browse::class, - 'settings.inventories.create' => Components\Settings\Inventories\Create::class, - 'settings.inventories.edit' => Components\Settings\Inventories\Edit::class, - 'settings.general' => Components\Settings\General::class, - 'settings.legal.privacy' => Components\Settings\Legal\Privacy::class, - 'settings.legal.refund' => Components\Settings\Legal\Refund::class, - 'settings.legal.shipping' => Components\Settings\Legal\Shipping::class, - 'settings.legal.terms' => Components\Settings\Legal\Terms::class, - 'settings.management.create-admin-user' => Components\Settings\Management\CreateAdminUser::class, - 'settings.management.management' => Components\Settings\Management\Management::class, - 'settings.management.permissions' => Components\Settings\Management\Permissions::class, - 'settings.management.role' => Components\Settings\Management\Role::class, - 'settings.management.users-role' => Components\Settings\Management\UsersRole::class, - 'settings.payments.general' => Components\Settings\Payments\General::class, - - /* - |-------------------------------------------------------------------------- - | Tables Components - |-------------------------------------------------------------------------- - */ - - 'tables.attributes-table' => Livewire\Tables\AttributesTable::class, - 'tables.brands-table' => Livewire\Tables\BrandsTable::class, - 'tables.categories-table' => Livewire\Tables\CategoriesTable::class, - 'tables.collections-table' => Livewire\Tables\CollectionsTable::class, - 'tables.customers-table' => Livewire\Tables\CustomersTable::class, - 'tables.orders-table' => Livewire\Tables\OrdersTable::class, - 'tables.products-table' => Livewire\Tables\ProductsTable::class, - 'tables.reviews-table' => Livewire\Tables\ReviewsTable::class, - -]; diff --git a/packages/admin/config/components/account.php b/packages/admin/config/components/account.php new file mode 100644 index 000000000..54ed1c9e8 --- /dev/null +++ b/packages/admin/config/components/account.php @@ -0,0 +1,34 @@ + [ + 'index' => Pages\Account::class, + ], + + /* + |-------------------------------------------------------------------------- + | Livewire Components + |-------------------------------------------------------------------------- + */ + + 'components' => [ + 'account.devices' => Components\Account\Devices::class, + 'account.dropdown' => Components\Account\Dropdown::class, + 'account.password' => Components\Account\Password::class, + 'account.profile' => Components\Account\Profile::class, + 'account.two-factor' => Components\Account\TwoFactor::class, + ], + +]; diff --git a/packages/admin/config/components/brand.php b/packages/admin/config/components/brand.php new file mode 100644 index 000000000..e8c374509 --- /dev/null +++ b/packages/admin/config/components/brand.php @@ -0,0 +1,30 @@ + [], + + /* + |-------------------------------------------------------------------------- + | Livewire Components + |-------------------------------------------------------------------------- + */ + + 'components' => [ + 'brands.browse' => Components\Brands\Browse::class, + 'brands.create' => Components\Brands\Create::class, + 'brands.edit' => Components\Brands\Edit::class, + ], + +]; diff --git a/packages/admin/config/components/category.php b/packages/admin/config/components/category.php new file mode 100644 index 000000000..11672f3dc --- /dev/null +++ b/packages/admin/config/components/category.php @@ -0,0 +1,32 @@ + [], + + /* + |-------------------------------------------------------------------------- + | Livewire Components + |-------------------------------------------------------------------------- + */ + + 'components' => [ + 'categories.browse' => Components\Categories\Browse::class, + 'categories.create' => Components\Categories\Create::class, + 'categories.edit' => Components\Categories\Edit::class, + + 'modals.re-order-categories' => Livewire\Modals\ReOrderCategories::class, + ], + +]; diff --git a/packages/admin/config/components/collection.php b/packages/admin/config/components/collection.php new file mode 100644 index 000000000..b4b66a763 --- /dev/null +++ b/packages/admin/config/components/collection.php @@ -0,0 +1,31 @@ + [], + + /* + |-------------------------------------------------------------------------- + | Livewire Components + |-------------------------------------------------------------------------- + */ + + 'components' => [ + 'collections.browse' => Components\Collections\Browse::class, + 'collections.create' => Components\Collections\Create::class, + 'collections.edit' => Components\Collections\Edit::class, + 'collections.products' => Components\Collections\Products::class, + ], + +]; diff --git a/packages/admin/config/components/customer.php b/packages/admin/config/components/customer.php new file mode 100644 index 000000000..dcae1f9d6 --- /dev/null +++ b/packages/admin/config/components/customer.php @@ -0,0 +1,35 @@ + [], + + /* + |-------------------------------------------------------------------------- + | Livewire Components + |-------------------------------------------------------------------------- + */ + + 'components' => [ + 'customers.addresses' => Components\Customers\Addresses::class, + 'customers.browse' => Components\Customers\Browse::class, + 'customers.create' => Components\Customers\Create::class, + 'customers.orders' => Components\Customers\Orders::class, + 'customers.profile' => Components\Customers\Profile::class, + 'customers.show' => Components\Customers\Show::class, + + 'modals.delete-customer' => Livewire\Modals\DeleteCustomer::class, + ], + +]; diff --git a/packages/admin/config/components/dashboard.php b/packages/admin/config/components/dashboard.php new file mode 100644 index 000000000..ce077bcbb --- /dev/null +++ b/packages/admin/config/components/dashboard.php @@ -0,0 +1,31 @@ + [ + 'dashboard' => Pages\Dashboard::class, + ], + + /* + |-------------------------------------------------------------------------- + | Livewire Components + |-------------------------------------------------------------------------- + */ + + 'components' => [ + // 'search' => Components\Search::class, + 'side-panel' => Components\SidePanel::class, + ], + +]; diff --git a/packages/admin/config/components/discount.php b/packages/admin/config/components/discount.php new file mode 100644 index 000000000..6eafbcd3f --- /dev/null +++ b/packages/admin/config/components/discount.php @@ -0,0 +1,34 @@ + [], + + /* + |-------------------------------------------------------------------------- + | Livewire Components + |-------------------------------------------------------------------------- + */ + + 'components' => [ + 'discounts.browse' => Components\Discounts\Browse::class, + 'discounts.create' => Components\Discounts\Create::class, + 'discounts.edit' => Components\Discounts\Edit::class, + + 'modals.delete-discount' => Livewire\Modals\DeleteDiscount::class, + 'modals.discount-products' => Livewire\Modals\DiscountProducts::class, + 'modals.discount-customers' => Livewire\Modals\DiscountCustomers::class, + ], + +]; diff --git a/packages/admin/config/components/order.php b/packages/admin/config/components/order.php new file mode 100644 index 000000000..8e82d20e9 --- /dev/null +++ b/packages/admin/config/components/order.php @@ -0,0 +1,31 @@ + [], + + /* + |-------------------------------------------------------------------------- + | Livewire Components + |-------------------------------------------------------------------------- + */ + + 'components' => [ + 'orders.browse' => Components\Orders\Browse::class, + 'orders.show' => Components\Orders\Show::class, + + 'modals.archived-order' => Livewire\Modals\ArchiveOrder::class, + ], + +]; diff --git a/packages/admin/config/components/product.php b/packages/admin/config/components/product.php new file mode 100644 index 000000000..b0d4b09e5 --- /dev/null +++ b/packages/admin/config/components/product.php @@ -0,0 +1,52 @@ + [], + + /* + |-------------------------------------------------------------------------- + | Livewire Components + |-------------------------------------------------------------------------- + */ + + 'components' => [ + 'attributes.browse' => Components\Attributes\Browse::class, + 'attributes.create' => Components\Attributes\Create::class, + 'attributes.edit' => Components\Attributes\Edit::class, + 'attributes.values' => Components\Attributes\Values::class, + + 'products.browse' => Components\Products\Browse::class, + 'products.create' => Components\Products\Create::class, + 'products.edit' => Components\Products\Edit::class, + 'products.form.attributes' => Components\Products\Form\Attributes::class, + 'products.form.edit' => Components\Products\Form\Edit::class, + 'products.form.inventory' => Components\Products\Form\Inventory::class, + 'products.form.related-products' => Components\Products\Form\RelatedProducts::class, + 'products.form.seo' => Components\Products\Form\Seo::class, + 'products.form.shipping' => Components\Products\Form\Shipping::class, + 'products.form.variants' => Components\Products\Form\Variants::class, + 'products.variant' => Components\Products\Variant::class, + 'products.variant-stock' => Components\Products\VariantStock::class, + + 'modals.add-variant' => Livewire\Modals\AddVariant::class, + 'modals.create-value' => Livewire\Modals\CreateValue::class, + 'modals.delete-product' => Livewire\Modals\DeleteProduct::class, + 'modals.products-lists' => Livewire\Modals\ProductsLists::class, + 'modals.related-products' => Livewire\Modals\RelatedProducts::class, + 'modals.update-value' => Livewire\Modals\UpdateValue::class, + 'modals.update-variant-stock' => Livewire\Modals\UpdateVariantStock::class, + ], + +]; diff --git a/packages/admin/config/components/review.php b/packages/admin/config/components/review.php new file mode 100644 index 000000000..6b813d257 --- /dev/null +++ b/packages/admin/config/components/review.php @@ -0,0 +1,31 @@ + [], + + /* + |-------------------------------------------------------------------------- + | Livewire Components + |-------------------------------------------------------------------------- + */ + + 'components' => [ + 'reviews.browse' => Components\Reviews\Browse::class, + 'reviews.show' => Components\Reviews\Show::class, + + 'modals.delete-review' => Livewire\Modals\DeleteReview::class, + ], + +]; diff --git a/packages/admin/config/components/setting.php b/packages/admin/config/components/setting.php new file mode 100644 index 000000000..cf951dfc9 --- /dev/null +++ b/packages/admin/config/components/setting.php @@ -0,0 +1,57 @@ + [ + 'index' => Pages\Settings\Index::class, + 'general' => Pages\Settings\General::class, + 'inventory-index' => Pages\Settings\Inventories\Browse::class, + 'inventory-create' => Pages\Settings\Inventories\Create::class, + 'inventory-edit' => Pages\Settings\Inventories\Edit::class, + 'legal' => Pages\Settings\LegalPage::class, + 'analytics' => Pages\Settings\Analytics::class, + 'payment' => Pages\Settings\Payment::class, + 'team-index' => Pages\Settings\Team\Index::class, + 'team-roles' => Pages\Settings\Team\RolePermission::class, + ], + + /* + |-------------------------------------------------------------------------- + | Livewire Components + |-------------------------------------------------------------------------- + */ + + 'components' => [ + 'modals.create-permission' => Livewire\Modals\CreatePermission::class, + 'modals.create-role' => Livewire\Modals\CreateRole::class, + 'modals.confirm-password' => Livewire\Modals\ConfirmPassword::class, + 'modals.delete-inventory' => Livewire\Modals\DeleteInventory::class, + 'modals.delete-role' => Livewire\Modals\DeleteRole::class, + 'modals.logout-others-browser' => Livewire\Modals\LogoutOthersBrowser::class, + 'modals.payment-method-form' => Livewire\Modals\PaymentMethodForm::class, + + 'settings.inventories.form' => Components\Settings\Inventories\InventoryForm::class, + 'settings.legal.privacy' => Components\Settings\Legal\Privacy::class, + 'settings.legal.refund' => Components\Settings\Legal\Refund::class, + 'settings.legal.shipping' => Components\Settings\Legal\Shipping::class, + 'settings.legal.terms' => Components\Settings\Legal\Terms::class, + 'settings.legal.form' => Components\Settings\Legal\PolicyForm::class, + 'settings.team.permissions' => Components\Settings\Team\Permissions::class, + 'settings.team.users' => Components\Settings\Team\UsersRole::class, + + 'slide-overs.create-team-member' => Livewire\SlideOvers\CreateTeamMember::class, + ], + +]; diff --git a/packages/admin/config/features.php b/packages/admin/config/features.php new file mode 100644 index 000000000..a9a04b702 --- /dev/null +++ b/packages/admin/config/features.php @@ -0,0 +1,31 @@ + FeatureState::ENABLED, + 'category' => FeatureState::ENABLED, + 'customer' => FeatureState::ENABLED, + 'collection' => FeatureState::ENABLED, + 'discount' => FeatureState::ENABLED, + 'order' => FeatureState::ENABLED, + 'product' => FeatureState::ENABLED, + 'review' => FeatureState::ENABLED, + +]; diff --git a/packages/admin/config/routes.php b/packages/admin/config/routes.php old mode 100644 new mode 100755 diff --git a/packages/admin/config/settings.php b/packages/admin/config/settings.php old mode 100644 new mode 100755 index 4f7a62778..aef181267 --- a/packages/admin/config/settings.php +++ b/packages/admin/config/settings.php @@ -9,7 +9,7 @@ | Setting Menu |-------------------------------------------------------------------------- | - | The menu for the generation of the page settings and layout. + | The menu for the generation of the settings page. | BladeUIKit UntitledUI is the icon used. See https://blade-ui-kit.com/blade-icons?set=74 | */ @@ -18,42 +18,42 @@ [ 'name' => 'General', 'description' => 'View and update your store information.', - 'icon' => 'untitledui-sliders', + 'icon' => svg('untitledui-sliders', 'h-6 w-6'), 'route' => 'shopper.settings.shop', 'permission' => null, ], [ 'name' => 'Staff & permissions', 'description' => 'View and manage what staff can see or do in your store.', - 'icon' => 'untitledui-shield-separator', + 'icon' => svg('untitledui-shield-separator', 'h-6 w-6'), 'route' => 'shopper.settings.users', 'permission' => null, ], [ 'name' => 'Locations', 'description' => 'Manage the places you stock inventory and sell products.', - 'icon' => 'untitledui-marker-pin-flag', + 'icon' => svg('untitledui-marker-pin-flag', 'h-6 w-6'), 'route' => 'shopper.settings.inventories', 'permission' => null, ], [ 'name' => 'Analytics', 'description' => 'Get a better understanding of where your traffic is coming from.', - 'icon' => 'untitledui-pie-chart', + 'icon' => svg('untitledui-pie-chart', 'h-6 w-6'), 'route' => 'shopper.settings.analytics', 'permission' => null, ], [ 'name' => 'Payment methods', 'description' => 'Add different payment methods for your customers.', - 'icon' => 'untitledui-coins-hand', + 'icon' => svg('untitledui-coins-hand', 'h-6 w-6'), 'route' => 'shopper.settings.payments', 'permission' => null, ], [ 'name' => 'Legal', - 'description' => 'Manage your store\'s legal pages such as privacy, terms.', - 'icon' => 'untitledui-file-lock-02', + 'description' => "Manage your store's legal pages such as privacy, terms.", + 'icon' => svg('untitledui-file-lock-02', 'h-6 w-6'), 'route' => 'shopper.settings.legal', 'permission' => null, ], diff --git a/packages/admin/package.json b/packages/admin/package.json new file mode 100755 index 000000000..a6f81e3cb --- /dev/null +++ b/packages/admin/package.json @@ -0,0 +1,40 @@ +{ + "name": "laravel-shopper", + "license": "MIT", + "type": "module", + "scripts": { + "dev:css": "npx tailwindcss -i resources/css/shopper.css -o public/shopper.css --postcss --watch", + "dev:js": "node scripts/build.js --dev", + "dev": "npm-run-all --parallel dev:*", + "build:css": "npx tailwindcss -i resources/css/shopper.css -o public/shopper.css --postcss --minify", + "build:js": "node scripts/build.js", + "build": "npm-run-all build:*", + "prettier": "npx prettier --write ." + }, + "devDependencies": { + "@alpinejs/focus": "^3.12.0", + "@awcodes/alpine-floating-ui": "^3.5.0", + "@ryangjchandler/alpine-tooltip": "^1.2.0", + "@tailwindcss/forms": "^0.5.7", + "@tailwindcss/typography": "^0.5.10", + "autoprefixer": "^10.4.2", + "choices.js": "^9.0.1", + "esbuild": "^0.20.2", + "filepond": "^4.30.3", + "flatpickr": "^4.6.13", + "intl-tel-input": "^17.0.19", + "lodash": "^4.17.13", + "npm-run-all": "^4.1.5", + "popper.js": "^1.16.0", + "postcss": "^8.4.4", + "postcss-import": "^15.1.0", + "prettier": "^3.1.1", + "prettier-plugin-blade": "^2.0.0", + "prettier-plugin-tailwindcss": "^0.5.10", + "resolve-url-loader": "^2.3.1", + "sortablejs": "^1.15.0", + "tailwindcss": "^3.4.1", + "tom-select": "^2.3.1", + "trix": "^2.0.5" + } +} diff --git a/packages/admin/postcss.config.cjs b/packages/admin/postcss.config.cjs new file mode 100644 index 000000000..dd93b00c6 --- /dev/null +++ b/packages/admin/postcss.config.cjs @@ -0,0 +1,8 @@ +module.exports = { + plugins: { + "postcss-import": {}, + "tailwindcss/nesting": {}, + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/packages/admin/public/images/analytics.svg b/packages/admin/public/images/analytics.svg old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/favicons/android-chrome-192x192.png b/packages/admin/public/images/favicons/android-chrome-192x192.png old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/favicons/android-chrome-512x512.png b/packages/admin/public/images/favicons/android-chrome-512x512.png old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/favicons/apple-touch-icon.png b/packages/admin/public/images/favicons/apple-touch-icon.png old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/favicons/browserconfig.xml b/packages/admin/public/images/favicons/browserconfig.xml old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/favicons/favicon-16x16.png b/packages/admin/public/images/favicons/favicon-16x16.png old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/favicons/favicon-32x32.png b/packages/admin/public/images/favicons/favicon-32x32.png old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/favicons/favicon.ico b/packages/admin/public/images/favicons/favicon.ico old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/favicons/mstile-150x150.png b/packages/admin/public/images/favicons/mstile-150x150.png old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/favicons/safari-pinned-tab.svg b/packages/admin/public/images/favicons/safari-pinned-tab.svg old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/favicons/site.webmanifest b/packages/admin/public/images/favicons/site.webmanifest old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/placeholder.jpg b/packages/admin/public/images/placeholder.jpg old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/shopper-icon.svg b/packages/admin/public/images/shopper-icon.svg old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/shopper-logo-white.svg b/packages/admin/public/images/shopper-logo-white.svg old mode 100644 new mode 100755 diff --git a/packages/admin/public/images/shopper-logo.svg b/packages/admin/public/images/shopper-logo.svg old mode 100644 new mode 100755 diff --git a/packages/admin/public/img/flags.png b/packages/admin/public/img/flags.png old mode 100644 new mode 100755 diff --git a/packages/admin/public/img/flags@2x.png b/packages/admin/public/img/flags@2x.png old mode 100644 new mode 100755 diff --git a/packages/admin/public/mix-manifest.json b/packages/admin/public/mix-manifest.json deleted file mode 100644 index 859350b7b..000000000 --- a/packages/admin/public/mix-manifest.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "/shopper.js": "/shopper.js?id=4ef30b822822e53d52b053f13281af2f", - "/shopper.css": "/shopper.css?id=5488afe96d8b15c6a352c5539fcce7ed" -} diff --git a/packages/admin/public/shopper.css b/packages/admin/public/shopper.css old mode 100644 new mode 100755 index 9df2e3a3b..d17273c3d --- a/packages/admin/public/shopper.css +++ b/packages/admin/public/shopper.css @@ -1,18 +1,11226 @@ -.choices{font-size:16px;margin-bottom:24px;overflow:hidden;position:relative}.choices:focus{outline:none}.choices:last-child{margin-bottom:0}.choices.is-open{overflow:initial}.choices.is-disabled .choices__inner,.choices.is-disabled .choices__input{background-color:#eaeaea;cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;user-select:none}.choices.is-disabled .choices__item{cursor:not-allowed}.choices [hidden]{display:none!important}.choices[data-type*=select-one]{cursor:pointer}.choices[data-type*=select-one] .choices__inner{padding-bottom:7.5px}.choices[data-type*=select-one] .choices__input{background-color:#fff;border-bottom:1px solid #ddd;display:block;margin:0;padding:10px;width:100%}.choices[data-type*=select-one] .choices__button{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJtMi41OTIuMDQ0IDE4LjM2NCAxOC4zNjQtMi41NDggMi41NDhMLjA0NCAyLjU5MnoiLz48cGF0aCBkPSJNMCAxOC4zNjQgMTguMzY0IDBsMi41NDggMi41NDhMMi41NDggMjAuOTEyeiIvPjwvZz48L3N2Zz4=");background-size:8px;border-radius:10em;height:20px;margin-right:25px;margin-top:-10px;opacity:.25;padding:0;position:absolute;right:0;top:50%;width:20px}.choices[data-type*=select-one] .choices__button:focus,.choices[data-type*=select-one] .choices__button:hover{opacity:1}.choices[data-type*=select-one] .choices__button:focus{box-shadow:0 0 0 2px #00bcd4}.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button{display:none}.choices[data-type*=select-one]:after{border:5px solid transparent;border-top-color:#333;content:"";height:0;margin-top:-2.5px;pointer-events:none;position:absolute;right:11.5px;top:50%;width:0}.choices[data-type*=select-one].is-open:after{border-color:transparent transparent #333;margin-top:-7.5px}.choices[data-type*=select-one][dir=rtl]:after{left:11.5px;right:auto}.choices[data-type*=select-one][dir=rtl] .choices__button{left:0;margin-left:25px;margin-right:0;right:auto}.choices[data-type*=select-multiple] .choices__inner,.choices[data-type*=text] .choices__inner{cursor:text}.choices[data-type*=select-multiple] .choices__button,.choices[data-type*=text] .choices__button{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJtMi41OTIuMDQ0IDE4LjM2NCAxOC4zNjQtMi41NDggMi41NDhMLjA0NCAyLjU5MnoiLz48cGF0aCBkPSJNMCAxOC4zNjQgMTguMzY0IDBsMi41NDggMi41NDhMMi41NDggMjAuOTEyeiIvPjwvZz48L3N2Zz4=");background-size:8px;border-left:1px solid #008fa1;border-radius:0;display:inline-block;line-height:1;margin:0 -4px 0 8px;opacity:.75;padding-left:16px;position:relative;width:8px}.choices[data-type*=select-multiple] .choices__button:focus,.choices[data-type*=select-multiple] .choices__button:hover,.choices[data-type*=text] .choices__button:focus,.choices[data-type*=text] .choices__button:hover{opacity:1}.choices__inner{background-color:#f9f9f9;border:1px solid #ddd;border-radius:2.5px;display:inline-block;font-size:14px;min-height:44px;overflow:hidden;padding:7.5px 7.5px 3.75px;vertical-align:top;width:100%}.is-focused .choices__inner,.is-open .choices__inner{border-color:#b7b7b7}.is-open .choices__inner{border-radius:2.5px 2.5px 0 0}.is-flipped.is-open .choices__inner{border-radius:0 0 2.5px 2.5px}.choices__list{list-style:none;margin:0;padding-left:0}.choices__list--single{display:inline-block;padding:4px 16px 4px 4px;width:100%}[dir=rtl] .choices__list--single{padding-left:16px;padding-right:4px}.choices__list--single .choices__item{width:100%}.choices__list--multiple{display:inline}.choices__list--multiple .choices__item{background-color:#00bcd4;border:1px solid #00a5bb;border-radius:20px;box-sizing:border-box;color:#fff;display:inline-block;font-size:12px;font-weight:500;margin-bottom:3.75px;margin-right:3.75px;padding:4px 10px;vertical-align:middle;word-break:break-all}.choices__list--multiple .choices__item[data-deletable]{padding-right:5px}[dir=rtl] .choices__list--multiple .choices__item{margin-left:3.75px;margin-right:0}.choices__list--multiple .choices__item.is-highlighted{background-color:#00a5bb;border:1px solid #008fa1}.is-disabled .choices__list--multiple .choices__item{background-color:#aaa;border:1px solid #919191}.choices__list--dropdown{background-color:#fff;border:1px solid #ddd;border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px;margin-top:-1px;overflow:hidden;position:absolute;top:100%;visibility:hidden;width:100%;will-change:visibility;word-break:break-all;z-index:1}.choices__list--dropdown.is-active{visibility:visible}.is-open .choices__list--dropdown{border-color:#b7b7b7}.is-flipped .choices__list--dropdown{border-radius:.25rem .25rem 0 0;bottom:100%;margin-bottom:-1px;margin-top:0;top:auto}.choices__list--dropdown .choices__list{-webkit-overflow-scrolling:touch;max-height:300px;overflow:auto;position:relative;will-change:scroll-position}.choices__list--dropdown .choices__item{font-size:14px;padding:10px;position:relative}[dir=rtl] .choices__list--dropdown .choices__item{text-align:right}@media (min-width:640px){.choices__list--dropdown .choices__item--selectable{padding-right:100px}.choices__list--dropdown .choices__item--selectable:after{content:attr(data-select-text);font-size:12px;opacity:0;position:absolute;right:10px;top:50%;transform:translateY(-50%)}[dir=rtl] .choices__list--dropdown .choices__item--selectable{padding-left:100px;padding-right:10px;text-align:right}[dir=rtl] .choices__list--dropdown .choices__item--selectable:after{left:10px;right:auto}}.choices__list--dropdown .choices__item--selectable.is-highlighted{background-color:#f2f2f2}.choices__list--dropdown .choices__item--selectable.is-highlighted:after{opacity:.5}.choices__item{cursor:default}.choices__item--selectable{cursor:pointer}.choices__item--disabled{cursor:not-allowed;opacity:.5;-webkit-user-select:none;-moz-user-select:none;user-select:none}.choices__heading{border-bottom:1px solid #f7f7f7;color:gray;font-size:12px;font-weight:600;padding:10px}.choices__button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;background-position:50%;background-repeat:no-repeat;border:0;cursor:pointer;text-indent:-9999px}.choices__button:focus{outline:none}.choices__input{background-color:#f9f9f9;border:0;border-radius:0;display:inline-block;font-size:14px;margin-bottom:5px;max-width:100%;padding:4px 0 4px 2px;vertical-align:baseline}.choices__input:focus{outline:0}[dir=rtl] .choices__input{padding-left:0;padding-right:2px}.choices__placeholder{opacity:.5} -.ts-control{border:1px solid #d0d0d0;border-radius:3px;box-shadow:inset 0 1px 1px rgba(0,0,0,.1);box-sizing:border-box;display:flex;flex-wrap:wrap;overflow:hidden;padding:8px;position:relative;width:100%;z-index:1}.ts-wrapper.multi.has-items .ts-control{padding:5px 8px 2px}.full .ts-control{background-color:#fff}.disabled .ts-control,.disabled .ts-control *{cursor:default!important}.focus .ts-control{box-shadow:inset 0 1px 2px rgba(0,0,0,.15)}.ts-control>*{display:inline-block;vertical-align:baseline}.ts-wrapper.multi .ts-control>div{background:#1da7ee;border:1px solid #0073bb;color:#fff;cursor:pointer;margin:0 3px 3px 0;padding:2px 6px}.ts-wrapper.multi .ts-control>div.active{background:#92c836;border:1px solid #00578d;color:#fff}.ts-wrapper.multi.disabled .ts-control>div,.ts-wrapper.multi.disabled .ts-control>div.active{background:#d2d2d2;border:1px solid #aaa;color:#fff}.ts-control>input{background:none!important;border:0!important;box-shadow:none!important;display:inline-block!important;flex:1 1 auto;line-height:inherit!important;margin:0!important;max-height:none!important;max-width:100%!important;min-height:0!important;min-width:7rem;padding:0!important;text-indent:0!important;-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.ts-control>input::-ms-clear{display:none}.ts-control>input:focus{outline:none!important}.has-items .ts-control>input{margin:0 4px!important}.ts-control.rtl{text-align:right}.ts-control.rtl.single .ts-control:after{left:15px;right:auto}.ts-control.rtl .ts-control>input{margin:0 4px 0 -2px!important}.disabled .ts-control{background-color:#fafafa;opacity:.5}.input-hidden .ts-control>input{left:-10000px;opacity:0;position:absolute}.ts-dropdown{background:#fff;border:1px solid #d0d0d0;border-radius:0 0 3px 3px;border-top:0;box-shadow:0 1px 3px rgba(0,0,0,.1);box-sizing:border-box;left:0;margin:.25rem 0 0;position:absolute;top:100%;width:100%;z-index:10}.ts-dropdown [data-selectable]{cursor:pointer;overflow:hidden}.ts-dropdown [data-selectable] .highlight{background:rgba(125,168,208,.2);border-radius:1px}.ts-dropdown .create,.ts-dropdown .no-results,.ts-dropdown .optgroup-header,.ts-dropdown .option{padding:5px 8px}.ts-dropdown .option,.ts-dropdown [data-disabled],.ts-dropdown [data-disabled] [data-selectable].option{cursor:inherit;opacity:.5}.ts-dropdown [data-selectable].option{cursor:pointer;opacity:1}.ts-dropdown .optgroup:first-child .optgroup-header{border-top:0}.ts-dropdown .optgroup-header{background:#fff;color:#303030;cursor:default}.ts-dropdown .active{background-color:#f5fafd;color:#495c68}.ts-dropdown .active.create{color:#495c68}.ts-dropdown .create{color:rgba(48,48,48,.5)}.ts-dropdown .spinner{display:inline-block;height:30px;margin:5px 8px;width:30px}.ts-dropdown .spinner:after{animation:lds-dual-ring 1.2s linear infinite;border-color:#d0d0d0 transparent;border-radius:50%;border-style:solid;border-width:5px;content:" ";display:block;height:24px;margin:3px;width:24px}@keyframes lds-dual-ring{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ts-dropdown-content{max-height:200px;overflow:hidden auto;scroll-behavior:smooth}.ts-wrapper.plugin-drag_drop .ts-dragging{color:transparent!important}.ts-wrapper.plugin-drag_drop .ts-dragging>*{visibility:hidden!important}.plugin-checkbox_options:not(.rtl) .option input{margin-right:.5rem}.plugin-checkbox_options.rtl .option input{margin-left:.5rem}.plugin-clear_button{--ts-pr-clear-button:1em}.plugin-clear_button .clear-button{background:transparent!important;cursor:pointer;margin-right:0!important;opacity:0;position:absolute;right:2px;top:50%;transform:translateY(-50%);transition:opacity .5s}.plugin-clear_button.form-select .clear-button,.plugin-clear_button.single .clear-button{right:max(var(--ts-pr-caret),8px)}.plugin-clear_button.focus.has-items .clear-button,.plugin-clear_button:not(.disabled):hover.has-items .clear-button{opacity:1}.ts-wrapper .dropdown-header{background:color-mix(#fff,#d0d0d0,85%);border-bottom:1px solid #d0d0d0;border-radius:3px 3px 0 0;padding:10px 8px;position:relative}.ts-wrapper .dropdown-header-close{color:#303030;font-size:20px!important;line-height:20px;margin-top:-12px;opacity:.4;position:absolute;right:8px;top:50%}.ts-wrapper .dropdown-header-close:hover{color:#000}.plugin-dropdown_input.focus.dropdown-active .ts-control{border:1px solid #d0d0d0;box-shadow:none}.plugin-dropdown_input .dropdown-input{background:transparent;border:solid #d0d0d0;border-width:0 0 1px;box-shadow:inset 0 1px 1px rgba(0,0,0,.1);display:block;padding:8px;width:100%}.plugin-dropdown_input .items-placeholder{border:0!important;box-shadow:none!important;width:100%}.plugin-dropdown_input.dropdown-active .items-placeholder,.plugin-dropdown_input.has-items .items-placeholder{display:none!important}.ts-wrapper.plugin-input_autogrow.has-items .ts-control>input{min-width:0}.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input{flex:none;min-width:4px}.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input::-ms-input-placeholder{color:transparent}.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input::placeholder{color:transparent}.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content{display:flex}.ts-dropdown.plugin-optgroup_columns .optgroup{border-right:1px solid #f2f2f2;border-top:0;flex-basis:0;flex-grow:1;min-width:0}.ts-dropdown.plugin-optgroup_columns .optgroup:last-child{border-right:0}.ts-dropdown.plugin-optgroup_columns .optgroup:before{display:none}.ts-dropdown.plugin-optgroup_columns .optgroup-header{border-top:0}.ts-wrapper.plugin-remove_button .item{align-items:center;display:inline-flex}.ts-wrapper.plugin-remove_button .item .remove{border-radius:0 2px 2px 0;box-sizing:border-box;color:inherit;display:inline-block;padding:0 6px;text-decoration:none;vertical-align:middle}.ts-wrapper.plugin-remove_button .item .remove:hover{background:rgba(0,0,0,.05)}.ts-wrapper.plugin-remove_button.disabled .item .remove:hover{background:none}.ts-wrapper.plugin-remove_button .remove-single{font-size:23px;position:absolute;right:0;top:0}.ts-wrapper.plugin-remove_button:not(.rtl) .item{padding-right:0!important}.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove{border-left:1px solid #0073bb;margin-left:6px}.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove{border-left-color:#00578d}.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove{border-left-color:#aaa}.ts-wrapper.plugin-remove_button.rtl .item{padding-left:0!important}.ts-wrapper.plugin-remove_button.rtl .item .remove{border-right:1px solid #0073bb;margin-right:6px}.ts-wrapper.plugin-remove_button.rtl .item.active .remove{border-right-color:#00578d}.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove{border-right-color:#aaa}:root{--ts-pr-clear-button:0;--ts-pr-caret:0;--ts-pr-min:.75rem}.ts-wrapper.single .ts-control,.ts-wrapper.single .ts-control input{cursor:pointer}.ts-control:not(.rtl){padding-right:max(var(--ts-pr-min),var(--ts-pr-clear-button) + var(--ts-pr-caret))!important}.ts-control.rtl{padding-left:max(var(--ts-pr-min),var(--ts-pr-clear-button) + var(--ts-pr-caret))!important}.ts-wrapper{position:relative}.ts-control,.ts-control input,.ts-dropdown{color:#303030;font-family:inherit;font-size:13px;line-height:18px}.ts-control,.ts-wrapper.single.input-active .ts-control{background:#fff;cursor:text}.ts-hidden-accessible{clip:rect(0 0 0 0)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.ts-wrapper.single .ts-control{--ts-pr-caret:2rem}.ts-wrapper.single .ts-control:after{border-color:grey transparent transparent;border-style:solid;border-width:5px 5px 0;content:" ";display:block;height:0;margin-top:-3px;position:absolute;top:50%;width:0}.ts-wrapper.single .ts-control:not(.rtl):after{right:15px}.ts-wrapper.single .ts-control.rtl:after{left:15px}.ts-wrapper.single.dropdown-active .ts-control:after{border-color:transparent transparent grey;border-width:0 5px 5px;margin-top:-4px}.ts-wrapper.single.input-active .ts-control,.ts-wrapper.single.input-active .ts-control input{cursor:text}.ts-wrapper{display:flex;min-height:36px}.ts-wrapper.multi.has-items .ts-control{--ts-pr-min:$padding-x;padding-left:5px}.ts-wrapper.multi .ts-control [data-value]{background-color:color-mix(#1da7ee,#178ee9,60%);background-image:linear-gradient(180deg,#1da7ee,#178ee9);background-repeat:repeat-x;border-radius:3px;box-shadow:0 1px 0 rgba(0,0,0,.2),inset 0 1px hsla(0,0%,100%,.03);text-shadow:0 1px 0 rgba(0,51,83,.3)}.ts-wrapper.multi .ts-control [data-value].active{background-color:color-mix(#008fd8,#0075cf,60%);background-image:linear-gradient(180deg,#008fd8,#0075cf);background-repeat:repeat-x}.ts-wrapper.multi.disabled .ts-control [data-value]{background:none;box-shadow:none;color:#999;text-shadow:none}.ts-wrapper.multi.disabled .ts-control [data-value],.ts-wrapper.multi.disabled .ts-control [data-value] .remove{border-color:#e6e6e6}.ts-wrapper.multi.disabled .ts-control [data-value] .remove{background:none}.ts-wrapper.single .ts-control{background-color:color-mix(#fefefe,#f2f2f2,60%);background-image:linear-gradient(180deg,#fefefe,#f2f2f2);background-repeat:repeat-x;box-shadow:0 1px 0 rgba(0,0,0,.05),inset 0 1px 0 hsla(0,0%,100%,.8)}.ts-dropdown.single,.ts-wrapper.single .ts-control{border-color:#b8b8b8}.dropdown-active .ts-control{border-radius:3px 3px 0 0}.ts-dropdown .optgroup-header{font-size:.85em;font-weight:700;padding-top:7px}.ts-dropdown .optgroup{border-top:1px solid #f0f0f0}.ts-dropdown .optgroup:first-child{border-top:0} -.flatpickr-calendar{-webkit-animation:none;animation:none;background:transparent;border:0;border-radius:5px;-webkit-box-shadow:0 3px 13px rgba(0,0,0,.08);box-shadow:0 3px 13px rgba(0,0,0,.08);-webkit-box-sizing:border-box;box-sizing:border-box;direction:ltr;display:none;font-size:14px;line-height:24px;opacity:0;padding:0;position:absolute;text-align:center;-ms-touch-action:manipulation;touch-action:manipulation;visibility:hidden;width:307.875px}.flatpickr-calendar.inline,.flatpickr-calendar.open{max-height:640px;opacity:1;visibility:visible}.flatpickr-calendar.open{display:inline-block;z-index:99999}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown .3s cubic-bezier(.23,1,.32,1);animation:fpFadeInDown .3s cubic-bezier(.23,1,.32,1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px)}.flatpickr-calendar.static.open{display:block;z-index:999}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none!important;box-shadow:none!important}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-calendar .hasTime .dayContainer,.flatpickr-calendar .hasWeeks .dayContainer{border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}.flatpickr-calendar.hasTime .flatpickr-time{border-top:1px solid #eceef1;height:40px}.flatpickr-calendar.hasTime .flatpickr-innerContainer{border-bottom:0}.flatpickr-calendar.hasTime .flatpickr-time{border:1px solid #eceef1}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}.flatpickr-calendar:after,.flatpickr-calendar:before{border:solid transparent;content:"";display:block;height:0;left:22px;pointer-events:none;position:absolute;width:0}.flatpickr-calendar.arrowRight:after,.flatpickr-calendar.arrowRight:before,.flatpickr-calendar.rightMost:after,.flatpickr-calendar.rightMost:before{left:auto;right:22px}.flatpickr-calendar.arrowCenter:after,.flatpickr-calendar.arrowCenter:before{left:50%;right:50%}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar.arrowTop:after,.flatpickr-calendar.arrowTop:before{bottom:100%}.flatpickr-calendar.arrowTop:after,.flatpickr-calendar.arrowTop:before{border-bottom-color:#eceef1}.flatpickr-calendar.arrowBottom:after,.flatpickr-calendar.arrowBottom:before{top:100%}.flatpickr-calendar.arrowBottom:after,.flatpickr-calendar.arrowBottom:before{border-top-color:#eceef1}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{display:inline-block;position:relative}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-months .flatpickr-month{-webkit-box-flex:1;background:#eceef1;border-radius:5px 5px 0 0;-webkit-flex:1;-ms-flex:1;flex:1;line-height:1;overflow:hidden;position:relative;text-align:center}.flatpickr-months .flatpickr-month,.flatpickr-months .flatpickr-next-month,.flatpickr-months .flatpickr-prev-month{fill:#5a6171;color:#5a6171;height:34px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.flatpickr-months .flatpickr-next-month,.flatpickr-months .flatpickr-prev-month{cursor:pointer;padding:10px;position:absolute;text-decoration:none;top:0;z-index:3}.flatpickr-months .flatpickr-next-month.flatpickr-disabled,.flatpickr-months .flatpickr-prev-month.flatpickr-disabled{display:none}.flatpickr-months .flatpickr-next-month i,.flatpickr-months .flatpickr-prev-month i{position:relative}.flatpickr-months .flatpickr-next-month.flatpickr-prev-month,.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month{left:0}.flatpickr-months .flatpickr-next-month.flatpickr-next-month,.flatpickr-months .flatpickr-prev-month.flatpickr-next-month{right:0}.flatpickr-months .flatpickr-next-month:hover,.flatpickr-months .flatpickr-prev-month:hover{color:#bbb}.flatpickr-months .flatpickr-next-month:hover svg,.flatpickr-months .flatpickr-prev-month:hover svg{fill:#f64747}.flatpickr-months .flatpickr-next-month svg,.flatpickr-months .flatpickr-prev-month svg{height:14px;width:14px}.flatpickr-months .flatpickr-next-month svg path,.flatpickr-months .flatpickr-prev-month svg path{fill:inherit;-webkit-transition:fill .1s;transition:fill .1s}.numInputWrapper{height:auto;position:relative}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper input::-webkit-inner-spin-button,.numInputWrapper input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.numInputWrapper span{border:1px solid rgba(72,72,72,.15);-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;height:50%;line-height:50%;opacity:0;padding:0 4px 0 2px;position:absolute;right:0;width:14px}.numInputWrapper span:hover{background:rgba(0,0,0,.1)}.numInputWrapper span:active{background:rgba(0,0,0,.2)}.numInputWrapper span:after{content:"";display:block;position:absolute}.numInputWrapper span.arrowUp{border-bottom:0;top:0}.numInputWrapper span.arrowUp:after{border-bottom:4px solid rgba(72,72,72,.6);border-left:4px solid transparent;border-right:4px solid transparent;top:26%}.numInputWrapper span.arrowDown{top:50%}.numInputWrapper span.arrowDown:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(72,72,72,.6);top:40%}.numInputWrapper span svg{height:auto;width:inherit}.numInputWrapper span svg path{fill:rgba(90,97,113,.5)}.numInputWrapper:hover{background:rgba(0,0,0,.05)}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{color:inherit;display:inline-block;font-size:135%;font-weight:300;height:34px;left:12.5%;line-height:inherit;line-height:1;padding:7.48px 0 0;position:absolute;text-align:center;-webkit-transform:translateZ(0);transform:translateZ(0);width:75%}.flatpickr-current-month span.cur-month{color:inherit;display:inline-block;font-family:inherit;font-weight:700;margin-left:.5ch;padding:0}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,.05)}.flatpickr-current-month .numInputWrapper{display:inline-block;width:6ch;width:7ch\0}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:#5a6171}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:#5a6171}.flatpickr-current-month input.cur-year{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;background:transparent;border:0;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;display:inline-block;font-family:inherit;font-size:inherit;font-weight:300;height:auto;line-height:inherit;margin:0;padding:0 0 0 .5ch;vertical-align:initial}.flatpickr-current-month input.cur-year:focus{outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{background:transparent;color:rgba(90,97,113,.5);font-size:100%;pointer-events:none}.flatpickr-current-month .flatpickr-monthDropdown-months{appearance:menulist;-webkit-appearance:menulist;-moz-appearance:menulist;background:#eceef1;border:none;border-radius:0;box-sizing:border-box;-webkit-box-sizing:border-box;color:inherit;cursor:pointer;font-family:inherit;font-size:inherit;font-weight:300;height:auto;line-height:inherit;margin:-1px 0 0;outline:none;padding:0 0 0 .5ch;position:relative;vertical-align:initial;width:auto}.flatpickr-current-month .flatpickr-monthDropdown-months:active,.flatpickr-current-month .flatpickr-monthDropdown-months:focus{outline:none}.flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,.05)}.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:#eceef1;outline:none;padding:0}.flatpickr-weekdays{-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;background:#eceef1;height:28px;overflow:hidden;text-align:center;width:100%}.flatpickr-weekdays,.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-weekdays .flatpickr-weekdaycontainer,span.flatpickr-weekday{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}span.flatpickr-weekday{background:#eceef1;color:#5a6171;cursor:default;display:block;font-size:90%;font-weight:bolder;line-height:1;margin:0;text-align:center}.dayContainer,.flatpickr-weeks{padding:1px 0 0}.flatpickr-days{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;border-left:1px solid #eceef1;border-right:1px solid #eceef1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;overflow:hidden;position:relative;width:307.875px}.flatpickr-days:focus{outline:0}.dayContainer{-ms-flex-pack:justify;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-webkit-justify-content:space-around;justify-content:space-around;max-width:307.875px;min-width:307.875px;opacity:1;outline:0;padding:0;text-align:left;-webkit-transform:translateZ(0);transform:translateZ(0);width:307.875px}.dayContainer+.dayContainer{-webkit-box-shadow:-1px 0 0 #eceef1;box-shadow:-1px 0 0 #eceef1}.flatpickr-day{-ms-flex-preferred-size:14.2857143%;-webkit-box-pack:center;-ms-flex-pack:center;background:none;border:1px solid transparent;border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#484848;cursor:pointer;display:inline-block;-webkit-flex-basis:14.2857143%;flex-basis:14.2857143%;font-weight:400;height:39px;-webkit-justify-content:center;justify-content:center;line-height:39px;margin:0;max-width:39px;position:relative;text-align:center;width:14.2857143%}.flatpickr-day.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day.nextMonthDay:focus,.flatpickr-day.nextMonthDay:hover,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.today.inRange,.flatpickr-day:focus,.flatpickr-day:hover{background:#e2e2e2;border-color:#e2e2e2;cursor:pointer;outline:0}.flatpickr-day.today{border-color:#bbb}.flatpickr-day.today:focus,.flatpickr-day.today:hover{background:#bbb;border-color:#bbb;color:#fff}.flatpickr-day.endRange,.flatpickr-day.endRange.inRange,.flatpickr-day.endRange.nextMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.endRange:focus,.flatpickr-day.endRange:hover,.flatpickr-day.selected,.flatpickr-day.selected.inRange,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.selected:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange,.flatpickr-day.startRange.inRange,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.startRange:focus,.flatpickr-day.startRange:hover{background:#ff5a5f;border-color:#ff5a5f;-webkit-box-shadow:none;box-shadow:none;color:#fff}.flatpickr-day.endRange.startRange,.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange{border-radius:50px 0 0 50px}.flatpickr-day.endRange.endRange,.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange{border-radius:0 50px 50px 0}.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)),.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)){-webkit-box-shadow:-10px 0 0 #ff5a5f;box-shadow:-10px 0 0 #ff5a5f}.flatpickr-day.endRange.startRange.endRange,.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e2e2e2,5px 0 0 #e2e2e2;box-shadow:-5px 0 0 #e2e2e2,5px 0 0 #e2e2e2}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.nextMonthDay,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.prevMonthDay{background:transparent;border-color:transparent;color:rgba(72,72,72,.3);cursor:default}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover{color:rgba(72,72,72,.1);cursor:not-allowed}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #ff5a5f,5px 0 0 #ff5a5f;box-shadow:-5px 0 0 #ff5a5f,5px 0 0 #ff5a5f}.flatpickr-day.hidden{visibility:hidden}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{float:left}.flatpickr-weekwrapper .flatpickr-weeks{border-left:1px solid #eceef1;padding:0 12px}.flatpickr-weekwrapper .flatpickr-weekday{float:none;line-height:28px;width:100%}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{background:transparent;border:none;color:rgba(72,72,72,.3);cursor:default;display:block;max-width:none;width:100%}.flatpickr-innerContainer{background:#fff;border-bottom:1px solid #eceef1;display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;overflow:hidden}.flatpickr-innerContainer,.flatpickr-rContainer{-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-rContainer{display:inline-block;padding:0}.flatpickr-time{background:#fff;border-radius:0 0 5px 5px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:0;line-height:40px;max-height:40px;outline:0;overflow:hidden;text-align:center}.flatpickr-time:after{clear:both;content:"";display:table}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;float:left;height:40px;width:40%}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#484848}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#484848}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;background:transparent;border:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box;color:#484848;font-size:14px;height:inherit;line-height:inherit;margin:0;padding:0;position:relative;text-align:center}.flatpickr-time input.flatpickr-hour{font-weight:700}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}.flatpickr-time input:focus{border:0;outline:0}.flatpickr-time .flatpickr-am-pm,.flatpickr-time .flatpickr-time-separator{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center;color:#484848;float:left;font-weight:700;height:inherit;line-height:inherit;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:2%}.flatpickr-time .flatpickr-am-pm{cursor:pointer;font-weight:400;outline:0;text-align:center;width:18%}.flatpickr-time .flatpickr-am-pm:focus,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time input:hover{background:#eaeaea}.flatpickr-input[readonly]{cursor:pointer}@-webkit-keyframes fpFadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fpFadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}span.flatpickr-day.selected{font-weight:700} -.iti{display:inline-block;position:relative}.iti *{box-sizing:border-box;-moz-box-sizing:border-box}.iti__hide{display:none}.iti__v-hide{visibility:hidden}.iti input,.iti input[type=tel],.iti input[type=text]{margin-bottom:0!important;margin-right:0;margin-top:0!important;padding-right:36px;position:relative;z-index:0}.iti__flag-container{bottom:0;padding:1px;position:absolute;right:0;top:0}.iti__selected-flag{align-items:center;display:flex;height:100%;padding:0 6px 0 8px;position:relative;z-index:1}.iti__arrow{border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555;height:0;margin-left:6px;width:0}.iti__arrow--up{border-bottom:4px solid #555;border-top:none}.iti__country-list{-webkit-overflow-scrolling:touch;background-color:#fff;border:1px solid #ccc;box-shadow:1px 1px 4px rgba(0,0,0,.2);list-style:none;margin:0 0 0 -1px;max-height:200px;overflow-y:scroll;padding:0;position:absolute;text-align:left;white-space:nowrap;z-index:2}.iti__country-list--dropup{bottom:100%;margin-bottom:-1px}@media (max-width:500px){.iti__country-list{white-space:normal}}.iti__flag-box{display:inline-block;width:20px}.iti__divider{border-bottom:1px solid #ccc;margin-bottom:5px;padding-bottom:5px}.iti__country{outline:none;padding:5px 10px}.iti__dial-code{color:#999}.iti__country.iti__highlight{background-color:rgba(0,0,0,.05)}.iti__country-name,.iti__dial-code,.iti__flag-box{vertical-align:middle}.iti__country-name,.iti__flag-box{margin-right:6px}.iti--allow-dropdown input,.iti--allow-dropdown input[type=tel],.iti--allow-dropdown input[type=text],.iti--separate-dial-code input,.iti--separate-dial-code input[type=tel],.iti--separate-dial-code input[type=text]{margin-left:0;padding-left:52px;padding-right:6px}.iti--allow-dropdown .iti__flag-container,.iti--separate-dial-code .iti__flag-container{left:0;right:auto}.iti--allow-dropdown .iti__flag-container:hover{cursor:pointer}.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover{cursor:default}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover .iti__selected-flag,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover .iti__selected-flag{background-color:transparent}.iti--separate-dial-code .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--separate-dial-code .iti__selected-dial-code{margin-left:6px}.iti--container{left:-1000px;padding:1px;position:absolute;top:-1000px;z-index:1060}.iti--container:hover{cursor:pointer}.iti-mobile .iti--container{bottom:30px;left:30px;position:fixed;right:30px;top:30px}.iti-mobile .iti__country-list{max-height:100%;width:100%}.iti-mobile .iti__country{line-height:1.5em;padding:10px}.iti__flag{width:20px}.iti__flag.iti__be{width:18px}.iti__flag.iti__ch{width:15px}.iti__flag.iti__mc{width:19px}.iti__flag.iti__ne{width:18px}.iti__flag.iti__np{width:13px}.iti__flag.iti__va{width:15px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-size:5652px 15px}}.iti__flag.iti__ac{background-position:0 0;height:10px}.iti__flag.iti__ad{background-position:-22px 0;height:14px}.iti__flag.iti__ae{background-position:-44px 0;height:10px}.iti__flag.iti__af{background-position:-66px 0;height:14px}.iti__flag.iti__ag{background-position:-88px 0;height:14px}.iti__flag.iti__ai{background-position:-110px 0;height:10px}.iti__flag.iti__al{background-position:-132px 0;height:15px}.iti__flag.iti__am{background-position:-154px 0;height:10px}.iti__flag.iti__ao{background-position:-176px 0;height:14px}.iti__flag.iti__aq{background-position:-198px 0;height:14px}.iti__flag.iti__ar{background-position:-220px 0;height:13px}.iti__flag.iti__as{background-position:-242px 0;height:10px}.iti__flag.iti__at{background-position:-264px 0;height:14px}.iti__flag.iti__au{background-position:-286px 0;height:10px}.iti__flag.iti__aw{background-position:-308px 0;height:14px}.iti__flag.iti__ax{background-position:-330px 0;height:13px}.iti__flag.iti__az{background-position:-352px 0;height:10px}.iti__flag.iti__ba{background-position:-374px 0;height:10px}.iti__flag.iti__bb{background-position:-396px 0;height:14px}.iti__flag.iti__bd{background-position:-418px 0;height:12px}.iti__flag.iti__be{background-position:-440px 0;height:15px}.iti__flag.iti__bf{background-position:-460px 0;height:14px}.iti__flag.iti__bg{background-position:-482px 0;height:12px}.iti__flag.iti__bh{background-position:-504px 0;height:12px}.iti__flag.iti__bi{background-position:-526px 0;height:12px}.iti__flag.iti__bj{background-position:-548px 0;height:14px}.iti__flag.iti__bl{background-position:-570px 0;height:14px}.iti__flag.iti__bm{background-position:-592px 0;height:10px}.iti__flag.iti__bn{background-position:-614px 0;height:10px}.iti__flag.iti__bo{background-position:-636px 0;height:14px}.iti__flag.iti__bq{background-position:-658px 0;height:14px}.iti__flag.iti__br{background-position:-680px 0;height:14px}.iti__flag.iti__bs{background-position:-702px 0;height:10px}.iti__flag.iti__bt{background-position:-724px 0;height:14px}.iti__flag.iti__bv{background-position:-746px 0;height:15px}.iti__flag.iti__bw{background-position:-768px 0;height:14px}.iti__flag.iti__by{background-position:-790px 0;height:10px}.iti__flag.iti__bz{background-position:-812px 0;height:14px}.iti__flag.iti__ca{background-position:-834px 0;height:10px}.iti__flag.iti__cc{background-position:-856px 0;height:10px}.iti__flag.iti__cd{background-position:-878px 0;height:15px}.iti__flag.iti__cf{background-position:-900px 0;height:14px}.iti__flag.iti__cg{background-position:-922px 0;height:14px}.iti__flag.iti__ch{background-position:-944px 0;height:15px}.iti__flag.iti__ci{background-position:-961px 0;height:14px}.iti__flag.iti__ck{background-position:-983px 0;height:10px}.iti__flag.iti__cl{background-position:-1005px 0;height:14px}.iti__flag.iti__cm{background-position:-1027px 0;height:14px}.iti__flag.iti__cn{background-position:-1049px 0;height:14px}.iti__flag.iti__co{background-position:-1071px 0;height:14px}.iti__flag.iti__cp{background-position:-1093px 0;height:14px}.iti__flag.iti__cr{background-position:-1115px 0;height:12px}.iti__flag.iti__cu{background-position:-1137px 0;height:10px}.iti__flag.iti__cv{background-position:-1159px 0;height:12px}.iti__flag.iti__cw{background-position:-1181px 0;height:14px}.iti__flag.iti__cx{background-position:-1203px 0;height:10px}.iti__flag.iti__cy{background-position:-1225px 0;height:14px}.iti__flag.iti__cz{background-position:-1247px 0;height:14px}.iti__flag.iti__de{background-position:-1269px 0;height:12px}.iti__flag.iti__dg{background-position:-1291px 0;height:10px}.iti__flag.iti__dj{background-position:-1313px 0;height:14px}.iti__flag.iti__dk{background-position:-1335px 0;height:15px}.iti__flag.iti__dm{background-position:-1357px 0;height:10px}.iti__flag.iti__do{background-position:-1379px 0;height:14px}.iti__flag.iti__dz{background-position:-1401px 0;height:14px}.iti__flag.iti__ea{background-position:-1423px 0;height:14px}.iti__flag.iti__ec{background-position:-1445px 0;height:14px}.iti__flag.iti__ee{background-position:-1467px 0;height:13px}.iti__flag.iti__eg{background-position:-1489px 0;height:14px}.iti__flag.iti__eh{background-position:-1511px 0;height:10px}.iti__flag.iti__er{background-position:-1533px 0;height:10px}.iti__flag.iti__es{background-position:-1555px 0;height:14px}.iti__flag.iti__et{background-position:-1577px 0;height:10px}.iti__flag.iti__eu{background-position:-1599px 0;height:14px}.iti__flag.iti__fi{background-position:-1621px 0;height:12px}.iti__flag.iti__fj{background-position:-1643px 0;height:10px}.iti__flag.iti__fk{background-position:-1665px 0;height:10px}.iti__flag.iti__fm{background-position:-1687px 0;height:11px}.iti__flag.iti__fo{background-position:-1709px 0;height:15px}.iti__flag.iti__fr{background-position:-1731px 0;height:14px}.iti__flag.iti__ga{background-position:-1753px 0;height:15px}.iti__flag.iti__gb{background-position:-1775px 0;height:10px}.iti__flag.iti__gd{background-position:-1797px 0;height:12px}.iti__flag.iti__ge{background-position:-1819px 0;height:14px}.iti__flag.iti__gf{background-position:-1841px 0;height:14px}.iti__flag.iti__gg{background-position:-1863px 0;height:14px}.iti__flag.iti__gh{background-position:-1885px 0;height:14px}.iti__flag.iti__gi{background-position:-1907px 0;height:10px}.iti__flag.iti__gl{background-position:-1929px 0;height:14px}.iti__flag.iti__gm{background-position:-1951px 0;height:14px}.iti__flag.iti__gn{background-position:-1973px 0;height:14px}.iti__flag.iti__gp{background-position:-1995px 0;height:14px}.iti__flag.iti__gq{background-position:-2017px 0;height:14px}.iti__flag.iti__gr{background-position:-2039px 0;height:14px}.iti__flag.iti__gs{background-position:-2061px 0;height:10px}.iti__flag.iti__gt{background-position:-2083px 0;height:13px}.iti__flag.iti__gu{background-position:-2105px 0;height:11px}.iti__flag.iti__gw{background-position:-2127px 0;height:10px}.iti__flag.iti__gy{background-position:-2149px 0;height:12px}.iti__flag.iti__hk{background-position:-2171px 0;height:14px}.iti__flag.iti__hm{background-position:-2193px 0;height:10px}.iti__flag.iti__hn{background-position:-2215px 0;height:10px}.iti__flag.iti__hr{background-position:-2237px 0;height:10px}.iti__flag.iti__ht{background-position:-2259px 0;height:12px}.iti__flag.iti__hu{background-position:-2281px 0;height:10px}.iti__flag.iti__ic{background-position:-2303px 0;height:14px}.iti__flag.iti__id{background-position:-2325px 0;height:14px}.iti__flag.iti__ie{background-position:-2347px 0;height:10px}.iti__flag.iti__il{background-position:-2369px 0;height:15px}.iti__flag.iti__im{background-position:-2391px 0;height:10px}.iti__flag.iti__in{background-position:-2413px 0;height:14px}.iti__flag.iti__io{background-position:-2435px 0;height:10px}.iti__flag.iti__iq{background-position:-2457px 0;height:14px}.iti__flag.iti__ir{background-position:-2479px 0;height:12px}.iti__flag.iti__is{background-position:-2501px 0;height:15px}.iti__flag.iti__it{background-position:-2523px 0;height:14px}.iti__flag.iti__je{background-position:-2545px 0;height:12px}.iti__flag.iti__jm{background-position:-2567px 0;height:10px}.iti__flag.iti__jo{background-position:-2589px 0;height:10px}.iti__flag.iti__jp{background-position:-2611px 0;height:14px}.iti__flag.iti__ke{background-position:-2633px 0;height:14px}.iti__flag.iti__kg{background-position:-2655px 0;height:12px}.iti__flag.iti__kh{background-position:-2677px 0;height:13px}.iti__flag.iti__ki{background-position:-2699px 0;height:10px}.iti__flag.iti__km{background-position:-2721px 0;height:12px}.iti__flag.iti__kn{background-position:-2743px 0;height:14px}.iti__flag.iti__kp{background-position:-2765px 0;height:10px}.iti__flag.iti__kr{background-position:-2787px 0;height:14px}.iti__flag.iti__kw{background-position:-2809px 0;height:10px}.iti__flag.iti__ky{background-position:-2831px 0;height:10px}.iti__flag.iti__kz{background-position:-2853px 0;height:10px}.iti__flag.iti__la{background-position:-2875px 0;height:14px}.iti__flag.iti__lb{background-position:-2897px 0;height:14px}.iti__flag.iti__lc{background-position:-2919px 0;height:10px}.iti__flag.iti__li{background-position:-2941px 0;height:12px}.iti__flag.iti__lk{background-position:-2963px 0;height:10px}.iti__flag.iti__lr{background-position:-2985px 0;height:11px}.iti__flag.iti__ls{background-position:-3007px 0;height:14px}.iti__flag.iti__lt{background-position:-3029px 0;height:12px}.iti__flag.iti__lu{background-position:-3051px 0;height:12px}.iti__flag.iti__lv{background-position:-3073px 0;height:10px}.iti__flag.iti__ly{background-position:-3095px 0;height:10px}.iti__flag.iti__ma{background-position:-3117px 0;height:14px}.iti__flag.iti__mc{background-position:-3139px 0;height:15px}.iti__flag.iti__md{background-position:-3160px 0;height:10px}.iti__flag.iti__me{background-position:-3182px 0;height:10px}.iti__flag.iti__mf{background-position:-3204px 0;height:14px}.iti__flag.iti__mg{background-position:-3226px 0;height:14px}.iti__flag.iti__mh{background-position:-3248px 0;height:11px}.iti__flag.iti__mk{background-position:-3270px 0;height:10px}.iti__flag.iti__ml{background-position:-3292px 0;height:14px}.iti__flag.iti__mm{background-position:-3314px 0;height:14px}.iti__flag.iti__mn{background-position:-3336px 0;height:10px}.iti__flag.iti__mo{background-position:-3358px 0;height:14px}.iti__flag.iti__mp{background-position:-3380px 0;height:10px}.iti__flag.iti__mq{background-position:-3402px 0;height:14px}.iti__flag.iti__mr{background-position:-3424px 0;height:14px}.iti__flag.iti__ms{background-position:-3446px 0;height:10px}.iti__flag.iti__mt{background-position:-3468px 0;height:14px}.iti__flag.iti__mu{background-position:-3490px 0;height:14px}.iti__flag.iti__mv{background-position:-3512px 0;height:14px}.iti__flag.iti__mw{background-position:-3534px 0;height:14px}.iti__flag.iti__mx{background-position:-3556px 0;height:12px}.iti__flag.iti__my{background-position:-3578px 0;height:10px}.iti__flag.iti__mz{background-position:-3600px 0;height:14px}.iti__flag.iti__na{background-position:-3622px 0;height:14px}.iti__flag.iti__nc{background-position:-3644px 0;height:10px}.iti__flag.iti__ne{background-position:-3666px 0;height:15px}.iti__flag.iti__nf{background-position:-3686px 0;height:10px}.iti__flag.iti__ng{background-position:-3708px 0;height:10px}.iti__flag.iti__ni{background-position:-3730px 0;height:12px}.iti__flag.iti__nl{background-position:-3752px 0;height:14px}.iti__flag.iti__no{background-position:-3774px 0;height:15px}.iti__flag.iti__np{background-position:-3796px 0;height:15px}.iti__flag.iti__nr{background-position:-3811px 0;height:10px}.iti__flag.iti__nu{background-position:-3833px 0;height:10px}.iti__flag.iti__nz{background-position:-3855px 0;height:10px}.iti__flag.iti__om{background-position:-3877px 0;height:10px}.iti__flag.iti__pa{background-position:-3899px 0;height:14px}.iti__flag.iti__pe{background-position:-3921px 0;height:14px}.iti__flag.iti__pf{background-position:-3943px 0;height:14px}.iti__flag.iti__pg{background-position:-3965px 0;height:15px}.iti__flag.iti__ph{background-position:-3987px 0;height:10px}.iti__flag.iti__pk{background-position:-4009px 0;height:14px}.iti__flag.iti__pl{background-position:-4031px 0;height:13px}.iti__flag.iti__pm{background-position:-4053px 0;height:14px}.iti__flag.iti__pn{background-position:-4075px 0;height:10px}.iti__flag.iti__pr{background-position:-4097px 0;height:14px}.iti__flag.iti__ps{background-position:-4119px 0;height:10px}.iti__flag.iti__pt{background-position:-4141px 0;height:14px}.iti__flag.iti__pw{background-position:-4163px 0;height:13px}.iti__flag.iti__py{background-position:-4185px 0;height:11px}.iti__flag.iti__qa{background-position:-4207px 0;height:8px}.iti__flag.iti__re{background-position:-4229px 0;height:14px}.iti__flag.iti__ro{background-position:-4251px 0;height:14px}.iti__flag.iti__rs{background-position:-4273px 0;height:14px}.iti__flag.iti__ru{background-position:-4295px 0;height:14px}.iti__flag.iti__rw{background-position:-4317px 0;height:14px}.iti__flag.iti__sa{background-position:-4339px 0;height:14px}.iti__flag.iti__sb{background-position:-4361px 0;height:10px}.iti__flag.iti__sc{background-position:-4383px 0;height:10px}.iti__flag.iti__sd{background-position:-4405px 0;height:10px}.iti__flag.iti__se{background-position:-4427px 0;height:13px}.iti__flag.iti__sg{background-position:-4449px 0;height:14px}.iti__flag.iti__sh{background-position:-4471px 0;height:10px}.iti__flag.iti__si{background-position:-4493px 0;height:10px}.iti__flag.iti__sj{background-position:-4515px 0;height:15px}.iti__flag.iti__sk{background-position:-4537px 0;height:14px}.iti__flag.iti__sl{background-position:-4559px 0;height:14px}.iti__flag.iti__sm{background-position:-4581px 0;height:15px}.iti__flag.iti__sn{background-position:-4603px 0;height:14px}.iti__flag.iti__so{background-position:-4625px 0;height:14px}.iti__flag.iti__sr{background-position:-4647px 0;height:14px}.iti__flag.iti__ss{background-position:-4669px 0;height:10px}.iti__flag.iti__st{background-position:-4691px 0;height:10px}.iti__flag.iti__sv{background-position:-4713px 0;height:12px}.iti__flag.iti__sx{background-position:-4735px 0;height:14px}.iti__flag.iti__sy{background-position:-4757px 0;height:14px}.iti__flag.iti__sz{background-position:-4779px 0;height:14px}.iti__flag.iti__ta{background-position:-4801px 0;height:10px}.iti__flag.iti__tc{background-position:-4823px 0;height:10px}.iti__flag.iti__td{background-position:-4845px 0;height:14px}.iti__flag.iti__tf{background-position:-4867px 0;height:14px}.iti__flag.iti__tg{background-position:-4889px 0;height:13px}.iti__flag.iti__th{background-position:-4911px 0;height:14px}.iti__flag.iti__tj{background-position:-4933px 0;height:10px}.iti__flag.iti__tk{background-position:-4955px 0;height:10px}.iti__flag.iti__tl{background-position:-4977px 0;height:10px}.iti__flag.iti__tm{background-position:-4999px 0;height:14px}.iti__flag.iti__tn{background-position:-5021px 0;height:14px}.iti__flag.iti__to{background-position:-5043px 0;height:10px}.iti__flag.iti__tr{background-position:-5065px 0;height:14px}.iti__flag.iti__tt{background-position:-5087px 0;height:12px}.iti__flag.iti__tv{background-position:-5109px 0;height:10px}.iti__flag.iti__tw{background-position:-5131px 0;height:14px}.iti__flag.iti__tz{background-position:-5153px 0;height:14px}.iti__flag.iti__ua{background-position:-5175px 0;height:14px}.iti__flag.iti__ug{background-position:-5197px 0;height:14px}.iti__flag.iti__um{background-position:-5219px 0;height:11px}.iti__flag.iti__un{background-position:-5241px 0;height:14px}.iti__flag.iti__us{background-position:-5263px 0;height:11px}.iti__flag.iti__uy{background-position:-5285px 0;height:14px}.iti__flag.iti__uz{background-position:-5307px 0;height:10px}.iti__flag.iti__va{background-position:-5329px 0;height:15px}.iti__flag.iti__vc{background-position:-5346px 0;height:14px}.iti__flag.iti__ve{background-position:-5368px 0;height:14px}.iti__flag.iti__vg{background-position:-5390px 0;height:10px}.iti__flag.iti__vi{background-position:-5412px 0;height:14px}.iti__flag.iti__vn{background-position:-5434px 0;height:14px}.iti__flag.iti__vu{background-position:-5456px 0;height:12px}.iti__flag.iti__wf{background-position:-5478px 0;height:14px}.iti__flag.iti__ws{background-position:-5500px 0;height:10px}.iti__flag.iti__xk{background-position:-5522px 0;height:15px}.iti__flag.iti__ye{background-position:-5544px 0;height:14px}.iti__flag.iti__yt{background-position:-5566px 0;height:14px}.iti__flag.iti__za{background-position:-5588px 0;height:14px}.iti__flag.iti__zm{background-position:-5610px 0;height:14px}.iti__flag.iti__zw{background-position:-5632px 0;height:10px}.iti__flag{background-color:#dbdbdb;background-image:url(../img/flags.png);background-position:20px 0;background-repeat:no-repeat;box-shadow:0 0 1px 0 #888;height:15px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-image:url(../img/flags@2x.png)}}.iti__flag.iti__np{background-color:transparent} -/*! - * FilePond 4.30.6 - * Licensed under MIT, https://opensource.org/licenses/MIT/ - * Please visit https://pqina.nl/filepond/ for details. - */.filepond--assistant{clip:rect(1px,1px,1px,1px);border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.filepond--browser.filepond--browser{font-size:0;left:1em;margin:0;opacity:0;padding:0;position:absolute;top:1.75em;width:calc(100% - 2em)}.filepond--data{border:none;contain:strict;height:0;margin:0;padding:0;visibility:hidden;width:0}.filepond--data,.filepond--drip{pointer-events:none;position:absolute}.filepond--drip{background:rgba(0,0,0,.01);border-radius:.5em;bottom:0;left:0;opacity:.1;overflow:hidden;right:0;top:0}.filepond--drip-blob{background:#292625;border-radius:50%;height:8em;margin-left:-4em;margin-top:-4em;-webkit-transform-origin:center center;transform-origin:center center;width:8em}.filepond--drip-blob,.filepond--drop-label{left:0;position:absolute;top:0;will-change:transform,opacity}.filepond--drop-label{align-items:center;color:#4f4f4f;display:flex;height:0;justify-content:center;margin:0;right:0;-webkit-user-select:none;-ms-user-select:none;user-select:none}.filepond--drop-label.filepond--drop-label label{display:block;margin:0;padding:.5em}.filepond--drop-label label{cursor:default;font-size:.875em;font-weight:400;line-height:1.5;text-align:center}.filepond--label-action{-webkit-text-decoration-skip:ink;cursor:pointer;text-decoration:underline;-webkit-text-decoration-color:#a7a4a4;text-decoration-color:#a7a4a4;text-decoration-skip-ink:auto}.filepond--root[data-disabled] .filepond--drop-label label{opacity:.5}.filepond--file-action-button.filepond--file-action-button{border:none;font-family:inherit;font-size:1em;height:1.625em;line-height:inherit;margin:0;outline:none;padding:0;width:1.625em;will-change:transform,opacity}.filepond--file-action-button.filepond--file-action-button span{clip:rect(1px,1px,1px,1px);border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.filepond--file-action-button.filepond--file-action-button svg{height:100%;width:100%}.filepond--file-action-button.filepond--file-action-button:after{bottom:-.75em;content:"";left:-.75em;position:absolute;right:-.75em;top:-.75em}.filepond--file-action-button{background-color:rgba(0,0,0,.5);background-image:none;border-radius:50%;box-shadow:0 0 0 0 hsla(0,0%,100%,0);color:#fff;cursor:auto;transition:box-shadow .25s ease-in}.filepond--file-action-button:focus,.filepond--file-action-button:hover{box-shadow:0 0 0 .125em hsla(0,0%,100%,.9)}.filepond--file-action-button[disabled]{background-color:rgba(0,0,0,.25);color:hsla(0,0%,100%,.5)}.filepond--file-action-button[hidden]{display:none}.filepond--action-edit-item.filepond--action-edit-item{height:2em;padding:.1875em;width:2em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=center]{margin-left:-.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom]{margin-bottom:-.1875em}.filepond--action-edit-item-alt{background:transparent;border:none;color:inherit;font-family:inherit;line-height:inherit;margin:0 0 0 .25em;outline:none;padding:0;pointer-events:all;position:absolute}.filepond--action-edit-item-alt svg{height:1.3125em;width:1.3125em}.filepond--action-edit-item-alt span{font-size:0;opacity:0}.filepond--file-info{align-items:flex-start;display:flex;flex:1;flex-direction:column;margin:0 .5em 0 0;min-width:0;pointer-events:none;position:static;-webkit-user-select:none;-ms-user-select:none;user-select:none;will-change:transform,opacity}.filepond--file-info *{margin:0}.filepond--file-info .filepond--file-info-main{font-size:.75em;line-height:1.2;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.filepond--file-info .filepond--file-info-sub{font-size:.625em;opacity:.5;transition:opacity .25s ease-in-out;white-space:nowrap}.filepond--file-info .filepond--file-info-sub:empty{display:none}.filepond--file-status{align-items:flex-end;display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin:0;min-width:2.25em;pointer-events:none;position:static;text-align:right;-webkit-user-select:none;-ms-user-select:none;user-select:none;will-change:transform,opacity}.filepond--file-status *{margin:0;white-space:nowrap}.filepond--file-status .filepond--file-status-main{font-size:.75em;line-height:1.2}.filepond--file-status .filepond--file-status-sub{font-size:.625em;opacity:.5;transition:opacity .25s ease-in-out}.filepond--file-wrapper.filepond--file-wrapper{border:none;height:100%;margin:0;min-width:0;padding:0}.filepond--file-wrapper.filepond--file-wrapper>legend{clip:rect(1px,1px,1px,1px);border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.filepond--file{align-items:flex-start;border-radius:.5em;color:#fff;display:flex;height:100%;padding:.5625em;position:static}.filepond--file .filepond--file-status{margin-left:auto;margin-right:2.25em}.filepond--file .filepond--processing-complete-indicator{pointer-events:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;z-index:3}.filepond--file .filepond--file-action-button,.filepond--file .filepond--processing-complete-indicator,.filepond--file .filepond--progress-indicator{position:absolute}.filepond--file [data-align*=left]{left:.5625em}.filepond--file [data-align*=right]{right:.5625em}.filepond--file [data-align*=center]{left:calc(50% - .8125em)}.filepond--file [data-align*=bottom]{bottom:1.125em}.filepond--file [data-align=center]{top:calc(50% - .8125em)}.filepond--file .filepond--progress-indicator{margin-top:.1875em}.filepond--file .filepond--progress-indicator[data-align*=right]{margin-right:.1875em}.filepond--file .filepond--progress-indicator[data-align*=left]{margin-left:.1875em}[data-filepond-item-state*=error] .filepond--file-info,[data-filepond-item-state*=invalid] .filepond--file-info,[data-filepond-item-state=cancelled] .filepond--file-info{margin-right:2.25em}[data-filepond-item-state~=processing] .filepond--file-status-sub{opacity:0}[data-filepond-item-state~=processing] .filepond--action-abort-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-error] .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-error] .filepond--action-retry-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg{-webkit-animation:fall .5s linear .125s both;animation:fall .5s linear .125s both}[data-filepond-item-state=processing-complete] .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--file-info-sub,[data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden])~.filepond--file-status .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing~.filepond--file-info .filepond--file-info-sub{opacity:.5}[data-filepond-item-state*=error] .filepond--file-wrapper,[data-filepond-item-state*=error] .filepond--panel,[data-filepond-item-state*=invalid] .filepond--file-wrapper,[data-filepond-item-state*=invalid] .filepond--panel{-webkit-animation:shake .65s linear both;animation:shake .65s linear both}[data-filepond-item-state*=busy] .filepond--progress-indicator svg{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@-webkit-keyframes fall{0%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}70%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}to{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}}@keyframes fall{0%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}70%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}to{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}}.filepond--hopper[data-hopper-state=drag-over]>*{pointer-events:none}.filepond--hopper[data-hopper-state=drag-over]:after{bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:100}.filepond--progress-indicator{z-index:103}.filepond--file-action-button{z-index:102}.filepond--file-status{z-index:101}.filepond--file-info{z-index:100}.filepond--item{left:0;margin:.25em;padding:0;position:absolute;right:0;top:0;will-change:transform,opacity;z-index:1}.filepond--item>.filepond--panel{z-index:-1}.filepond--item>.filepond--panel .filepond--panel-bottom{box-shadow:0 .0625em .125em -.0625em rgba(0,0,0,.25)}.filepond--item>.filepond--file-wrapper,.filepond--item>.filepond--panel{transition:opacity .15s ease-out}.filepond--item[data-drag-state]{cursor:-webkit-grab;cursor:grab}.filepond--item[data-drag-state]>.filepond--panel{box-shadow:0 0 0 transparent;transition:box-shadow .125s ease-in-out}.filepond--item[data-drag-state=drag]{cursor:-webkit-grabbing;cursor:grabbing}.filepond--item[data-drag-state=drag]>.filepond--panel{box-shadow:0 .125em .3125em rgba(0,0,0,.325)}.filepond--item[data-drag-state]:not([data-drag-state=idle]){z-index:2}.filepond--item-panel{background-color:#64605e}[data-filepond-item-state=processing-complete] .filepond--item-panel{background-color:#369763}[data-filepond-item-state*=error] .filepond--item-panel,[data-filepond-item-state*=invalid] .filepond--item-panel{background-color:#c44e47}.filepond--item-panel{border-radius:.5em;transition:background-color .25s}.filepond--list-scroller{left:0;margin:0;position:absolute;right:0;top:0;will-change:transform}.filepond--list-scroller[data-state=overflow] .filepond--list{bottom:0;right:0}.filepond--list-scroller[data-state=overflow]{-webkit-overflow-scrolling:touch;-webkit-mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent);mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent);overflow-x:hidden;overflow-y:scroll}.filepond--list-scroller::-webkit-scrollbar{background:transparent}.filepond--list-scroller::-webkit-scrollbar:vertical{width:1em}.filepond--list-scroller::-webkit-scrollbar:horizontal{height:0}.filepond--list-scroller::-webkit-scrollbar-thumb{background-clip:content-box;background-color:rgba(0,0,0,.3);border:.3125em solid transparent;border-radius:99999px}.filepond--list.filepond--list{list-style-type:none;margin:0;padding:0;position:absolute;top:0;will-change:transform}.filepond--list{left:.75em;right:.75em}.filepond--root[data-style-panel-layout~=integrated]{height:100%;margin:0;max-width:none;width:100%}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root{border-radius:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root>*,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{align-items:center;bottom:0;display:flex;height:auto;justify-content:center;z-index:7}.filepond--root[data-style-panel-layout~=circle] .filepond--item-panel,.filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel{display:none}.filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller,.filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller{height:100%;margin-bottom:0;margin-top:0;overflow:hidden}.filepond--root[data-style-panel-layout~=compact] .filepond--list,.filepond--root[data-style-panel-layout~=integrated] .filepond--list{height:100%;left:0;right:0}.filepond--root[data-style-panel-layout~=compact] .filepond--item,.filepond--root[data-style-panel-layout~=integrated] .filepond--item{margin:0}.filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper,.filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper{height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{z-index:7}.filepond--root[data-style-panel-layout~=circle]{border-radius:99999rem;overflow:hidden}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel{border-radius:inherit}.filepond--root[data-style-panel-layout~=circle] .filepond--file-info,.filepond--root[data-style-panel-layout~=circle] .filepond--file-status,.filepond--root[data-style-panel-layout~=circle]>.filepond--panel>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item{opacity:1!important;visibility:visible!important}@media not all and (-webkit-min-device-pixel-ratio:0),not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none) and (stroke-color:transparent){.filepond--root[data-style-panel-layout~=circle]{will-change:transform}}}.filepond--panel-root{background-color:#f1f0ef;border-radius:.5em}.filepond--panel{height:100%!important;left:0;margin:0;pointer-events:none;position:absolute;right:0;top:0}.filepond-panel:not([data-scalable=false]){height:auto!important}.filepond--panel[data-scalable=false]>div{display:none}.filepond--panel[data-scalable=true]{background-color:transparent!important;border:none!important;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.filepond--panel-bottom,.filepond--panel-center,.filepond--panel-top{left:0;margin:0;padding:0;position:absolute;right:0;top:0}.filepond--panel-bottom,.filepond--panel-top{height:.5em}.filepond--panel-top{border-bottom:none!important;border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.filepond--panel-top:after{background-color:inherit;bottom:-1px;content:"";height:2px;left:0;position:absolute;right:0}.filepond--panel-bottom,.filepond--panel-center{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translate3d(0,.5em,0);transform:translate3d(0,.5em,0);-webkit-transform-origin:left top;transform-origin:left top;will-change:transform}.filepond--panel-bottom{border-top:none!important;border-top-left-radius:0!important;border-top-right-radius:0!important}.filepond--panel-bottom:before{background-color:inherit;content:"";height:2px;left:0;position:absolute;right:0;top:-1px}.filepond--panel-center{border-bottom:none!important;border-radius:0!important;border-top:none!important;height:100px!important}.filepond--panel-center:not([style]){visibility:hidden}.filepond--progress-indicator{color:#fff;height:1.25em;margin:0;pointer-events:none;position:static;width:1.25em;will-change:transform,opacity}.filepond--progress-indicator svg{height:100%;transform-box:fill-box;vertical-align:top;width:100%}.filepond--progress-indicator path{fill:none;stroke:currentColor}.filepond--list-scroller{z-index:6}.filepond--drop-label{z-index:5}.filepond--drip{z-index:3}.filepond--root>.filepond--panel{z-index:2}.filepond--browser{z-index:1}.filepond--root{box-sizing:border-box;contain:layout style size;direction:ltr;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1rem;font-weight:450;line-height:normal;margin-bottom:1em;position:relative;text-align:left;text-rendering:optimizeLegibility}.filepond--root *{box-sizing:inherit;line-height:inherit}.filepond--root :not(text){font-size:inherit}.filepond--root[data-disabled]{pointer-events:none}.filepond--root[data-disabled] .filepond--list-scroller{pointer-events:all}.filepond--root[data-disabled] .filepond--list{pointer-events:none}.filepond--root .filepond--drop-label{min-height:4.75em}.filepond--root .filepond--list-scroller{margin-bottom:1em;margin-top:1em}.filepond--root .filepond--credits{bottom:-14px;color:inherit;font-size:11px;line-height:.85;opacity:.175;position:absolute;right:0;text-decoration:none;z-index:3}.filepond--root .filepond--credits[style]{bottom:auto;margin-top:14px;top:0} -trix-editor{border:1px solid #bbb;border-radius:3px;margin:0;min-height:5em;outline:none;padding:.4em .6em}trix-toolbar *{box-sizing:border-box}trix-toolbar .trix-button-row{display:flex;flex-wrap:nowrap;justify-content:space-between;overflow-x:auto}trix-toolbar .trix-button-group{border-color:#ccc #bbb #888;border-radius:3px;border-style:solid;border-width:1px;display:flex;margin-bottom:10px}trix-toolbar .trix-button-group:not(:first-child){margin-left:1.5vw}@media (max-width:768px){trix-toolbar .trix-button-group:not(:first-child){margin-left:0}}trix-toolbar .trix-button-group-spacer{flex-grow:1}@media (max-width:768px){trix-toolbar .trix-button-group-spacer{display:none}}trix-toolbar .trix-button{background:transparent;border:none;border-bottom:1px solid #ddd;border-radius:0;color:rgba(0,0,0,.6);float:left;font-size:.75em;font-weight:600;margin:0;outline:none;padding:0 .5em;position:relative;white-space:nowrap}trix-toolbar .trix-button:not(:first-child){border-left:1px solid #ccc}trix-toolbar .trix-button.trix-active{background:#cbeefa;color:#000}trix-toolbar .trix-button:not(:disabled){cursor:pointer}trix-toolbar .trix-button:disabled{color:rgba(0,0,0,.125)}@media (max-width:768px){trix-toolbar .trix-button{letter-spacing:-.01em;padding:0 .3em}}trix-toolbar .trix-button--icon{font-size:inherit;height:1.6em;max-width:calc(.8em + 4vw);text-indent:-9999px;width:2.6em}@media (max-width:768px){trix-toolbar .trix-button--icon{height:2em;max-width:calc(.8em + 3.5vw)}}trix-toolbar .trix-button--icon:before{background-position:50%;background-repeat:no-repeat;background-size:contain;bottom:0;content:"";display:inline-block;left:0;opacity:.6;position:absolute;right:0;top:0}@media (max-width:768px){trix-toolbar .trix-button--icon:before{left:6%;right:6%}}trix-toolbar .trix-button--icon.trix-active:before{opacity:1}trix-toolbar .trix-button--icon:disabled:before{opacity:.125}trix-toolbar .trix-button--icon-attach:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 18V7.5c0-2.25 3-2.25 3 0V18c0 4.125-6 4.125-6 0V7.5c0-6.375 9-6.375 9 0V18' stroke='%23000' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");bottom:4%;top:8%}trix-toolbar .trix-button--icon-bold:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.522 19.242a.5.5 0 0 1-.5-.5V5.35a.5.5 0 0 1 .5-.5h5.783c1.347 0 2.46.345 3.24.982.783.64 1.216 1.562 1.216 2.683 0 1.13-.587 2.129-1.476 2.71a.35.35 0 0 0 .049.613c1.259.56 2.101 1.742 2.101 3.22 0 1.282-.483 2.334-1.363 3.063-.876.726-2.132 1.12-3.66 1.12h-5.89ZM9.27 7.347v3.362h1.97c.766 0 1.347-.17 1.733-.464.38-.291.587-.716.587-1.27 0-.53-.183-.928-.513-1.198-.334-.273-.838-.43-1.505-.43H9.27Zm0 5.606v3.791h2.389c.832 0 1.448-.177 1.853-.497.399-.315.614-.786.614-1.423 0-.62-.22-1.077-.63-1.385-.418-.313-1.053-.486-1.905-.486H9.27Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-button--icon-italic:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 5h6.5v2h-2.23l-2.31 10H13v2H6v-2h2.461l2.306-10H9V5Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-button--icon-link:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.948 5.258a4.337 4.337 0 0 0-6.108 0L11.217 6.87a.993.993 0 0 0 0 1.41c.392.39 1.027.39 1.418 0l1.623-1.613a2.323 2.323 0 0 1 3.271 0 2.29 2.29 0 0 1 0 3.251l-2.393 2.38a3.021 3.021 0 0 1-4.255 0l-.05-.049a1.007 1.007 0 0 0-1.418 0 .993.993 0 0 0 0 1.41l.05.049a5.036 5.036 0 0 0 7.091 0l2.394-2.38a4.275 4.275 0 0 0 0-6.072Zm-13.683 13.6a4.337 4.337 0 0 0 6.108 0l1.262-1.255a.993.993 0 0 0 0-1.41 1.007 1.007 0 0 0-1.418 0L9.954 17.45a2.323 2.323 0 0 1-3.27 0 2.29 2.29 0 0 1 0-3.251l2.344-2.331a2.579 2.579 0 0 1 3.631 0c.392.39 1.027.39 1.419 0a.993.993 0 0 0 0-1.41 4.593 4.593 0 0 0-6.468 0l-2.345 2.33a4.275 4.275 0 0 0 0 6.072Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-button--icon-strike:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 14.986c.088 2.647 2.246 4.258 5.635 4.258 3.496 0 5.713-1.728 5.713-4.463 0-.275-.02-.536-.062-.781h-3.461c.398.293.573.654.573 1.123 0 1.035-1.074 1.787-2.646 1.787-1.563 0-2.773-.762-2.91-1.924H6ZM6.432 10h3.763c-.632-.314-.914-.715-.914-1.273 0-1.045.977-1.739 2.432-1.739 1.475 0 2.52.723 2.617 1.914h2.764c-.05-2.548-2.11-4.238-5.39-4.238-3.145 0-5.392 1.719-5.392 4.316 0 .363.04.703.12 1.02ZM4 11a1 1 0 1 0 0 2h15a1 1 0 1 0 0-2H4Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-button--icon-quote:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.581 8.471c.44-.5 1.056-.834 1.758-.995C8.074 7.17 9.201 7.822 10 8.752c1.354 1.578 1.33 3.555.394 5.277-.941 1.731-2.788 3.163-4.988 3.56a.622.622 0 0 1-.653-.317c-.113-.205-.121-.49.16-.764.294-.286.567-.566.791-.835.222-.266.413-.54.524-.815.113-.28.156-.597.026-.908-.128-.303-.39-.524-.72-.69a3.02 3.02 0 0 1-1.674-2.7c0-.905.283-1.59.72-2.088Zm9.419 0c.44-.5 1.055-.834 1.758-.995 1.734-.306 2.862.346 3.66 1.276 1.355 1.578 1.33 3.555.395 5.277-.941 1.731-2.789 3.163-4.988 3.56a.622.622 0 0 1-.653-.317c-.113-.205-.122-.49.16-.764.294-.286.567-.566.791-.835.222-.266.412-.54.523-.815.114-.28.157-.597.026-.908-.127-.303-.39-.524-.72-.69a3.02 3.02 0 0 1-1.672-2.701c0-.905.283-1.59.72-2.088Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-button--icon-heading-1:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.5 7.5v-3h-12v3H14v13h3v-13h4.5ZM9 13.5h3.5v-3h-10v3H6v7h3v-7Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-button--icon-code:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.293 11.293a1 1 0 0 0 0 1.414l4 4a1 1 0 1 0 1.414-1.414L5.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414l-4 4Zm13.414 5.414 4-4a1 1 0 0 0 0-1.414l-4-4a1 1 0 1 0-1.414 1.414L18.586 12l-3.293 3.293a1 1 0 0 0 1.414 1.414Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-button--icon-bullet-list:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 7.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM8 6a1 1 0 0 1 1-1h11a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 5a1 1 0 1 0 0 2h11a1 1 0 1 0 0-2H9Zm0 6a1 1 0 1 0 0 2h11a1 1 0 1 0 0-2H9Zm-2.5-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM5 19.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-button--icon-number-list:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 4h2v4H4V5H3V4Zm5 2a1 1 0 0 1 1-1h11a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 5a1 1 0 1 0 0 2h11a1 1 0 1 0 0-2H9Zm0 6a1 1 0 1 0 0 2h11a1 1 0 1 0 0-2H9Zm-3.5-7H6v1l-1.5 2H6v1H3v-1l1.667-2H3v-1h2.5ZM3 17v-1h3v4H3v-1h2v-.5H4v-1h1V17H3Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-button--icon-undo:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 14a1 1 0 0 0 1 1h6a1 1 0 1 0 0-2H6.257c2.247-2.764 5.151-3.668 7.579-3.264 2.589.432 4.739 2.356 5.174 5.405a1 1 0 0 0 1.98-.283c-.564-3.95-3.415-6.526-6.825-7.095C11.084 7.25 7.63 8.377 5 11.39V8a1 1 0 0 0-2 0v6Zm2-1Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-button--icon-redo:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21 14a1 1 0 0 1-1 1h-6a1 1 0 1 1 0-2h3.743c-2.247-2.764-5.151-3.668-7.579-3.264-2.589.432-4.739 2.356-5.174 5.405a1 1 0 0 1-1.98-.283c.564-3.95 3.415-6.526 6.826-7.095 3.08-.513 6.534.614 9.164 3.626V8a1 1 0 1 1 2 0v6Zm-2-1Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-button--icon-decrease-nesting-level:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1Zm4 5a1 1 0 1 0 0 2h9a1 1 0 1 0 0-2H9Zm-3 6a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2H6Zm-3.707-5.707a1 1 0 0 0 0 1.414l2 2a1 1 0 1 0 1.414-1.414L4.414 12l1.293-1.293a1 1 0 0 0-1.414-1.414l-2 2Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-button--icon-increase-nesting-level:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1Zm4 5a1 1 0 1 0 0 2h9a1 1 0 1 0 0-2H9Zm-3 6a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2H6Zm-2.293-2.293 2-2a1 1 0 0 0 0-1.414l-2-2a1 1 0 1 0-1.414 1.414L3.586 12l-1.293 1.293a1 1 0 1 0 1.414 1.414Z' fill='%23000'/%3E%3C/svg%3E")}trix-toolbar .trix-dialogs{position:relative}trix-toolbar .trix-dialog{background:#fff;border-radius:5px;border-top:2px solid #888;box-shadow:0 .3em 1em #ccc;font-size:.75em;left:0;padding:15px 10px;position:absolute;right:0;top:0;z-index:5}trix-toolbar .trix-input--dialog{-webkit-appearance:none;-moz-appearance:none;background-color:#fff;border:1px solid #bbb;border-radius:3px;box-shadow:none;font-size:inherit;font-weight:400;margin:0 10px 0 0;outline:none;padding:.5em .8em}trix-toolbar .trix-input--dialog.validate:invalid{box-shadow:0 0 1.5px 1px red}trix-toolbar .trix-button--dialog{border-bottom:none;font-size:inherit;padding:.5em}trix-toolbar .trix-dialog--link{max-width:600px}trix-toolbar .trix-dialog__link-fields{align-items:baseline;display:flex}trix-toolbar .trix-dialog__link-fields .trix-input{flex:1}trix-toolbar .trix-dialog__link-fields .trix-button-group{flex:0 0 content;margin:0}trix-editor [data-trix-mutable]:not(.attachment__caption-editor){-webkit-user-select:none;-moz-user-select:none;user-select:none}trix-editor [data-trix-cursor-target]::-moz-selection,trix-editor [data-trix-mutable] ::-moz-selection,trix-editor [data-trix-mutable]::-moz-selection{background:none}trix-editor [data-trix-cursor-target]::selection,trix-editor [data-trix-mutable] ::selection,trix-editor [data-trix-mutable]::selection{background:none}trix-editor .attachment__caption-editor:focus[data-trix-mutable]::-moz-selection{background:highlight}trix-editor .attachment__caption-editor:focus[data-trix-mutable]::selection{background:highlight}trix-editor [data-trix-mutable].attachment.attachment--file{border-color:transparent;box-shadow:0 0 0 2px highlight}trix-editor [data-trix-mutable].attachment img{box-shadow:0 0 0 2px highlight}trix-editor .attachment{position:relative}trix-editor .attachment:hover{cursor:default}trix-editor .attachment--preview .attachment__caption:hover{cursor:text}trix-editor .attachment__progress{height:20px;left:5%;opacity:.9;position:absolute;top:calc(50% - 10px);transition:opacity .2s ease-in;width:90%;z-index:1}trix-editor .attachment__progress[value="100"]{opacity:0}trix-editor .attachment__caption-editor{-webkit-appearance:none;-moz-appearance:none;border:none;color:inherit;display:inline-block;font-family:inherit;font-size:inherit;line-height:inherit;margin:0;outline:none;padding:0;text-align:center;vertical-align:top;width:100%}trix-editor .attachment__toolbar{left:0;position:absolute;text-align:center;top:-.9em;width:100%;z-index:1}trix-editor .trix-button-group{display:inline-flex}trix-editor .trix-button{background:transparent;border:none;border-radius:0;color:#666;float:left;font-size:80%;margin:0;outline:none;padding:0 .8em;position:relative;white-space:nowrap}trix-editor .trix-button:not(:first-child){border-left:1px solid #ccc}trix-editor .trix-button.trix-active{background:#cbeefa}trix-editor .trix-button:not(:disabled){cursor:pointer}trix-editor .trix-button--remove{background-color:#fff;border:2px solid highlight;border-radius:50%;box-shadow:1px 1px 6px rgba(0,0,0,.25);display:inline-block;height:1.8em;line-height:1.8em;outline:none;padding:0;text-indent:-9999px;width:1.8em}trix-editor .trix-button--remove:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg height='24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:90%;bottom:0;content:"";display:inline-block;left:0;opacity:.7;position:absolute;right:0;top:0}trix-editor .trix-button--remove:hover{border-color:#333}trix-editor .trix-button--remove:hover:before{opacity:1}trix-editor .attachment__metadata-container{position:relative}trix-editor .attachment__metadata{background-color:rgba(0,0,0,.7);border-radius:3px;color:#fff;font-size:.8em;left:50%;max-width:90%;padding:.1em .6em;position:absolute;top:2em;transform:translate(-50%)}trix-editor .attachment__metadata .attachment__name{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}trix-editor .attachment__metadata .attachment__size{margin-left:.2em;white-space:nowrap}.trix-content{line-height:1.5}.trix-content *{box-sizing:border-box;margin:0;padding:0}.trix-content h1{font-size:1.2em;line-height:1.2}.trix-content blockquote{border:solid #ccc;border-width:0 0 0 .3em;margin-left:.3em;padding-left:.6em}.trix-content [dir=rtl] blockquote,.trix-content blockquote[dir=rtl]{border-width:0 .3em 0 0;margin-right:.3em;padding-right:.6em}.trix-content li{margin-left:1em}.trix-content [dir=rtl] li{margin-right:1em}.trix-content pre{background-color:#eee;display:inline-block;font-family:monospace;font-size:.9em;overflow-x:auto;padding:.5em;vertical-align:top;white-space:pre;width:100%}.trix-content img{height:auto;max-width:100%}.trix-content .attachment{display:inline-block;max-width:100%;position:relative}.trix-content .attachment a{color:inherit;text-decoration:none}.trix-content .attachment a:hover,.trix-content .attachment a:visited:hover{color:inherit}.trix-content .attachment__caption{text-align:center}.trix-content .attachment__caption .attachment__name+.attachment__size:before{content:" \2022 "}.trix-content .attachment--preview{text-align:center;width:100%}.trix-content .attachment--preview .attachment__caption{color:#666;font-size:.9em;line-height:1.2}.trix-content .attachment--file{border:1px solid #bbb;border-radius:5px;color:#333;line-height:1;margin:0 2px 2px;padding:.4em 1em}.trix-content .attachment-gallery{display:flex;flex-wrap:wrap;position:relative}.trix-content .attachment-gallery .attachment{flex:1 0 33%;max-width:33%;padding:0 .5em}.trix-content .attachment-gallery.attachment-gallery--2 .attachment,.trix-content .attachment-gallery.attachment-gallery--4 .attachment{flex-basis:50%;max-width:50%} -input{width:100%}input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}input[type=number]{-moz-appearance:textfield;-webkit-appearance:textfield;appearance:textfield;margin:0}.hide-scroll::-webkit-scrollbar{display:none}[x-cloak]{display:none!important}.primary-menu .active,.primary-menu .active:focus,.primary-menu .active:hover{background-color:#1e3a8a}.iti{display:block}.iti__selected-flag{padding:0 10px}.scrolling::-webkit-scrollbar{height:.5em;width:.5em}.dark .scrolling::-webkit-scrollbar-track{background:#1e293b}.scrolling::-webkit-scrollbar-thumb{background-color:#e2e8f0;border-radius:2px}.scrolling::-webkit-scrollbar-thumb:hover{background-color:#cbd5e1}.dark .scrolling::-webkit-scrollbar-thumb{background-color:#334155}.dark .scrolling::-webkit-scrollbar-thumb:hover{background-color:#0f172a}#ui-modal>div>div.fixed{--tw-backdrop-blur:blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);z-index:40} -.filepond--root{margin-bottom:0;overflow:hidden}.filepond--panel-root{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);background-color:rgb(255 255 255/var(--tw-bg-opacity));border-color:rgb(203 213 225/var(--tw-border-opacity));border-radius:.5rem;border-style:dashed;border-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.filepond--drip-blob{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.dark .filepond--drop-label{--tw-text-opacity:1;color:rgb(226 232 240/var(--tw-text-opacity))}.dark .filepond--panel-root{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));border-color:rgb(71 85 105/var(--tw-border-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.dark .filepond--drip-blob{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.filepond--root[data-style-panel-layout=compact] .filepond--item{margin-bottom:.125rem}.filepond--root[data-style-panel-layout=compact] .filepond--drop-label label{font-size:.875rem;line-height:1.25rem}.filepond--root[data-style-panel-layout=compact] .filepond--drop-label{min-height:2.625em}.filepond--root[data-style-panel-layout=compact] .filepond--file{padding-bottom:.5em;padding-top:.5em}.filepond--root[data-style-panel-layout=grid] .filepond--item{display:inline;width:calc(50% - .5em)}@media (min-width:1024px){.filepond--root[data-style-panel-layout=grid] .filepond--item{width:calc(33.33% - .5em)}}.filepond--download-icon{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));display:inline-block;height:1rem;margin-right:.25rem;pointer-events:auto;vertical-align:bottom;width:1rem}.filepond--download-icon:hover{background-color:hsla(0,0%,100%,.7)}.filepond--download-icon{-webkit-mask-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWRvd25sb2FkIj48cGF0aCBkPSJNMjEgMTV2NGEyIDIgMCAwIDEtMiAySDVhMiAyIDAgMCAxLTItMnYtNE03IDEwbDUgNSA1LTVNMTIgMTVWMyIvPjwvc3ZnPg==");mask-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWRvd25sb2FkIj48cGF0aCBkPSJNMjEgMTV2NGEyIDIgMCAwIDEtMiAySDVhMiAyIDAgMCAxLTItMnYtNE03IDEwbDUgNSA1LTVNMTIgMTVWMyIvPjwvc3ZnPg==");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:100%;mask-size:100%}.filepond--open-icon{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));display:inline-block;height:1rem;margin-right:.25rem;pointer-events:auto;vertical-align:bottom;width:1rem}.filepond--open-icon:hover{background-color:hsla(0,0%,100%,.7)}.filepond--open-icon{-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJoLTYgdy02IiBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2Utd2lkdGg9IjIiPjxwYXRoIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZD0iTTEwIDZINmEyIDIgMCAwIDAtMiAydjEwYTIgMiAwIDAgMCAyIDJoMTBhMiAyIDAgMCAwIDItMnYtNE0xNCA0aDZtMCAwdjZtMC02TDEwIDE0Ii8+PC9zdmc+);mask-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJoLTYgdy02IiBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2Utd2lkdGg9IjIiPjxwYXRoIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZD0iTTEwIDZINmEyIDIgMCAwIDAtMiAydjEwYTIgMiAwIDAgMCAyIDJoMTBhMiAyIDAgMCAwIDItMnYtNE0xNCA0aDZtMCAwdjZtMC02TDEwIDE0Ii8+PC9zdmc+);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:100%;mask-size:100%} -.choices{outline:2px solid transparent;outline-offset:2px;position:relative}.choices__input.choices__input--cloned{display:none}.choices__inner{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)!important;align-items:center!important;background-color:rgb(255 255 255/var(--tw-bg-opacity))!important;border-color:rgb(203 213 225/var(--tw-border-opacity))!important;border-radius:.375rem!important;border-width:1px!important;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important;display:flex!important;height:38px!important;padding:.5rem!important;width:100%!important}:is(.dark .choices__inner){--tw-border-opacity:1!important;--tw-bg-opacity:1!important;background-color:rgb(51 65 85/var(--tw-bg-opacity))!important;border-color:rgb(51 65 85/var(--tw-border-opacity))!important}.choices__list--dropdown{--tw-border-opacity:1!important;border-color:rgb(203 213 225/var(--tw-border-opacity))!important;border-width:1px!important}:is(.dark .choices__list--dropdown){--tw-border-opacity:1!important;border-color:rgb(51 65 85/var(--tw-border-opacity))!important}.choices__list--single{padding:0!important}.choices__item{--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(226 232 240/var(--tw-bg-opacity))!important;border-radius:.25rem!important;border-width:0!important;color:rgb(51 65 85/var(--tw-text-opacity))!important;cursor:pointer!important;font-size:.875rem!important;line-height:1.25rem!important;margin-bottom:0!important;margin-top:0!important;padding:.25rem .5rem!important}:is(.dark .choices__item){--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(51 65 85/var(--tw-bg-opacity))!important;color:rgb(203 213 225/var(--tw-text-opacity))!important}.choices__item.choices__item--choice{border-radius:.375rem!important;padding-bottom:.5rem!important;padding-top:.5rem!important}.choices__item.choices__item--choice.choices__item--selectable{--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(255 255 255/var(--tw-bg-opacity))!important;border-radius:0!important;color:rgb(51 65 85/var(--tw-text-opacity))!important;margin-bottom:0!important;padding:.5rem!important}:is(.dark .choices__item.choices__item--choice.choices__item--selectable){--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(51 65 85/var(--tw-bg-opacity))!important;color:rgb(203 213 225/var(--tw-text-opacity))!important}.choices__item.choices__item--choice.choices__item--selectable:hover{--tw-bg-opacity:1!important;background-color:rgb(226 232 240/var(--tw-bg-opacity))!important}:is(.dark .choices__item.choices__item--choice.choices__item--selectable:hover){--tw-bg-opacity:1!important;background-color:rgb(71 85 105/var(--tw-bg-opacity))!important}.choices__item.choices__item--selectable{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(59 130 246/var(--tw-bg-opacity))!important;border-color:rgb(59 130 246/var(--tw-border-opacity))!important;color:rgb(255 255 255/var(--tw-text-opacity))!important;margin-bottom:.25rem!important}.choices__list--single>.choices__item.choices__item--selectable{--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(255 255 255/var(--tw-bg-opacity))!important;color:rgb(51 65 85/var(--tw-text-opacity))!important;margin-bottom:0!important}:is(.dark .choices__list--single>.choices__item.choices__item--selectable){--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(51 65 85/var(--tw-bg-opacity))!important;color:rgb(203 213 225/var(--tw-text-opacity))!important}.choices__item.is-highlighted{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(37 99 235/var(--tw-bg-opacity))!important;border-color:rgb(37 99 235/var(--tw-border-opacity))!important;color:rgb(255 255 255/var(--tw-text-opacity))!important}.choices[data-type*=select-one]:after{border-color:#64748b transparent transparent!important}.choices[data-type*=select-one] .choices__input{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;background-color:rgb(255 255 255/var(--tw-bg-opacity))!important;border-bottom-width:2px!important;border-color:rgb(203 213 225/var(--tw-border-opacity))!important;border-radius:0!important}:is(.dark .choices[data-type*=select-one] .choices__input){--tw-border-opacity:1!important;--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(71 85 105/var(--tw-bg-opacity))!important;border-color:rgb(51 65 85/var(--tw-border-opacity))!important;color:rgb(148 163 184/var(--tw-text-opacity))!important}.choices__item.choices__item--choice.is-selected.choices__item--selectable,.choices__item.choices__item--choice.is-selected.choices__item--selectable.is-highlighted{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(37 99 235/var(--tw-bg-opacity))!important;border-color:rgb(37 99 235/var(--tw-border-opacity))!important;color:rgb(255 255 255/var(--tw-text-opacity))!important}.ts-control{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);background-color:rgb(255 255 255/var(--tw-bg-opacity));border-color:rgb(203 213 225/var(--tw-border-opacity));border-radius:.375rem;border-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:flex}:is(.dark .ts-control){--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));border-color:rgb(51 65 85/var(--tw-border-opacity));color:rgb(203 213 225/var(--tw-text-opacity))}.ts-control{padding:9px 12px!important;z-index:0}.ts-control>input{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity));font-size:.875rem;line-height:1rem}:is(.dark .ts-control>input){--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity))}.ts-dropdown{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);background-color:rgb(255 255 255/var(--tw-bg-opacity));border-color:rgb(203 213 225/var(--tw-border-opacity));border-radius:.375rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(100 116 139/var(--tw-text-opacity));font-size:.875rem;line-height:1.25rem;margin-bottom:.25rem;margin-top:.25rem}:is(.dark .ts-dropdown){--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));border-color:rgb(51 65 85/var(--tw-border-opacity));color:rgb(148 163 184/var(--tw-text-opacity))}.ts-dropdown.single{--tw-border-opacity:1!important;border-color:rgb(203 213 225/var(--tw-border-opacity))!important}:is(.dark .ts-dropdown.single){--tw-border-opacity:1!important;border-color:rgb(51 65 85/var(--tw-border-opacity))!important}.ts-dropdown .active{--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(255 255 255/var(--tw-bg-opacity))!important;border-radius:0!important;color:rgb(51 65 85/var(--tw-text-opacity))!important;font-size:.875rem!important;line-height:1.25rem!important;margin-bottom:0!important;padding:.5rem!important}:is(.dark .ts-dropdown .active){--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(51 65 85/var(--tw-bg-opacity))!important;color:rgb(203 213 225/var(--tw-text-opacity))!important}.ts-dropdown .option:hover{--tw-bg-opacity:1;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ts-dropdown .option:hover,.ts-wrapper.multi .ts-control [data-value]{background-color:rgb(37 99 235/var(--tw-bg-opacity))}.ts-wrapper.multi .ts-control [data-value]{--tw-bg-opacity:1;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;border-radius:.375rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:none;font-size:.875rem;line-height:1.25rem}.ts-wrapper.multi .ts-control [data-value].active{background-color:#2563eb;background-repeat:repeat-x}.ts-wrapper.single .ts-control{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;background-color:rgb(255 255 255/var(--tw-bg-opacity));border-color:rgb(203 213 225/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(.dark .ts-wrapper.single .ts-control){--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(71 85 105/var(--tw-bg-opacity));border-color:rgb(51 65 85/var(--tw-border-opacity))}.ts-wrapper.single .ts-control{background-image:none}.dropdown-active .ts-control{border-radius:.375rem} -.sidebar>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.25rem*var(--tw-space-y-reverse));margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)))}.item-name{flex:1 1 0%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submenu{display:none;margin-bottom:.75rem;margin-left:1.25rem;margin-top:.75rem}.submenu>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.submenu{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-left-width:1px;padding-bottom:.625rem;padding-top:.625rem}:is(.dark .submenu){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}@media (min-width:1024px){.submenu>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}}.current-group .submenu{display:block} -.dark .trix-button{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));border-color:rgb(71 85 105/var(--tw-border-opacity));color:rgb(226 232 240/var(--tw-text-opacity))}.dark .trix-button-group{--tw-border-opacity:1;border-color:rgb(71 85 105/var(--tw-border-opacity))}.dark trix-toolbar .trix-dialog{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity));border-color:rgb(15 23 42/var(--tw-border-opacity));border-top-width:2px;box-shadow:0 .3em 1em #0f172a}.dark trix-toolbar .trix-input{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));border-color:rgb(71 85 105/var(--tw-border-opacity))}.dark trix-toolbar .trix-button:not(:first-child){--tw-border-opacity:1;border-color:rgb(71 85 105/var(--tw-border-opacity));border-left-width:1px}trix-toolbar .trix-active{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(37 99 235/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}[dir=rtl] trix-editor.prose :where(ol):not(:where([class~=not-prose] *)),[dir=rtl] trix-editor.prose :where(ul):not(:where([class~=not-prose] *)){padding-left:0!important;padding-right:1.625em!important}[dir=rtl] trix-editor.prose :where(ol>li):not(:where([class~=not-prose] *)),[dir=rtl] trix-editor.prose :where(ul>li):not(:where([class~=not-prose] *)){padding-left:0!important;padding-right:.375em!important}trix-editor::-webkit-scrollbar{height:.5em;width:.5em}trix-editor::-webkit-scrollbar-thumb{background-color:#e2e8f0;border-radius:4px}.dark trix-editor::-webkit-scrollbar-thumb{background-color:#1e293b} -/*! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}:host,html{-webkit-text-size-adjust:100%;font-feature-settings:normal;-webkit-tap-highlight-color:transparent;font-family:Inter var,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-feature-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],input:where(:not([type])),select,textarea{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,input:where(:not([type])):focus,select:focus,textarea:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid transparent;outline-offset:2px}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple],[size]:where(select:not([size="1"])){background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#6b7280;border-width:1px;color:#2563eb;display:inline-block;flex-shrink:0;height:1rem;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:1rem}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid transparent;outline-offset:2px}[type=checkbox]:checked,[type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}@media (forced-colors:active) {[type=checkbox]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}@media (forced-colors:active) {[type=radio]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=radio]:checked:focus,[type=radio]:checked:hover{background-color:currentColor;border-color:transparent}[type=checkbox]:indeterminate{background-color:currentColor;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}@media (forced-colors:active) {[type=checkbox]:indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:transparent}[type=file]{background:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}html{-webkit-tap-highlight-color:transparent}:root.dark{color-scheme:dark}[dir=rtl] select{background-position:left .5rem center!important;padding-left:2.5rem;padding-right:.75rem}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.form-input,.form-multiselect,.form-select,.form-textarea{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem}.form-input:focus,.form-multiselect:focus,.form-select:focus,.form-textarea:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid transparent;outline-offset:2px}.form-input::-moz-placeholder,.form-textarea::-moz-placeholder{color:#6b7280;opacity:1}.form-input::placeholder,.form-textarea::placeholder{color:#6b7280;opacity:1}.form-input::-webkit-datetime-edit-fields-wrapper{padding:0}.form-input::-webkit-date-and-time-value{min-height:1.5em;text-align:inherit}.form-input::-webkit-datetime-edit{display:inline-flex}.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-meridiem-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}.form-select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}.form-select:where([size]:not([size="1"])){background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.visible{visibility:visible}.invisible{visibility:hidden}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{inset:0}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.-bottom-1{bottom:-.25rem}.-top-3{top:-.75rem}.-top-3\.5{top:-.875rem}.-top-6{top:-1.5rem}.bottom-0{bottom:0}.bottom-18{bottom:4.5rem}.bottom-2{bottom:.5rem}.left-0{left:0}.right-0{right:0}.right-12{right:3rem}.right-6{right:1.5rem}.top-0{top:0}.top-10{top:2.5rem}.top-14{top:3.5rem}.top-16{top:4rem}.top-36{top:9rem}.top-6{top:1.5rem}.top-7{top:1.75rem}.isolate{isolation:isolate}.-z-10{z-index:-10}.z-0{z-index:0}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-40{z-index:40}.z-50{z-index:50}.col-span-1{grid-column:span 1/span 1}.col-span-2{grid-column:span 2/span 2}.col-span-3{grid-column:span 3/span 3}.col-span-6{grid-column:span 6/span 6}.row-span-2{grid-row:span 2/span 2}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.-mx-1\.5{margin-left:-.375rem;margin-right:-.375rem}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.-my-1{margin-bottom:-.25rem;margin-top:-.25rem}.-my-1\.5{margin-bottom:-.375rem;margin-top:-.375rem}.-my-2{margin-bottom:-.5rem;margin-top:-.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-10{margin-bottom:2.5rem;margin-top:2.5rem}.my-2{margin-bottom:.5rem;margin-top:.5rem}.my-6{margin-bottom:1.5rem;margin-top:1.5rem}.my-8{margin-bottom:2rem;margin-top:2rem}.-mb-px{margin-bottom:-1px}.-ml-0{margin-left:0}.-ml-0\.5{margin-left:-.125rem}.-ml-1{margin-left:-.25rem}.-ml-px{margin-left:-1px}.-mr-1{margin-right:-.25rem}.-mr-14{margin-right:-3.5rem}.-mr-2{margin-right:-.5rem}.-mt-px{margin-top:-1px}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.ml-1{margin-left:.25rem}.ml-1\.5{margin-left:.375rem}.ml-2{margin-left:.5rem}.ml-2\.5{margin-left:.625rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.ml-5{margin-left:1.25rem}.ml-6{margin-left:1.5rem}.ml-8{margin-left:2rem}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-1\.5{margin-right:.375rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-4{margin-right:1rem}.mr-5{margin-right:1.25rem}.mr-6{margin-right:1.5rem}.mt-0{margin-top:0}.mt-0\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-1\.5{margin-top:.375rem}.mt-10{margin-top:2.5rem}.mt-2{margin-top:.5rem}.mt-2\.5{margin-top:.625rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.table-cell{display:table-cell}.grid{display:grid}.hidden{display:none}.aspect-\[1108\/632\]{aspect-ratio:1108/632}.h-0{height:0}.h-0\.5{height:.125rem}.h-1{height:.25rem}.h-1\.5{height:.375rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-16{height:4rem}.h-2{height:.5rem}.h-2\.5{height:.625rem}.h-20{height:5rem}.h-24{height:6rem}.h-3{height:.75rem}.h-32{height:8rem}.h-4{height:1rem}.h-40{height:10rem}.h-44{height:11rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-64{height:16rem}.h-8{height:2rem}.h-80{height:20rem}.h-9{height:2.25rem}.h-95{height:23.75rem}.h-96{height:24rem}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.max-h-64{max-height:16rem}.max-h-96{max-height:24rem}.min-h-\(screen-content\){min-height:calc(100vh - 9.625rem)}.min-h-screen{min-height:100vh}.\!w-20{width:5rem!important}.w-0{width:0}.w-1{width:.25rem}.w-1\.5{width:.375rem}.w-1\/3{width:33.333333%}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-12{width:3rem}.w-14{width:3.5rem}.w-2{width:.5rem}.w-2\.5{width:.625rem}.w-20{width:5rem}.w-24{width:6rem}.w-3{width:.75rem}.w-32{width:8rem}.w-4{width:1rem}.w-48{width:12rem}.w-5{width:1.25rem}.w-56{width:14rem}.w-6{width:1.5rem}.w-70{width:17.5rem}.w-8{width:2rem}.w-80{width:20rem}.w-9{width:2.25rem}.w-\[69\.25rem\]{width:69.25rem}.w-auto{width:auto}.w-full{width:100%}.min-w-0{min-width:0}.min-w-full{min-width:100%}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-7xl{max-width:80rem}.max-w-lg{max-width:32rem}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.max-w-xl{max-width:36rem}.max-w-xs{max-width:20rem}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-none{flex:none}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.origin-bottom-left{transform-origin:bottom left}.origin-top{transform-origin:top}.origin-top-left{transform-origin:top left}.origin-top-right{transform-origin:top right}.-translate-x-2{--tw-translate-x:-0.5rem}.-translate-x-2,.-translate-x-full{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-x-full{--tw-translate-x:-100%}.-translate-y-2{--tw-translate-y:-0.5rem}.-translate-y-2,.translate-x-0{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-0{--tw-translate-x:0px}.translate-x-2{--tw-translate-x:0.5rem}.translate-x-2,.translate-x-5{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-5{--tw-translate-x:1.25rem}.translate-y-0{--tw-translate-y:0px}.translate-y-0,.translate-y-2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-2{--tw-translate-y:0.5rem}.scale-100{--tw-scale-x:1;--tw-scale-y:1}.scale-100,.scale-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-90{--tw-scale-x:.9;--tw-scale-y:.9}.scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.scale-95,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform-gpu{transform:translate3d(var(--tw-translate-x),var(--tw-translate-y),0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes progress{0%{background-position:-150% 0,-150% 0}66%{background-position:250% 0,-150% 0}to{background-position:250% 0,250% 0}}.animate-progress{animation:progress 2s ease-in-out infinite}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-move{cursor:move}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.list-inside{list-style-position:inside}.list-disc{list-style-type:disc}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.items-stretch{align-items:stretch}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-x-0{-moz-column-gap:0;column-gap:0}.gap-x-0\.5{-moz-column-gap:.125rem;column-gap:.125rem}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-y-2{row-gap:.5rem}.gap-y-4{row-gap:1rem}.gap-y-5{row-gap:1.25rem}.gap-y-6{row-gap:1.5rem}.-space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(-.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(-.25rem*var(--tw-space-x-reverse))}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.75rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2rem*var(--tw-space-x-reverse))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.space-y-10>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2.5rem*var(--tw-space-y-reverse));margin-top:calc(2.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-12>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(3rem*var(--tw-space-y-reverse));margin-top:calc(3rem*(1 - var(--tw-space-y-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.25rem*var(--tw-space-y-reverse));margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-7>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.75rem*var(--tw-space-y-reverse));margin-top:calc(1.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-8>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2rem*var(--tw-space-y-reverse));margin-top:calc(2rem*(1 - var(--tw-space-y-reverse)))}.divide-x>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-left-width:calc(1px*(1 - var(--tw-divide-x-reverse)));border-right-width:calc(1px*var(--tw-divide-x-reverse))}.divide-x-2>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-left-width:calc(2px*(1 - var(--tw-divide-x-reverse)));border-right-width:calc(2px*var(--tw-divide-x-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-primary-500>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(59 130 246/var(--tw-divide-opacity))}.divide-secondary-100>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(241 245 249/var(--tw-divide-opacity))}.divide-secondary-200>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(226 232 240/var(--tw-divide-opacity))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-y-scroll{overflow-y:scroll}.scroll-smooth{scroll-behavior:smooth}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-none{border-radius:0}.rounded-sm{border-radius:.125rem}.rounded-xl{border-radius:.75rem}.rounded-b-md{border-bottom-left-radius:.375rem;border-bottom-right-radius:.375rem}.rounded-l-lg{border-bottom-left-radius:.5rem;border-top-left-radius:.5rem}.rounded-l-md{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.rounded-l-none{border-bottom-left-radius:0;border-top-left-radius:0}.rounded-r-lg{border-bottom-right-radius:.5rem;border-top-right-radius:.5rem}.rounded-r-md{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.rounded-r-none{border-bottom-right-radius:0;border-top-right-radius:0}.rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.rounded-bl{border-bottom-left-radius:.25rem}.border{border-width:1px}.border-2{border-width:2px}.border-4{border-width:4px}.border-b{border-bottom-width:1px}.border-b-0{border-bottom-width:0}.border-b-2{border-bottom-width:2px}.border-l{border-left-width:1px}.border-l-0{border-left-width:0}.border-l-2{border-left-width:2px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-r-0{border-right-width:0}.border-t{border-top-width:1px}.border-t-0{border-top-width:0}.border-dashed{border-style:dashed}.border-green-400{--tw-border-opacity:1;border-color:rgb(74 222 128/var(--tw-border-opacity))}.border-primary-200{--tw-border-opacity:1;border-color:rgb(191 219 254/var(--tw-border-opacity))}.border-primary-300{--tw-border-opacity:1;border-color:rgb(147 197 253/var(--tw-border-opacity))}.border-primary-400{--tw-border-opacity:1;border-color:rgb(96 165 250/var(--tw-border-opacity))}.border-primary-500{--tw-border-opacity:1;border-color:rgb(59 130 246/var(--tw-border-opacity))}.border-primary-600{--tw-border-opacity:1;border-color:rgb(37 99 235/var(--tw-border-opacity))}.border-red-200{--tw-border-opacity:1;border-color:rgb(254 202 202/var(--tw-border-opacity))}.border-red-400{--tw-border-opacity:1;border-color:rgb(248 113 113/var(--tw-border-opacity))}.border-secondary-100{--tw-border-opacity:1;border-color:rgb(241 245 249/var(--tw-border-opacity))}.border-secondary-200{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.border-secondary-300{--tw-border-opacity:1;border-color:rgb(203 213 225/var(--tw-border-opacity))}.border-secondary-700{--tw-border-opacity:1;border-color:rgb(51 65 85/var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-white{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.border-yellow-400{--tw-border-opacity:1;border-color:rgb(250 204 21/var(--tw-border-opacity))}.border-y-secondary-300{--tw-border-opacity:1;border-bottom-color:rgb(203 213 225/var(--tw-border-opacity));border-top-color:rgb(203 213 225/var(--tw-border-opacity))}.border-opacity-75{--tw-border-opacity:0.75}.bg-danger-100{--tw-bg-opacity:1;background-color:rgb(254 226 226/var(--tw-bg-opacity))}.bg-danger-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.bg-danger-500{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity:1;background-color:rgb(220 252 231/var(--tw-bg-opacity))}.bg-green-300{--tw-bg-opacity:1;background-color:rgb(134 239 172/var(--tw-bg-opacity))}.bg-green-400{--tw-bg-opacity:1;background-color:rgb(74 222 128/var(--tw-bg-opacity))}.bg-green-50{--tw-bg-opacity:1;background-color:rgb(240 253 244/var(--tw-bg-opacity))}.bg-green-600{--tw-bg-opacity:1;background-color:rgb(22 163 74/var(--tw-bg-opacity))}.bg-info-500{--tw-bg-opacity:1;background-color:rgb(14 165 233/var(--tw-bg-opacity))}.bg-orange-100{--tw-bg-opacity:1;background-color:rgb(255 237 213/var(--tw-bg-opacity))}.bg-primary-100{--tw-bg-opacity:1;background-color:rgb(219 234 254/var(--tw-bg-opacity))}.bg-primary-50{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity))}.bg-primary-500{--tw-bg-opacity:1;background-color:rgb(59 130 246/var(--tw-bg-opacity))}.bg-primary-600{--tw-bg-opacity:1;background-color:rgb(37 99 235/var(--tw-bg-opacity))}.bg-primary-900{--tw-bg-opacity:1;background-color:rgb(30 58 138/var(--tw-bg-opacity))}.bg-purple-100{--tw-bg-opacity:1;background-color:rgb(243 232 255/var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity:1;background-color:rgb(254 226 226/var(--tw-bg-opacity))}.bg-red-300{--tw-bg-opacity:1;background-color:rgb(252 165 165/var(--tw-bg-opacity))}.bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.bg-secondary-100{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.bg-secondary-100\/50{background-color:rgba(241,245,249,.5)}.bg-secondary-200{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.bg-secondary-400{--tw-bg-opacity:1;background-color:rgb(148 163 184/var(--tw-bg-opacity))}.bg-secondary-50{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.bg-secondary-50\/50{background-color:rgba(248,250,252,.5)}.bg-secondary-50\/70{background-color:rgba(248,250,252,.7)}.bg-secondary-600{--tw-bg-opacity:1;background-color:rgb(71 85 105/var(--tw-bg-opacity))}.bg-secondary-700{--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}.bg-secondary-800{--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.bg-secondary-900{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-white\/60{background-color:hsla(0,0%,100%,.6)}.bg-white\/75{background-color:hsla(0,0%,100%,.75)}.bg-white\/80{background-color:hsla(0,0%,100%,.8)}.bg-white\/90{background-color:hsla(0,0%,100%,.9)}.bg-yellow-100{--tw-bg-opacity:1;background-color:rgb(254 249 195/var(--tw-bg-opacity))}.bg-yellow-300{--tw-bg-opacity:1;background-color:rgb(253 224 71/var(--tw-bg-opacity))}.bg-yellow-50{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity))}.bg-opacity-10{--tw-bg-opacity:0.1}.bg-opacity-50{--tw-bg-opacity:0.5}.bg-opacity-75{--tw-bg-opacity:0.75}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}.bg-gradient-to-l{background-image:linear-gradient(to left,var(--tw-gradient-stops))}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.from-primary-400{--tw-gradient-from:#60a5fa var(--tw-gradient-from-position);--tw-gradient-to:rgba(96,165,250,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-500{--tw-gradient-from:#3b82f6 var(--tw-gradient-from-position);--tw-gradient-to:rgba(59,130,246,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-600{--tw-gradient-from:#2563eb var(--tw-gradient-from-position);--tw-gradient-to:rgba(37,99,235,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-50{--tw-gradient-from:#f8fafc var(--tw-gradient-from-position);--tw-gradient-to:rgba(248,250,252,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-50\/70{--tw-gradient-from:rgba(248,250,252,.7) var(--tw-gradient-from-position);--tw-gradient-to:rgba(248,250,252,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white{--tw-gradient-from:#fff var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.to-primary-100{--tw-gradient-to:#dbeafe var(--tw-gradient-to-position)}.to-primary-600{--tw-gradient-to:#2563eb var(--tw-gradient-to-position)}.to-secondary-100{--tw-gradient-to:#f1f5f9 var(--tw-gradient-to-position)}.bg-cover{background-size:cover}.bg-center{background-position:50%}.bg-no-repeat{background-repeat:no-repeat}.fill-danger-400{fill:#f87171}.fill-secondary-50{fill:#f8fafc}.stroke-secondary-200{stroke:#e2e8f0}.object-cover{-o-object-fit:cover;object-fit:cover}.object-center{-o-object-position:center;object-position:center}.p-1{padding:.25rem}.p-1\.5{padding:.375rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-0{padding-bottom:0;padding-top:0}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-12{padding-bottom:3rem;padding-top:3rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-2\.5{padding-bottom:.625rem;padding-top:.625rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.py-8{padding-bottom:2rem;padding-top:2rem}.pb-0{padding-bottom:0}.pb-10{padding-bottom:2.5rem}.pb-2{padding-bottom:.5rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pb-5{padding-bottom:1.25rem}.pb-6{padding-bottom:1.5rem}.pl-10{padding-left:2.5rem}.pl-16{padding-left:4rem}.pl-18{padding-left:4.5rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pl-5{padding-left:1.25rem}.pl-6{padding-left:1.5rem}.pl-9{padding-left:2.25rem}.pr-10{padding-right:2.5rem}.pr-12{padding-right:3rem}.pr-2{padding-right:.5rem}.pr-3{padding-right:.75rem}.pr-4{padding-right:1rem}.pr-6{padding-right:1.5rem}.pr-7{padding-right:1.75rem}.pr-9{padding-right:2.25rem}.pt-1{padding-top:.25rem}.pt-3{padding-top:.75rem}.pt-4{padding-top:1rem}.pt-5{padding-top:1.25rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.font-display{font-family:Inter,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:Inter var,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.text-xxs{font-size:.625rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-8{line-height:2rem}.leading-9{line-height:2.25rem}.leading-normal{line-height:1.5}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.text-danger-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.text-danger-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.text-danger-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.text-danger-700{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.text-danger-800{--tw-text-opacity:1;color:rgb(153 27 27/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-green-400{--tw-text-opacity:1;color:rgb(74 222 128/var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgb(22 163 74/var(--tw-text-opacity))}.text-green-700{--tw-text-opacity:1;color:rgb(21 128 61/var(--tw-text-opacity))}.text-green-800{--tw-text-opacity:1;color:rgb(22 101 52/var(--tw-text-opacity))}.text-info-400{--tw-text-opacity:1;color:rgb(56 189 248/var(--tw-text-opacity))}.text-info-700{--tw-text-opacity:1;color:rgb(3 105 161/var(--tw-text-opacity))}.text-orange-800{--tw-text-opacity:1;color:rgb(154 52 18/var(--tw-text-opacity))}.text-primary-400{--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity))}.text-primary-500{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.text-primary-600{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.text-primary-700{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.text-primary-800{--tw-text-opacity:1;color:rgb(30 64 175/var(--tw-text-opacity))}.text-primary-900{--tw-text-opacity:1;color:rgb(30 58 138/var(--tw-text-opacity))}.text-purple-400{--tw-text-opacity:1;color:rgb(192 132 252/var(--tw-text-opacity))}.text-purple-800{--tw-text-opacity:1;color:rgb(107 33 168/var(--tw-text-opacity))}.text-red-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.text-red-700{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.text-red-800{--tw-text-opacity:1;color:rgb(153 27 27/var(--tw-text-opacity))}.text-secondary-300{--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity))}.text-secondary-400{--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity))}.text-secondary-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.text-secondary-600{--tw-text-opacity:1;color:rgb(71 85 105/var(--tw-text-opacity))}.text-secondary-700{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.text-secondary-800{--tw-text-opacity:1;color:rgb(30 41 59/var(--tw-text-opacity))}.text-secondary-900{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-yellow-300{--tw-text-opacity:1;color:rgb(253 224 71/var(--tw-text-opacity))}.text-yellow-400{--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity))}.text-yellow-700{--tw-text-opacity:1;color:rgb(161 98 7/var(--tw-text-opacity))}.text-yellow-800{--tw-text-opacity:1;color:rgb(133 77 14/var(--tw-text-opacity))}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.placeholder-secondary-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(100 116 139/var(--tw-placeholder-opacity))}.placeholder-secondary-500::placeholder{--tw-placeholder-opacity:1;color:rgb(100 116 139/var(--tw-placeholder-opacity))}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-20{opacity:.2}.opacity-25{opacity:.25}.opacity-50{opacity:.5}.opacity-75{opacity:.75}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-md,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.outline-none{outline:2px solid transparent;outline-offset:2px}.ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-0,.ring-1{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-2{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-2,.ring-4{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-4{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-inset{--tw-ring-inset:inset}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgb(0 0 0/var(--tw-ring-opacity))}.ring-danger-500\/10{--tw-ring-color:rgba(239,68,68,.1)}.ring-green-600\/20{--tw-ring-color:rgba(22,163,74,.2)}.ring-primary-500{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity))}.ring-secondary-200{--tw-ring-opacity:1;--tw-ring-color:rgb(226 232 240/var(--tw-ring-opacity))}.ring-secondary-300{--tw-ring-opacity:1;--tw-ring-color:rgb(203 213 225/var(--tw-ring-opacity))}.ring-secondary-900\/10{--tw-ring-color:rgba(15,23,42,.1)}.ring-white{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.ring-yellow-600\/20{--tw-ring-color:rgba(202,138,4,.2)}.ring-opacity-5{--tw-ring-opacity:0.05}.blur-3xl{--tw-blur:blur(64px)}.blur-3xl,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-md{--tw-backdrop-blur:blur(12px)}.backdrop-blur-md,.backdrop-blur-sm{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px)}.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-100{transition-duration:.1s}.duration-150{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-75{transition-duration:75ms}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-linear{transition-timing-function:linear}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.\[mask-image\:radial-gradient\(64rem_64rem_at_top\2c white\2c transparent\)\]{-webkit-mask-image:radial-gradient(64rem 64rem at top,#fff,transparent);mask-image:radial-gradient(64rem 64rem at top,#fff,transparent)}.focus-within\:z-10:focus-within{z-index:10}.focus-within\:opacity-100:focus-within{opacity:1}.hover\:border-primary-200:hover{--tw-border-opacity:1;border-color:rgb(191 219 254/var(--tw-border-opacity))}.hover\:border-primary-300:hover{--tw-border-opacity:1;border-color:rgb(147 197 253/var(--tw-border-opacity))}.hover\:border-secondary-300:hover{--tw-border-opacity:1;border-color:rgb(203 213 225/var(--tw-border-opacity))}.hover\:bg-danger-100:hover{--tw-bg-opacity:1;background-color:rgb(254 226 226/var(--tw-bg-opacity))}.hover\:bg-danger-50:hover{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.hover\:bg-danger-600:hover{--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.hover\:bg-primary-50:hover{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity))}.hover\:bg-primary-700:hover{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity))}.hover\:bg-red-50:hover{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.hover\:bg-secondary-100:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.hover\:bg-secondary-100\/50:hover{background-color:rgba(241,245,249,.5)}.hover\:bg-secondary-50:hover{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.hover\:bg-white:hover{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.hover\:bg-white\/75:hover{background-color:hsla(0,0%,100%,.75)}.hover\:text-info-600:hover{--tw-text-opacity:1;color:rgb(2 132 199/var(--tw-text-opacity))}.hover\:text-primary-400:hover{--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity))}.hover\:text-primary-500:hover{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.hover\:text-primary-600:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.hover\:text-primary-700:hover{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.hover\:text-primary-800:hover{--tw-text-opacity:1;color:rgb(30 64 175/var(--tw-text-opacity))}.hover\:text-red-500:hover{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.hover\:text-red-700:hover{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.hover\:text-secondary-100:hover{--tw-text-opacity:1;color:rgb(241 245 249/var(--tw-text-opacity))}.hover\:text-secondary-400:hover{--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity))}.hover\:text-secondary-500:hover{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.hover\:text-secondary-600:hover{--tw-text-opacity:1;color:rgb(71 85 105/var(--tw-text-opacity))}.hover\:text-secondary-700:hover{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.hover\:text-secondary-800:hover{--tw-text-opacity:1;color:rgb(30 41 59/var(--tw-text-opacity))}.hover\:text-secondary-900:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.hover\:text-yellow-600:hover{--tw-text-opacity:1;color:rgb(202 138 4/var(--tw-text-opacity))}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}.hover\:shadow-sm:hover{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:z-10:focus{z-index:10}.focus\:border-danger-300:focus{--tw-border-opacity:1;border-color:rgb(252 165 165/var(--tw-border-opacity))}.focus\:border-danger-700:focus{--tw-border-opacity:1;border-color:rgb(185 28 28/var(--tw-border-opacity))}.focus\:border-primary-300:focus{--tw-border-opacity:1;border-color:rgb(147 197 253/var(--tw-border-opacity))}.focus\:border-primary-500:focus{--tw-border-opacity:1;border-color:rgb(59 130 246/var(--tw-border-opacity))}.focus\:border-red-300:focus{--tw-border-opacity:1;border-color:rgb(252 165 165/var(--tw-border-opacity))}.focus\:border-secondary-300:focus{--tw-border-opacity:1;border-color:rgb(203 213 225/var(--tw-border-opacity))}.focus\:bg-primary-900:focus{--tw-bg-opacity:1;background-color:rgb(30 58 138/var(--tw-bg-opacity))}.focus\:bg-secondary-100:focus{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.focus\:bg-secondary-50:focus{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.focus\:bg-secondary-500:focus{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.focus\:bg-secondary-600:focus{--tw-bg-opacity:1;background-color:rgb(71 85 105/var(--tw-bg-opacity))}.focus\:text-red-700:focus{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.focus\:text-secondary-100:focus{--tw-text-opacity:1;color:rgb(241 245 249/var(--tw-text-opacity))}.focus\:text-secondary-500:focus{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.focus\:text-secondary-600:focus{--tw-text-opacity:1;color:rgb(71 85 105/var(--tw-text-opacity))}.focus\:text-secondary-800:focus{--tw-text-opacity:1;color:rgb(30 41 59/var(--tw-text-opacity))}.focus\:text-secondary-900:focus{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.focus\:text-white:focus{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.focus\:underline:focus{text-decoration-line:underline}.focus\:shadow-none:focus{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-0:focus,.focus\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-0:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-1:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-primary-200:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(191 219 254/var(--tw-ring-opacity))}.focus\:ring-primary-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity))}.focus\:ring-primary-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(37 99 235/var(--tw-ring-opacity))}.focus\:ring-secondary-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(100 116 139/var(--tw-ring-opacity))}.focus\:ring-opacity-50:focus{--tw-ring-opacity:0.5}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus\:ring-offset-primary-50:focus{--tw-ring-offset-color:#eff6ff}.focus\:ring-offset-primary-800:focus{--tw-ring-offset-color:#1e40af}.active\:bg-danger-200:active{--tw-bg-opacity:1;background-color:rgb(254 202 202/var(--tw-bg-opacity))}.active\:bg-primary-200:active{--tw-bg-opacity:1;background-color:rgb(191 219 254/var(--tw-bg-opacity))}.active\:bg-red-200:active{--tw-bg-opacity:1;background-color:rgb(254 202 202/var(--tw-bg-opacity))}.active\:bg-secondary-100:active{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.active\:text-secondary-500:active{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.active\:text-secondary-700:active{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.disabled\:opacity-50:disabled{opacity:.5}.group:hover .group-hover\:translate-x-1{--tw-translate-x:0.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group:hover .group-hover\:bg-secondary-200{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.group:hover .group-hover\:text-primary-400{--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity))}.group:hover .group-hover\:text-primary-500{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.group:hover .group-hover\:text-secondary-400{--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity))}.group:hover .group-hover\:text-secondary-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.group:hover .group-hover\:text-secondary-700{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.group:focus .group-focus\:border-primary-300{--tw-border-opacity:1;border-color:rgb(147 197 253/var(--tw-border-opacity))}.group:focus .group-focus\:bg-secondary-200{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}:is(.dark .dark\:flex){display:flex}:is(.dark .dark\:hidden){display:none}:is(.dark .dark\:translate-x-5){--tw-translate-x:1.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}:is(.dark .dark\:divide-secondary-600)>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(71 85 105/var(--tw-divide-opacity))}:is(.dark .dark\:divide-secondary-700)>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(51 65 85/var(--tw-divide-opacity))}:is(.dark .dark\:border-gray-700){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}:is(.dark .dark\:border-gray-800){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}:is(.dark .dark\:border-secondary-600){--tw-border-opacity:1;border-color:rgb(71 85 105/var(--tw-border-opacity))}:is(.dark .dark\:border-secondary-700){--tw-border-opacity:1;border-color:rgb(51 65 85/var(--tw-border-opacity))}:is(.dark .dark\:border-secondary-700\/50){border-color:rgba(51,65,85,.5)}:is(.dark .dark\:border-secondary-800){--tw-border-opacity:1;border-color:rgb(30 41 59/var(--tw-border-opacity))}:is(.dark .dark\:border-transparent){border-color:transparent}:is(.dark .dark\:bg-danger-400\/10){background-color:hsla(0,91%,71%,.1)}:is(.dark .dark\:bg-danger-800\/20){background-color:rgba(153,27,27,.2)}:is(.dark .dark\:bg-gray-900\/80){background-color:rgba(17,24,39,.8)}:is(.dark .dark\:bg-gray-950){--tw-bg-opacity:1;background-color:rgb(3 7 18/var(--tw-bg-opacity))}:is(.dark .dark\:bg-green-500\/10){background-color:rgba(34,197,94,.1)}:is(.dark .dark\:bg-primary-600\/10){background-color:rgba(37,99,235,.1)}:is(.dark .dark\:bg-primary-800\/20){background-color:rgba(30,64,175,.2)}:is(.dark .dark\:bg-secondary-500){--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}:is(.dark .dark\:bg-secondary-600){--tw-bg-opacity:1;background-color:rgb(71 85 105/var(--tw-bg-opacity))}:is(.dark .dark\:bg-secondary-700){--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}:is(.dark .dark\:bg-secondary-700\/50){background-color:rgba(51,65,85,.5)}:is(.dark .dark\:bg-secondary-700\/70){background-color:rgba(51,65,85,.7)}:is(.dark .dark\:bg-secondary-800){--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}:is(.dark .dark\:bg-secondary-800\/80){background-color:rgba(30,41,59,.8)}:is(.dark .dark\:bg-secondary-800\/90){background-color:rgba(30,41,59,.9)}:is(.dark .dark\:bg-secondary-900){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}:is(.dark .dark\:bg-secondary-900\/50){background-color:rgba(15,23,42,.5)}:is(.dark .dark\:bg-opacity-70){--tw-bg-opacity:0.7}:is(.dark .dark\:from-primary-200){--tw-gradient-from:#bfdbfe var(--tw-gradient-from-position);--tw-gradient-to:rgba(191,219,254,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}:is(.dark .dark\:from-secondary-600){--tw-gradient-from:#475569 var(--tw-gradient-from-position);--tw-gradient-to:rgba(71,85,105,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}:is(.dark .dark\:from-secondary-800\/60){--tw-gradient-from:rgba(30,41,59,.6) var(--tw-gradient-from-position);--tw-gradient-to:rgba(30,41,59,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}:is(.dark .dark\:from-secondary-900){--tw-gradient-from:#0f172a var(--tw-gradient-from-position);--tw-gradient-to:rgba(15,23,42,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}:is(.dark .dark\:to-primary-500){--tw-gradient-to:#3b82f6 var(--tw-gradient-to-position)}:is(.dark .dark\:to-primary-600\/10){--tw-gradient-to:rgba(37,99,235,.1) var(--tw-gradient-to-position)}:is(.dark .dark\:to-secondary-700){--tw-gradient-to:#334155 var(--tw-gradient-to-position)}:is(.dark .dark\:fill-secondary-700){fill:#334155}:is(.dark .dark\:stroke-secondary-800){stroke:#1e293b}:is(.dark .dark\:text-danger-400){--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}:is(.dark .dark\:text-danger-500){--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}:is(.dark .dark\:text-green-400){--tw-text-opacity:1;color:rgb(74 222 128/var(--tw-text-opacity))}:is(.dark .dark\:text-green-500\/50){color:rgba(34,197,94,.5)}:is(.dark .dark\:text-primary-500){--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}:is(.dark .dark\:text-primary-500\/50){color:rgba(59,130,246,.5)}:is(.dark .dark\:text-red-400){--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}:is(.dark .dark\:text-red-500){--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}:is(.dark .dark\:text-secondary-200){--tw-text-opacity:1;color:rgb(226 232 240/var(--tw-text-opacity))}:is(.dark .dark\:text-secondary-300){--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity))}:is(.dark .dark\:text-secondary-400){--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity))}:is(.dark .dark\:text-secondary-500){--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}:is(.dark .dark\:text-secondary-600){--tw-text-opacity:1;color:rgb(71 85 105/var(--tw-text-opacity))}:is(.dark .dark\:text-secondary-700){--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}:is(.dark .dark\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .dark\:placeholder-secondary-400)::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(148 163 184/var(--tw-placeholder-opacity))}:is(.dark .dark\:placeholder-secondary-400)::placeholder{--tw-placeholder-opacity:1;color:rgb(148 163 184/var(--tw-placeholder-opacity))}:is(.dark .dark\:shadow-lg){--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(.dark .dark\:ring-black\/10){--tw-ring-color:rgba(0,0,0,.1)}:is(.dark .dark\:ring-gray-800){--tw-ring-opacity:1;--tw-ring-color:rgb(31 41 55/var(--tw-ring-opacity))}:is(.dark .dark\:ring-green-500\/20){--tw-ring-color:rgba(34,197,94,.2)}:is(.dark .dark\:ring-secondary-600){--tw-ring-opacity:1;--tw-ring-color:rgb(71 85 105/var(--tw-ring-opacity))}:is(.dark .dark\:ring-secondary-700){--tw-ring-opacity:1;--tw-ring-color:rgb(51 65 85/var(--tw-ring-opacity))}:is(.dark .dark\:ring-secondary-700\/50){--tw-ring-color:rgba(51,65,85,.5)}:is(.dark .dark\:ring-secondary-800){--tw-ring-opacity:1;--tw-ring-color:rgb(30 41 59/var(--tw-ring-opacity))}:is(.dark .dark\:ring-secondary-900){--tw-ring-opacity:1;--tw-ring-color:rgb(15 23 42/var(--tw-ring-opacity))}:is(.dark .dark\:hover\:border-gray-800:hover){--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}:is(.dark .dark\:hover\:border-secondary-400:hover){--tw-border-opacity:1;border-color:rgb(148 163 184/var(--tw-border-opacity))}:is(.dark .dark\:hover\:border-secondary-600:hover){--tw-border-opacity:1;border-color:rgb(71 85 105/var(--tw-border-opacity))}:is(.dark .dark\:hover\:border-secondary-700:hover){--tw-border-opacity:1;border-color:rgb(51 65 85/var(--tw-border-opacity))}:is(.dark .dark\:hover\:bg-danger-400\/20:hover){background-color:hsla(0,91%,71%,.2)}:is(.dark .dark\:hover\:bg-gray-800:hover){--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}:is(.dark .dark\:hover\:bg-gray-900:hover){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}:is(.dark .dark\:hover\:bg-secondary-600:hover){--tw-bg-opacity:1;background-color:rgb(71 85 105/var(--tw-bg-opacity))}:is(.dark .dark\:hover\:bg-secondary-700:hover){--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}:is(.dark .dark\:hover\:bg-secondary-700\/50:hover){background-color:rgba(51,65,85,.5)}:is(.dark .dark\:hover\:bg-secondary-800:hover){--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}:is(.dark .dark\:hover\:bg-secondary-800\/75:hover){background-color:rgba(30,41,59,.75)}:is(.dark .dark\:hover\:bg-secondary-900:hover){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}:is(.dark .dark\:hover\:text-primary-500:hover){--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-red-500:hover){--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-secondary-200:hover){--tw-text-opacity:1;color:rgb(226 232 240/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-secondary-300:hover){--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-secondary-400:hover){--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-secondary-500:hover){--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}:is(.dark .dark\:hover\:text-white:hover){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .dark\:focus\:border-primary-500:focus){--tw-border-opacity:1;border-color:rgb(59 130 246/var(--tw-border-opacity))}:is(.dark .dark\:focus\:border-secondary-700:focus){--tw-border-opacity:1;border-color:rgb(51 65 85/var(--tw-border-opacity))}:is(.dark .dark\:focus\:bg-secondary-700:focus){--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}:is(.dark .dark\:focus\:bg-secondary-800:focus){--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}:is(.dark .dark\:focus\:bg-secondary-900:focus){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}:is(.dark .dark\:focus\:text-secondary-500:focus){--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}:is(.dark .dark\:focus\:text-white:focus){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .dark\:focus\:ring-offset-secondary-800:focus){--tw-ring-offset-color:#1e293b}:is(.dark .dark\:focus\:ring-offset-secondary-900:focus){--tw-ring-offset-color:#0f172a}:is(.dark .group:hover .dark\:group-hover\:bg-secondary-700){--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}:is(.dark .group:hover .dark\:group-hover\:text-gray-400){--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}:is(.dark .group:hover .dark\:group-hover\:text-primary-500){--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}:is(.dark .group:hover .dark\:group-hover\:text-secondary-300){--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity))}:is(.dark .group:hover .dark\:group-hover\:text-secondary-400){--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity))}:is(.dark .group:focus .dark\:group-focus\:bg-secondary-700){--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}@media (min-width:640px){.sm\:col-span-1{grid-column:span 1/span 1}.sm\:col-span-2{grid-column:span 2/span 2}.sm\:col-span-3{grid-column:span 3/span 3}.sm\:col-span-4{grid-column:span 4/span 4}.sm\:col-span-6{grid-column:span 6/span 6}.sm\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:ml-3{margin-left:.75rem}.sm\:ml-4{margin-left:1rem}.sm\:ml-6{margin-left:1.5rem}.sm\:ml-auto{margin-left:auto}.sm\:mt-0{margin-top:0}.sm\:mt-5{margin-top:1.25rem}.sm\:mt-px{margin-top:1px}.sm\:block{display:block}.sm\:flex{display:flex}.sm\:grid{display:grid}.sm\:hidden{display:none}.sm\:h-10{height:2.5rem}.sm\:h-12{height:3rem}.sm\:w-10{width:2.5rem}.sm\:w-12{width:3rem}.sm\:w-64{width:16rem}.sm\:w-auto{width:auto}.sm\:max-w-2xl{max-width:42rem}.sm\:max-w-3xl{max-width:48rem}.sm\:max-w-4xl{max-width:56rem}.sm\:max-w-lg{max-width:32rem}.sm\:max-w-md{max-width:28rem}.sm\:max-w-sm{max-width:24rem}.sm\:max-w-xl{max-width:36rem}.sm\:max-w-xs{max-width:20rem}.sm\:flex-1{flex:1 1 0%}.sm\:translate-x-0{--tw-translate-x:0px}.sm\:translate-x-0,.sm\:translate-x-2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:translate-x-2{--tw-translate-x:0.5rem}.sm\:translate-y-0{--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.sm\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:flex-row-reverse{flex-direction:row-reverse}.sm\:items-start{align-items:flex-start}.sm\:items-center{align-items:center}.sm\:justify-end{justify-content:flex-end}.sm\:justify-between{justify-content:space-between}.sm\:gap-4{gap:1rem}.sm\:gap-5{gap:1.25rem}.sm\:gap-6{gap:1.5rem}.sm\:gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.sm\:gap-y-4{row-gap:1rem}.sm\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.sm\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.sm\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sm\:rounded-lg{border-radius:.5rem}.sm\:rounded-md{border-radius:.375rem}.sm\:border-b{border-bottom-width:1px}.sm\:border-l{border-left-width:1px}.sm\:border-t{border-top-width:1px}.sm\:border-t-0{border-top-width:0}.sm\:border-secondary-200{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.sm\:p-5{padding:1.25rem}.sm\:p-6{padding:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:px-5{padding-left:1.25rem;padding-right:1.25rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.sm\:py-12{padding-bottom:3rem;padding-top:3rem}.sm\:py-4{padding-bottom:1rem;padding-top:1rem}.sm\:py-5{padding-bottom:1.25rem;padding-top:1.25rem}.sm\:py-6{padding-bottom:1.5rem;padding-top:1.5rem}.sm\:pl-8{padding-left:2rem}.sm\:pr-8{padding-right:2rem}.sm\:pt-2{padding-top:.5rem}.sm\:pt-5{padding-top:1.25rem}.sm\:text-left{text-align:left}.sm\:text-3xl{font-size:1.875rem;line-height:2.25rem}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}.sm\:text-sm{font-size:.875rem}.sm\:leading-5,.sm\:text-sm{line-height:1.25rem}.sm\:leading-7{line-height:1.75rem}.sm\:leading-9{line-height:2.25rem}:is(.dark .sm\:dark\:border-secondary-700){--tw-border-opacity:1;border-color:rgb(51 65 85/var(--tw-border-opacity))}}@media (min-width:768px){.md\:col-span-1{grid-column:span 1/span 1}.md\:col-span-2{grid-column:span 2/span 2}.md\:flex{display:flex}.md\:table-cell{display:table-cell}.md\:max-w-2xl{max-width:42rem}.md\:max-w-3xl{max-width:48rem}.md\:max-w-4xl{max-width:56rem}.md\:max-w-xl{max-width:36rem}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:items-center{align-items:center}.md\:justify-between{justify-content:space-between}.md\:gap-6{gap:1.5rem}.md\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.md\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}}@media (min-width:1024px){.lg\:bottom-0{bottom:0}.lg\:top-\[3\.8rem\]{top:3.8rem}.lg\:top-auto{top:auto}.lg\:col-span-1{grid-column:span 1/span 1}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:col-span-3{grid-column:span 3/span 3}.lg\:col-span-4{grid-column:span 4/span 4}.lg\:col-span-6{grid-column:span 6/span 6}.lg\:-mx-8{margin-left:-2rem;margin-right:-2rem}.lg\:ml-0{margin-left:0}.lg\:ml-4{margin-left:1rem}.lg\:ml-6{margin-left:1.5rem}.lg\:mt-0{margin-top:0}.lg\:mt-10{margin-top:2.5rem}.lg\:mt-2{margin-top:.5rem}.lg\:mt-8{margin-top:2rem}.lg\:block{display:block}.lg\:flex{display:flex}.lg\:inline-flex{display:inline-flex}.lg\:table-cell{display:table-cell}.lg\:grid{display:grid}.lg\:hidden{display:none}.lg\:h-1{height:.25rem}.lg\:h-125{height:31.25rem}.lg\:h-auto{height:auto}.lg\:w-1\/2{width:50%}.lg\:w-full{width:100%}.lg\:max-w-2xl{max-width:42rem}.lg\:max-w-3xl{max-width:48rem}.lg\:max-w-4xl{max-width:56rem}.lg\:max-w-lg{max-width:32rem}.lg\:max-w-sm{max-width:24rem}.lg\:max-w-xl{max-width:36rem}.lg\:flex-1{flex:1 1 0%}.lg\:shrink-0{flex-shrink:0}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.lg\:flex-col{flex-direction:column}.lg\:items-start{align-items:flex-start}.lg\:items-center{align-items:center}.lg\:justify-between{justify-content:space-between}.lg\:gap-4{gap:1rem}.lg\:gap-5{gap:1.25rem}.lg\:gap-6{gap:1.5rem}.lg\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.lg\:gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.lg\:gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.lg\:gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.lg\:gap-y-5{row-gap:1.25rem}.lg\:gap-y-6{row-gap:1.5rem}.lg\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.lg\:divide-none>:not([hidden])~:not([hidden]){border-style:none}.lg\:overflow-visible{overflow:visible}.lg\:border-0{border-width:0}.lg\:border-y{border-top-width:1px}.lg\:border-b,.lg\:border-y{border-bottom-width:1px}.lg\:border-t{border-top-width:1px}.lg\:border-t-0{border-top-width:0}.lg\:border-secondary-200{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.lg\:bg-transparent{background-color:transparent}.lg\:p-6{padding:1.5rem}.lg\:px-0{padding-left:0;padding-right:0}.lg\:px-6{padding-left:1.5rem;padding-right:1.5rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:py-0{padding-bottom:0;padding-top:0}.lg\:py-12{padding-bottom:3rem;padding-top:3rem}.lg\:py-16{padding-bottom:4rem;padding-top:4rem}.lg\:py-20{padding-bottom:5rem;padding-top:5rem}.lg\:py-4{padding-bottom:1rem;padding-top:1rem}.lg\:py-6{padding-bottom:1.5rem;padding-top:1.5rem}.lg\:pb-0{padding-bottom:0}.lg\:pl-2{padding-left:.5rem}.lg\:pl-9{padding-left:2.25rem}.lg\:pr-4{padding-right:1rem}.lg\:pt-10{padding-top:2.5rem}.lg\:pt-5{padding-top:1.25rem}.lg\:text-left{text-align:left}.lg\:text-2xl{font-size:1.5rem;line-height:2rem}.lg\:text-3xl{font-size:1.875rem;line-height:2.25rem}.lg\:text-lg{font-size:1.125rem;line-height:1.75rem}.lg\:shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(.dark .lg\:dark\:border-gray-700){--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}:is(.dark .lg\:dark\:border-secondary-700){--tw-border-opacity:1;border-color:rgb(51 65 85/var(--tw-border-opacity))}:is(.dark .lg\:dark\:bg-transparent){background-color:transparent}}@media (min-width:1280px){.xl\:col-span-2{grid-column:span 2/span 2}.xl\:col-span-4{grid-column:span 4/span 4}.xl\:max-w-2xl{max-width:42rem}.xl\:max-w-3xl{max-width:48rem}.xl\:max-w-4xl{max-width:56rem}.xl\:max-w-xl{max-width:36rem}.xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}}@media (min-width:1536px){.\32xl\:max-w-8xl{max-width:88rem}.\32xl\:px-6{padding-left:1.5rem;padding-right:1.5rem}} - -/*# sourceMappingURL=shopper.css.map*/ \ No newline at end of file +/* +! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com +*/ + +/* +1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) +2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) +*/ + +*, +::before, +::after { + box-sizing: border-box; + /* 1 */ + border-width: 0; + /* 2 */ + border-style: solid; + /* 2 */ + border-color: rgba(var(--gray-200), 1); + /* 2 */ +} + +::before, +::after { + --tw-content: ''; +} + +/* +1. Use a consistent sensible line-height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +3. Use a more readable tab size. +4. Use the user's configured `sans` font-family by default. +5. Use the user's configured `sans` font-feature-settings by default. +6. Use the user's configured `sans` font-variation-settings by default. +7. Disable tap highlights on iOS +*/ + +html, +:host { + line-height: 1.5; + /* 1 */ + -webkit-text-size-adjust: 100%; + /* 2 */ + -moz-tab-size: 4; + /* 3 */ + -o-tab-size: 4; + tab-size: 4; + /* 3 */ + font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + /* 4 */ + font-feature-settings: normal; + /* 5 */ + font-variation-settings: normal; + /* 6 */ + -webkit-tap-highlight-color: transparent; + /* 7 */ +} + +/* +1. Remove the margin in all browsers. +2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. +*/ + +body { + margin: 0; + /* 1 */ + line-height: inherit; + /* 2 */ +} + +/* +1. Add the correct height in Firefox. +2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) +3. Ensure horizontal rules are visible by default. +*/ + +hr { + height: 0; + /* 1 */ + color: inherit; + /* 2 */ + border-top-width: 1px; + /* 3 */ +} + +/* +Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr:where([title]) { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +/* +Remove the default font size and weight for headings. +*/ + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: inherit; +} + +/* +Reset links to optimize for opt-in styling instead of opt-out. +*/ + +a { + color: inherit; + text-decoration: inherit; +} + +/* +Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/* +1. Use the user's configured `mono` font-family by default. +2. Use the user's configured `mono` font-feature-settings by default. +3. Use the user's configured `mono` font-variation-settings by default. +4. Correct the odd `em` font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + /* 1 */ + font-feature-settings: normal; + /* 2 */ + font-variation-settings: normal; + /* 3 */ + font-size: 1em; + /* 4 */ +} + +/* +Add the correct font size in all browsers. +*/ + +small { + font-size: 80%; +} + +/* +Prevent `sub` and `sup` elements from affecting the line height in all browsers. +*/ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* +1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) +2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) +3. Remove gaps between table borders by default. +*/ + +table { + text-indent: 0; + /* 1 */ + border-color: inherit; + /* 2 */ + border-collapse: collapse; + /* 3 */ +} + +/* +1. Change the font styles in all browsers. +2. Remove the margin in Firefox and Safari. +3. Remove default padding in all browsers. +*/ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; + /* 1 */ + font-feature-settings: inherit; + /* 1 */ + font-variation-settings: inherit; + /* 1 */ + font-size: 100%; + /* 1 */ + font-weight: inherit; + /* 1 */ + line-height: inherit; + /* 1 */ + color: inherit; + /* 1 */ + margin: 0; + /* 2 */ + padding: 0; + /* 3 */ +} + +/* +Remove the inheritance of text transform in Edge and Firefox. +*/ + +button, +select { + text-transform: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Remove default button styles. +*/ + +button, +[type='button'], +[type='reset'], +[type='submit'] { + -webkit-appearance: button; + /* 1 */ + background-color: transparent; + /* 2 */ + background-image: none; + /* 2 */ +} + +/* +Use the modern Firefox focus style for all focusable elements. +*/ + +:-moz-focusring { + outline: auto; +} + +/* +Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/* +Add the correct vertical alignment in Chrome and Firefox. +*/ + +progress { + vertical-align: baseline; +} + +/* +Correct the cursor style of increment and decrement buttons in Safari. +*/ + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} + +/* +1. Correct the odd appearance in Chrome and Safari. +2. Correct the outline style in Safari. +*/ + +[type='search'] { + -webkit-appearance: textfield; + /* 1 */ + outline-offset: -2px; + /* 2 */ +} + +/* +Remove the inner padding in Chrome and Safari on macOS. +*/ + +::-webkit-search-decoration { + -webkit-appearance: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Change font properties to `inherit` in Safari. +*/ + +::-webkit-file-upload-button { + -webkit-appearance: button; + /* 1 */ + font: inherit; + /* 2 */ +} + +/* +Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/* +Removes the default spacing and border for appropriate elements. +*/ + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre { + margin: 0; +} + +fieldset { + margin: 0; + padding: 0; +} + +legend { + padding: 0; +} + +ol, +ul, +menu { + list-style: none; + margin: 0; + padding: 0; +} + +/* +Reset default styling for dialogs. +*/ + +dialog { + padding: 0; +} + +/* +Prevent resizing textareas horizontally by default. +*/ + +textarea { + resize: vertical; +} + +/* +1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) +2. Set the default placeholder color to the user's configured gray 400 color. +*/ + +input::-moz-placeholder, textarea::-moz-placeholder { + opacity: 1; + /* 1 */ + color: rgba(var(--gray-400), 1); + /* 2 */ +} + +input::placeholder, +textarea::placeholder { + opacity: 1; + /* 1 */ + color: rgba(var(--gray-400), 1); + /* 2 */ +} + +/* +Set the default cursor for buttons. +*/ + +button, +[role="button"] { + cursor: pointer; +} + +/* +Make sure disabled buttons don't get the pointer cursor. +*/ + +:disabled { + cursor: default; +} + +/* +1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) +2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) + This can trigger a poorly considered lint error in some tools but is included by design. +*/ + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object { + display: block; + /* 1 */ + vertical-align: middle; + /* 2 */ +} + +/* +Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) +*/ + +img, +video { + max-width: 100%; + height: auto; +} + +/* Make elements with the HTML hidden attribute stay hidden by default */ + +[hidden] { + display: none; +} + +[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: rgba(var(--gray-500), var(--tw-border-opacity, 1)); + border-width: 1px; + border-radius: 0px; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5rem; + --tw-shadow: 0 0 #0000; +} + +[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus { + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + border-color: #2563eb; +} + +input::-moz-placeholder, textarea::-moz-placeholder { + color: rgba(var(--gray-500), var(--tw-text-opacity, 1)); + opacity: 1; +} + +input::placeholder,textarea::placeholder { + color: rgba(var(--gray-500), var(--tw-text-opacity, 1)); + opacity: 1; +} + +::-webkit-datetime-edit-fields-wrapper { + padding: 0; +} + +::-webkit-date-and-time-value { + min-height: 1.5em; + text-align: inherit; +} + +::-webkit-datetime-edit { + display: inline-flex; +} + +::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field { + padding-top: 0; + padding-bottom: 0; +} + +select { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='rgba(var(--gray-500)%2c var(--tw-stroke-opacity%2c 1))' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); + background-position: right 0.5rem center; + background-repeat: no-repeat; + background-size: 1.5em 1.5em; + padding-right: 2.5rem; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; +} + +[multiple],[size]:where(select:not([size="1"])) { + background-image: initial; + background-position: initial; + background-repeat: unset; + background-size: initial; + padding-right: 0.75rem; + -webkit-print-color-adjust: unset; + print-color-adjust: unset; +} + +[type='checkbox'],[type='radio'] { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + padding: 0; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; + display: inline-block; + vertical-align: middle; + background-origin: border-box; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + flex-shrink: 0; + height: 1rem; + width: 1rem; + color: #2563eb; + background-color: #fff; + border-color: rgba(var(--gray-500), var(--tw-border-opacity, 1)); + border-width: 1px; + --tw-shadow: 0 0 #0000; +} + +[type='checkbox'] { + border-radius: 0px; +} + +[type='radio'] { + border-radius: 100%; +} + +[type='checkbox']:focus,[type='radio']:focus { + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 2px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); +} + +[type='checkbox']:checked,[type='radio']:checked { + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +[type='checkbox']:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e"); +} + +@media (forced-colors: active) { + [type='checkbox']:checked { + -webkit-appearance: auto; + -moz-appearance: auto; + appearance: auto; + } +} + +[type='radio']:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e"); +} + +@media (forced-colors: active) { + [type='radio']:checked { + -webkit-appearance: auto; + -moz-appearance: auto; + appearance: auto; + } +} + +[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus { + border-color: transparent; + background-color: currentColor; +} + +[type='checkbox']:indeterminate { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e"); + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +@media (forced-colors: active) { + [type='checkbox']:indeterminate { + -webkit-appearance: auto; + -moz-appearance: auto; + appearance: auto; + } +} + +[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus { + border-color: transparent; + background-color: currentColor; +} + +[type='file'] { + background: unset; + border-color: inherit; + border-width: 0; + border-radius: 0; + padding: 0; + font-size: unset; + line-height: inherit; +} + +[type='file']:focus { + outline: 1px solid ButtonText; + outline: 1px auto -webkit-focus-ring-color; +} + +[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: rgba(var(--gray-500), var(--tw-border-opacity, 1)); + border-width: 1px; + border-radius: 0px; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5rem; + --tw-shadow: 0 0 #0000; +} + +[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus { + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + border-color: #2563eb; +} + +input::-moz-placeholder, textarea::-moz-placeholder { + color: rgba(var(--gray-500), var(--tw-text-opacity, 1)); + opacity: 1; +} + +input::placeholder,textarea::placeholder { + color: rgba(var(--gray-500), var(--tw-text-opacity, 1)); + opacity: 1; +} + +::-webkit-datetime-edit-fields-wrapper { + padding: 0; +} + +::-webkit-date-and-time-value { + min-height: 1.5em; + text-align: inherit; +} + +::-webkit-datetime-edit { + display: inline-flex; +} + +::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field { + padding-top: 0; + padding-bottom: 0; +} + +select { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='rgba(var(--gray-500)%2c var(--tw-stroke-opacity%2c 1))' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); + background-position: right 0.5rem center; + background-repeat: no-repeat; + background-size: 1.5em 1.5em; + padding-right: 2.5rem; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; +} + +[multiple],[size]:where(select:not([size="1"])) { + background-image: initial; + background-position: initial; + background-repeat: unset; + background-size: initial; + padding-right: 0.75rem; + -webkit-print-color-adjust: unset; + print-color-adjust: unset; +} + +[type='checkbox'],[type='radio'] { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + padding: 0; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; + display: inline-block; + vertical-align: middle; + background-origin: border-box; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + flex-shrink: 0; + height: 1rem; + width: 1rem; + color: #2563eb; + background-color: #fff; + border-color: rgba(var(--gray-500), var(--tw-border-opacity, 1)); + border-width: 1px; + --tw-shadow: 0 0 #0000; +} + +[type='checkbox'] { + border-radius: 0px; +} + +[type='radio'] { + border-radius: 100%; +} + +[type='checkbox']:focus,[type='radio']:focus { + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 2px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); +} + +[type='checkbox']:checked,[type='radio']:checked { + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +[type='checkbox']:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e"); +} + +@media (forced-colors: active) { + [type='checkbox']:checked { + -webkit-appearance: auto; + -moz-appearance: auto; + appearance: auto; + } +} + +[type='radio']:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e"); +} + +@media (forced-colors: active) { + [type='radio']:checked { + -webkit-appearance: auto; + -moz-appearance: auto; + appearance: auto; + } +} + +[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus { + border-color: transparent; + background-color: currentColor; +} + +[type='checkbox']:indeterminate { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e"); + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +@media (forced-colors: active) { + [type='checkbox']:indeterminate { + -webkit-appearance: auto; + -moz-appearance: auto; + appearance: auto; + } +} + +[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus { + border-color: transparent; + background-color: currentColor; +} + +[type='file'] { + background: unset; + border-color: inherit; + border-width: 0; + border-radius: 0; + padding: 0; + font-size: unset; + line-height: inherit; +} + +[type='file']:focus { + outline: 1px solid ButtonText; + outline: 1px auto -webkit-focus-ring-color; +} + +html { + -webkit-tap-highlight-color: transparent; +} + +:root.dark { + color-scheme: dark; +} + +[dir='rtl'] select { + background-position: left 0.5rem center !important; + padding-left: 2.5rem; + padding-right: 0.75rem; +} + +*, ::before, ::after { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} + +::backdrop { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} + +.container { + width: 100%; +} + +@media (min-width: 640px) { + .container { + max-width: 640px; + } +} + +@media (min-width: 768px) { + .container { + max-width: 768px; + } +} + +@media (min-width: 1024px) { + .container { + max-width: 1024px; + } +} + +@media (min-width: 1280px) { + .container { + max-width: 1280px; + } +} + +@media (min-width: 1536px) { + .container { + max-width: 1536px; + } +} + +.prose { + color: var(--tw-prose-body); + max-width: 65ch; +} + +.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; +} + +.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-lead); + font-size: 1.25em; + line-height: 1.6; + margin-top: 1.2em; + margin-bottom: 1.2em; +} + +.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-links); + text-decoration: underline; + font-weight: 500; +} + +.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-bold); + font-weight: 600; +} + +.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: decimal; + margin-top: 1.25em; + margin-bottom: 1.25em; + padding-left: 1.625em; +} + +.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: upper-alpha; +} + +.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: lower-alpha; +} + +.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: upper-alpha; +} + +.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: lower-alpha; +} + +.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: upper-roman; +} + +.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: lower-roman; +} + +.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: upper-roman; +} + +.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: lower-roman; +} + +.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: decimal; +} + +.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: disc; + margin-top: 1.25em; + margin-bottom: 1.25em; + padding-left: 1.625em; +} + +.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker { + font-weight: 400; + color: var(--tw-prose-counters); +} + +.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker { + color: var(--tw-prose-bullets); +} + +.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 600; + margin-top: 1.25em; +} + +.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-color: var(--tw-prose-hr); + border-top-width: 1px; + margin-top: 3em; + margin-bottom: 3em; +} + +.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 500; + font-style: italic; + color: var(--tw-prose-quotes); + border-left-width: 0.25rem; + border-left-color: var(--tw-prose-quote-borders); + quotes: "\201C""\201D""\2018""\2019"; + margin-top: 1.6em; + margin-bottom: 1.6em; + padding-left: 1em; +} + +.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before { + content: open-quote; +} + +.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after { + content: close-quote; +} + +.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 800; + font-size: 2.25em; + margin-top: 0; + margin-bottom: 0.8888889em; + line-height: 1.1111111; +} + +.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 900; + color: inherit; +} + +.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 700; + font-size: 1.5em; + margin-top: 2em; + margin-bottom: 1em; + line-height: 1.3333333; +} + +.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 800; + color: inherit; +} + +.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 600; + font-size: 1.25em; + margin-top: 1.6em; + margin-bottom: 0.6em; + line-height: 1.6; +} + +.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 700; + color: inherit; +} + +.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 600; + margin-top: 1.5em; + margin-bottom: 0.5em; + line-height: 1.5; +} + +.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 700; + color: inherit; +} + +.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + display: block; + margin-top: 2em; + margin-bottom: 2em; +} + +.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 500; + font-family: inherit; + color: var(--tw-prose-kbd); + box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%); + font-size: 0.875em; + border-radius: 0.3125rem; + padding-top: 0.1875em; + padding-right: 0.375em; + padding-bottom: 0.1875em; + padding-left: 0.375em; +} + +.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-code); + font-weight: 600; + font-size: 0.875em; +} + +.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before { + content: "`"; +} + +.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after { + content: "`"; +} + +.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; + font-size: 0.875em; +} + +.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; + font-size: 0.9em; +} + +.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-pre-code); + background-color: var(--tw-prose-pre-bg); + overflow-x: auto; + font-weight: 400; + font-size: 0.875em; + line-height: 1.7142857; + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; + border-radius: 0.375rem; + padding-top: 0.8571429em; + padding-right: 1.1428571em; + padding-bottom: 0.8571429em; + padding-left: 1.1428571em; +} + +.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + background-color: transparent; + border-width: 0; + border-radius: 0; + padding: 0; + font-weight: inherit; + color: inherit; + font-size: inherit; + font-family: inherit; + line-height: inherit; +} + +.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before { + content: none; +} + +.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after { + content: none; +} + +.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + width: 100%; + table-layout: auto; + text-align: left; + margin-top: 2em; + margin-bottom: 2em; + font-size: 0.875em; + line-height: 1.7142857; +} + +.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-bottom-width: 1px; + border-bottom-color: var(--tw-prose-th-borders); +} + +.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 600; + vertical-align: bottom; + padding-right: 0.5714286em; + padding-bottom: 0.5714286em; + padding-left: 0.5714286em; +} + +.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-bottom-width: 1px; + border-bottom-color: var(--tw-prose-td-borders); +} + +.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-bottom-width: 0; +} + +.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + vertical-align: baseline; +} + +.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-top-width: 1px; + border-top-color: var(--tw-prose-th-borders); +} + +.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + vertical-align: top; +} + +.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-captions); + font-size: 0.875em; + line-height: 1.4285714; + margin-top: 0.8571429em; +} + +.prose { + --tw-prose-body: #374151; + --tw-prose-headings: #111827; + --tw-prose-lead: #4b5563; + --tw-prose-links: #111827; + --tw-prose-bold: #111827; + --tw-prose-counters: #6b7280; + --tw-prose-bullets: #d1d5db; + --tw-prose-hr: #e5e7eb; + --tw-prose-quotes: #111827; + --tw-prose-quote-borders: #e5e7eb; + --tw-prose-captions: #6b7280; + --tw-prose-kbd: #111827; + --tw-prose-kbd-shadows: 17 24 39; + --tw-prose-code: #111827; + --tw-prose-pre-code: #e5e7eb; + --tw-prose-pre-bg: #1f2937; + --tw-prose-th-borders: #d1d5db; + --tw-prose-td-borders: #e5e7eb; + --tw-prose-invert-body: #d1d5db; + --tw-prose-invert-headings: #fff; + --tw-prose-invert-lead: #9ca3af; + --tw-prose-invert-links: #fff; + --tw-prose-invert-bold: #fff; + --tw-prose-invert-counters: #9ca3af; + --tw-prose-invert-bullets: #4b5563; + --tw-prose-invert-hr: #374151; + --tw-prose-invert-quotes: #f3f4f6; + --tw-prose-invert-quote-borders: #374151; + --tw-prose-invert-captions: #9ca3af; + --tw-prose-invert-kbd: #fff; + --tw-prose-invert-kbd-shadows: 255 255 255; + --tw-prose-invert-code: #fff; + --tw-prose-invert-pre-code: #d1d5db; + --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%); + --tw-prose-invert-th-borders: #4b5563; + --tw-prose-invert-td-borders: #374151; + font-size: 1rem; + line-height: 1.75; +} + +.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5em; + margin-bottom: 0.5em; +} + +.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.375em; +} + +.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.375em; +} + +.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.75em; + margin-bottom: 0.75em; +} + +.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; +} + +.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.25em; +} + +.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; +} + +.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.25em; +} + +.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.75em; + margin-bottom: 0.75em; +} + +.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; +} + +.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5em; + padding-left: 1.625em; +} + +.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-top: 0.5714286em; + padding-right: 0.5714286em; + padding-bottom: 0.5714286em; + padding-left: 0.5714286em; +} + +.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 0; +} + +.prose-sm { + font-size: 0.875rem; + line-height: 1.7142857; +} + +.prose-sm :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; + margin-bottom: 1.1428571em; +} + +.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.2857143em; + line-height: 1.5555556; + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; +} + +.prose-sm :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; + margin-bottom: 1.3333333em; + padding-left: 1.1111111em; +} + +.prose-sm :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 2.1428571em; + margin-top: 0; + margin-bottom: 0.8em; + line-height: 1.2; +} + +.prose-sm :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.4285714em; + margin-top: 1.6em; + margin-bottom: 0.8em; + line-height: 1.4; +} + +.prose-sm :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.2857143em; + margin-top: 1.5555556em; + margin-bottom: 0.4444444em; + line-height: 1.5555556; +} + +.prose-sm :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.4285714em; + margin-bottom: 0.5714286em; + line-height: 1.4285714; +} + +.prose-sm :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; +} + +.prose-sm :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; +} + +.prose-sm :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-sm :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; +} + +.prose-sm :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8571429em; + border-radius: 0.3125rem; + padding-top: 0.1428571em; + padding-right: 0.3571429em; + padding-bottom: 0.1428571em; + padding-left: 0.3571429em; +} + +.prose-sm :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8571429em; +} + +.prose-sm :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.9em; +} + +.prose-sm :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8888889em; +} + +.prose-sm :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8571429em; + line-height: 1.6666667; + margin-top: 1.6666667em; + margin-bottom: 1.6666667em; + border-radius: 0.25rem; + padding-top: 0.6666667em; + padding-right: 1em; + padding-bottom: 0.6666667em; + padding-left: 1em; +} + +.prose-sm :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; + margin-bottom: 1.1428571em; + padding-left: 1.5714286em; +} + +.prose-sm :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; + margin-bottom: 1.1428571em; + padding-left: 1.5714286em; +} + +.prose-sm :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.2857143em; + margin-bottom: 0.2857143em; +} + +.prose-sm :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.4285714em; +} + +.prose-sm :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.4285714em; +} + +.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5714286em; + margin-bottom: 0.5714286em; +} + +.prose-sm :where(.prose-sm > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; +} + +.prose-sm :where(.prose-sm > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.1428571em; +} + +.prose-sm :where(.prose-sm > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; +} + +.prose-sm :where(.prose-sm > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.1428571em; +} + +.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5714286em; + margin-bottom: 0.5714286em; +} + +.prose-sm :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; + margin-bottom: 1.1428571em; +} + +.prose-sm :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; +} + +.prose-sm :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.2857143em; + padding-left: 1.5714286em; +} + +.prose-sm :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2.8571429em; + margin-bottom: 2.8571429em; +} + +.prose-sm :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-sm :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-sm :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-sm :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-sm :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8571429em; + line-height: 1.5; +} + +.prose-sm :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 1em; + padding-bottom: 0.6666667em; + padding-left: 1em; +} + +.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-top: 0.6666667em; + padding-right: 1em; + padding-bottom: 0.6666667em; + padding-left: 1em; +} + +.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose-sm :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; +} + +.prose-sm :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-sm :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8571429em; + line-height: 1.3333333; + margin-top: 0.6666667em; +} + +.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 0; +} + +.prose-base { + font-size: 1rem; + line-height: 1.75; +} + +.prose-base :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; +} + +.prose-base :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.25em; + line-height: 1.6; + margin-top: 1.2em; + margin-bottom: 1.2em; +} + +.prose-base :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.6em; + margin-bottom: 1.6em; + padding-left: 1em; +} + +.prose-base :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 2.25em; + margin-top: 0; + margin-bottom: 0.8888889em; + line-height: 1.1111111; +} + +.prose-base :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.5em; + margin-top: 2em; + margin-bottom: 1em; + line-height: 1.3333333; +} + +.prose-base :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.25em; + margin-top: 1.6em; + margin-bottom: 0.6em; + line-height: 1.6; +} + +.prose-base :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.5em; + margin-bottom: 0.5em; + line-height: 1.5; +} + +.prose-base :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose-base :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose-base :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-base :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose-base :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; + border-radius: 0.3125rem; + padding-top: 0.1875em; + padding-right: 0.375em; + padding-bottom: 0.1875em; + padding-left: 0.375em; +} + +.prose-base :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; +} + +.prose-base :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; +} + +.prose-base :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.9em; +} + +.prose-base :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; + line-height: 1.7142857; + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; + border-radius: 0.375rem; + padding-top: 0.8571429em; + padding-right: 1.1428571em; + padding-bottom: 0.8571429em; + padding-left: 1.1428571em; +} + +.prose-base :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; + padding-left: 1.625em; +} + +.prose-base :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; + padding-left: 1.625em; +} + +.prose-base :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5em; + margin-bottom: 0.5em; +} + +.prose-base :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.375em; +} + +.prose-base :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.375em; +} + +.prose-base :where(.prose-base > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.75em; + margin-bottom: 0.75em; +} + +.prose-base :where(.prose-base > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; +} + +.prose-base :where(.prose-base > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.25em; +} + +.prose-base :where(.prose-base > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; +} + +.prose-base :where(.prose-base > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.25em; +} + +.prose-base :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.75em; + margin-bottom: 0.75em; +} + +.prose-base :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; +} + +.prose-base :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; +} + +.prose-base :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5em; + padding-left: 1.625em; +} + +.prose-base :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 3em; + margin-bottom: 3em; +} + +.prose-base :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-base :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-base :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-base :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-base :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; + line-height: 1.7142857; +} + +.prose-base :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0.5714286em; + padding-bottom: 0.5714286em; + padding-left: 0.5714286em; +} + +.prose-base :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose-base :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose-base :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-top: 0.5714286em; + padding-right: 0.5714286em; + padding-bottom: 0.5714286em; + padding-left: 0.5714286em; +} + +.prose-base :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose-base :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose-base :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose-base :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-base :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; + line-height: 1.4285714; + margin-top: 0.8571429em; +} + +.prose-base :where(.prose-base > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-base :where(.prose-base > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 0; +} + +.prose-lg { + font-size: 1.125rem; + line-height: 1.7777778; +} + +.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; + margin-bottom: 1.3333333em; +} + +.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.2222222em; + line-height: 1.4545455; + margin-top: 1.0909091em; + margin-bottom: 1.0909091em; +} + +.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.6666667em; + margin-bottom: 1.6666667em; + padding-left: 1em; +} + +.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 2.6666667em; + margin-top: 0; + margin-bottom: 0.8333333em; + line-height: 1; +} + +.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.6666667em; + margin-top: 1.8666667em; + margin-bottom: 1.0666667em; + line-height: 1.3333333; +} + +.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.3333333em; + margin-top: 1.6666667em; + margin-bottom: 0.6666667em; + line-height: 1.5; +} + +.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7777778em; + margin-bottom: 0.4444444em; + line-height: 1.5555556; +} + +.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7777778em; + margin-bottom: 1.7777778em; +} + +.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7777778em; + margin-bottom: 1.7777778em; +} + +.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7777778em; + margin-bottom: 1.7777778em; +} + +.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8888889em; + border-radius: 0.3125rem; + padding-top: 0.2222222em; + padding-right: 0.4444444em; + padding-bottom: 0.2222222em; + padding-left: 0.4444444em; +} + +.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8888889em; +} + +.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8666667em; +} + +.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; +} + +.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8888889em; + line-height: 1.75; + margin-top: 2em; + margin-bottom: 2em; + border-radius: 0.375rem; + padding-top: 1em; + padding-right: 1.5em; + padding-bottom: 1em; + padding-left: 1.5em; +} + +.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; + margin-bottom: 1.3333333em; + padding-left: 1.5555556em; +} + +.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; + margin-bottom: 1.3333333em; + padding-left: 1.5555556em; +} + +.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.6666667em; + margin-bottom: 0.6666667em; +} + +.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.4444444em; +} + +.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.4444444em; +} + +.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; +} + +.prose-lg :where(.prose-lg > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; +} + +.prose-lg :where(.prose-lg > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.3333333em; +} + +.prose-lg :where(.prose-lg > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; +} + +.prose-lg :where(.prose-lg > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.3333333em; +} + +.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; +} + +.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; + margin-bottom: 1.3333333em; +} + +.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; +} + +.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.6666667em; + padding-left: 1.5555556em; +} + +.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 3.1111111em; + margin-bottom: 3.1111111em; +} + +.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8888889em; + line-height: 1.5; +} + +.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0.75em; + padding-bottom: 0.75em; + padding-left: 0.75em; +} + +.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-top: 0.75em; + padding-right: 0.75em; + padding-bottom: 0.75em; + padding-left: 0.75em; +} + +.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7777778em; + margin-bottom: 1.7777778em; +} + +.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8888889em; + line-height: 1.5; + margin-top: 1em; +} + +.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 0; +} + +.prose { + color: var(--tw-prose-body); + max-width: 65ch; +} + +.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; +} + +.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-lead); + font-size: 1.25em; + line-height: 1.6; + margin-top: 1.2em; + margin-bottom: 1.2em; +} + +.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-links); + text-decoration: underline; + font-weight: 500; +} + +.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-bold); + font-weight: 600; +} + +.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: decimal; + margin-top: 1.25em; + margin-bottom: 1.25em; + padding-left: 1.625em; +} + +.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: upper-alpha; +} + +.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: lower-alpha; +} + +.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: upper-alpha; +} + +.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: lower-alpha; +} + +.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: upper-roman; +} + +.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: lower-roman; +} + +.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: upper-roman; +} + +.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: lower-roman; +} + +.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: decimal; +} + +.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: disc; + margin-top: 1.25em; + margin-bottom: 1.25em; + padding-left: 1.625em; +} + +.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker { + font-weight: 400; + color: var(--tw-prose-counters); +} + +.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker { + color: var(--tw-prose-bullets); +} + +.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 600; + margin-top: 1.25em; +} + +.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-color: var(--tw-prose-hr); + border-top-width: 1px; + margin-top: 3em; + margin-bottom: 3em; +} + +.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 500; + font-style: italic; + color: var(--tw-prose-quotes); + border-left-width: 0.25rem; + border-left-color: var(--tw-prose-quote-borders); + quotes: "\201C""\201D""\2018""\2019"; + margin-top: 1.6em; + margin-bottom: 1.6em; + padding-left: 1em; +} + +.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before { + content: open-quote; +} + +.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after { + content: close-quote; +} + +.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 800; + font-size: 2.25em; + margin-top: 0; + margin-bottom: 0.8888889em; + line-height: 1.1111111; +} + +.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 900; + color: inherit; +} + +.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 700; + font-size: 1.5em; + margin-top: 2em; + margin-bottom: 1em; + line-height: 1.3333333; +} + +.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 800; + color: inherit; +} + +.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 600; + font-size: 1.25em; + margin-top: 1.6em; + margin-bottom: 0.6em; + line-height: 1.6; +} + +.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 700; + color: inherit; +} + +.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 600; + margin-top: 1.5em; + margin-bottom: 0.5em; + line-height: 1.5; +} + +.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 700; + color: inherit; +} + +.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + display: block; + margin-top: 2em; + margin-bottom: 2em; +} + +.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 500; + font-family: inherit; + color: var(--tw-prose-kbd); + box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%); + font-size: 0.875em; + border-radius: 0.3125rem; + padding-top: 0.1875em; + padding-right: 0.375em; + padding-bottom: 0.1875em; + padding-left: 0.375em; +} + +.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-code); + font-weight: 600; + font-size: 0.875em; +} + +.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before { + content: "`"; +} + +.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after { + content: "`"; +} + +.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; + font-size: 0.875em; +} + +.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; + font-size: 0.9em; +} + +.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-pre-code); + background-color: var(--tw-prose-pre-bg); + overflow-x: auto; + font-weight: 400; + font-size: 0.875em; + line-height: 1.7142857; + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; + border-radius: 0.375rem; + padding-top: 0.8571429em; + padding-right: 1.1428571em; + padding-bottom: 0.8571429em; + padding-left: 1.1428571em; +} + +.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + background-color: transparent; + border-width: 0; + border-radius: 0; + padding: 0; + font-weight: inherit; + color: inherit; + font-size: inherit; + font-family: inherit; + line-height: inherit; +} + +.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before { + content: none; +} + +.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after { + content: none; +} + +.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + width: 100%; + table-layout: auto; + text-align: left; + margin-top: 2em; + margin-bottom: 2em; + font-size: 0.875em; + line-height: 1.7142857; +} + +.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-bottom-width: 1px; + border-bottom-color: var(--tw-prose-th-borders); +} + +.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 600; + vertical-align: bottom; + padding-right: 0.5714286em; + padding-bottom: 0.5714286em; + padding-left: 0.5714286em; +} + +.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-bottom-width: 1px; + border-bottom-color: var(--tw-prose-td-borders); +} + +.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-bottom-width: 0; +} + +.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + vertical-align: baseline; +} + +.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-top-width: 1px; + border-top-color: var(--tw-prose-th-borders); +} + +.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + vertical-align: top; +} + +.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-captions); + font-size: 0.875em; + line-height: 1.4285714; + margin-top: 0.8571429em; +} + +.prose { + --tw-prose-body: #374151; + --tw-prose-headings: #111827; + --tw-prose-lead: #4b5563; + --tw-prose-links: #111827; + --tw-prose-bold: #111827; + --tw-prose-counters: #6b7280; + --tw-prose-bullets: #d1d5db; + --tw-prose-hr: #e5e7eb; + --tw-prose-quotes: #111827; + --tw-prose-quote-borders: #e5e7eb; + --tw-prose-captions: #6b7280; + --tw-prose-kbd: #111827; + --tw-prose-kbd-shadows: 17 24 39; + --tw-prose-code: #111827; + --tw-prose-pre-code: #e5e7eb; + --tw-prose-pre-bg: #1f2937; + --tw-prose-th-borders: #d1d5db; + --tw-prose-td-borders: #e5e7eb; + --tw-prose-invert-body: #d1d5db; + --tw-prose-invert-headings: #fff; + --tw-prose-invert-lead: #9ca3af; + --tw-prose-invert-links: #fff; + --tw-prose-invert-bold: #fff; + --tw-prose-invert-counters: #9ca3af; + --tw-prose-invert-bullets: #4b5563; + --tw-prose-invert-hr: #374151; + --tw-prose-invert-quotes: #f3f4f6; + --tw-prose-invert-quote-borders: #374151; + --tw-prose-invert-captions: #9ca3af; + --tw-prose-invert-kbd: #fff; + --tw-prose-invert-kbd-shadows: 255 255 255; + --tw-prose-invert-code: #fff; + --tw-prose-invert-pre-code: #d1d5db; + --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%); + --tw-prose-invert-th-borders: #4b5563; + --tw-prose-invert-td-borders: #374151; + font-size: 1rem; + line-height: 1.75; +} + +.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5em; + margin-bottom: 0.5em; +} + +.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.375em; +} + +.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.375em; +} + +.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.75em; + margin-bottom: 0.75em; +} + +.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; +} + +.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.25em; +} + +.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; +} + +.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.25em; +} + +.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.75em; + margin-bottom: 0.75em; +} + +.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; +} + +.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5em; + padding-left: 1.625em; +} + +.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-top: 0.5714286em; + padding-right: 0.5714286em; + padding-bottom: 0.5714286em; + padding-left: 0.5714286em; +} + +.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 0; +} + +.prose-sm { + font-size: 0.875rem; + line-height: 1.7142857; +} + +.prose-sm :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; + margin-bottom: 1.1428571em; +} + +.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.2857143em; + line-height: 1.5555556; + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; +} + +.prose-sm :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; + margin-bottom: 1.3333333em; + padding-left: 1.1111111em; +} + +.prose-sm :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 2.1428571em; + margin-top: 0; + margin-bottom: 0.8em; + line-height: 1.2; +} + +.prose-sm :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.4285714em; + margin-top: 1.6em; + margin-bottom: 0.8em; + line-height: 1.4; +} + +.prose-sm :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.2857143em; + margin-top: 1.5555556em; + margin-bottom: 0.4444444em; + line-height: 1.5555556; +} + +.prose-sm :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.4285714em; + margin-bottom: 0.5714286em; + line-height: 1.4285714; +} + +.prose-sm :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; +} + +.prose-sm :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; +} + +.prose-sm :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-sm :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; +} + +.prose-sm :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8571429em; + border-radius: 0.3125rem; + padding-top: 0.1428571em; + padding-right: 0.3571429em; + padding-bottom: 0.1428571em; + padding-left: 0.3571429em; +} + +.prose-sm :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8571429em; +} + +.prose-sm :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.9em; +} + +.prose-sm :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8888889em; +} + +.prose-sm :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8571429em; + line-height: 1.6666667; + margin-top: 1.6666667em; + margin-bottom: 1.6666667em; + border-radius: 0.25rem; + padding-top: 0.6666667em; + padding-right: 1em; + padding-bottom: 0.6666667em; + padding-left: 1em; +} + +.prose-sm :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; + margin-bottom: 1.1428571em; + padding-left: 1.5714286em; +} + +.prose-sm :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; + margin-bottom: 1.1428571em; + padding-left: 1.5714286em; +} + +.prose-sm :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.2857143em; + margin-bottom: 0.2857143em; +} + +.prose-sm :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.4285714em; +} + +.prose-sm :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.4285714em; +} + +.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5714286em; + margin-bottom: 0.5714286em; +} + +.prose-sm :where(.prose-sm > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; +} + +.prose-sm :where(.prose-sm > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.1428571em; +} + +.prose-sm :where(.prose-sm > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; +} + +.prose-sm :where(.prose-sm > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.1428571em; +} + +.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5714286em; + margin-bottom: 0.5714286em; +} + +.prose-sm :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; + margin-bottom: 1.1428571em; +} + +.prose-sm :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.1428571em; +} + +.prose-sm :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.2857143em; + padding-left: 1.5714286em; +} + +.prose-sm :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2.8571429em; + margin-bottom: 2.8571429em; +} + +.prose-sm :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-sm :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-sm :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-sm :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-sm :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8571429em; + line-height: 1.5; +} + +.prose-sm :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 1em; + padding-bottom: 0.6666667em; + padding-left: 1em; +} + +.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-top: 0.6666667em; + padding-right: 1em; + padding-bottom: 0.6666667em; + padding-left: 1em; +} + +.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose-sm :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; +} + +.prose-sm :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-sm :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8571429em; + line-height: 1.3333333; + margin-top: 0.6666667em; +} + +.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 0; +} + +.prose-base { + font-size: 1rem; + line-height: 1.75; +} + +.prose-base :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; +} + +.prose-base :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.25em; + line-height: 1.6; + margin-top: 1.2em; + margin-bottom: 1.2em; +} + +.prose-base :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.6em; + margin-bottom: 1.6em; + padding-left: 1em; +} + +.prose-base :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 2.25em; + margin-top: 0; + margin-bottom: 0.8888889em; + line-height: 1.1111111; +} + +.prose-base :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.5em; + margin-top: 2em; + margin-bottom: 1em; + line-height: 1.3333333; +} + +.prose-base :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.25em; + margin-top: 1.6em; + margin-bottom: 0.6em; + line-height: 1.6; +} + +.prose-base :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.5em; + margin-bottom: 0.5em; + line-height: 1.5; +} + +.prose-base :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose-base :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose-base :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-base :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose-base :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; + border-radius: 0.3125rem; + padding-top: 0.1875em; + padding-right: 0.375em; + padding-bottom: 0.1875em; + padding-left: 0.375em; +} + +.prose-base :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; +} + +.prose-base :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; +} + +.prose-base :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.9em; +} + +.prose-base :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; + line-height: 1.7142857; + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; + border-radius: 0.375rem; + padding-top: 0.8571429em; + padding-right: 1.1428571em; + padding-bottom: 0.8571429em; + padding-left: 1.1428571em; +} + +.prose-base :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; + padding-left: 1.625em; +} + +.prose-base :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; + padding-left: 1.625em; +} + +.prose-base :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5em; + margin-bottom: 0.5em; +} + +.prose-base :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.375em; +} + +.prose-base :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.375em; +} + +.prose-base :where(.prose-base > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.75em; + margin-bottom: 0.75em; +} + +.prose-base :where(.prose-base > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; +} + +.prose-base :where(.prose-base > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.25em; +} + +.prose-base :where(.prose-base > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; +} + +.prose-base :where(.prose-base > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.25em; +} + +.prose-base :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.75em; + margin-bottom: 0.75em; +} + +.prose-base :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; +} + +.prose-base :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; +} + +.prose-base :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5em; + padding-left: 1.625em; +} + +.prose-base :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 3em; + margin-bottom: 3em; +} + +.prose-base :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-base :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-base :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-base :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-base :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; + line-height: 1.7142857; +} + +.prose-base :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0.5714286em; + padding-bottom: 0.5714286em; + padding-left: 0.5714286em; +} + +.prose-base :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose-base :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose-base :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-top: 0.5714286em; + padding-right: 0.5714286em; + padding-bottom: 0.5714286em; + padding-left: 0.5714286em; +} + +.prose-base :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose-base :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose-base :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose-base :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-base :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; + line-height: 1.4285714; + margin-top: 0.8571429em; +} + +.prose-base :where(.prose-base > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-base :where(.prose-base > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 0; +} + +.prose-lg { + font-size: 1.125rem; + line-height: 1.7777778; +} + +.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; + margin-bottom: 1.3333333em; +} + +.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.2222222em; + line-height: 1.4545455; + margin-top: 1.0909091em; + margin-bottom: 1.0909091em; +} + +.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.6666667em; + margin-bottom: 1.6666667em; + padding-left: 1em; +} + +.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 2.6666667em; + margin-top: 0; + margin-bottom: 0.8333333em; + line-height: 1; +} + +.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.6666667em; + margin-top: 1.8666667em; + margin-bottom: 1.0666667em; + line-height: 1.3333333; +} + +.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 1.3333333em; + margin-top: 1.6666667em; + margin-bottom: 0.6666667em; + line-height: 1.5; +} + +.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7777778em; + margin-bottom: 0.4444444em; + line-height: 1.5555556; +} + +.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7777778em; + margin-bottom: 1.7777778em; +} + +.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7777778em; + margin-bottom: 1.7777778em; +} + +.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7777778em; + margin-bottom: 1.7777778em; +} + +.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8888889em; + border-radius: 0.3125rem; + padding-top: 0.2222222em; + padding-right: 0.4444444em; + padding-bottom: 0.2222222em; + padding-left: 0.4444444em; +} + +.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8888889em; +} + +.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8666667em; +} + +.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.875em; +} + +.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8888889em; + line-height: 1.75; + margin-top: 2em; + margin-bottom: 2em; + border-radius: 0.375rem; + padding-top: 1em; + padding-right: 1.5em; + padding-bottom: 1em; + padding-left: 1.5em; +} + +.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; + margin-bottom: 1.3333333em; + padding-left: 1.5555556em; +} + +.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; + margin-bottom: 1.3333333em; + padding-left: 1.5555556em; +} + +.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.6666667em; + margin-bottom: 0.6666667em; +} + +.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.4444444em; +} + +.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0.4444444em; +} + +.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; +} + +.prose-lg :where(.prose-lg > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; +} + +.prose-lg :where(.prose-lg > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.3333333em; +} + +.prose-lg :where(.prose-lg > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; +} + +.prose-lg :where(.prose-lg > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.3333333em; +} + +.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; +} + +.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; + margin-bottom: 1.3333333em; +} + +.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.3333333em; +} + +.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.6666667em; + padding-left: 1.5555556em; +} + +.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 3.1111111em; + margin-bottom: 3.1111111em; +} + +.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8888889em; + line-height: 1.5; +} + +.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0.75em; + padding-bottom: 0.75em; + padding-left: 0.75em; +} + +.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-top: 0.75em; + padding-right: 0.75em; + padding-bottom: 0.75em; + padding-left: 0.75em; +} + +.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-left: 0; +} + +.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-right: 0; +} + +.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.7777778em; + margin-bottom: 1.7777778em; +} + +.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-size: 0.8888889em; + line-height: 1.5; + margin-top: 1em; +} + +.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 0; +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} + +.pointer-events-none { + pointer-events: none; +} + +.pointer-events-auto { + pointer-events: auto; +} + +.visible { + visibility: visible; +} + +.invisible { + visibility: hidden; +} + +.collapse { + visibility: collapse; +} + +.static { + position: static; +} + +.fixed { + position: fixed; +} + +.absolute { + position: absolute; +} + +.relative { + position: relative; +} + +.sticky { + position: sticky; +} + +.inset-0 { + inset: 0px; +} + +.inset-4 { + inset: 1rem; +} + +.inset-x-0 { + left: 0px; + right: 0px; +} + +.inset-y-0 { + top: 0px; + bottom: 0px; +} + +.-bottom-1 { + bottom: -0.25rem; +} + +.-top-1 { + top: -0.25rem; +} + +.-top-2 { + top: -0.5rem; +} + +.-top-3 { + top: -0.75rem; +} + +.-top-3\.5 { + top: -0.875rem; +} + +.-top-6 { + top: -1.5rem; +} + +.bottom-0 { + bottom: 0px; +} + +.bottom-2 { + bottom: 0.5rem; +} + +.end-0 { + inset-inline-end: 0px; +} + +.end-4 { + inset-inline-end: 1rem; +} + +.end-6 { + inset-inline-end: 1.5rem; +} + +.left-0 { + left: 0px; +} + +.left-3 { + left: 0.75rem; +} + +.right-0 { + right: 0px; +} + +.right-12 { + right: 3rem; +} + +.right-6 { + right: 1.5rem; +} + +.start-full { + inset-inline-start: 100%; +} + +.top-0 { + top: 0px; +} + +.top-10 { + top: 2.5rem; +} + +.top-14 { + top: 3.5rem; +} + +.top-16 { + top: 4rem; +} + +.top-36 { + top: 9rem; +} + +.top-4 { + top: 1rem; +} + +.top-6 { + top: 1.5rem; +} + +.top-7 { + top: 1.75rem; +} + +.isolate { + isolation: isolate; +} + +.-z-10 { + z-index: -10; +} + +.z-0 { + z-index: 0; +} + +.z-10 { + z-index: 10; +} + +.z-20 { + z-index: 20; +} + +.z-30 { + z-index: 30; +} + +.z-40 { + z-index: 40; +} + +.z-50 { + z-index: 50; +} + +.z-\[1\] { + z-index: 1; +} + +.col-\[--col-span-default\] { + grid-column: var(--col-span-default); +} + +.col-span-1 { + grid-column: span 1 / span 1; +} + +.col-span-2 { + grid-column: span 2 / span 2; +} + +.col-span-3 { + grid-column: span 3 / span 3; +} + +.col-span-6 { + grid-column: span 6 / span 6; +} + +.col-start-2 { + grid-column-start: 2; +} + +.col-start-3 { + grid-column-start: 3; +} + +.col-start-\[--col-start-default\] { + grid-column-start: var(--col-start-default); +} + +.row-span-2 { + grid-row: span 2 / span 2; +} + +.row-start-2 { + grid-row-start: 2; +} + +.-m-0 { + margin: -0px; +} + +.-m-0\.5 { + margin: -0.125rem; +} + +.-m-1 { + margin: -0.25rem; +} + +.-m-1\.5 { + margin: -0.375rem; +} + +.-m-2 { + margin: -0.5rem; +} + +.-m-2\.5 { + margin: -0.625rem; +} + +.-m-3 { + margin: -0.75rem; +} + +.-m-3\.5 { + margin: -0.875rem; +} + +.-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; +} + +.-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; +} + +.-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; +} + +.-mx-4 { + margin-left: -1rem; + margin-right: -1rem; +} + +.-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; +} + +.-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; +} + +.-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; +} + +.-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; +} + +.mx-auto { + margin-left: auto; + margin-right: auto; +} + +.my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; +} + +.my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; +} + +.my-8 { + margin-top: 2rem; + margin-bottom: 2rem; +} + +.\!mt-0 { + margin-top: 0px !important; +} + +.-mb-6 { + margin-bottom: -1.5rem; +} + +.-mb-px { + margin-bottom: -1px; +} + +.-me-2 { + margin-inline-end: -0.5rem; +} + +.-ml-0 { + margin-left: -0px; +} + +.-ml-0\.5 { + margin-left: -0.125rem; +} + +.-ml-1 { + margin-left: -0.25rem; +} + +.-ml-px { + margin-left: -1px; +} + +.-mr-1 { + margin-right: -0.25rem; +} + +.-mr-14 { + margin-right: -3.5rem; +} + +.-ms-0 { + margin-inline-start: -0px; +} + +.-ms-0\.5 { + margin-inline-start: -0.125rem; +} + +.-ms-1 { + margin-inline-start: -0.25rem; +} + +.-ms-2 { + margin-inline-start: -0.5rem; +} + +.-mt-3 { + margin-top: -0.75rem; +} + +.-mt-4 { + margin-top: -1rem; +} + +.-mt-6 { + margin-top: -1.5rem; +} + +.-mt-px { + margin-top: -1px; +} + +.mb-2 { + margin-bottom: 0.5rem; +} + +.mb-3 { + margin-bottom: 0.75rem; +} + +.mb-4 { + margin-bottom: 1rem; +} + +.mb-5 { + margin-bottom: 1.25rem; +} + +.me-1 { + margin-inline-end: 0.25rem; +} + +.ml-1 { + margin-left: 0.25rem; +} + +.ml-1\.5 { + margin-left: 0.375rem; +} + +.ml-2 { + margin-left: 0.5rem; +} + +.ml-2\.5 { + margin-left: 0.625rem; +} + +.ml-3 { + margin-left: 0.75rem; +} + +.ml-4 { + margin-left: 1rem; +} + +.ml-5 { + margin-left: 1.25rem; +} + +.ml-auto { + margin-left: auto; +} + +.mr-1 { + margin-right: 0.25rem; +} + +.mr-1\.5 { + margin-right: 0.375rem; +} + +.mr-2 { + margin-right: 0.5rem; +} + +.mr-3 { + margin-right: 0.75rem; +} + +.mr-4 { + margin-right: 1rem; +} + +.mr-5 { + margin-right: 1.25rem; +} + +.ms-1 { + margin-inline-start: 0.25rem; +} + +.ms-auto { + margin-inline-start: auto; +} + +.mt-0 { + margin-top: 0px; +} + +.mt-0\.5 { + margin-top: 0.125rem; +} + +.mt-1 { + margin-top: 0.25rem; +} + +.mt-10 { + margin-top: 2.5rem; +} + +.mt-2 { + margin-top: 0.5rem; +} + +.mt-2\.5 { + margin-top: 0.625rem; +} + +.mt-3 { + margin-top: 0.75rem; +} + +.mt-4 { + margin-top: 1rem; +} + +.mt-5 { + margin-top: 1.25rem; +} + +.mt-6 { + margin-top: 1.5rem; +} + +.mt-8 { + margin-top: 2rem; +} + +.mt-auto { + margin-top: auto; +} + +.line-clamp-\[--line-clamp\] { + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: var(--line-clamp); +} + +.block { + display: block; +} + +.inline-block { + display: inline-block; +} + +.inline { + display: inline; +} + +.flex { + display: flex; +} + +.inline-flex { + display: inline-flex; +} + +.table { + display: table; +} + +.table-row { + display: table-row; +} + +.grid { + display: grid; +} + +.inline-grid { + display: inline-grid; +} + +.hidden { + display: none; +} + +.aspect-\[1108\/632\] { + aspect-ratio: 1108/632; +} + +.h-0 { + height: 0px; +} + +.h-0\.5 { + height: 0.125rem; +} + +.h-1 { + height: 0.25rem; +} + +.h-1\.5 { + height: 0.375rem; +} + +.h-10 { + height: 2.5rem; +} + +.h-11 { + height: 2.75rem; +} + +.h-12 { + height: 3rem; +} + +.h-16 { + height: 4rem; +} + +.h-2 { + height: 0.5rem; +} + +.h-2\.5 { + height: 0.625rem; +} + +.h-20 { + height: 5rem; +} + +.h-24 { + height: 6rem; +} + +.h-3 { + height: 0.75rem; +} + +.h-3\.5 { + height: 0.875rem; +} + +.h-32 { + height: 8rem; +} + +.h-4 { + height: 1rem; +} + +.h-40 { + height: 10rem; +} + +.h-44 { + height: 11rem; +} + +.h-5 { + height: 1.25rem; +} + +.h-6 { + height: 1.5rem; +} + +.h-64 { + height: 16rem; +} + +.h-7 { + height: 1.75rem; +} + +.h-8 { + height: 2rem; +} + +.h-80 { + height: 20rem; +} + +.h-9 { + height: 2.25rem; +} + +.h-96 { + height: 24rem; +} + +.h-\[100dvh\] { + height: 100dvh; +} + +.h-auto { + height: auto; +} + +.h-dvh { + height: 100dvh; +} + +.h-full { + height: 100%; +} + +.h-screen { + height: 100vh; +} + +.max-h-64 { + max-height: 16rem; +} + +.max-h-96 { + max-height: 24rem; +} + +.min-h-\(screen-content\) { + min-height: calc(100vh - 9.625rem); +} + +.min-h-\[theme\(spacing\.48\)\] { + min-height: 12rem; +} + +.min-h-full { + min-height: 100%; +} + +.min-h-screen { + min-height: 100vh; +} + +.\!w-20 { + width: 5rem !important; +} + +.w-0 { + width: 0px; +} + +.w-1 { + width: 0.25rem; +} + +.w-1\.5 { + width: 0.375rem; +} + +.w-1\/2 { + width: 50%; +} + +.w-1\/3 { + width: 33.333333%; +} + +.w-10 { + width: 2.5rem; +} + +.w-11 { + width: 2.75rem; +} + +.w-12 { + width: 3rem; +} + +.w-14 { + width: 3.5rem; +} + +.w-16 { + width: 4rem; +} + +.w-2 { + width: 0.5rem; +} + +.w-2\.5 { + width: 0.625rem; +} + +.w-20 { + width: 5rem; +} + +.w-24 { + width: 6rem; +} + +.w-3 { + width: 0.75rem; +} + +.w-3\.5 { + width: 0.875rem; +} + +.w-32 { + width: 8rem; +} + +.w-4 { + width: 1rem; +} + +.w-48 { + width: 12rem; +} + +.w-5 { + width: 1.25rem; +} + +.w-56 { + width: 14rem; +} + +.w-6 { + width: 1.5rem; +} + +.w-7 { + width: 1.75rem; +} + +.w-70 { + width: 17.5rem; +} + +.w-8 { + width: 2rem; +} + +.w-80 { + width: 20rem; +} + +.w-9 { + width: 2.25rem; +} + +.w-\[69\.25rem\] { + width: 69.25rem; +} + +.w-auto { + width: auto; +} + +.w-full { + width: 100%; +} + +.w-max { + width: -moz-max-content; + width: max-content; +} + +.w-screen { + width: 100vw; +} + +.min-w-0 { + min-width: 0px; +} + +.min-w-\[theme\(spacing\.4\)\] { + min-width: 1rem; +} + +.min-w-\[theme\(spacing\.5\)\] { + min-width: 1.25rem; +} + +.min-w-\[theme\(spacing\.6\)\] { + min-width: 1.5rem; +} + +.min-w-\[theme\(spacing\.8\)\] { + min-width: 2rem; +} + +.min-w-full { + min-width: 100%; +} + +.\!max-w-2xl { + max-width: 42rem !important; +} + +.\!max-w-3xl { + max-width: 48rem !important; +} + +.\!max-w-4xl { + max-width: 56rem !important; +} + +.\!max-w-5xl { + max-width: 64rem !important; +} + +.\!max-w-6xl { + max-width: 72rem !important; +} + +.\!max-w-7xl { + max-width: 80rem !important; +} + +.\!max-w-\[14rem\] { + max-width: 14rem !important; +} + +.\!max-w-lg { + max-width: 32rem !important; +} + +.\!max-w-md { + max-width: 28rem !important; +} + +.\!max-w-sm { + max-width: 24rem !important; +} + +.\!max-w-xl { + max-width: 36rem !important; +} + +.\!max-w-xs { + max-width: 20rem !important; +} + +.max-w-2xl { + max-width: 42rem; +} + +.max-w-3xl { + max-width: 48rem; +} + +.max-w-4xl { + max-width: 56rem; +} + +.max-w-5xl { + max-width: 64rem; +} + +.max-w-6xl { + max-width: 72rem; +} + +.max-w-7xl { + max-width: 80rem; +} + +.max-w-fit { + max-width: -moz-fit-content; + max-width: fit-content; +} + +.max-w-full { + max-width: 100%; +} + +.max-w-lg { + max-width: 32rem; +} + +.max-w-max { + max-width: -moz-max-content; + max-width: max-content; +} + +.max-w-md { + max-width: 28rem; +} + +.max-w-min { + max-width: -moz-min-content; + max-width: min-content; +} + +.max-w-none { + max-width: none; +} + +.max-w-prose { + max-width: 65ch; +} + +.max-w-screen-2xl { + max-width: 1536px; +} + +.max-w-screen-lg { + max-width: 1024px; +} + +.max-w-screen-md { + max-width: 768px; +} + +.max-w-screen-sm { + max-width: 640px; +} + +.max-w-screen-xl { + max-width: 1280px; +} + +.max-w-sm { + max-width: 24rem; +} + +.max-w-xl { + max-width: 36rem; +} + +.max-w-xs { + max-width: 20rem; +} + +.flex-1 { + flex: 1 1 0%; +} + +.flex-auto { + flex: 1 1 auto; +} + +.flex-none { + flex: none; +} + +.shrink-0 { + flex-shrink: 0; +} + +.flex-grow { + flex-grow: 1; +} + +.grow { + flex-grow: 1; +} + +.table-auto { + table-layout: auto; +} + +.origin-top { + transform-origin: top; +} + +.origin-top-left { + transform-origin: top left; +} + +.origin-top-right { + transform-origin: top right; +} + +.-translate-x-1\/2 { + --tw-translate-x: -50%; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.-translate-x-12 { + --tw-translate-x: -3rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.-translate-x-2 { + --tw-translate-x: -0.5rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.-translate-x-5 { + --tw-translate-x: -1.25rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.-translate-x-full { + --tw-translate-x: -100%; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.-translate-y-12 { + --tw-translate-y: -3rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.-translate-y-2 { + --tw-translate-y: -0.5rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.translate-x-0 { + --tw-translate-x: 0px; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.translate-x-12 { + --tw-translate-x: 3rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.translate-x-2 { + --tw-translate-x: 0.5rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.translate-x-5 { + --tw-translate-x: 1.25rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.translate-x-full { + --tw-translate-x: 100%; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.translate-y-0 { + --tw-translate-y: 0px; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.translate-y-12 { + --tw-translate-y: 3rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.translate-y-4 { + --tw-translate-y: 1rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.-rotate-180 { + --tw-rotate: -180deg; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.rotate-180 { + --tw-rotate: 180deg; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.transform { + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.transform-gpu { + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +@keyframes progress { + 0% { + background-position: -150% 0,-150% 0; + } + + 66% { + background-position: 250% 0,-150% 0; + } + + 100% { + background-position: 250% 0, 250% 0; + } +} + +.animate-progress { + animation: progress 2s ease-in-out infinite; +} + +@keyframes pulse { + 50% { + opacity: .5; + } +} + +.animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; +} + +@keyframes spin { + to { + transform: rotate(360deg); + } +} + +.animate-spin { + animation: spin 1s linear infinite; +} + +.cursor-default { + cursor: default; +} + +.cursor-move { + cursor: move; +} + +.cursor-not-allowed { + cursor: not-allowed; +} + +.cursor-pointer { + cursor: pointer; +} + +.cursor-wait { + cursor: wait; +} + +.select-none { + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; +} + +.resize-none { + resize: none; +} + +.list-inside { + list-style-position: inside; +} + +.list-disc { + list-style-type: disc; +} + +.appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.columns-\[--cols-default\] { + -moz-columns: var(--cols-default); + columns: var(--cols-default); +} + +.break-inside-avoid { + -moz-column-break-inside: avoid; + break-inside: avoid; +} + +.grid-flow-col { + grid-auto-flow: column; +} + +.grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); +} + +.grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); +} + +.grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); +} + +.grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); +} + +.grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); +} + +.grid-cols-\[--cols-default\] { + grid-template-columns: var(--cols-default); +} + +.grid-cols-\[1fr_auto_1fr\] { + grid-template-columns: 1fr auto 1fr; +} + +.grid-cols-\[repeat\(7\2c minmax\(theme\(spacing\.7\)\2c 1fr\)\)\] { + grid-template-columns: repeat(7,minmax(1.75rem,1fr)); +} + +.grid-cols-\[repeat\(auto-fit\2c minmax\(0\2c 1fr\)\)\] { + grid-template-columns: repeat(auto-fit,minmax(0,1fr)); +} + +.grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); +} + +.grid-rows-\[1fr_auto_1fr\] { + grid-template-rows: 1fr auto 1fr; +} + +.flex-row-reverse { + flex-direction: row-reverse; +} + +.flex-col { + flex-direction: column; +} + +.flex-col-reverse { + flex-direction: column-reverse; +} + +.flex-wrap { + flex-wrap: wrap; +} + +.items-start { + align-items: flex-start; +} + +.items-end { + align-items: flex-end; +} + +.items-center { + align-items: center; +} + +.items-baseline { + align-items: baseline; +} + +.items-stretch { + align-items: stretch; +} + +.justify-start { + justify-content: flex-start; +} + +.justify-end { + justify-content: flex-end; +} + +.justify-center { + justify-content: center; +} + +.justify-between { + justify-content: space-between; +} + +.justify-items-start { + justify-items: start; +} + +.justify-items-center { + justify-items: center; +} + +.gap-1 { + gap: 0.25rem; +} + +.gap-1\.5 { + gap: 0.375rem; +} + +.gap-2 { + gap: 0.5rem; +} + +.gap-3 { + gap: 0.75rem; +} + +.gap-4 { + gap: 1rem; +} + +.gap-5 { + gap: 1.25rem; +} + +.gap-6 { + gap: 1.5rem; +} + +.gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; +} + +.gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; +} + +.gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; +} + +.gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; +} + +.gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; +} + +.gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; +} + +.gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; +} + +.gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; +} + +.gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; +} + +.gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; +} + +.gap-y-1 { + row-gap: 0.25rem; +} + +.gap-y-2 { + row-gap: 0.5rem; +} + +.gap-y-3 { + row-gap: 0.75rem; +} + +.gap-y-4 { + row-gap: 1rem; +} + +.gap-y-5 { + row-gap: 1.25rem; +} + +.gap-y-6 { + row-gap: 1.5rem; +} + +.-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); +} + +.space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); +} + +.space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); +} + +.space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); +} + +.space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); +} + +.space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); +} + +.space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); +} + +.space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); +} + +.space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); +} + +.space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); +} + +.space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); +} + +.divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); +} + +.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(var(--gray-100), var(--tw-divide-opacity)); +} + +.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(var(--gray-200), var(--tw-divide-opacity)); +} + +.divide-primary-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-divide-opacity)); +} + +.self-start { + align-self: flex-start; +} + +.self-stretch { + align-self: stretch; +} + +.justify-self-start { + justify-self: start; +} + +.justify-self-end { + justify-self: end; +} + +.justify-self-center { + justify-self: center; +} + +.overflow-auto { + overflow: auto; +} + +.overflow-hidden { + overflow: hidden; +} + +.overflow-visible { + overflow: visible; +} + +.overflow-scroll { + overflow: scroll; +} + +.overflow-x-auto { + overflow-x: auto; +} + +.overflow-y-auto { + overflow-y: auto; +} + +.overflow-y-hidden { + overflow-y: hidden; +} + +.overflow-y-scroll { + overflow-y: scroll; +} + +.scroll-smooth { + scroll-behavior: smooth; +} + +.truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.whitespace-nowrap { + white-space: nowrap; +} + +.break-words { + overflow-wrap: break-word; +} + +.rounded { + border-radius: 0.25rem; +} + +.rounded-full { + border-radius: 9999px; +} + +.rounded-lg { + border-radius: 0.5rem; +} + +.rounded-md { + border-radius: 0.375rem; +} + +.rounded-none { + border-radius: 0px; +} + +.rounded-sm { + border-radius: 0.125rem; +} + +.rounded-xl { + border-radius: 0.75rem; +} + +.rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; +} + +.rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} + +.rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; +} + +.rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; +} + +.rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} + +.rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; +} + +.rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; +} + +.rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; +} + +.rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; +} + +.rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; +} + +.rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; +} + +.rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; +} + +.rounded-bl { + border-bottom-left-radius: 0.25rem; +} + +.rounded-br-2xl { + border-bottom-right-radius: 1rem; +} + +.rounded-tl-2xl { + border-top-left-radius: 1rem; +} + +.rounded-tr-2xl { + border-top-right-radius: 1rem; +} + +.border { + border-width: 1px; +} + +.border-0 { + border-width: 0px; +} + +.border-2 { + border-width: 2px; +} + +.border-4 { + border-width: 4px; +} + +.border-x-\[0\.5px\] { + border-left-width: 0.5px; + border-right-width: 0.5px; +} + +.border-b { + border-bottom-width: 1px; +} + +.border-b-0 { + border-bottom-width: 0px; +} + +.border-b-2 { + border-bottom-width: 2px; +} + +.border-e { + border-inline-end-width: 1px; +} + +.border-l { + border-left-width: 1px; +} + +.border-l-0 { + border-left-width: 0px; +} + +.border-l-2 { + border-left-width: 2px; +} + +.border-l-4 { + border-left-width: 4px; +} + +.border-r { + border-right-width: 1px; +} + +.border-r-0 { + border-right-width: 0px; +} + +.border-s { + border-inline-start-width: 1px; +} + +.border-t { + border-top-width: 1px; +} + +.border-dashed { + border-style: dashed; +} + +.\!border-none { + border-style: none !important; +} + +.border-none { + border-style: none; +} + +.border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-100), var(--tw-border-opacity)); +} + +.border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-200), var(--tw-border-opacity)); +} + +.border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-300), var(--tw-border-opacity)); +} + +.border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-600), var(--tw-border-opacity)); +} + +.border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-700), var(--tw-border-opacity)); +} + +.border-green-400 { + --tw-border-opacity: 1; + border-color: rgb(74 222 128 / var(--tw-border-opacity)); +} + +.border-primary-200 { + --tw-border-opacity: 1; + border-color: rgb(191 219 254 / var(--tw-border-opacity)); +} + +.border-primary-300 { + --tw-border-opacity: 1; + border-color: rgb(147 197 253 / var(--tw-border-opacity)); +} + +.border-primary-400 { + --tw-border-opacity: 1; + border-color: rgb(96 165 250 / var(--tw-border-opacity)); +} + +.border-primary-500 { + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} + +.border-primary-600 { + --tw-border-opacity: 1; + border-color: rgb(37 99 235 / var(--tw-border-opacity)); +} + +.border-red-200 { + --tw-border-opacity: 1; + border-color: rgb(254 202 202 / var(--tw-border-opacity)); +} + +.border-red-400 { + --tw-border-opacity: 1; + border-color: rgb(248 113 113 / var(--tw-border-opacity)); +} + +.border-transparent { + border-color: transparent; +} + +.border-white { + --tw-border-opacity: 1; + border-color: rgb(255 255 255 / var(--tw-border-opacity)); +} + +.border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgb(250 204 21 / var(--tw-border-opacity)); +} + +.border-y-gray-300 { + --tw-border-opacity: 1; + border-top-color: rgba(var(--gray-300), var(--tw-border-opacity)); + border-bottom-color: rgba(var(--gray-300), var(--tw-border-opacity)); +} + +.border-t-gray-200 { + --tw-border-opacity: 1; + border-top-color: rgba(var(--gray-200), var(--tw-border-opacity)); +} + +.border-opacity-75 { + --tw-border-opacity: 0.75; +} + +.\!bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(var(--gray-50), var(--tw-bg-opacity)) !important; +} + +.\!bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(var(--gray-700), var(--tw-bg-opacity)) !important; +} + +.bg-black\/50 { + background-color: rgb(0 0 0 / 0.5); +} + +.bg-custom-100 { + --tw-bg-opacity: 1; + background-color: rgb(219 234 254 / var(--tw-bg-opacity)); +} + +.bg-custom-50 { + --tw-bg-opacity: 1; + background-color: rgb(239 246 255 / var(--tw-bg-opacity)); +} + +.bg-custom-600 { + --tw-bg-opacity: 1; + background-color: rgb(37 99 235 / var(--tw-bg-opacity)); +} + +.bg-danger-100 { + --tw-bg-opacity: 1; + background-color: rgb(254 226 226 / var(--tw-bg-opacity)); +} + +.bg-danger-50 { + --tw-bg-opacity: 1; + background-color: rgb(254 242 242 / var(--tw-bg-opacity)); +} + +.bg-danger-500 { + --tw-bg-opacity: 1; + background-color: rgb(239 68 68 / var(--tw-bg-opacity)); +} + +.bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-100), var(--tw-bg-opacity)); +} + +.bg-gray-100\/50 { + background-color: rgba(var(--gray-100), 0.5); +} + +.bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-200), var(--tw-bg-opacity)); +} + +.bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-400), var(--tw-bg-opacity)); +} + +.bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-50), var(--tw-bg-opacity)); +} + +.bg-gray-50\/50 { + background-color: rgba(var(--gray-50), 0.5); +} + +.bg-gray-50\/70 { + background-color: rgba(var(--gray-50), 0.7); +} + +.bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-500), var(--tw-bg-opacity)); +} + +.bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-600), var(--tw-bg-opacity)); +} + +.bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-700), var(--tw-bg-opacity)); +} + +.bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-800), var(--tw-bg-opacity)); +} + +.bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-900), var(--tw-bg-opacity)); +} + +.bg-gray-950\/50 { + background-color: rgba(var(--gray-950), 0.5); +} + +.bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgb(220 252 231 / var(--tw-bg-opacity)); +} + +.bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgb(134 239 172 / var(--tw-bg-opacity)); +} + +.bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgb(74 222 128 / var(--tw-bg-opacity)); +} + +.bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgb(240 253 244 / var(--tw-bg-opacity)); +} + +.bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgb(22 163 74 / var(--tw-bg-opacity)); +} + +.bg-info-500 { + --tw-bg-opacity: 1; + background-color: rgb(14 165 233 / var(--tw-bg-opacity)); +} + +.bg-orange-100 { + --tw-bg-opacity: 1; + background-color: rgb(255 237 213 / var(--tw-bg-opacity)); +} + +.bg-primary-100 { + --tw-bg-opacity: 1; + background-color: rgb(219 234 254 / var(--tw-bg-opacity)); +} + +.bg-primary-50 { + --tw-bg-opacity: 1; + background-color: rgb(239 246 255 / var(--tw-bg-opacity)); +} + +.bg-primary-500 { + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +.bg-primary-600 { + --tw-bg-opacity: 1; + background-color: rgb(37 99 235 / var(--tw-bg-opacity)); +} + +.bg-primary-900 { + --tw-bg-opacity: 1; + background-color: rgb(30 58 138 / var(--tw-bg-opacity)); +} + +.bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgb(243 232 255 / var(--tw-bg-opacity)); +} + +.bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgb(254 226 226 / var(--tw-bg-opacity)); +} + +.bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgb(252 165 165 / var(--tw-bg-opacity)); +} + +.bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgb(254 242 242 / var(--tw-bg-opacity)); +} + +.bg-transparent { + background-color: transparent; +} + +.bg-white { + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +.bg-white\/0 { + background-color: rgb(255 255 255 / 0); +} + +.bg-white\/5 { + background-color: rgb(255 255 255 / 0.05); +} + +.bg-white\/60 { + background-color: rgb(255 255 255 / 0.6); +} + +.bg-white\/75 { + background-color: rgb(255 255 255 / 0.75); +} + +.bg-white\/80 { + background-color: rgb(255 255 255 / 0.8); +} + +.bg-white\/90 { + background-color: rgb(255 255 255 / 0.9); +} + +.bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgb(254 249 195 / var(--tw-bg-opacity)); +} + +.bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgb(253 224 71 / var(--tw-bg-opacity)); +} + +.bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgb(254 252 232 / var(--tw-bg-opacity)); +} + +.bg-opacity-10 { + --tw-bg-opacity: 0.1; +} + +.bg-opacity-50 { + --tw-bg-opacity: 0.5; +} + +.bg-opacity-75 { + --tw-bg-opacity: 0.75; +} + +.bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); +} + +.bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); +} + +.bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); +} + +.bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); +} + +.from-gray-50 { + --tw-gradient-from: rgba(var(--gray-50), 1) var(--tw-gradient-from-position); + --tw-gradient-to: rgba(var(--gray-50), 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +.from-gray-50\/70 { + --tw-gradient-from: rgba(var(--gray-50), 0.7) var(--tw-gradient-from-position); + --tw-gradient-to: rgba(var(--gray-50), 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +.from-primary-400 { + --tw-gradient-from: #60a5fa var(--tw-gradient-from-position); + --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +.from-primary-500 { + --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position); + --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +.from-primary-600 { + --tw-gradient-from: #2563eb var(--tw-gradient-from-position); + --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +.from-white { + --tw-gradient-from: #fff var(--tw-gradient-from-position); + --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +.to-gray-100 { + --tw-gradient-to: rgba(var(--gray-100), 1) var(--tw-gradient-to-position); +} + +.to-primary-100 { + --tw-gradient-to: #dbeafe var(--tw-gradient-to-position); +} + +.to-primary-600 { + --tw-gradient-to: #2563eb var(--tw-gradient-to-position); +} + +.bg-cover { + background-size: cover; +} + +.bg-center { + background-position: center; +} + +.bg-no-repeat { + background-repeat: no-repeat; +} + +.fill-danger-400 { + fill: #f87171; +} + +.fill-gray-50 { + fill: rgba(var(--gray-50), 1); +} + +.stroke-gray-200 { + stroke: rgba(var(--gray-200), 1); +} + +.object-cover { + -o-object-fit: cover; + object-fit: cover; +} + +.object-center { + -o-object-position: center; + object-position: center; +} + +.p-0 { + padding: 0px; +} + +.p-0\.5 { + padding: 0.125rem; +} + +.p-1 { + padding: 0.25rem; +} + +.p-1\.5 { + padding: 0.375rem; +} + +.p-2 { + padding: 0.5rem; +} + +.p-3 { + padding: 0.75rem; +} + +.p-4 { + padding: 1rem; +} + +.p-5 { + padding: 1.25rem; +} + +.p-6 { + padding: 1.5rem; +} + +.p-8 { + padding: 2rem; +} + +.px-0 { + padding-left: 0px; + padding-right: 0px; +} + +.px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; +} + +.px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; +} + +.px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; +} + +.px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; +} + +.px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; +} + +.px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; +} + +.px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; +} + +.px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; +} + +.px-4 { + padding-left: 1rem; + padding-right: 1rem; +} + +.px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; +} + +.px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; +} + +.py-0 { + padding-top: 0px; + padding-bottom: 0px; +} + +.py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; +} + +.py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; +} + +.py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; +} + +.py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; +} + +.py-12 { + padding-top: 3rem; + padding-bottom: 3rem; +} + +.py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; +} + +.py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; +} + +.py-4 { + padding-top: 1rem; + padding-bottom: 1rem; +} + +.py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; +} + +.py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; +} + +.py-8 { + padding-top: 2rem; + padding-bottom: 2rem; +} + +.pb-0 { + padding-bottom: 0px; +} + +.pb-10 { + padding-bottom: 2.5rem; +} + +.pb-2 { + padding-bottom: 0.5rem; +} + +.pb-4 { + padding-bottom: 1rem; +} + +.pb-5 { + padding-bottom: 1.25rem; +} + +.pb-6 { + padding-bottom: 1.5rem; +} + +.pe-0 { + padding-inline-end: 0px; +} + +.pe-1 { + padding-inline-end: 0.25rem; +} + +.pe-2 { + padding-inline-end: 0.5rem; +} + +.pe-3 { + padding-inline-end: 0.75rem; +} + +.pe-4 { + padding-inline-end: 1rem; +} + +.pe-6 { + padding-inline-end: 1.5rem; +} + +.pe-8 { + padding-inline-end: 2rem; +} + +.pl-10 { + padding-left: 2.5rem; +} + +.pl-16 { + padding-left: 4rem; +} + +.pl-18 { + padding-left: 4.5rem; +} + +.pl-2 { + padding-left: 0.5rem; +} + +.pl-3 { + padding-left: 0.75rem; +} + +.pl-32 { + padding-left: 8rem; +} + +.pl-4 { + padding-left: 1rem; +} + +.pl-5 { + padding-left: 1.25rem; +} + +.pl-6 { + padding-left: 1.5rem; +} + +.pr-10 { + padding-right: 2.5rem; +} + +.pr-12 { + padding-right: 3rem; +} + +.pr-2 { + padding-right: 0.5rem; +} + +.pr-3 { + padding-right: 0.75rem; +} + +.pr-4 { + padding-right: 1rem; +} + +.pr-6 { + padding-right: 1.5rem; +} + +.pr-7 { + padding-right: 1.75rem; +} + +.pr-9 { + padding-right: 2.25rem; +} + +.ps-0 { + padding-inline-start: 0px; +} + +.ps-1 { + padding-inline-start: 0.25rem; +} + +.ps-2 { + padding-inline-start: 0.5rem; +} + +.ps-3 { + padding-inline-start: 0.75rem; +} + +.ps-\[5\.25rem\] { + padding-inline-start: 5.25rem; +} + +.pt-1 { + padding-top: 0.25rem; +} + +.pt-1\.5 { + padding-top: 0.375rem; +} + +.pt-10 { + padding-top: 2.5rem; +} + +.pt-2 { + padding-top: 0.5rem; +} + +.pt-3 { + padding-top: 0.75rem; +} + +.pt-32 { + padding-top: 8rem; +} + +.pt-4 { + padding-top: 1rem; +} + +.pt-5 { + padding-top: 1.25rem; +} + +.pt-6 { + padding-top: 1.5rem; +} + +.pt-8 { + padding-top: 2rem; +} + +.text-left { + text-align: left; +} + +.text-center { + text-align: center; +} + +.text-right { + text-align: right; +} + +.text-justify { + text-align: justify; +} + +.text-start { + text-align: start; +} + +.text-end { + text-align: end; +} + +.align-middle { + vertical-align: middle; +} + +.align-bottom { + vertical-align: bottom; +} + +.font-heading { + font-family: Figtree, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +.font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +.font-sans { + font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} + +.font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; +} + +.text-2xl { + font-size: 1.5rem; + line-height: 2rem; +} + +.text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; +} + +.text-base { + font-size: 1rem; + line-height: 1.5rem; +} + +.text-lg { + font-size: 1.125rem; + line-height: 1.75rem; +} + +.text-sm { + font-size: 0.875rem; + line-height: 1.25rem; +} + +.text-xl { + font-size: 1.25rem; + line-height: 1.75rem; +} + +.text-xs { + font-size: 0.75rem; + line-height: 1rem; +} + +.text-xxs { + font-size: 0.625rem; + line-height: 1rem; +} + +.font-black { + font-weight: 900; +} + +.font-bold { + font-weight: 700; +} + +.font-extrabold { + font-weight: 800; +} + +.font-extralight { + font-weight: 200; +} + +.font-light { + font-weight: 300; +} + +.font-medium { + font-weight: 500; +} + +.font-normal { + font-weight: 400; +} + +.font-semibold { + font-weight: 600; +} + +.font-thin { + font-weight: 100; +} + +.uppercase { + text-transform: uppercase; +} + +.capitalize { + text-transform: capitalize; +} + +.italic { + font-style: italic; +} + +.leading-4 { + line-height: 1rem; +} + +.leading-5 { + line-height: 1.25rem; +} + +.leading-6 { + line-height: 1.5rem; +} + +.leading-7 { + line-height: 1.75rem; +} + +.leading-8 { + line-height: 2rem; +} + +.leading-9 { + line-height: 2.25rem; +} + +.leading-loose { + line-height: 2; +} + +.tracking-tight { + letter-spacing: -0.025em; +} + +.tracking-tighter { + letter-spacing: -0.05em; +} + +.tracking-wider { + letter-spacing: 0.05em; +} + +.text-custom-400 { + --tw-text-opacity: 1; + color: rgb(96 165 250 / var(--tw-text-opacity)); +} + +.text-custom-500 { + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + +.text-custom-600 { + --tw-text-opacity: 1; + color: rgb(37 99 235 / var(--tw-text-opacity)); +} + +.text-custom-700\/50 { + color: rgb(29 78 216 / 0.5); +} + +.text-danger-400 { + --tw-text-opacity: 1; + color: rgb(248 113 113 / var(--tw-text-opacity)); +} + +.text-danger-500 { + --tw-text-opacity: 1; + color: rgb(239 68 68 / var(--tw-text-opacity)); +} + +.text-danger-600 { + --tw-text-opacity: 1; + color: rgb(220 38 38 / var(--tw-text-opacity)); +} + +.text-danger-700 { + --tw-text-opacity: 1; + color: rgb(185 28 28 / var(--tw-text-opacity)); +} + +.text-danger-800 { + --tw-text-opacity: 1; + color: rgb(153 27 27 / var(--tw-text-opacity)); +} + +.text-gray-200 { + --tw-text-opacity: 1; + color: rgba(var(--gray-200), var(--tw-text-opacity)); +} + +.text-gray-300 { + --tw-text-opacity: 1; + color: rgba(var(--gray-300), var(--tw-text-opacity)); +} + +.text-gray-400 { + --tw-text-opacity: 1; + color: rgba(var(--gray-400), var(--tw-text-opacity)); +} + +.text-gray-500 { + --tw-text-opacity: 1; + color: rgba(var(--gray-500), var(--tw-text-opacity)); +} + +.text-gray-600 { + --tw-text-opacity: 1; + color: rgba(var(--gray-600), var(--tw-text-opacity)); +} + +.text-gray-700 { + --tw-text-opacity: 1; + color: rgba(var(--gray-700), var(--tw-text-opacity)); +} + +.text-gray-700\/50 { + color: rgba(var(--gray-700), 0.5); +} + +.text-gray-800 { + --tw-text-opacity: 1; + color: rgba(var(--gray-800), var(--tw-text-opacity)); +} + +.text-gray-900 { + --tw-text-opacity: 1; + color: rgba(var(--gray-900), var(--tw-text-opacity)); +} + +.text-gray-950 { + --tw-text-opacity: 1; + color: rgba(var(--gray-950), var(--tw-text-opacity)); +} + +.text-green-400 { + --tw-text-opacity: 1; + color: rgb(74 222 128 / var(--tw-text-opacity)); +} + +.text-green-500 { + --tw-text-opacity: 1; + color: rgb(34 197 94 / var(--tw-text-opacity)); +} + +.text-green-600 { + --tw-text-opacity: 1; + color: rgb(22 163 74 / var(--tw-text-opacity)); +} + +.text-green-700 { + --tw-text-opacity: 1; + color: rgb(21 128 61 / var(--tw-text-opacity)); +} + +.text-green-800 { + --tw-text-opacity: 1; + color: rgb(22 101 52 / var(--tw-text-opacity)); +} + +.text-info-400 { + --tw-text-opacity: 1; + color: rgb(56 189 248 / var(--tw-text-opacity)); +} + +.text-info-700 { + --tw-text-opacity: 1; + color: rgb(3 105 161 / var(--tw-text-opacity)); +} + +.text-orange-800 { + --tw-text-opacity: 1; + color: rgb(154 52 18 / var(--tw-text-opacity)); +} + +.text-primary-400 { + --tw-text-opacity: 1; + color: rgb(96 165 250 / var(--tw-text-opacity)); +} + +.text-primary-500 { + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + +.text-primary-600 { + --tw-text-opacity: 1; + color: rgb(37 99 235 / var(--tw-text-opacity)); +} + +.text-primary-700 { + --tw-text-opacity: 1; + color: rgb(29 78 216 / var(--tw-text-opacity)); +} + +.text-primary-800 { + --tw-text-opacity: 1; + color: rgb(30 64 175 / var(--tw-text-opacity)); +} + +.text-primary-900 { + --tw-text-opacity: 1; + color: rgb(30 58 138 / var(--tw-text-opacity)); +} + +.text-purple-400 { + --tw-text-opacity: 1; + color: rgb(192 132 252 / var(--tw-text-opacity)); +} + +.text-purple-800 { + --tw-text-opacity: 1; + color: rgb(107 33 168 / var(--tw-text-opacity)); +} + +.text-red-400 { + --tw-text-opacity: 1; + color: rgb(248 113 113 / var(--tw-text-opacity)); +} + +.text-red-500 { + --tw-text-opacity: 1; + color: rgb(239 68 68 / var(--tw-text-opacity)); +} + +.text-red-600 { + --tw-text-opacity: 1; + color: rgb(220 38 38 / var(--tw-text-opacity)); +} + +.text-red-700 { + --tw-text-opacity: 1; + color: rgb(185 28 28 / var(--tw-text-opacity)); +} + +.text-red-800 { + --tw-text-opacity: 1; + color: rgb(153 27 27 / var(--tw-text-opacity)); +} + +.text-white { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + +.text-yellow-300 { + --tw-text-opacity: 1; + color: rgb(253 224 71 / var(--tw-text-opacity)); +} + +.text-yellow-400 { + --tw-text-opacity: 1; + color: rgb(250 204 21 / var(--tw-text-opacity)); +} + +.text-yellow-700 { + --tw-text-opacity: 1; + color: rgb(161 98 7 / var(--tw-text-opacity)); +} + +.text-yellow-800 { + --tw-text-opacity: 1; + color: rgb(133 77 14 / var(--tw-text-opacity)); +} + +.underline { + text-decoration-line: underline; +} + +.antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(var(--gray-500), var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(var(--gray-500), var(--tw-placeholder-opacity)); +} + +.opacity-0 { + opacity: 0; +} + +.opacity-100 { + opacity: 1; +} + +.opacity-20 { + opacity: 0.2; +} + +.opacity-25 { + opacity: 0.25; +} + +.opacity-50 { + opacity: 0.5; +} + +.opacity-70 { + opacity: 0.7; +} + +.opacity-75 { + opacity: 0.75; +} + +.shadow { + --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-lg { + --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-md { + --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); + --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-xl { + --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.outline-none { + outline: 2px solid transparent; + outline-offset: 2px; +} + +.ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-inset { + --tw-ring-inset: inset; +} + +.ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity)); +} + +.ring-custom-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity)); +} + +.ring-custom-600\/10 { + --tw-ring-color: rgb(37 99 235 / 0.1); +} + +.ring-custom-600\/20 { + --tw-ring-color: rgb(37 99 235 / 0.2); +} + +.ring-danger-500\/10 { + --tw-ring-color: rgb(239 68 68 / 0.1); +} + +.ring-danger-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity)); +} + +.ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(var(--gray-200), var(--tw-ring-opacity)); +} + +.ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(var(--gray-300), var(--tw-ring-opacity)); +} + +.ring-gray-600\/10 { + --tw-ring-color: rgba(var(--gray-600), 0.1); +} + +.ring-gray-900\/10 { + --tw-ring-color: rgba(var(--gray-900), 0.1); +} + +.ring-gray-950\/10 { + --tw-ring-color: rgba(var(--gray-950), 0.1); +} + +.ring-gray-950\/5 { + --tw-ring-color: rgba(var(--gray-950), 0.05); +} + +.ring-green-600\/20 { + --tw-ring-color: rgb(22 163 74 / 0.2); +} + +.ring-primary-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); +} + +.ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity)); +} + +.ring-white\/10 { + --tw-ring-color: rgb(255 255 255 / 0.1); +} + +.ring-yellow-600\/20 { + --tw-ring-color: rgb(202 138 4 / 0.2); +} + +.ring-opacity-5 { + --tw-ring-opacity: 0.05; +} + +.blur-3xl { + --tw-blur: blur(64px); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} + +.filter { + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} + +.backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); +} + +.backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); +} + +.backdrop-filter { + -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); +} + +.transition { + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-colors { + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.duration-100 { + transition-duration: 100ms; +} + +.duration-150 { + transition-duration: 150ms; +} + +.duration-200 { + transition-duration: 200ms; +} + +.duration-300 { + transition-duration: 300ms; +} + +.duration-500 { + transition-duration: 500ms; +} + +.duration-75 { + transition-duration: 75ms; +} + +.ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +} + +.ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} + +.ease-linear { + transition-timing-function: linear; +} + +.ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +} + +.\[mask-image\:radial-gradient\(64rem_64rem_at_top\2c white\2c transparent\)\] { + -webkit-mask-image: radial-gradient(64rem 64rem at top,white,transparent); + mask-image: radial-gradient(64rem 64rem at top,white,transparent); +} + +input { + width: 100%; +} + +input[type='number']::-webkit-inner-spin-button { + -webkit-appearance: none; +} + +input[type='number'] { + -moz-appearance: textfield; + -webkit-appearance: textfield; + appearance: textfield; + margin: 0; +} + +::-webkit-scrollbar-track { + background-color: transparent; +} + +.hide-scroll::-webkit-scrollbar { + display: none; +} + +[x-cloak] { + display: none !important; +} + +.primary-menu .active { + background-color: #1e3a8a; +} + +.primary-menu .active:hover, +.primary-menu .active:focus { + background-color: #1e3a8a; +} + +.scrolling::-webkit-scrollbar { + width: 4px; + height: 4px; +} + +.scrolling::-webkit-scrollbar-thumb { + background-color: rgba(var(--gray-200), 1); + border-radius: 8px; +} + +.scrolling::-webkit-scrollbar-thumb:hover { + background-color: rgba(var(--gray-300), 1); +} + +.dark .scrolling::-webkit-scrollbar-thumb { + background-color: rgba(var(--gray-700), 1); +} + +.dark .scrolling::-webkit-scrollbar-thumb:hover { + background-color: rgba(var(--gray-900), 1); +} + +.ui-modal > div > div.fixed { + z-index: 50; + --tw-backdrop-blur: blur(4px); + -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.sidebar > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); +} + +.item-name { + flex: 1 1 0%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.submenu { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + margin-left: 1.25rem; + display: none; +} + +.submenu > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); +} + +.submenu { + border-left-width: 1px; + --tw-border-opacity: 1; + border-color: rgba(var(--gray-200), var(--tw-border-opacity)); + padding-top: 0.625rem; + padding-bottom: 0.625rem; +} + +:is(.dark .submenu) { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-800), var(--tw-border-opacity)); +} + +@media (min-width: 1024px) { + .submenu > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } +} + +.current-group .submenu { + display: block; +} + +.iti { + position: relative; + display: block; +} + +.iti * { + box-sizing: border-box; + -moz-box-sizing: border-box; +} + +.iti__hide { + display: none; +} + +.iti__v-hide { + visibility: hidden; +} + +.iti input, .iti input[type=text], .iti input[type=tel] { + position: relative; + z-index: 0; + margin-top: 0 !important; + margin-bottom: 0 !important; + padding-right: 36px; + margin-right: 0; +} + +.iti__flag-container { + position: absolute; + top: 0; + bottom: 0; + right: 0; + padding: 1px; +} + +.iti__selected-flag { + z-index: 1; + position: relative; + display: flex; + align-items: center; + height: 100%; + padding: 0 10px; +} + +.iti__arrow { + margin-left: 6px; + width: 0; + height: 0; + border-left: 3px solid transparent; + border-right: 3px solid transparent; + border-top: 4px solid #555; +} + +.iti__arrow--up { + border-top: none; + border-bottom: 4px solid #555; +} + +.iti__country-list { + position: absolute; + z-index: 2; + list-style: none; + text-align: left; + padding: 0; + margin: 0 0 0 -1px; + box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); + background-color: white; + border: 1px solid #CCC; + white-space: nowrap; + max-height: 200px; + overflow-y: scroll; + -webkit-overflow-scrolling: touch; +} + +.iti__country-list--dropup { + bottom: 100%; + margin-bottom: -1px; +} + +@media (max-width: 500px) { + .iti__country-list { + white-space: normal; + } +} + +.iti__flag-box { + display: inline-block; + width: 20px; +} + +.iti__divider { + padding-bottom: 5px; + margin-bottom: 5px; + border-bottom: 1px solid #CCC; +} + +.iti__country { + padding: 5px 10px; + outline: none; +} + +.iti__dial-code { + color: #999; +} + +.iti__country.iti__highlight { + background-color: rgba(0, 0, 0, 0.05); +} + +.iti__flag-box, .iti__country-name, .iti__dial-code { + vertical-align: middle; +} + +.iti__flag-box, .iti__country-name { + margin-right: 6px; +} + +.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] { + padding-right: 6px; + padding-left: 52px; + margin-left: 0; +} + +.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container { + right: auto; + left: 0; +} + +.iti--allow-dropdown .iti__flag-container:hover { + cursor: pointer; +} + +.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag { + background-color: rgba(0, 0, 0, 0.05); +} + +.iti--allow-dropdown input[disabled] + .iti__flag-container:hover, +.iti--allow-dropdown input[readonly] + .iti__flag-container:hover { + cursor: default; +} + +.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag, +.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag { + background-color: transparent; +} + +.iti--separate-dial-code .iti__selected-flag { + background-color: rgba(0, 0, 0, 0.05); +} + +.iti--separate-dial-code .iti__selected-dial-code { + margin-left: 6px; +} + +.iti--container { + position: absolute; + top: -1000px; + left: -1000px; + z-index: 1060; + padding: 1px; +} + +.iti--container:hover { + cursor: pointer; +} + +.iti-mobile .iti--container { + top: 30px; + bottom: 30px; + left: 30px; + right: 30px; + position: fixed; +} + +.iti-mobile .iti__country-list { + max-height: 100%; + width: 100%; +} + +.iti-mobile .iti__country { + padding: 10px 10px; + line-height: 1.5em; +} + +.iti__flag { + width: 20px; +} + +.iti__flag.iti__be { + width: 18px; +} + +.iti__flag.iti__ch { + width: 15px; +} + +.iti__flag.iti__mc { + width: 19px; +} + +.iti__flag.iti__ne { + width: 18px; +} + +.iti__flag.iti__np { + width: 13px; +} + +.iti__flag.iti__va { + width: 15px; +} + +@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { + .iti__flag { + background-size: 5652px 15px; + } +} + +.iti__flag.iti__ac { + height: 10px; + background-position: 0px 0px; +} + +.iti__flag.iti__ad { + height: 14px; + background-position: -22px 0px; +} + +.iti__flag.iti__ae { + height: 10px; + background-position: -44px 0px; +} + +.iti__flag.iti__af { + height: 14px; + background-position: -66px 0px; +} + +.iti__flag.iti__ag { + height: 14px; + background-position: -88px 0px; +} + +.iti__flag.iti__ai { + height: 10px; + background-position: -110px 0px; +} + +.iti__flag.iti__al { + height: 15px; + background-position: -132px 0px; +} + +.iti__flag.iti__am { + height: 10px; + background-position: -154px 0px; +} + +.iti__flag.iti__ao { + height: 14px; + background-position: -176px 0px; +} + +.iti__flag.iti__aq { + height: 14px; + background-position: -198px 0px; +} + +.iti__flag.iti__ar { + height: 13px; + background-position: -220px 0px; +} + +.iti__flag.iti__as { + height: 10px; + background-position: -242px 0px; +} + +.iti__flag.iti__at { + height: 14px; + background-position: -264px 0px; +} + +.iti__flag.iti__au { + height: 10px; + background-position: -286px 0px; +} + +.iti__flag.iti__aw { + height: 14px; + background-position: -308px 0px; +} + +.iti__flag.iti__ax { + height: 13px; + background-position: -330px 0px; +} + +.iti__flag.iti__az { + height: 10px; + background-position: -352px 0px; +} + +.iti__flag.iti__ba { + height: 10px; + background-position: -374px 0px; +} + +.iti__flag.iti__bb { + height: 14px; + background-position: -396px 0px; +} + +.iti__flag.iti__bd { + height: 12px; + background-position: -418px 0px; +} + +.iti__flag.iti__be { + height: 15px; + background-position: -440px 0px; +} + +.iti__flag.iti__bf { + height: 14px; + background-position: -460px 0px; +} + +.iti__flag.iti__bg { + height: 12px; + background-position: -482px 0px; +} + +.iti__flag.iti__bh { + height: 12px; + background-position: -504px 0px; +} + +.iti__flag.iti__bi { + height: 12px; + background-position: -526px 0px; +} + +.iti__flag.iti__bj { + height: 14px; + background-position: -548px 0px; +} + +.iti__flag.iti__bl { + height: 14px; + background-position: -570px 0px; +} + +.iti__flag.iti__bm { + height: 10px; + background-position: -592px 0px; +} + +.iti__flag.iti__bn { + height: 10px; + background-position: -614px 0px; +} + +.iti__flag.iti__bo { + height: 14px; + background-position: -636px 0px; +} + +.iti__flag.iti__bq { + height: 14px; + background-position: -658px 0px; +} + +.iti__flag.iti__br { + height: 14px; + background-position: -680px 0px; +} + +.iti__flag.iti__bs { + height: 10px; + background-position: -702px 0px; +} + +.iti__flag.iti__bt { + height: 14px; + background-position: -724px 0px; +} + +.iti__flag.iti__bv { + height: 15px; + background-position: -746px 0px; +} + +.iti__flag.iti__bw { + height: 14px; + background-position: -768px 0px; +} + +.iti__flag.iti__by { + height: 10px; + background-position: -790px 0px; +} + +.iti__flag.iti__bz { + height: 14px; + background-position: -812px 0px; +} + +.iti__flag.iti__ca { + height: 10px; + background-position: -834px 0px; +} + +.iti__flag.iti__cc { + height: 10px; + background-position: -856px 0px; +} + +.iti__flag.iti__cd { + height: 15px; + background-position: -878px 0px; +} + +.iti__flag.iti__cf { + height: 14px; + background-position: -900px 0px; +} + +.iti__flag.iti__cg { + height: 14px; + background-position: -922px 0px; +} + +.iti__flag.iti__ch { + height: 15px; + background-position: -944px 0px; +} + +.iti__flag.iti__ci { + height: 14px; + background-position: -961px 0px; +} + +.iti__flag.iti__ck { + height: 10px; + background-position: -983px 0px; +} + +.iti__flag.iti__cl { + height: 14px; + background-position: -1005px 0px; +} + +.iti__flag.iti__cm { + height: 14px; + background-position: -1027px 0px; +} + +.iti__flag.iti__cn { + height: 14px; + background-position: -1049px 0px; +} + +.iti__flag.iti__co { + height: 14px; + background-position: -1071px 0px; +} + +.iti__flag.iti__cp { + height: 14px; + background-position: -1093px 0px; +} + +.iti__flag.iti__cr { + height: 12px; + background-position: -1115px 0px; +} + +.iti__flag.iti__cu { + height: 10px; + background-position: -1137px 0px; +} + +.iti__flag.iti__cv { + height: 12px; + background-position: -1159px 0px; +} + +.iti__flag.iti__cw { + height: 14px; + background-position: -1181px 0px; +} + +.iti__flag.iti__cx { + height: 10px; + background-position: -1203px 0px; +} + +.iti__flag.iti__cy { + height: 14px; + background-position: -1225px 0px; +} + +.iti__flag.iti__cz { + height: 14px; + background-position: -1247px 0px; +} + +.iti__flag.iti__de { + height: 12px; + background-position: -1269px 0px; +} + +.iti__flag.iti__dg { + height: 10px; + background-position: -1291px 0px; +} + +.iti__flag.iti__dj { + height: 14px; + background-position: -1313px 0px; +} + +.iti__flag.iti__dk { + height: 15px; + background-position: -1335px 0px; +} + +.iti__flag.iti__dm { + height: 10px; + background-position: -1357px 0px; +} + +.iti__flag.iti__do { + height: 14px; + background-position: -1379px 0px; +} + +.iti__flag.iti__dz { + height: 14px; + background-position: -1401px 0px; +} + +.iti__flag.iti__ea { + height: 14px; + background-position: -1423px 0px; +} + +.iti__flag.iti__ec { + height: 14px; + background-position: -1445px 0px; +} + +.iti__flag.iti__ee { + height: 13px; + background-position: -1467px 0px; +} + +.iti__flag.iti__eg { + height: 14px; + background-position: -1489px 0px; +} + +.iti__flag.iti__eh { + height: 10px; + background-position: -1511px 0px; +} + +.iti__flag.iti__er { + height: 10px; + background-position: -1533px 0px; +} + +.iti__flag.iti__es { + height: 14px; + background-position: -1555px 0px; +} + +.iti__flag.iti__et { + height: 10px; + background-position: -1577px 0px; +} + +.iti__flag.iti__eu { + height: 14px; + background-position: -1599px 0px; +} + +.iti__flag.iti__fi { + height: 12px; + background-position: -1621px 0px; +} + +.iti__flag.iti__fj { + height: 10px; + background-position: -1643px 0px; +} + +.iti__flag.iti__fk { + height: 10px; + background-position: -1665px 0px; +} + +.iti__flag.iti__fm { + height: 11px; + background-position: -1687px 0px; +} + +.iti__flag.iti__fo { + height: 15px; + background-position: -1709px 0px; +} + +.iti__flag.iti__fr { + height: 14px; + background-position: -1731px 0px; +} + +.iti__flag.iti__ga { + height: 15px; + background-position: -1753px 0px; +} + +.iti__flag.iti__gb { + height: 10px; + background-position: -1775px 0px; +} + +.iti__flag.iti__gd { + height: 12px; + background-position: -1797px 0px; +} + +.iti__flag.iti__ge { + height: 14px; + background-position: -1819px 0px; +} + +.iti__flag.iti__gf { + height: 14px; + background-position: -1841px 0px; +} + +.iti__flag.iti__gg { + height: 14px; + background-position: -1863px 0px; +} + +.iti__flag.iti__gh { + height: 14px; + background-position: -1885px 0px; +} + +.iti__flag.iti__gi { + height: 10px; + background-position: -1907px 0px; +} + +.iti__flag.iti__gl { + height: 14px; + background-position: -1929px 0px; +} + +.iti__flag.iti__gm { + height: 14px; + background-position: -1951px 0px; +} + +.iti__flag.iti__gn { + height: 14px; + background-position: -1973px 0px; +} + +.iti__flag.iti__gp { + height: 14px; + background-position: -1995px 0px; +} + +.iti__flag.iti__gq { + height: 14px; + background-position: -2017px 0px; +} + +.iti__flag.iti__gr { + height: 14px; + background-position: -2039px 0px; +} + +.iti__flag.iti__gs { + height: 10px; + background-position: -2061px 0px; +} + +.iti__flag.iti__gt { + height: 13px; + background-position: -2083px 0px; +} + +.iti__flag.iti__gu { + height: 11px; + background-position: -2105px 0px; +} + +.iti__flag.iti__gw { + height: 10px; + background-position: -2127px 0px; +} + +.iti__flag.iti__gy { + height: 12px; + background-position: -2149px 0px; +} + +.iti__flag.iti__hk { + height: 14px; + background-position: -2171px 0px; +} + +.iti__flag.iti__hm { + height: 10px; + background-position: -2193px 0px; +} + +.iti__flag.iti__hn { + height: 10px; + background-position: -2215px 0px; +} + +.iti__flag.iti__hr { + height: 10px; + background-position: -2237px 0px; +} + +.iti__flag.iti__ht { + height: 12px; + background-position: -2259px 0px; +} + +.iti__flag.iti__hu { + height: 10px; + background-position: -2281px 0px; +} + +.iti__flag.iti__ic { + height: 14px; + background-position: -2303px 0px; +} + +.iti__flag.iti__id { + height: 14px; + background-position: -2325px 0px; +} + +.iti__flag.iti__ie { + height: 10px; + background-position: -2347px 0px; +} + +.iti__flag.iti__il { + height: 15px; + background-position: -2369px 0px; +} + +.iti__flag.iti__im { + height: 10px; + background-position: -2391px 0px; +} + +.iti__flag.iti__in { + height: 14px; + background-position: -2413px 0px; +} + +.iti__flag.iti__io { + height: 10px; + background-position: -2435px 0px; +} + +.iti__flag.iti__iq { + height: 14px; + background-position: -2457px 0px; +} + +.iti__flag.iti__ir { + height: 12px; + background-position: -2479px 0px; +} + +.iti__flag.iti__is { + height: 15px; + background-position: -2501px 0px; +} + +.iti__flag.iti__it { + height: 14px; + background-position: -2523px 0px; +} + +.iti__flag.iti__je { + height: 12px; + background-position: -2545px 0px; +} + +.iti__flag.iti__jm { + height: 10px; + background-position: -2567px 0px; +} + +.iti__flag.iti__jo { + height: 10px; + background-position: -2589px 0px; +} + +.iti__flag.iti__jp { + height: 14px; + background-position: -2611px 0px; +} + +.iti__flag.iti__ke { + height: 14px; + background-position: -2633px 0px; +} + +.iti__flag.iti__kg { + height: 12px; + background-position: -2655px 0px; +} + +.iti__flag.iti__kh { + height: 13px; + background-position: -2677px 0px; +} + +.iti__flag.iti__ki { + height: 10px; + background-position: -2699px 0px; +} + +.iti__flag.iti__km { + height: 12px; + background-position: -2721px 0px; +} + +.iti__flag.iti__kn { + height: 14px; + background-position: -2743px 0px; +} + +.iti__flag.iti__kp { + height: 10px; + background-position: -2765px 0px; +} + +.iti__flag.iti__kr { + height: 14px; + background-position: -2787px 0px; +} + +.iti__flag.iti__kw { + height: 10px; + background-position: -2809px 0px; +} + +.iti__flag.iti__ky { + height: 10px; + background-position: -2831px 0px; +} + +.iti__flag.iti__kz { + height: 10px; + background-position: -2853px 0px; +} + +.iti__flag.iti__la { + height: 14px; + background-position: -2875px 0px; +} + +.iti__flag.iti__lb { + height: 14px; + background-position: -2897px 0px; +} + +.iti__flag.iti__lc { + height: 10px; + background-position: -2919px 0px; +} + +.iti__flag.iti__li { + height: 12px; + background-position: -2941px 0px; +} + +.iti__flag.iti__lk { + height: 10px; + background-position: -2963px 0px; +} + +.iti__flag.iti__lr { + height: 11px; + background-position: -2985px 0px; +} + +.iti__flag.iti__ls { + height: 14px; + background-position: -3007px 0px; +} + +.iti__flag.iti__lt { + height: 12px; + background-position: -3029px 0px; +} + +.iti__flag.iti__lu { + height: 12px; + background-position: -3051px 0px; +} + +.iti__flag.iti__lv { + height: 10px; + background-position: -3073px 0px; +} + +.iti__flag.iti__ly { + height: 10px; + background-position: -3095px 0px; +} + +.iti__flag.iti__ma { + height: 14px; + background-position: -3117px 0px; +} + +.iti__flag.iti__mc { + height: 15px; + background-position: -3139px 0px; +} + +.iti__flag.iti__md { + height: 10px; + background-position: -3160px 0px; +} + +.iti__flag.iti__me { + height: 10px; + background-position: -3182px 0px; +} + +.iti__flag.iti__mf { + height: 14px; + background-position: -3204px 0px; +} + +.iti__flag.iti__mg { + height: 14px; + background-position: -3226px 0px; +} + +.iti__flag.iti__mh { + height: 11px; + background-position: -3248px 0px; +} + +.iti__flag.iti__mk { + height: 10px; + background-position: -3270px 0px; +} + +.iti__flag.iti__ml { + height: 14px; + background-position: -3292px 0px; +} + +.iti__flag.iti__mm { + height: 14px; + background-position: -3314px 0px; +} + +.iti__flag.iti__mn { + height: 10px; + background-position: -3336px 0px; +} + +.iti__flag.iti__mo { + height: 14px; + background-position: -3358px 0px; +} + +.iti__flag.iti__mp { + height: 10px; + background-position: -3380px 0px; +} + +.iti__flag.iti__mq { + height: 14px; + background-position: -3402px 0px; +} + +.iti__flag.iti__mr { + height: 14px; + background-position: -3424px 0px; +} + +.iti__flag.iti__ms { + height: 10px; + background-position: -3446px 0px; +} + +.iti__flag.iti__mt { + height: 14px; + background-position: -3468px 0px; +} + +.iti__flag.iti__mu { + height: 14px; + background-position: -3490px 0px; +} + +.iti__flag.iti__mv { + height: 14px; + background-position: -3512px 0px; +} + +.iti__flag.iti__mw { + height: 14px; + background-position: -3534px 0px; +} + +.iti__flag.iti__mx { + height: 12px; + background-position: -3556px 0px; +} + +.iti__flag.iti__my { + height: 10px; + background-position: -3578px 0px; +} + +.iti__flag.iti__mz { + height: 14px; + background-position: -3600px 0px; +} + +.iti__flag.iti__na { + height: 14px; + background-position: -3622px 0px; +} + +.iti__flag.iti__nc { + height: 10px; + background-position: -3644px 0px; +} + +.iti__flag.iti__ne { + height: 15px; + background-position: -3666px 0px; +} + +.iti__flag.iti__nf { + height: 10px; + background-position: -3686px 0px; +} + +.iti__flag.iti__ng { + height: 10px; + background-position: -3708px 0px; +} + +.iti__flag.iti__ni { + height: 12px; + background-position: -3730px 0px; +} + +.iti__flag.iti__nl { + height: 14px; + background-position: -3752px 0px; +} + +.iti__flag.iti__no { + height: 15px; + background-position: -3774px 0px; +} + +.iti__flag.iti__np { + height: 15px; + background-position: -3796px 0px; +} + +.iti__flag.iti__nr { + height: 10px; + background-position: -3811px 0px; +} + +.iti__flag.iti__nu { + height: 10px; + background-position: -3833px 0px; +} + +.iti__flag.iti__nz { + height: 10px; + background-position: -3855px 0px; +} + +.iti__flag.iti__om { + height: 10px; + background-position: -3877px 0px; +} + +.iti__flag.iti__pa { + height: 14px; + background-position: -3899px 0px; +} + +.iti__flag.iti__pe { + height: 14px; + background-position: -3921px 0px; +} + +.iti__flag.iti__pf { + height: 14px; + background-position: -3943px 0px; +} + +.iti__flag.iti__pg { + height: 15px; + background-position: -3965px 0px; +} + +.iti__flag.iti__ph { + height: 10px; + background-position: -3987px 0px; +} + +.iti__flag.iti__pk { + height: 14px; + background-position: -4009px 0px; +} + +.iti__flag.iti__pl { + height: 13px; + background-position: -4031px 0px; +} + +.iti__flag.iti__pm { + height: 14px; + background-position: -4053px 0px; +} + +.iti__flag.iti__pn { + height: 10px; + background-position: -4075px 0px; +} + +.iti__flag.iti__pr { + height: 14px; + background-position: -4097px 0px; +} + +.iti__flag.iti__ps { + height: 10px; + background-position: -4119px 0px; +} + +.iti__flag.iti__pt { + height: 14px; + background-position: -4141px 0px; +} + +.iti__flag.iti__pw { + height: 13px; + background-position: -4163px 0px; +} + +.iti__flag.iti__py { + height: 11px; + background-position: -4185px 0px; +} + +.iti__flag.iti__qa { + height: 8px; + background-position: -4207px 0px; +} + +.iti__flag.iti__re { + height: 14px; + background-position: -4229px 0px; +} + +.iti__flag.iti__ro { + height: 14px; + background-position: -4251px 0px; +} + +.iti__flag.iti__rs { + height: 14px; + background-position: -4273px 0px; +} + +.iti__flag.iti__ru { + height: 14px; + background-position: -4295px 0px; +} + +.iti__flag.iti__rw { + height: 14px; + background-position: -4317px 0px; +} + +.iti__flag.iti__sa { + height: 14px; + background-position: -4339px 0px; +} + +.iti__flag.iti__sb { + height: 10px; + background-position: -4361px 0px; +} + +.iti__flag.iti__sc { + height: 10px; + background-position: -4383px 0px; +} + +.iti__flag.iti__sd { + height: 10px; + background-position: -4405px 0px; +} + +.iti__flag.iti__se { + height: 13px; + background-position: -4427px 0px; +} + +.iti__flag.iti__sg { + height: 14px; + background-position: -4449px 0px; +} + +.iti__flag.iti__sh { + height: 10px; + background-position: -4471px 0px; +} + +.iti__flag.iti__si { + height: 10px; + background-position: -4493px 0px; +} + +.iti__flag.iti__sj { + height: 15px; + background-position: -4515px 0px; +} + +.iti__flag.iti__sk { + height: 14px; + background-position: -4537px 0px; +} + +.iti__flag.iti__sl { + height: 14px; + background-position: -4559px 0px; +} + +.iti__flag.iti__sm { + height: 15px; + background-position: -4581px 0px; +} + +.iti__flag.iti__sn { + height: 14px; + background-position: -4603px 0px; +} + +.iti__flag.iti__so { + height: 14px; + background-position: -4625px 0px; +} + +.iti__flag.iti__sr { + height: 14px; + background-position: -4647px 0px; +} + +.iti__flag.iti__ss { + height: 10px; + background-position: -4669px 0px; +} + +.iti__flag.iti__st { + height: 10px; + background-position: -4691px 0px; +} + +.iti__flag.iti__sv { + height: 12px; + background-position: -4713px 0px; +} + +.iti__flag.iti__sx { + height: 14px; + background-position: -4735px 0px; +} + +.iti__flag.iti__sy { + height: 14px; + background-position: -4757px 0px; +} + +.iti__flag.iti__sz { + height: 14px; + background-position: -4779px 0px; +} + +.iti__flag.iti__ta { + height: 10px; + background-position: -4801px 0px; +} + +.iti__flag.iti__tc { + height: 10px; + background-position: -4823px 0px; +} + +.iti__flag.iti__td { + height: 14px; + background-position: -4845px 0px; +} + +.iti__flag.iti__tf { + height: 14px; + background-position: -4867px 0px; +} + +.iti__flag.iti__tg { + height: 13px; + background-position: -4889px 0px; +} + +.iti__flag.iti__th { + height: 14px; + background-position: -4911px 0px; +} + +.iti__flag.iti__tj { + height: 10px; + background-position: -4933px 0px; +} + +.iti__flag.iti__tk { + height: 10px; + background-position: -4955px 0px; +} + +.iti__flag.iti__tl { + height: 10px; + background-position: -4977px 0px; +} + +.iti__flag.iti__tm { + height: 14px; + background-position: -4999px 0px; +} + +.iti__flag.iti__tn { + height: 14px; + background-position: -5021px 0px; +} + +.iti__flag.iti__to { + height: 10px; + background-position: -5043px 0px; +} + +.iti__flag.iti__tr { + height: 14px; + background-position: -5065px 0px; +} + +.iti__flag.iti__tt { + height: 12px; + background-position: -5087px 0px; +} + +.iti__flag.iti__tv { + height: 10px; + background-position: -5109px 0px; +} + +.iti__flag.iti__tw { + height: 14px; + background-position: -5131px 0px; +} + +.iti__flag.iti__tz { + height: 14px; + background-position: -5153px 0px; +} + +.iti__flag.iti__ua { + height: 14px; + background-position: -5175px 0px; +} + +.iti__flag.iti__ug { + height: 14px; + background-position: -5197px 0px; +} + +.iti__flag.iti__um { + height: 11px; + background-position: -5219px 0px; +} + +.iti__flag.iti__un { + height: 14px; + background-position: -5241px 0px; +} + +.iti__flag.iti__us { + height: 11px; + background-position: -5263px 0px; +} + +.iti__flag.iti__uy { + height: 14px; + background-position: -5285px 0px; +} + +.iti__flag.iti__uz { + height: 10px; + background-position: -5307px 0px; +} + +.iti__flag.iti__va { + height: 15px; + background-position: -5329px 0px; +} + +.iti__flag.iti__vc { + height: 14px; + background-position: -5346px 0px; +} + +.iti__flag.iti__ve { + height: 14px; + background-position: -5368px 0px; +} + +.iti__flag.iti__vg { + height: 10px; + background-position: -5390px 0px; +} + +.iti__flag.iti__vi { + height: 14px; + background-position: -5412px 0px; +} + +.iti__flag.iti__vn { + height: 14px; + background-position: -5434px 0px; +} + +.iti__flag.iti__vu { + height: 12px; + background-position: -5456px 0px; +} + +.iti__flag.iti__wf { + height: 14px; + background-position: -5478px 0px; +} + +.iti__flag.iti__ws { + height: 10px; + background-position: -5500px 0px; +} + +.iti__flag.iti__xk { + height: 15px; + background-position: -5522px 0px; +} + +.iti__flag.iti__ye { + height: 14px; + background-position: -5544px 0px; +} + +.iti__flag.iti__yt { + height: 14px; + background-position: -5566px 0px; +} + +.iti__flag.iti__za { + height: 14px; + background-position: -5588px 0px; +} + +.iti__flag.iti__zm { + height: 14px; + background-position: -5610px 0px; +} + +.iti__flag.iti__zw { + height: 10px; + background-position: -5632px 0px; +} + +.iti__flag { + height: 15px; + box-shadow: 0px 0px 1px 0px #888; + background-image: url("/shopper/img/flags.png"); + background-repeat: no-repeat; + background-color: #DBDBDB; + background-position: 20px 0; +} + +@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { + .iti__flag { + background-image: url("/shopper/img/flags@2x.png"); + } +} + +.iti__flag.iti__np { + background-color: transparent; +} + +:is(.dark .dark\:prose-invert) { + --tw-prose-body: var(--tw-prose-invert-body); + --tw-prose-headings: var(--tw-prose-invert-headings); + --tw-prose-lead: var(--tw-prose-invert-lead); + --tw-prose-links: var(--tw-prose-invert-links); + --tw-prose-bold: var(--tw-prose-invert-bold); + --tw-prose-counters: var(--tw-prose-invert-counters); + --tw-prose-bullets: var(--tw-prose-invert-bullets); + --tw-prose-hr: var(--tw-prose-invert-hr); + --tw-prose-quotes: var(--tw-prose-invert-quotes); + --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders); + --tw-prose-captions: var(--tw-prose-invert-captions); + --tw-prose-kbd: var(--tw-prose-invert-kbd); + --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows); + --tw-prose-code: var(--tw-prose-invert-code); + --tw-prose-pre-code: var(--tw-prose-invert-pre-code); + --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg); + --tw-prose-th-borders: var(--tw-prose-invert-th-borders); + --tw-prose-td-borders: var(--tw-prose-invert-td-borders); +} + +.placeholder\:text-gray-400::-moz-placeholder { + --tw-text-opacity: 1; + color: rgba(var(--gray-400), var(--tw-text-opacity)); +} + +.placeholder\:text-gray-400::placeholder { + --tw-text-opacity: 1; + color: rgba(var(--gray-400), var(--tw-text-opacity)); +} + +.before\:absolute::before { + content: var(--tw-content); + position: absolute; +} + +.before\:start-0::before { + content: var(--tw-content); + inset-inline-start: 0px; +} + +.before\:h-full::before { + content: var(--tw-content); + height: 100%; +} + +.before\:w-0::before { + content: var(--tw-content); + width: 0px; +} + +.before\:w-0\.5::before { + content: var(--tw-content); + width: 0.125rem; +} + +.before\:bg-primary-600::before { + content: var(--tw-content); + --tw-bg-opacity: 1; + background-color: rgb(37 99 235 / var(--tw-bg-opacity)); +} + +.first\:border-s-0:first-child { + border-inline-start-width: 0px; +} + +.last\:border-e-0:last-child { + border-inline-end-width: 0px; +} + +.checked\:ring-0:checked { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:z-10:focus-within { + z-index: 10; +} + +.focus-within\:opacity-100:focus-within { + opacity: 1; +} + +.hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-300), var(--tw-border-opacity)); +} + +.hover\:border-primary-200:hover { + --tw-border-opacity: 1; + border-color: rgb(191 219 254 / var(--tw-border-opacity)); +} + +.hover\:border-primary-300:hover { + --tw-border-opacity: 1; + border-color: rgb(147 197 253 / var(--tw-border-opacity)); +} + +.hover\:bg-custom-400\/10:hover { + background-color: rgb(96 165 250 / 0.1); +} + +.hover\:bg-custom-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(239 246 255 / var(--tw-bg-opacity)); +} + +.hover\:bg-custom-500:hover { + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +.hover\:bg-danger-100:hover { + --tw-bg-opacity: 1; + background-color: rgb(254 226 226 / var(--tw-bg-opacity)); +} + +.hover\:bg-danger-600:hover { + --tw-bg-opacity: 1; + background-color: rgb(220 38 38 / var(--tw-bg-opacity)); +} + +.hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-100), var(--tw-bg-opacity)); +} + +.hover\:bg-gray-100\/50:hover { + background-color: rgba(var(--gray-100), 0.5); +} + +.hover\:bg-gray-400\/10:hover { + background-color: rgba(var(--gray-400), 0.1); +} + +.hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-50), var(--tw-bg-opacity)); +} + +.hover\:bg-primary-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(239 246 255 / var(--tw-bg-opacity)); +} + +.hover\:bg-primary-700:hover { + --tw-bg-opacity: 1; + background-color: rgb(29 78 216 / var(--tw-bg-opacity)); +} + +.hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(254 242 242 / var(--tw-bg-opacity)); +} + +.hover\:bg-white\/75:hover { + background-color: rgb(255 255 255 / 0.75); +} + +.hover\:text-custom-600:hover { + --tw-text-opacity: 1; + color: rgb(37 99 235 / var(--tw-text-opacity)); +} + +.hover\:text-custom-700\/75:hover { + color: rgb(29 78 216 / 0.75); +} + +.hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(var(--gray-100), var(--tw-text-opacity)); +} + +.hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(var(--gray-400), var(--tw-text-opacity)); +} + +.hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(var(--gray-500), var(--tw-text-opacity)); +} + +.hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(var(--gray-600), var(--tw-text-opacity)); +} + +.hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(var(--gray-700), var(--tw-text-opacity)); +} + +.hover\:text-gray-700\/75:hover { + color: rgba(var(--gray-700), 0.75); +} + +.hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(var(--gray-900), var(--tw-text-opacity)); +} + +.hover\:text-info-600:hover { + --tw-text-opacity: 1; + color: rgb(2 132 199 / var(--tw-text-opacity)); +} + +.hover\:text-primary-400:hover { + --tw-text-opacity: 1; + color: rgb(96 165 250 / var(--tw-text-opacity)); +} + +.hover\:text-primary-500:hover { + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + +.hover\:text-primary-600:hover { + --tw-text-opacity: 1; + color: rgb(37 99 235 / var(--tw-text-opacity)); +} + +.hover\:text-primary-700:hover { + --tw-text-opacity: 1; + color: rgb(29 78 216 / var(--tw-text-opacity)); +} + +.hover\:text-primary-800:hover { + --tw-text-opacity: 1; + color: rgb(30 64 175 / var(--tw-text-opacity)); +} + +.hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgb(239 68 68 / var(--tw-text-opacity)); +} + +.hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgb(185 28 28 / var(--tw-text-opacity)); +} + +.hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgb(202 138 4 / var(--tw-text-opacity)); +} + +.hover\:underline:hover { + text-decoration-line: underline; +} + +.hover\:opacity-100:hover { + opacity: 1; +} + +.hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); + --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:z-10:focus { + z-index: 10; +} + +.focus\:border-danger-700:focus { + --tw-border-opacity: 1; + border-color: rgb(185 28 28 / var(--tw-border-opacity)); +} + +.focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-300), var(--tw-border-opacity)); +} + +.focus\:border-primary-300:focus { + --tw-border-opacity: 1; + border-color: rgb(147 197 253 / var(--tw-border-opacity)); +} + +.focus\:border-primary-500:focus { + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} + +.focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgb(252 165 165 / var(--tw-border-opacity)); +} + +.focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-100), var(--tw-bg-opacity)); +} + +.focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-50), var(--tw-bg-opacity)); +} + +.focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-500), var(--tw-bg-opacity)); +} + +.focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-600), var(--tw-bg-opacity)); +} + +.focus\:bg-primary-900:focus { + --tw-bg-opacity: 1; + background-color: rgb(30 58 138 / var(--tw-bg-opacity)); +} + +.focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(var(--gray-100), var(--tw-text-opacity)); +} + +.focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(var(--gray-500), var(--tw-text-opacity)); +} + +.focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(var(--gray-600), var(--tw-text-opacity)); +} + +.focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(var(--gray-900), var(--tw-text-opacity)); +} + +.focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgb(185 28 28 / var(--tw-text-opacity)); +} + +.focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + +.focus\:underline:focus { + text-decoration-line: underline; +} + +.focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; +} + +.focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-danger-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity)); +} + +.focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(var(--gray-500), var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity)); +} + +.focus\:ring-primary-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity)); +} + +.focus\:ring-primary-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); +} + +.focus\:ring-primary-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity)); +} + +.focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; +} + +.focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; +} + +.focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; +} + +.focus\:ring-offset-primary-50:focus { + --tw-ring-offset-color: #eff6ff; +} + +.focus\:ring-offset-primary-800:focus { + --tw-ring-offset-color: #1e40af; +} + +.checked\:focus\:ring-danger-500\/50:focus:checked { + --tw-ring-color: rgb(239 68 68 / 0.5); +} + +.checked\:focus\:ring-primary-500\/50:focus:checked { + --tw-ring-color: rgb(59 130 246 / 0.5); +} + +.focus-visible\:z-10:focus-visible { + z-index: 10; +} + +.focus-visible\:border-primary-500:focus-visible { + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} + +.focus-visible\:bg-custom-50:focus-visible { + --tw-bg-opacity: 1; + background-color: rgb(239 246 255 / var(--tw-bg-opacity)); +} + +.focus-visible\:bg-gray-50:focus-visible { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-50), var(--tw-bg-opacity)); +} + +.focus-visible\:text-custom-700\/75:focus-visible { + color: rgb(29 78 216 / 0.75); +} + +.focus-visible\:text-gray-700\/75:focus-visible { + color: rgba(var(--gray-700), 0.75); +} + +.focus-visible\:outline-none:focus-visible { + outline: 2px solid transparent; + outline-offset: 2px; +} + +.focus-visible\:ring-1:focus-visible { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-visible\:ring-2:focus-visible { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-visible\:ring-inset:focus-visible { + --tw-ring-inset: inset; +} + +.focus-visible\:ring-custom-500\/50:focus-visible { + --tw-ring-color: rgb(59 130 246 / 0.5); +} + +.focus-visible\:ring-custom-600:focus-visible { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity)); +} + +.focus-visible\:ring-gray-400\/40:focus-visible { + --tw-ring-color: rgba(var(--gray-400), 0.4); +} + +.focus-visible\:ring-primary-500:focus-visible { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); +} + +.focus-visible\:ring-primary-600:focus-visible { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity)); +} + +.active\:bg-primary-200:active { + --tw-bg-opacity: 1; + background-color: rgb(191 219 254 / var(--tw-bg-opacity)); +} + +.active\:bg-red-200:active { + --tw-bg-opacity: 1; + background-color: rgb(254 202 202 / var(--tw-bg-opacity)); +} + +.enabled\:cursor-wait:enabled { + cursor: wait; +} + +.enabled\:opacity-70:enabled { + opacity: 0.7; +} + +.disabled\:pointer-events-none:disabled { + pointer-events: none; +} + +.disabled\:bg-gray-50:disabled { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-50), var(--tw-bg-opacity)); +} + +.disabled\:text-gray-50:disabled { + --tw-text-opacity: 1; + color: rgba(var(--gray-50), var(--tw-text-opacity)); +} + +.disabled\:text-gray-500:disabled { + --tw-text-opacity: 1; + color: rgba(var(--gray-500), var(--tw-text-opacity)); +} + +.disabled\:opacity-50:disabled { + opacity: 0.5; +} + +.disabled\:opacity-70:disabled { + opacity: 0.7; +} + +.disabled\:\[-webkit-text-fill-color\:theme\(colors\.gray\.500\)\]:disabled { + -webkit-text-fill-color: rgba(var(--gray-500), 1); +} + +.disabled\:placeholder\:\[-webkit-text-fill-color\:theme\(colors\.gray\.400\)\]:disabled::-moz-placeholder { + -webkit-text-fill-color: rgba(var(--gray-400), 1); +} + +.disabled\:placeholder\:\[-webkit-text-fill-color\:theme\(colors\.gray\.400\)\]:disabled::placeholder { + -webkit-text-fill-color: rgba(var(--gray-400), 1); +} + +.disabled\:checked\:bg-current:checked:disabled { + background-color: currentColor; +} + +.disabled\:checked\:text-gray-400:checked:disabled { + --tw-text-opacity: 1; + color: rgba(var(--gray-400), var(--tw-text-opacity)); +} + +.group\/item:first-child .group-first\/item\:rounded-s-lg { + border-start-start-radius: 0.5rem; + border-end-start-radius: 0.5rem; +} + +.group\/item:last-child .group-last\/item\:rounded-e-lg { + border-start-end-radius: 0.5rem; + border-end-end-radius: 0.5rem; +} + +.group:hover .group-hover\:translate-x-1 { + --tw-translate-x: 0.25rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.group\/button:hover .group-hover\/button\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(var(--gray-500), var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(var(--gray-400), var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(var(--gray-500), var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(var(--gray-700), var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-primary-400 { + --tw-text-opacity: 1; + color: rgb(96 165 250 / var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-primary-500 { + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + +.group\/item:hover .group-hover\/item\:underline { + text-decoration-line: underline; +} + +.group\/link:hover .group-hover\/link\:underline { + text-decoration-line: underline; +} + +.group:focus .group-focus\:border-primary-300 { + --tw-border-opacity: 1; + border-color: rgb(147 197 253 / var(--tw-border-opacity)); +} + +.group:focus-visible .group-focus-visible\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(var(--gray-700), var(--tw-text-opacity)); +} + +.group\/item:focus-visible .group-focus-visible\/item\:underline { + text-decoration-line: underline; +} + +.group\/link:focus-visible .group-focus-visible\/link\:underline { + text-decoration-line: underline; +} + +:is(.dark .dark\:flex) { + display: flex; +} + +:is(.dark .dark\:hidden) { + display: none; +} + +:is(.dark .dark\:translate-x-5) { + --tw-translate-x: 1.25rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +:is(.dark .dark\:divide-gray-600) > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(var(--gray-600), var(--tw-divide-opacity)); +} + +:is(.dark .dark\:divide-gray-700) > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(var(--gray-700), var(--tw-divide-opacity)); +} + +:is(.dark .dark\:divide-white\/10) > :not([hidden]) ~ :not([hidden]) { + border-color: rgb(255 255 255 / 0.1); +} + +:is(.dark .dark\:divide-white\/5) > :not([hidden]) ~ :not([hidden]) { + border-color: rgb(255 255 255 / 0.05); +} + +:is(.dark .dark\:border-gray-600) { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-600), var(--tw-border-opacity)); +} + +:is(.dark .dark\:border-gray-700) { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-700), var(--tw-border-opacity)); +} + +:is(.dark .dark\:border-gray-700\/50) { + border-color: rgba(var(--gray-700), 0.5); +} + +:is(.dark .dark\:border-gray-800) { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-800), var(--tw-border-opacity)); +} + +:is(.dark .dark\:border-primary-500) { + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} + +:is(.dark .dark\:border-transparent) { + border-color: transparent; +} + +:is(.dark .dark\:border-white\/10) { + border-color: rgb(255 255 255 / 0.1); +} + +:is(.dark .dark\:border-t-white\/10) { + border-top-color: rgb(255 255 255 / 0.1); +} + +:is(.dark .dark\:\!bg-gray-700) { + --tw-bg-opacity: 1 !important; + background-color: rgba(var(--gray-700), var(--tw-bg-opacity)) !important; +} + +:is(.dark .dark\:bg-custom-400\/10) { + background-color: rgb(96 165 250 / 0.1); +} + +:is(.dark .dark\:bg-custom-500) { + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +:is(.dark .dark\:bg-custom-500\/20) { + background-color: rgb(59 130 246 / 0.2); +} + +:is(.dark .dark\:bg-danger-400\/10) { + background-color: rgb(248 113 113 / 0.1); +} + +:is(.dark .dark\:bg-danger-800\/20) { + background-color: rgb(153 27 27 / 0.2); +} + +:is(.dark .dark\:bg-gray-400\/10) { + background-color: rgba(var(--gray-400), 0.1); +} + +:is(.dark .dark\:bg-gray-500) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-500), var(--tw-bg-opacity)); +} + +:is(.dark .dark\:bg-gray-500\/20) { + background-color: rgba(var(--gray-500), 0.2); +} + +:is(.dark .dark\:bg-gray-600) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-600), var(--tw-bg-opacity)); +} + +:is(.dark .dark\:bg-gray-700) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-700), var(--tw-bg-opacity)); +} + +:is(.dark .dark\:bg-gray-700\/50) { + background-color: rgba(var(--gray-700), 0.5); +} + +:is(.dark .dark\:bg-gray-700\/70) { + background-color: rgba(var(--gray-700), 0.7); +} + +:is(.dark .dark\:bg-gray-800) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-800), var(--tw-bg-opacity)); +} + +:is(.dark .dark\:bg-gray-800\/80) { + background-color: rgba(var(--gray-800), 0.8); +} + +:is(.dark .dark\:bg-gray-800\/90) { + background-color: rgba(var(--gray-800), 0.9); +} + +:is(.dark .dark\:bg-gray-900) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-900), var(--tw-bg-opacity)); +} + +:is(.dark .dark\:bg-gray-900\/30) { + background-color: rgba(var(--gray-900), 0.3); +} + +:is(.dark .dark\:bg-gray-900\/50) { + background-color: rgba(var(--gray-900), 0.5); +} + +:is(.dark .dark\:bg-gray-900\/80) { + background-color: rgba(var(--gray-900), 0.8); +} + +:is(.dark .dark\:bg-gray-950) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-950), var(--tw-bg-opacity)); +} + +:is(.dark .dark\:bg-gray-950\/75) { + background-color: rgba(var(--gray-950), 0.75); +} + +:is(.dark .dark\:bg-green-500\/10) { + background-color: rgb(34 197 94 / 0.1); +} + +:is(.dark .dark\:bg-primary-500) { + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +:is(.dark .dark\:bg-primary-600\/10) { + background-color: rgb(37 99 235 / 0.1); +} + +:is(.dark .dark\:bg-primary-800\/20) { + background-color: rgb(30 64 175 / 0.2); +} + +:is(.dark .dark\:bg-transparent) { + background-color: transparent; +} + +:is(.dark .dark\:bg-white\/5) { + background-color: rgb(255 255 255 / 0.05); +} + +:is(.dark .dark\:bg-opacity-70) { + --tw-bg-opacity: 0.7; +} + +:is(.dark .dark\:from-gray-600) { + --tw-gradient-from: rgba(var(--gray-600), 1) var(--tw-gradient-from-position); + --tw-gradient-to: rgba(var(--gray-600), 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +:is(.dark .dark\:from-gray-800\/60) { + --tw-gradient-from: rgba(var(--gray-800), 0.6) var(--tw-gradient-from-position); + --tw-gradient-to: rgba(var(--gray-800), 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +:is(.dark .dark\:from-gray-900) { + --tw-gradient-from: rgba(var(--gray-900), 1) var(--tw-gradient-from-position); + --tw-gradient-to: rgba(var(--gray-900), 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +:is(.dark .dark\:from-primary-200) { + --tw-gradient-from: #bfdbfe var(--tw-gradient-from-position); + --tw-gradient-to: rgb(191 219 254 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +:is(.dark .dark\:to-gray-700) { + --tw-gradient-to: rgba(var(--gray-700), 1) var(--tw-gradient-to-position); +} + +:is(.dark .dark\:to-primary-500) { + --tw-gradient-to: #3b82f6 var(--tw-gradient-to-position); +} + +:is(.dark .dark\:to-primary-600\/10) { + --tw-gradient-to: rgb(37 99 235 / 0.1) var(--tw-gradient-to-position); +} + +:is(.dark .dark\:fill-current) { + fill: currentColor; +} + +:is(.dark .dark\:fill-gray-900) { + fill: rgba(var(--gray-900), 1); +} + +:is(.dark .dark\:stroke-gray-900) { + stroke: rgba(var(--gray-900), 1); +} + +:is(.dark .dark\:text-custom-300\/50) { + color: rgb(147 197 253 / 0.5); +} + +:is(.dark .dark\:text-custom-400) { + --tw-text-opacity: 1; + color: rgb(96 165 250 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-danger-400) { + --tw-text-opacity: 1; + color: rgb(248 113 113 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-danger-500) { + --tw-text-opacity: 1; + color: rgb(239 68 68 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-gray-200) { + --tw-text-opacity: 1; + color: rgba(var(--gray-200), var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-gray-300) { + --tw-text-opacity: 1; + color: rgba(var(--gray-300), var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-gray-300\/50) { + color: rgba(var(--gray-300), 0.5); +} + +:is(.dark .dark\:text-gray-400) { + --tw-text-opacity: 1; + color: rgba(var(--gray-400), var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-gray-500) { + --tw-text-opacity: 1; + color: rgba(var(--gray-500), var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-gray-600) { + --tw-text-opacity: 1; + color: rgba(var(--gray-600), var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-gray-700) { + --tw-text-opacity: 1; + color: rgba(var(--gray-700), var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-green-400) { + --tw-text-opacity: 1; + color: rgb(74 222 128 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-green-500\/50) { + color: rgb(34 197 94 / 0.5); +} + +:is(.dark .dark\:text-primary-400) { + --tw-text-opacity: 1; + color: rgb(96 165 250 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-primary-500) { + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-primary-500\/50) { + color: rgb(59 130 246 / 0.5); +} + +:is(.dark .dark\:text-red-400) { + --tw-text-opacity: 1; + color: rgb(248 113 113 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-red-500) { + --tw-text-opacity: 1; + color: rgb(239 68 68 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-white) { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:text-white\/5) { + color: rgb(255 255 255 / 0.05); +} + +:is(.dark .dark\:placeholder-gray-400)::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(var(--gray-400), var(--tw-placeholder-opacity)); +} + +:is(.dark .dark\:placeholder-gray-400)::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(var(--gray-400), var(--tw-placeholder-opacity)); +} + +:is(.dark .dark\:shadow-lg) { + --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +:is(.dark .dark\:ring-black\/10) { + --tw-ring-color: rgb(0 0 0 / 0.1); +} + +:is(.dark .dark\:ring-custom-400\/30) { + --tw-ring-color: rgb(96 165 250 / 0.3); +} + +:is(.dark .dark\:ring-custom-500) { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); +} + +:is(.dark .dark\:ring-danger-500) { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity)); +} + +:is(.dark .dark\:ring-gray-400\/20) { + --tw-ring-color: rgba(var(--gray-400), 0.2); +} + +:is(.dark .dark\:ring-gray-50\/10) { + --tw-ring-color: rgba(var(--gray-50), 0.1); +} + +:is(.dark .dark\:ring-gray-600) { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(var(--gray-600), var(--tw-ring-opacity)); +} + +:is(.dark .dark\:ring-gray-700) { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(var(--gray-700), var(--tw-ring-opacity)); +} + +:is(.dark .dark\:ring-gray-700\/50) { + --tw-ring-color: rgba(var(--gray-700), 0.5); +} + +:is(.dark .dark\:ring-gray-800) { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(var(--gray-800), var(--tw-ring-opacity)); +} + +:is(.dark .dark\:ring-gray-900) { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(var(--gray-900), var(--tw-ring-opacity)); +} + +:is(.dark .dark\:ring-green-500\/20) { + --tw-ring-color: rgb(34 197 94 / 0.2); +} + +:is(.dark .dark\:ring-white\/10) { + --tw-ring-color: rgb(255 255 255 / 0.1); +} + +:is(.dark .dark\:ring-white\/20) { + --tw-ring-color: rgb(255 255 255 / 0.2); +} + +:is(.dark .dark\:placeholder\:text-gray-500)::-moz-placeholder { + --tw-text-opacity: 1; + color: rgba(var(--gray-500), var(--tw-text-opacity)); +} + +:is(.dark .dark\:placeholder\:text-gray-500)::placeholder { + --tw-text-opacity: 1; + color: rgba(var(--gray-500), var(--tw-text-opacity)); +} + +:is(.dark .dark\:before\:bg-primary-500)::before { + content: var(--tw-content); + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +:is(.dark .dark\:checked\:bg-danger-500:checked) { + --tw-bg-opacity: 1; + background-color: rgb(239 68 68 / var(--tw-bg-opacity)); +} + +:is(.dark .dark\:checked\:bg-primary-500:checked) { + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +:is(.dark .dark\:hover\:border-gray-400:hover) { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-400), var(--tw-border-opacity)); +} + +:is(.dark .dark\:hover\:border-gray-600:hover) { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-600), var(--tw-border-opacity)); +} + +:is(.dark .dark\:hover\:border-gray-700:hover) { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-700), var(--tw-border-opacity)); +} + +:is(.dark .dark\:hover\:border-gray-800:hover) { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-800), var(--tw-border-opacity)); +} + +:is(.dark .dark\:hover\:bg-custom-400:hover) { + --tw-bg-opacity: 1; + background-color: rgb(96 165 250 / var(--tw-bg-opacity)); +} + +:is(.dark .dark\:hover\:bg-custom-400\/10:hover) { + background-color: rgb(96 165 250 / 0.1); +} + +:is(.dark .dark\:hover\:bg-danger-400\/20:hover) { + background-color: rgb(248 113 113 / 0.2); +} + +:is(.dark .dark\:hover\:bg-gray-600:hover) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-600), var(--tw-bg-opacity)); +} + +:is(.dark .dark\:hover\:bg-gray-700:hover) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-700), var(--tw-bg-opacity)); +} + +:is(.dark .dark\:hover\:bg-gray-700\/50:hover) { + background-color: rgba(var(--gray-700), 0.5); +} + +:is(.dark .dark\:hover\:bg-gray-800:hover) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-800), var(--tw-bg-opacity)); +} + +:is(.dark .dark\:hover\:bg-gray-800\/75:hover) { + background-color: rgba(var(--gray-800), 0.75); +} + +:is(.dark .dark\:hover\:bg-gray-900:hover) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-900), var(--tw-bg-opacity)); +} + +:is(.dark .dark\:hover\:bg-white\/10:hover) { + background-color: rgb(255 255 255 / 0.1); +} + +:is(.dark .dark\:hover\:bg-white\/5:hover) { + background-color: rgb(255 255 255 / 0.05); +} + +:is(.dark .dark\:hover\:text-custom-300:hover) { + --tw-text-opacity: 1; + color: rgb(147 197 253 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:hover\:text-custom-300\/75:hover) { + color: rgb(147 197 253 / 0.75); +} + +:is(.dark .dark\:hover\:text-gray-200:hover) { + --tw-text-opacity: 1; + color: rgba(var(--gray-200), var(--tw-text-opacity)); +} + +:is(.dark .dark\:hover\:text-gray-300:hover) { + --tw-text-opacity: 1; + color: rgba(var(--gray-300), var(--tw-text-opacity)); +} + +:is(.dark .dark\:hover\:text-gray-300\/75:hover) { + color: rgba(var(--gray-300), 0.75); +} + +:is(.dark .dark\:hover\:text-gray-400:hover) { + --tw-text-opacity: 1; + color: rgba(var(--gray-400), var(--tw-text-opacity)); +} + +:is(.dark .dark\:hover\:text-gray-500:hover) { + --tw-text-opacity: 1; + color: rgba(var(--gray-500), var(--tw-text-opacity)); +} + +:is(.dark .dark\:hover\:text-primary-500:hover) { + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:hover\:text-red-500:hover) { + --tw-text-opacity: 1; + color: rgb(239 68 68 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:hover\:text-white:hover) { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:focus\:border-primary-500:focus) { + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} + +:is(.dark .dark\:focus\:bg-gray-700:focus) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-700), var(--tw-bg-opacity)); +} + +:is(.dark .dark\:focus\:bg-gray-800:focus) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-800), var(--tw-bg-opacity)); +} + +:is(.dark .dark\:focus\:text-gray-500:focus) { + --tw-text-opacity: 1; + color: rgba(var(--gray-500), var(--tw-text-opacity)); +} + +:is(.dark .dark\:focus\:text-white:focus) { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:focus\:ring-danger-500:focus) { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity)); +} + +:is(.dark .dark\:focus\:ring-primary-500:focus) { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); +} + +:is(.dark .dark\:focus\:ring-offset-gray-800:focus) { + --tw-ring-offset-color: rgba(var(--gray-800), 1); +} + +:is(.dark .dark\:focus\:ring-offset-gray-900:focus) { + --tw-ring-offset-color: rgba(var(--gray-900), 1); +} + +:is(.dark .dark\:checked\:focus\:ring-danger-400\/50:focus:checked) { + --tw-ring-color: rgb(248 113 113 / 0.5); +} + +:is(.dark .dark\:checked\:focus\:ring-primary-400\/50:focus:checked) { + --tw-ring-color: rgb(96 165 250 / 0.5); +} + +:is(.dark .dark\:focus-visible\:border-primary-500:focus-visible) { + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} + +:is(.dark .dark\:focus-visible\:bg-custom-400\/10:focus-visible) { + background-color: rgb(96 165 250 / 0.1); +} + +:is(.dark .dark\:focus-visible\:bg-white\/5:focus-visible) { + background-color: rgb(255 255 255 / 0.05); +} + +:is(.dark .dark\:focus-visible\:text-custom-300\/75:focus-visible) { + color: rgb(147 197 253 / 0.75); +} + +:is(.dark .dark\:focus-visible\:text-gray-300\/75:focus-visible) { + color: rgba(var(--gray-300), 0.75); +} + +:is(.dark .dark\:focus-visible\:ring-custom-400\/50:focus-visible) { + --tw-ring-color: rgb(96 165 250 / 0.5); +} + +:is(.dark .dark\:focus-visible\:ring-custom-500:focus-visible) { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); +} + +:is(.dark .dark\:focus-visible\:ring-primary-500:focus-visible) { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); +} + +:is(.dark .dark\:disabled\:bg-transparent:disabled) { + background-color: transparent; +} + +:is(.dark .dark\:disabled\:text-gray-400:disabled) { + --tw-text-opacity: 1; + color: rgba(var(--gray-400), var(--tw-text-opacity)); +} + +:is(.dark .dark\:disabled\:ring-white\/10:disabled) { + --tw-ring-color: rgb(255 255 255 / 0.1); +} + +:is(.dark .dark\:disabled\:\[-webkit-text-fill-color\:theme\(colors\.gray\.400\)\]:disabled) { + -webkit-text-fill-color: rgba(var(--gray-400), 1); +} + +:is(.dark .dark\:disabled\:placeholder\:\[-webkit-text-fill-color\:theme\(colors\.gray\.500\)\]:disabled)::-moz-placeholder { + -webkit-text-fill-color: rgba(var(--gray-500), 1); +} + +:is(.dark .dark\:disabled\:placeholder\:\[-webkit-text-fill-color\:theme\(colors\.gray\.500\)\]:disabled)::placeholder { + -webkit-text-fill-color: rgba(var(--gray-500), 1); +} + +:is(.dark .dark\:disabled\:checked\:bg-gray-600:checked:disabled) { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-600), var(--tw-bg-opacity)); +} + +:is(.dark .group\/button:hover .dark\:group-hover\/button\:text-gray-400) { + --tw-text-opacity: 1; + color: rgba(var(--gray-400), var(--tw-text-opacity)); +} + +:is(.dark .group:hover .dark\:group-hover\:text-gray-200) { + --tw-text-opacity: 1; + color: rgba(var(--gray-200), var(--tw-text-opacity)); +} + +:is(.dark .group:hover .dark\:group-hover\:text-gray-300) { + --tw-text-opacity: 1; + color: rgba(var(--gray-300), var(--tw-text-opacity)); +} + +:is(.dark .group:hover .dark\:group-hover\:text-gray-400) { + --tw-text-opacity: 1; + color: rgba(var(--gray-400), var(--tw-text-opacity)); +} + +:is(.dark .group:hover .dark\:group-hover\:text-primary-500) { + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + +:is(.dark .group:focus-visible .dark\:group-focus-visible\:text-gray-200) { + --tw-text-opacity: 1; + color: rgba(var(--gray-200), var(--tw-text-opacity)); +} + +@media (min-width: 640px) { + .sm\:col-\[--col-span-sm\] { + grid-column: var(--col-span-sm); + } + + .sm\:col-span-1 { + grid-column: span 1 / span 1; + } + + .sm\:col-span-2 { + grid-column: span 2 / span 2; + } + + .sm\:col-span-3 { + grid-column: span 3 / span 3; + } + + .sm\:col-span-4 { + grid-column: span 4 / span 4; + } + + .sm\:col-span-6 { + grid-column: span 6 / span 6; + } + + .sm\:col-start-\[--col-start-sm\] { + grid-column-start: var(--col-start-sm); + } + + .sm\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; + } + + .sm\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .sm\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .sm\:ml-3 { + margin-left: 0.75rem; + } + + .sm\:ml-4 { + margin-left: 1rem; + } + + .sm\:ml-auto { + margin-left: auto; + } + + .sm\:mt-0 { + margin-top: 0px; + } + + .sm\:block { + display: block; + } + + .sm\:inline-block { + display: inline-block; + } + + .sm\:flex { + display: flex; + } + + .sm\:grid { + display: grid; + } + + .sm\:inline-grid { + display: inline-grid; + } + + .sm\:hidden { + display: none; + } + + .sm\:h-10 { + height: 2.5rem; + } + + .sm\:h-12 { + height: 3rem; + } + + .sm\:h-screen { + height: 100vh; + } + + .sm\:w-10 { + width: 2.5rem; + } + + .sm\:w-12 { + width: 3rem; + } + + .sm\:w-64 { + width: 16rem; + } + + .sm\:w-auto { + width: auto; + } + + .sm\:w-full { + width: 100%; + } + + .sm\:max-w-2xl { + max-width: 42rem; + } + + .sm\:max-w-3xl { + max-width: 48rem; + } + + .sm\:max-w-4xl { + max-width: 56rem; + } + + .sm\:max-w-5xl { + max-width: 64rem; + } + + .sm\:max-w-6xl { + max-width: 72rem; + } + + .sm\:max-w-7xl { + max-width: 80rem; + } + + .sm\:max-w-lg { + max-width: 32rem; + } + + .sm\:max-w-md { + max-width: 28rem; + } + + .sm\:max-w-sm { + max-width: 24rem; + } + + .sm\:max-w-xl { + max-width: 36rem; + } + + .sm\:max-w-xs { + max-width: 20rem; + } + + .sm\:flex-1 { + flex: 1 1 0%; + } + + .sm\:translate-y-0 { + --tw-translate-y: 0px; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .sm\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .sm\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .sm\:columns-\[--cols-sm\] { + -moz-columns: var(--cols-sm); + columns: var(--cols-sm); + } + + .sm\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .sm\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .sm\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .sm\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .sm\:grid-cols-\[--cols-sm\] { + grid-template-columns: var(--cols-sm); + } + + .sm\:grid-cols-\[repeat\(auto-fit\2c minmax\(0\2c 1fr\)\)\] { + grid-template-columns: repeat(auto-fit,minmax(0,1fr)); + } + + .sm\:grid-rows-\[1fr_auto_3fr\] { + grid-template-rows: 1fr auto 3fr; + } + + .sm\:flex-row { + flex-direction: row; + } + + .sm\:flex-row-reverse { + flex-direction: row-reverse; + } + + .sm\:items-start { + align-items: flex-start; + } + + .sm\:items-end { + align-items: flex-end; + } + + .sm\:items-center { + align-items: center; + } + + .sm\:justify-between { + justify-content: space-between; + } + + .sm\:gap-4 { + gap: 1rem; + } + + .sm\:gap-5 { + gap: 1.25rem; + } + + .sm\:gap-6 { + gap: 1.5rem; + } + + .sm\:gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .sm\:gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .sm\:gap-y-4 { + row-gap: 1rem; + } + + .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .sm\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .sm\:border-b { + border-bottom-width: 1px; + } + + .sm\:border-l { + border-left-width: 1px; + } + + .sm\:border-t-0 { + border-top-width: 0px; + } + + .sm\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-200), var(--tw-border-opacity)); + } + + .sm\:p-0 { + padding: 0px; + } + + .sm\:p-10 { + padding: 2.5rem; + } + + .sm\:p-5 { + padding: 1.25rem; + } + + .sm\:p-6 { + padding: 1.5rem; + } + + .sm\:px-0 { + padding-left: 0px; + padding-right: 0px; + } + + .sm\:px-4 { + padding-left: 1rem; + padding-right: 1rem; + } + + .sm\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; + } + + .sm\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + .sm\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; + } + + .sm\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; + } + + .sm\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; + } + + .sm\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; + } + + .sm\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; + } + + .sm\:pl-8 { + padding-left: 2rem; + } + + .sm\:pr-8 { + padding-right: 2rem; + } + + .sm\:pt-1 { + padding-top: 0.25rem; + } + + .sm\:pt-1\.5 { + padding-top: 0.375rem; + } + + .sm\:pt-5 { + padding-top: 1.25rem; + } + + .sm\:text-left { + text-align: left; + } + + .sm\:align-middle { + vertical-align: middle; + } + + .sm\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; + } + + .sm\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; + } + + .sm\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; + } + + .sm\:leading-5 { + line-height: 1.25rem; + } + + .sm\:leading-6 { + line-height: 1.5rem; + } + + .sm\:leading-7 { + line-height: 1.75rem; + } + + .sm\:leading-9 { + line-height: 2.25rem; + } + + :is(.dark .sm\:dark\:border-gray-700) { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-700), var(--tw-border-opacity)); + } +} + +@media (min-width: 768px) { + .md\:order-first { + order: -9999; + } + + .md\:col-\[--col-span-md\] { + grid-column: var(--col-span-md); + } + + .md\:col-span-2 { + grid-column: span 2 / span 2; + } + + .md\:col-start-2 { + grid-column-start: 2; + } + + .md\:col-start-\[--col-start-md\] { + grid-column-start: var(--col-start-md); + } + + .md\:block { + display: block; + } + + .md\:flex { + display: flex; + } + + .md\:inline-grid { + display: inline-grid; + } + + .md\:hidden { + display: none; + } + + .md\:w-max { + width: -moz-max-content; + width: max-content; + } + + .md\:max-w-2xl { + max-width: 42rem; + } + + .md\:max-w-3xl { + max-width: 48rem; + } + + .md\:max-w-4xl { + max-width: 56rem; + } + + .md\:max-w-5xl { + max-width: 64rem; + } + + .md\:max-w-60 { + max-width: 15rem; + } + + .md\:max-w-6xl { + max-width: 72rem; + } + + .md\:max-w-7xl { + max-width: 80rem; + } + + .md\:max-w-xl { + max-width: 36rem; + } + + .md\:columns-\[--cols-md\] { + -moz-columns: var(--cols-md); + columns: var(--cols-md); + } + + .md\:grid-flow-col { + grid-auto-flow: column; + } + + .md\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .md\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .md\:grid-cols-\[--cols-md\] { + grid-template-columns: var(--cols-md); + } + + .md\:flex-row { + flex-direction: row; + } + + .md\:items-start { + align-items: flex-start; + } + + .md\:items-end { + align-items: flex-end; + } + + .md\:items-center { + align-items: center; + } + + .md\:justify-between { + justify-content: space-between; + } + + .md\:gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .md\:gap-y-6 { + row-gap: 1.5rem; + } + + .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .md\:overflow-x-auto { + overflow-x: auto; + } + + .md\:p-20 { + padding: 5rem; + } +} + +@media (min-width: 1024px) { + .lg\:top-\[3\.8rem\] { + top: 3.8rem; + } + + .lg\:col-\[--col-span-lg\] { + grid-column: var(--col-span-lg); + } + + .lg\:col-span-1 { + grid-column: span 1 / span 1; + } + + .lg\:col-span-2 { + grid-column: span 2 / span 2; + } + + .lg\:col-span-3 { + grid-column: span 3 / span 3; + } + + .lg\:col-span-4 { + grid-column: span 4 / span 4; + } + + .lg\:col-span-6 { + grid-column: span 6 / span 6; + } + + .lg\:col-start-\[--col-start-lg\] { + grid-column-start: var(--col-start-lg); + } + + .lg\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; + } + + .lg\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .lg\:ml-4 { + margin-left: 1rem; + } + + .lg\:ml-6 { + margin-left: 1.5rem; + } + + .lg\:mt-0 { + margin-top: 0px; + } + + .lg\:block { + display: block; + } + + .lg\:flex { + display: flex; + } + + .lg\:inline-flex { + display: inline-flex; + } + + .lg\:table-cell { + display: table-cell; + } + + .lg\:grid { + display: grid; + } + + .lg\:inline-grid { + display: inline-grid; + } + + .lg\:hidden { + display: none; + } + + .lg\:h-125 { + height: 31.25rem; + } + + .lg\:h-auto { + height: auto; + } + + .lg\:h-full { + height: 100%; + } + + .lg\:h-\[650px\] { + height: 650px; + } + + .lg\:max-h-\[650px\] { + max-height: 650px; + } + + .lg\:max-h-\[550px\] { + max-height: 550px; + } + + .lg\:max-h-\[600px\] { + max-height: 600px; + } + + .lg\:max-h-\[620px\] { + max-height: 620px; + } + + .lg\:max-h-\[580px\] { + max-height: 580px; + } + + .lg\:w-1\/2 { + width: 50%; + } + + .lg\:max-w-2xl { + max-width: 42rem; + } + + .lg\:max-w-3xl { + max-width: 48rem; + } + + .lg\:max-w-4xl { + max-width: 56rem; + } + + .lg\:max-w-5xl { + max-width: 64rem; + } + + .lg\:max-w-6xl { + max-width: 72rem; + } + + .lg\:max-w-7xl { + max-width: 80rem; + } + + .lg\:max-w-lg { + max-width: 32rem; + } + + .lg\:max-w-sm { + max-width: 24rem; + } + + .lg\:max-w-xl { + max-width: 36rem; + } + + .lg\:max-w-xs { + max-width: 20rem; + } + + .lg\:flex-1 { + flex: 1 1 0%; + } + + .lg\:shrink-0 { + flex-shrink: 0; + } + + .lg\:columns-\[--cols-lg\] { + -moz-columns: var(--cols-lg); + columns: var(--cols-lg); + } + + .lg\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .lg\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .lg\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .lg\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .lg\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .lg\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .lg\:grid-cols-\[--cols-lg\] { + grid-template-columns: var(--cols-lg); + } + + .lg\:flex-row { + flex-direction: row; + } + + .lg\:items-start { + align-items: flex-start; + } + + .lg\:items-end { + align-items: flex-end; + } + + .lg\:items-center { + align-items: center; + } + + .lg\:justify-between { + justify-content: space-between; + } + + .lg\:gap-4 { + gap: 1rem; + } + + .lg\:gap-6 { + gap: 1.5rem; + } + + .lg\:gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .lg\:gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .lg\:gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .lg\:gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .lg\:gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .lg\:gap-y-5 { + row-gap: 1.25rem; + } + + .lg\:gap-y-6 { + row-gap: 1.5rem; + } + + .lg\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .lg\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; + } + + .lg\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; + } + + .lg\:rounded-tl-2xl { + border-top-left-radius: 1rem; + } + + .lg\:border-y { + border-top-width: 1px; + border-bottom-width: 1px; + } + + .lg\:border-t-0 { + border-top-width: 0px; + } + + .lg\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(var(--gray-200), var(--tw-border-opacity)); + } + + .lg\:px-0 { + padding-left: 0px; + padding-right: 0px; + } + + .lg\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + .lg\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } + + .lg\:py-0 { + padding-top: 0px; + padding-bottom: 0px; + } + + .lg\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; + } + + .lg\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; + } + + .lg\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; + } + + .lg\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; + } + + .lg\:pb-0 { + padding-bottom: 0px; + } + + .lg\:pb-1 { + padding-bottom: 0.25rem; + } + + .lg\:pb-1\.5 { + padding-bottom: 0.375rem; + } + + .lg\:pl-2 { + padding-left: 0.5rem; + } + + .lg\:pr-4 { + padding-right: 1rem; + } + + .lg\:pt-10 { + padding-top: 2.5rem; + } + + .lg\:pt-5 { + padding-top: 1.25rem; + } + + .lg\:text-left { + text-align: left; + } + + .lg\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; + } + + .lg\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; + } + + .lg\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; + } + + .lg\:shadow-none { + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } +} + +@media (min-width: 1280px) { + .xl\:col-\[--col-span-xl\] { + grid-column: var(--col-span-xl); + } + + .xl\:col-span-2 { + grid-column: span 2 / span 2; + } + + .xl\:col-span-4 { + grid-column: span 4 / span 4; + } + + .xl\:col-start-\[--col-start-xl\] { + grid-column-start: var(--col-start-xl); + } + + .xl\:inline-grid { + display: inline-grid; + } + + .xl\:hidden { + display: none; + } + + .xl\:max-w-2xl { + max-width: 42rem; + } + + .xl\:max-w-3xl { + max-width: 48rem; + } + + .xl\:max-w-4xl { + max-width: 56rem; + } + + .xl\:max-w-5xl { + max-width: 64rem; + } + + .xl\:max-w-6xl { + max-width: 72rem; + } + + .xl\:max-w-7xl { + max-width: 80rem; + } + + .xl\:max-w-xl { + max-width: 36rem; + } + + .xl\:columns-\[--cols-xl\] { + -moz-columns: var(--cols-xl); + columns: var(--cols-xl); + } + + .xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .xl\:grid-cols-\[--cols-xl\] { + grid-template-columns: var(--cols-xl); + } + + .xl\:flex-row { + flex-direction: row; + } + + .xl\:items-start { + align-items: flex-start; + } + + .xl\:items-end { + align-items: flex-end; + } + + .xl\:items-center { + align-items: center; + } +} + +@media (min-width: 1536px) { + .\32xl\:col-\[--col-span-2xl\] { + grid-column: var(--col-span-2xl); + } + + .\32xl\:col-start-\[--col-start-2xl\] { + grid-column-start: var(--col-start-2xl); + } + + .\32xl\:inline-grid { + display: inline-grid; + } + + .\32xl\:hidden { + display: none; + } + + .\32xl\:max-w-2xl { + max-width: 42rem; + } + + .\32xl\:max-w-3xl { + max-width: 48rem; + } + + .\32xl\:max-w-4xl { + max-width: 56rem; + } + + .\32xl\:max-w-5xl { + max-width: 64rem; + } + + .\32xl\:max-w-6xl { + max-width: 72rem; + } + + .\32xl\:max-w-7xl { + max-width: 80rem; + } + + .\32xl\:max-w-xl { + max-width: 36rem; + } + + .\32xl\:columns-\[--cols-2xl\] { + -moz-columns: var(--cols-2xl); + columns: var(--cols-2xl); + } + + .\32xl\:grid-cols-\[--cols-2xl\] { + grid-template-columns: var(--cols-2xl); + } + + .\32xl\:flex-row { + flex-direction: row; + } + + .\32xl\:items-start { + align-items: flex-start; + } + + .\32xl\:items-end { + align-items: flex-end; + } + + .\32xl\:items-center { + align-items: center; + } + + .\32xl\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; + } +} + +.ltr\:hidden:where([dir="ltr"], [dir="ltr"] *) { + display: none; +} + +.rtl\:hidden:where([dir="rtl"], [dir="rtl"] *) { + display: none; +} + +.rtl\:-translate-x-5:where([dir="rtl"], [dir="rtl"] *) { + --tw-translate-x: -1.25rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.rtl\:-translate-x-full:where([dir="rtl"], [dir="rtl"] *) { + --tw-translate-x: -100%; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.rtl\:translate-x-1\/2:where([dir="rtl"], [dir="rtl"] *) { + --tw-translate-x: 50%; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.rtl\:rotate-180:where([dir="rtl"], [dir="rtl"] *) { + --tw-rotate: 180deg; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.rtl\:flex-row-reverse:where([dir="rtl"], [dir="rtl"] *) { + flex-direction: row-reverse; +} + +.rtl\:divide-x-reverse:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; +} + +.\[\&\.trix-active\]\:bg-gray-50.trix-active { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-50), var(--tw-bg-opacity)); +} + +.\[\&\.trix-active\]\:text-primary-600.trix-active { + --tw-text-opacity: 1; + color: rgb(37 99 235 / var(--tw-text-opacity)); +} + +:is(.dark .dark\:\[\&\.trix-active\]\:bg-white\/5.trix-active) { + background-color: rgb(255 255 255 / 0.05); +} + +:is(.dark .dark\:\[\&\.trix-active\]\:text-primary-400.trix-active) { + --tw-text-opacity: 1; + color: rgb(96 165 250 / var(--tw-text-opacity)); +} + +.\[\&\:\:-ms-reveal\]\:hidden::-ms-reveal { + display: none; +} + +.\[\&\:not\(\:has\(\.fi-ac-action\:focus\)\)\]\:focus-within\:ring-2:focus-within:not(:has(.fi-ac-action:focus)) { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.\[\&\:not\(\:has\(\.fi-ac-action\:focus\)\)\]\:focus-within\:ring-danger-600:focus-within:not(:has(.fi-ac-action:focus)) { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity)); +} + +.\[\&\:not\(\:has\(\.fi-ac-action\:focus\)\)\]\:focus-within\:ring-primary-600:focus-within:not(:has(.fi-ac-action:focus)) { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity)); +} + +:is(.dark .dark\:\[\&\:not\(\:has\(\.fi-ac-action\:focus\)\)\]\:focus-within\:ring-danger-500:focus-within:not(:has(.fi-ac-action:focus))) { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity)); +} + +:is(.dark .dark\:\[\&\:not\(\:has\(\.fi-ac-action\:focus\)\)\]\:focus-within\:ring-primary-500:focus-within:not(:has(.fi-ac-action:focus))) { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); +} + +.\[\&\:not\(\:nth-child\(1_of_\.fi-btn\)\)\]\:shadow-\[-1px_0_0_0_theme\(colors\.gray\.200\)\]:not(:nth-child(1 of .fi-btn)) { + --tw-shadow: -1px 0 0 0 rgba(var(--gray-200), 1); + --tw-shadow-colored: -1px 0 0 0 var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +:is(.dark .dark\:\[\&\:not\(\:nth-child\(1_of_\.fi-btn\)\)\]\:shadow-\[-1px_0_0_0_theme\(colors\.white\/20\%\)\]:not(:nth-child(1 of .fi-btn))) { + --tw-shadow: -1px 0 0 0 rgb(255 255 255 / 20%); + --tw-shadow-colored: -1px 0 0 0 var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.\[\&\:not\(\:nth-last-child\(1_of_\.fi-btn\)\)\]\:me-px:not(:nth-last-child(1 of .fi-btn)) { + margin-inline-end: 1px; +} + +.\[\&\:nth-child\(1_of_\.fi-btn\)\]\:rounded-s-lg:nth-child(1 of .fi-btn) { + border-start-start-radius: 0.5rem; + border-end-start-radius: 0.5rem; +} + +.\[\&\:nth-last-child\(1_of_\.fi-btn\)\]\:rounded-e-lg:nth-last-child(1 of .fi-btn) { + border-start-end-radius: 0.5rem; + border-end-end-radius: 0.5rem; +} + +.\[\&\>\*\:first-child\]\:mt-0>*:first-child { + margin-top: 0px; +} + +.\[\&\>\*\:last-child\]\:mb-0>*:last-child { + margin-bottom: 0px; +} + +.\[\&_\.choices\\_\\_inner\]\:ps-0 .choices__inner { + padding-inline-start: 0px; +} + +.\[\&_\.fi-badge-delete-button\]\:hidden .fi-badge-delete-button { + display: none; +} + +.\[\&_\.filepond--root\]\:font-sans .filepond--root { + font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} + +.\[\&_optgroup\]\:bg-white optgroup { + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +:is(.dark .\[\&_optgroup\]\:dark\:bg-gray-900) optgroup { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-900), var(--tw-bg-opacity)); +} + +.\[\&_option\]\:bg-white option { + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +:is(.dark .\[\&_option\]\:dark\:bg-gray-900) option { + --tw-bg-opacity: 1; + background-color: rgba(var(--gray-900), var(--tw-bg-opacity)); +} + +:checked+*>.\[\:checked\+\*\>\&\]\:text-white { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + +input:checked+.\[input\:checked\+\&\]\:bg-custom-600 { + --tw-bg-opacity: 1; + background-color: rgb(37 99 235 / var(--tw-bg-opacity)); +} + +input:checked+.\[input\:checked\+\&\]\:text-white { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + +input:checked+.\[input\:checked\+\&\]\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +input:checked+.\[input\:checked\+\&\]\:hover\:bg-custom-500:hover { + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +:is(.dark input:checked+.dark\:\[input\:checked\+\&\]\:bg-custom-500) { + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +:is(.dark input:checked+.dark\:\[input\:checked\+\&\]\:hover\:bg-custom-400:hover) { + --tw-bg-opacity: 1; + background-color: rgb(96 165 250 / var(--tw-bg-opacity)); +} + +input:checked:focus-visible+.\[input\:checked\:focus-visible\+\&\]\:ring-custom-500\/50 { + --tw-ring-color: rgb(59 130 246 / 0.5); +} + +:is(.dark input:checked:focus-visible+.dark\:\[input\:checked\:focus-visible\+\&\]\:ring-custom-400\/50) { + --tw-ring-color: rgb(96 165 250 / 0.5); +} + +input:focus-visible+.\[input\:focus-visible\+\&\]\:z-10 { + z-index: 10; +} + +input:focus-visible+.\[input\:focus-visible\+\&\]\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +input:focus-visible+.\[input\:focus-visible\+\&\]\:ring-gray-950\/10 { + --tw-ring-color: rgba(var(--gray-950), 0.1); +} + +:is(.dark input:focus-visible+.dark\:\[input\:focus-visible\+\&\]\:ring-white\/20) { + --tw-ring-color: rgb(255 255 255 / 0.2); +} diff --git a/packages/admin/public/shopper.css.map b/packages/admin/public/shopper.css.map old mode 100644 new mode 100755 index 0c3d291a4..cfd8df819 --- a/packages/admin/public/shopper.css.map +++ b/packages/admin/public/shopper.css.map @@ -1 +1 @@ -{"version":3,"file":"shopper.css","mappings":"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4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,4BAA+B,CAD/B,WACiC,CACnC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,UACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CACpC,mBAEE,6BAAgC,CADhC,WACkC,CAEtC,WAKE,wBAAyB,CAFzB,sCAAyC,CAGzC,0BAA2B,CAF3B,2BAA4B,CAF5B,yBAAgC,CADhC,WAK6B,CAC7B,kEACE,WACE,yCAA8C,CAAE,CAEtD,mBACE,4BAA+B,C;AC/5BjC;;;;EAIE,CAGF,qBAA+F,0BAA0B,CAAnC,QAAQ,CAA4B,4BAA4B,CAAC,oBAAoB,CAApH,UAAU,CAA1B,eAAe,CAAsB,SAAS,CAAhE,iBAAiB,CAAsI,kBAAiB,CAA3H,SAA4H,CAAC,qCAA+H,WAAU,CAA/D,QAAQ,CAA3B,QAAQ,CAAsD,SAAS,CAA9D,SAAS,CAApC,iBAAiB,CAA6B,UAAU,CAAC,sBAA4C,CAAC,gBAAsE,WAAW,CAAuC,cAAa,CAA3F,QAAQ,CAAW,QAAQ,CAAlB,SAAS,CAAsB,iBAAiB,CAAjE,OAAoG,CAAC,gCAAnC,mBAAmB,CAAvG,iBAAmR,CAA5J,gBAAkI,0BAAyB,CAA5C,kBAAkB,CAA1E,QAAQ,CAAvB,MAAM,CAAkC,UAAU,CAA1B,eAAe,CAAhC,OAAO,CAApB,KAA0H,CAAC,qBAAiJ,kBAAkB,CAAC,iBAAgB,CAA/E,UAAU,CAAC,gBAAgB,CAAC,eAAe,CAA3H,sCAAsC,CAAC,8BAA8B,CAAC,SAA0F,CAAC,2CAAmE,MAAM,CAA9B,iBAAiB,CAAC,KAAK,CAAQ,6BAA6B,CAAC,sBAAyF,kBAAkB,CAApE,aAAa,CAAC,YAAY,CAA2C,QAAQ,CAAlD,sBAAsB,CAA1D,QAAQ,CAAhB,OAAO,CAAwF,wBAAwB,CAAuB,oBAAoB,CAAC,gBAAgB,CAAC,iDAAiD,aAAa,CAAC,QAAQ,CAAC,YAAY,CAAC,4BAA4B,cAAc,CAAC,gBAAgB,CAAC,eAAe,CAAmB,eAAc,CAAhC,iBAAiC,CAAC,wBAAkD,gCAAgC,CAAmG,cAAa,CAA1K,yBAAyB,CAAgE,qCAAqC,CAAC,6BAA6B,CAAjG,6BAAgH,CAAC,2DAA2D,UAAU,CAAC,2DAAiK,WAAW,CAAtE,mBAAmB,CAA9D,aAAa,CAAe,cAAc,CAAqB,mBAAmB,CAAC,QAAQ,CAAuB,YAAY,CAAlC,SAAS,CAAvF,aAAa,CAAoG,6BAA6B,CAAC,gEAA0I,0BAA0B,CAAnC,QAAQ,CAA4B,4BAA4B,CAAC,oBAAoB,CAApH,UAAU,CAA1B,eAAe,CAAsB,SAAS,CAAhE,iBAAiB,CAAsI,kBAAiB,CAA3H,SAA4H,CAAC,+DAA0E,WAAU,CAArB,UAAsB,CAAC,iEAAuH,aAAa,CAAC,UAAS,CAA3D,WAAW,CAA7B,iBAAiB,CAAa,YAAY,CAAC,UAAmC,CAAC,8BAAuE,+BAA+B,CAAC,qBAAqB,CAAvE,iBAAiB,CAAuD,oCAAoC,CAAvH,UAAU,CAAtB,WAAW,CAAyH,kCAAkC,CAAC,wEAAwE,0CAA0C,CAAC,wCAAiE,gCAA+B,CAAxD,wBAAyD,CAAC,sCAAsC,YAAY,CAAC,uDAAiE,UAAU,CAAC,eAAc,CAAnC,SAAoC,CAAC,2EAA2E,oBAAoB,CAAC,2EAA2E,sBAAsB,CAAC,gCAAgE,sBAAsB,CAAtD,WAAW,CAAgE,aAAa,CAAjC,mBAAmB,CAA9D,mBAAmB,CAAiF,kBAAkB,CAAzC,YAAY,CAAC,SAAS,CAAoB,kBAAkB,CAAC,iBAAiB,CAAC,oCAAmD,eAAc,CAA7B,cAA8B,CAAC,qCAAqC,WAAW,CAAC,SAAS,CAAC,qBAAwE,sBAAsB,CAAzD,YAAY,CAA8C,MAAM,CAAnD,qBAAqB,CAA+B,iBAAiB,CAAC,WAAW,CAA+B,mBAAmB,CAAhK,eAAe,CAAkJ,wBAAwB,CAAuB,oBAAoB,CAAC,gBAAe,CAArI,6BAAsI,CAAC,uBAAuB,QAAQ,CAAC,+CAA+C,eAAe,CAAC,eAAe,CAAwB,eAAe,CAAtC,sBAAsB,CAAiB,kBAAkB,CAAC,UAAU,CAAC,8CAA8C,gBAAgB,CAAC,UAAU,CAAC,mCAAmC,CAAC,kBAAkB,CAAC,oDAAoD,YAAY,CAAC,uBAA0E,oBAAoB,CAAvD,YAAY,CAAC,qBAAqB,CAAsB,WAAW,CAAC,aAAa,CAAC,QAAQ,CAAC,gBAAgB,CAAgD,mBAAmB,CAA9L,eAAe,CAA6G,gBAAgB,CAAmD,wBAAwB,CAAuB,oBAAoB,CAAC,gBAAe,CAArI,6BAAsI,CAAC,yBAAyB,QAAQ,CAAC,kBAAkB,CAAC,mDAAmD,eAAe,CAAC,eAAe,CAAC,kDAAkD,gBAAgB,CAAC,UAAU,CAAC,mCAAmC,CAAC,+CAA+C,WAAW,CAAgC,WAAU,CAAzC,QAAQ,CAAW,WAAW,CAArB,SAAiC,CAAC,sDAAgI,0BAA0B,CAAnC,QAAQ,CAA4B,4BAA4B,CAAC,oBAAoB,CAApH,UAAU,CAA1B,eAAe,CAAsB,SAAS,CAAhE,iBAAiB,CAAsI,kBAAiB,CAA3H,SAA4H,CAAC,gBAAyD,sBAAsB,CAA4B,kBAAiB,CAA5B,UAAU,CAA1E,YAAY,CAAC,WAAW,CAAwB,eAAe,CAA/E,eAA6G,CAAC,uCAAuC,gBAAgB,CAAC,mBAAmB,CAAC,yDAAyD,mBAAmB,CAAC,wBAAwB,CAAuB,oBAAoB,CAAC,gBAAgB,CAAC,SAAS,CAAC,qJAAqJ,iBAAiB,CAAC,mCAAmC,YAAY,CAAC,oCAAoC,aAAa,CAAC,qCAAqC,wBAAwB,CAAC,qCAAqC,cAAc,CAAC,oCAAoC,uBAAuB,CAAC,8CAA8C,kBAAkB,CAAC,iEAAiE,oBAAoB,CAAC,gEAAgE,mBAAmB,CAAC,0KAA0K,mBAAmB,CAAC,kEAAkE,SAAS,CAAC,iIAAiI,UAAU,CAAC,uEAAuE,SAAS,CAAC,sIAAsI,UAAU,CAAC,4FAA4F,4CAA4C,CAAC,oCAAoC,CAAC,0EAA0E,UAAU,CAAC,uOAAuO,SAAS,CAAC,sIAAsI,UAAU,CAAC,8NAA8N,wCAAwC,CAAC,gCAAgC,CAAC,mEAAmE,yCAAyC,CAAC,iCAAiC,CAAC,wBAAwB,GAAG,8BAA8B,CAAC,sBAAsB,CAAC,GAAG,+BAA+B,CAAC,uBAAuB,CAAC,CAAC,gBAAgB,GAAG,8BAA8B,CAAC,sBAAsB,CAAC,GAAG,+BAA+B,CAAC,uBAAuB,CAAC,CAAC,yBAAyB,QAAQ,sCAAsC,CAAC,8BAA8B,CAAC,QAAQ,oCAAoC,CAAC,4BAA4B,CAAC,YAAY,oCAAoC,CAAC,4BAA4B,CAAC,QAAQ,mCAAmC,CAAC,2BAA2B,CAAC,CAAC,iBAAiB,QAAQ,sCAAsC,CAAC,8BAA8B,CAAC,QAAQ,oCAAoC,CAAC,4BAA4B,CAAC,YAAY,oCAAoC,CAAC,4BAA4B,CAAC,QAAQ,mCAAmC,CAAC,2BAA2B,CAAC,CAAC,wBAAwB,GAA6D,0CAA0C,CAAC,kCAAiC,CAAtI,SAAS,CAAC,2BAA2B,CAAC,mBAAiG,CAAC,IAAgE,6CAA6C,CAAC,qCAAoC,CAA9I,SAAS,CAAC,4BAA4B,CAAC,oBAAwG,CAAC,GAAiD,0CAA0C,CAAC,kCAAiC,CAA1H,0BAA0B,CAAC,kBAAgG,CAAC,CAAC,gBAAgB,GAA6D,0CAA0C,CAAC,kCAAiC,CAAtI,SAAS,CAAC,2BAA2B,CAAC,mBAAiG,CAAC,IAAgE,6CAA6C,CAAC,qCAAoC,CAA9I,SAAS,CAAC,4BAA4B,CAAC,oBAAwG,CAAC,GAAiD,0CAA0C,CAAC,kCAAiC,CAA1H,0BAA0B,CAAC,kBAAgG,CAAC,CAAC,iDAAiD,mBAAmB,CAAC,qDAAuG,QAAQ,CAA1D,UAAU,CAAmB,MAAM,CAAxB,iBAAiB,CAAc,OAAO,CAAb,KAAK,CAAkB,WAAW,CAAC,8BAA8B,WAAW,CAAC,8BAA8B,WAAW,CAAC,uBAAuB,WAAW,CAAC,qBAAqB,WAAW,CAAC,gBAAwC,MAAM,CAA6B,YAAY,CAAtB,SAAS,CAA1D,iBAAiB,CAAc,OAAO,CAApB,KAAK,CAAiD,6BAA4B,CAA7D,SAA8D,CAAC,iCAAiC,UAAU,CAAC,yDAAyD,oDAAoD,CAAC,yEAAyE,gCAAgC,CAAC,iCAAiC,mBAAmB,CAAC,WAAW,CAAC,kDAA0F,4BAA2B,CAAnE,uCAAoE,CAAC,sCAAsC,uBAAuB,CAAC,eAAe,CAAC,uDAAuD,4CAA4C,CAAC,6DAA6D,SAAS,CAAC,sBAAsB,wBAAwB,CAAC,qEAAqE,wBAAwB,CAAC,kHAAkH,wBAAwB,CAAC,sBAAsB,kBAAkB,CAAC,gCAAgC,CAAC,yBAAiD,MAAM,CAAS,QAAQ,CAA/C,iBAAiB,CAAc,OAAO,CAApB,KAAK,CAAyB,qBAAqB,CAAC,8DAA8D,QAAQ,CAAC,OAAO,CAAC,8CAAkF,gCAAgC,CAAC,uEAAuE,CAAC,+DAA8D,CAAzL,iBAAiB,CAAnC,iBAA4M,CAAC,4CAA4C,sBAAsB,CAAC,qDAAqD,SAAS,CAAC,uDAAuD,QAAQ,CAAC,kDAAyI,2BAA0B,CAAjH,+BAA+B,CAAuB,gCAAgC,CAAtD,qBAAkF,CAAC,+BAA0E,oBAAoB,CAAvC,QAAQ,CAAC,SAAS,CAA1C,iBAAiB,CAAC,KAAK,CAAyC,qBAAqB,CAAC,gBAAgB,UAAU,CAAC,WAAW,CAAC,qDAAgE,WAAW,CAAgB,QAAO,CAAtB,cAAc,CAArC,UAA8C,CAAC,kJAAkJ,eAAe,CAAC,sJAAsJ,YAAY,CAAC,kJAA2M,kBAAkB,CAA3E,QAAQ,CAAa,YAAY,CAAxB,WAAW,CAAc,sBAAsB,CAAoB,SAAS,CAAC,kJAAkJ,YAAY,CAAC,yJAAyK,WAAW,CAAc,eAAc,CAA3B,YAAY,CAAxC,eAAwD,CAAC,uIAAsJ,WAAU,CAAzB,MAAM,CAAC,OAAmB,CAAC,uIAAuI,QAAQ,CAAC,uJAAuJ,WAAW,CAAC,mJAAmJ,SAAS,CAAC,iDAAiD,sBAAsB,CAAC,eAAe,CAAC,kEAAkE,qBAAqB,CAAkF,kNAA8I,YAAY,CAAC,6EAA6E,mBAAmB,CAAC,4BAA4B,CAAC,6FAA8C,mEAAmE,iDAAiD,qBAAqB,CAAC,CAAC,CAAC,sBAAyC,wBAAuB,CAA1C,kBAA2C,CAAC,iBAAiE,qBAAqB,CAAnD,MAAM,CAAe,QAAQ,CAAuB,mBAAkB,CAAxF,iBAAiB,CAAc,OAAO,CAAb,KAAgE,CAAC,2CAA2C,qBAAqB,CAAC,0CAA0C,YAAY,CAAC,qCAAqG,sCAAsC,CAAC,qBAAoB,CAA3H,mCAAmC,CAAC,2BAAwF,CAAC,qEAAuF,MAAM,CAAe,QAAQ,CAAC,SAAQ,CAAxD,iBAAiB,CAAc,OAAO,CAAb,KAAgC,CAAC,6CAA6C,WAAW,CAAC,qBAAkG,4BAA2B,CAAxG,qCAAqC,CAAC,sCAAmE,CAAC,2BAA8F,wBAAuB,CAAnC,WAAW,CAAlE,UAAU,CAAmB,UAAU,CAAC,MAAM,CAAnC,iBAAiB,CAAmB,OAA4C,CAAC,gDAAsE,kCAAkC,CAAC,0BAA0B,CAA6D,uCAAuC,CAAC,+BAA8B,CAAlI,iCAAiC,CAAC,yBAAyB,CAA/I,qBAAuN,CAAC,wBAA+F,yBAAwB,CAA/F,kCAAkC,CAAC,mCAA6D,CAAC,+BAA+F,wBAAuB,CAAvF,UAAU,CAAmB,UAAU,CAAC,MAAM,CAAnC,iBAAiB,CAAmB,OAAO,CAAC,QAAiC,CAAC,wBAAyE,4BAA4B,CAAC,yBAAwB,CAA/E,yBAAyB,CAAhD,sBAAuG,CAAC,qCAAqC,iBAAiB,CAAC,8BAAyE,UAAU,CAAxB,aAAa,CAAY,QAAQ,CAAC,mBAAmB,CAAlF,eAAe,CAAC,YAAY,CAAuD,6BAA6B,CAAC,kCAA6C,WAAW,CAAoB,sBAAqB,CAAxC,kBAAkB,CAAzC,UAAgE,CAAC,mCAAmC,SAAS,CAAC,mBAAmB,CAAC,yBAAyB,SAAS,CAAC,sBAAsB,SAAS,CAAC,gBAAgB,SAAS,CAAC,iCAAiC,SAAS,CAAC,mBAAmB,SAAS,CAAC,gBAAgB,qBAAqB,CAAgS,yBAAwB,CAAtC,aAAa,CAAxN,wIAAwI,CAA1K,cAAc,CAA6J,eAAe,CAA3K,kBAAkB,CAAnD,iBAAiB,CAAnC,iBAAiB,CAA8M,eAAe,CAAC,iCAAyE,CAAC,kBAAkB,kBAAkB,CAAC,mBAAmB,CAAC,2BAA2B,iBAAiB,CAAC,+BAA+B,mBAAmB,CAAC,wDAAwD,kBAAkB,CAAC,+CAA+C,mBAAmB,CAAC,sCAAsC,iBAAiB,CAAC,yCAAwD,iBAAgB,CAA/B,cAAgC,CAAC,mCAAsJ,YAAW,CAAxD,aAAa,CAA5B,cAAc,CAA9B,eAAe,CAA5B,YAAY,CAAtC,iBAAiB,CAAC,OAAO,CAA2D,oBAAoB,CAAC,SAAsB,CAAC,0CAAgD,WAAW,CAAC,eAAc,CAAhC,KAAiC,C;ACPj4hB,YACE,qBAAsB,CACtB,iBAAkB,CAClB,QAAS,CAET,cAAe,CACf,YAAa,CAFb,iBAEe,CAEjB,eACE,qBAAwB,CAE1B,8BACE,YAAa,CACb,gBAAiB,CACjB,6BAA8B,CAC9B,eAAkB,CAEpB,gCAKE,2BAAyB,CACzB,iBAAkB,CADlB,kBAAyB,CAAzB,gBAAyB,CAJzB,YAAa,CACb,kBAIoB,CACpB,kDACE,iBAAoB,CACpB,yBACE,kDACE,aAAgB,CAAE,CAE1B,uCACE,WAAc,CACd,yBACE,uCACE,YAAe,CAAE,CAEvB,0BAaE,sBAAuB,CAFvB,WAA6B,CAA7B,4BAA6B,CAC7B,eAAgB,CAThB,oBAAyB,CADzB,UAAW,CAEX,eAAiB,CACjB,eAAgB,CAGhB,QAAS,CACT,YAAa,CAFb,cAAgB,CANhB,iBAAkB,CAKlB,kBAOyB,CACzB,4CACE,0BAA6B,CAC/B,sCACE,kBAAmB,CACnB,UAAc,CAChB,yCACE,cAAiB,CACnB,mCACE,sBAA6B,CAC/B,yBACE,0BACE,qBAAuB,CACvB,cAAkB,CAAE,CAE1B,gCACE,iBAAkB,CAElB,YAAa,CACb,0BAA4B,CAC5B,mBAAoB,CAHpB,WAGsB,CACtB,yBACE,gCACE,UAAW,CACX,4BAAgC,CAAE,CACtC,uCASE,uBAA2B,CAC3B,2BAA4B,CAC5B,uBAAwB,CANxB,QAAS,CAGT,UAAW,CAPX,oBAAqB,CAKrB,MAAO,CACP,UAAY,CALZ,iBAAkB,CAElB,OAAQ,CADR,KAQ0B,CAC1B,yBACE,uCAEE,OAAQ,CADR,QACU,CAAE,CAClB,mDACE,SAAY,CACd,gDACE,YAAgB,CAEpB,8CACE,yVAA8b,CAE9b,SAAU,CADV,MACY,CAEd,4CACE,yvBAAk5B,CAEp5B,8CACE,+QAAsV,CAExV,4CACE,s1BAAunC,CAEznC,8CACE,gpBAAyyB,CAE3yB,6CACE,42BAAu/B,CAEz/B,iDACE,yRAAgW,CAElW,4CACE,8aAA+jB,CAEjkB,mDACE,2dAA0rB,CAE5rB,mDACE,0bAAmlB,CAErlB,4CACE,qbAA4jB,CAE9jB,4CACE,ybAAsjB,CAExjB,8DACE,kcAAynB,CAE3nB,8DACE,mcAA4nB,CAE9nB,2BACE,iBAAoB,CAEtB,0BAOE,eAAgB,CAGhB,iBAAkB,CADlB,yBAA0B,CAD1B,0BAA4B,CAH5B,eAAiB,CAFjB,MAAO,CAGP,iBAAkB,CALlB,iBAAkB,CAGlB,OAAQ,CAFR,KAAM,CASN,SAAY,CAEd,iCAUE,uBAAwB,CACxB,oBAAqB,CAJrB,qBAAsB,CADtB,qBAAsB,CADtB,iBAAkB,CAGlB,eAAgB,CAPhB,iBAAkB,CAClB,eAAmB,CAEnB,iBAAkB,CAKlB,YAAa,CANb,iBAQuB,CACvB,kDACE,4BAAoC,CAExC,kCAGE,kBAAmB,CAFnB,iBAAkB,CAClB,YACqB,CAEvB,gCACE,eAAkB,CAEpB,uCAEE,oBAAqB,CADrB,YACuB,CACvB,mDACE,MAAS,CACX,0DACE,gBAAiB,CACjB,QAAW,CAEf,iEACE,wBAAyB,CACzB,qBAAsB,CAEtB,gBAAmB,CAMrB,uJAEE,eAAkB,CAFpB,wIAEE,eAAkB,CAEpB,iFACE,oBAAuB,CAEzB,4EACE,oBAAuB,CAEzB,4DAEE,wBAAyB,CADzB,8BAC2B,CAE7B,+CACE,8BAAiC,CAEnC,wBACE,iBAAoB,CACpB,8BACE,cAAiB,CAErB,4DACE,WAAc,CAEhB,kCAGE,WAAY,CAEZ,OAAQ,CAER,UAAY,CANZ,iBAAkB,CAGlB,oBAAqB,CAIrB,8BAAiC,CAFjC,SAAU,CAJV,SAMmC,CACnC,+CACE,SAAY,CAEhB,wCAaE,uBAAwB,CACxB,oBAAqB,CAHrB,WAAY,CAHZ,aAAc,CAPd,oBAAqB,CAKrB,mBAAoB,CADpB,iBAAkB,CAElB,mBAAoB,CAJpB,QAAS,CAST,YAAa,CARb,SAAU,CAKV,iBAAkB,CAClB,kBAAmB,CARnB,UAYuB,CAEzB,iCAIE,MAAO,CAHP,iBAAkB,CAKlB,iBAAkB,CAHlB,SAAW,CAEX,UAAW,CAHX,SAIoB,CAEtB,+BACE,mBAAsB,CAExB,yBAWE,sBAAuB,CAFvB,WAAY,CACZ,eAAgB,CAPhB,UAAW,CADX,UAAW,CAGX,aAAc,CAEd,QAAS,CACT,YAAa,CAFb,cAAgB,CALhB,iBAAkB,CAGlB,kBAOyB,CACzB,2CACE,0BAA6B,CAC/B,qCACE,kBAAqB,CACvB,wCACE,cAAiB,CAErB,iCASE,qBAAsB,CACtB,0BAA2B,CAF3B,iBAAkB,CAGlB,sCAA2C,CAT3C,oBAAqB,CAIrB,YAAa,CACb,iBAAkB,CAHlB,YAAa,CADb,SAAU,CAFV,mBAAoB,CAIpB,WAM6C,CAC7C,wCASE,oSAAuY,CACvY,uBAA2B,CAC3B,2BAA4B,CAC5B,mBAAoB,CAPpB,QAAS,CAGT,UAAW,CAPX,oBAAqB,CAKrB,MAAO,CACP,UAAY,CALZ,iBAAkB,CAElB,OAAQ,CADR,KASsB,CACxB,uCACE,iBAAoB,CACpB,8CACE,SAAY,CAElB,4CACE,iBAAoB,CAEtB,kCASE,+BAAoC,CACpC,iBAAkB,CAFlB,UAAW,CADX,cAAgB,CALhB,QAAS,CAGT,aAAc,CACd,iBAAoB,CALpB,iBAAkB,CAElB,OAAQ,CACR,yBAMoB,CACpB,oDACE,oBAAqB,CACrB,cAAe,CAEf,eAAgB,CAChB,sBAAuB,CAFvB,qBAAsB,CAGtB,kBAAqB,CACvB,oDACE,gBAAkB,CAClB,kBAAqB,CAEzB,cACE,eAAkB,CAClB,gBACE,qBAAsB,CACtB,QAAS,CACT,SAAY,CACd,iBACE,eAAgB,CAChB,eAAkB,CACpB,yBAEE,iBAAwB,CAAxB,uBAAwB,CACxB,gBAAkB,CAClB,iBAAqB,CACvB,qEAGE,uBAAyB,CACzB,iBAAmB,CACnB,kBAAsB,CACxB,iBACE,eAAkB,CACpB,2BACE,gBAAmB,CACrB,kBAQE,qBAAsB,CAPtB,oBAAqB,CAGrB,qBAAsB,CACtB,cAAgB,CAIhB,eAAgB,CAHhB,YAAc,CAHd,kBAAmB,CAInB,eAAgB,CALhB,UAOkB,CACpB,kBAEE,WAAY,CADZ,cACc,CAChB,0BACE,oBAAqB,CAErB,cAAe,CADf,iBACiB,CACjB,4BACE,aAAc,CACd,oBAAuB,CACvB,4EACE,aAAgB,CACtB,mCACE,iBAAoB,CACpB,8EACE,iBAAoB,CACxB,mCAEE,iBAAkB,CADlB,UACoB,CACpB,wDACE,UAAW,CACX,cAAgB,CAChB,eAAkB,CACtB,gCAKE,qBAAsB,CACtB,iBAAkB,CALlB,UAAW,CACX,aAAc,CACd,gBAAqB,CACrB,gBAEoB,CACtB,kCACE,YAAa,CACb,cAAe,CACf,iBAAoB,CACpB,8CACE,YAAa,CAEb,aAAc,CADd,cACgB,CAClB,wIACE,cAAe,CACf,aAAgB,C;ACzZtB,MACE,UACF,CAEA,8CACE,uBACF,CAEA,mBACE,yBAA0B,CAC1B,4BAAqB,CAArB,oBAAqB,CACrB,QACF,CAEA,gCACE,YACF,CAEA,UACE,sBACF,CAKA,8EAEE,wBACF,CAEA,KACE,aACF,CAEA,oBACE,cACF,CAEA,8BAEE,WAAa,CADb,UAEF,CAEA,0CACE,kBACF,CAEA,oCACE,wBAA+C,CAC/C,iBACF,CAEA,0CACE,wBACF,CAEA,0CACE,wBACF,CAEA,gDACE,wBACF,CAGE,oDAA4B,CAA5B,8QAA4B,CAA5B,sQAA4B,CAA5B,UAA4B,C;AChE5B,+BAA2B,CAA3B,eAA2B,CAI3B,2CAA8E,CAA9E,iBAA8E,CAA9E,uCAA8E,CAA9E,sDAA8E,CAA9E,sDAA8E,CAA9E,sDAA8E,CAA9E,mBAA8E,CAA9E,mBAA8E,CAA9E,gBAA8E,CAA9E,kGAA8E,CAI9E,sCAAuB,CAAvB,mDAAuB,CAIvB,+CAAyB,CAAzB,6CAAyB,CAIzB,iDAAuD,CAAvD,iBAAuD,CAAvD,mBAAuD,CAAvD,mDAAuD,CAAvD,oDAAuD,CAAvD,6CAAuD,CAIvD,4CAAuB,CAAvB,sDAAuB,CAMvB,sFAAa,CAIb,8FAAc,CAAd,mBAAc,CAGhB,uEACE,kBACF,CAEA,iEAEE,mBAAqB,CADrB,gBAEF,CAIA,8DAEE,cAAe,CADf,sBAEF,CAEA,0BACE,8DACE,yBACF,CACF,CAKE,0CAA4F,CAA5F,sDAA4F,CAA5F,oBAA4F,CAA5F,WAA4F,CAA5F,mBAA4F,CAA5F,mBAA4F,CAA5F,qBAA4F,CAA5F,UAA4F,CAA5F,kEAA4F,CAD9F,yBAEE,oaAAqiB,CACriB,4ZAA6hB,CAC7hB,6BAA8B,CAC9B,qBAAsB,CACtB,sBAAuB,CACvB,cACF,CAGE,sCAA4F,CAA5F,sDAA4F,CAA5F,oBAA4F,CAA5F,WAA4F,CAA5F,mBAA4F,CAA5F,mBAA4F,CAA5F,qBAA4F,CAA5F,UAA4F,CAA5F,8DAA4F,CAD9F,qBAEE,8ZAAma,CACna,sZAA2Z,CAC3Z,6BAA8B,CAC9B,qBAAsB,CACtB,sBAAuB,CACvB,cACF,C;AC3EE,sCAA4B,CAA5B,kBAA4B,CAA5B,iBAA4B,CAI5B,mDAAa,CAIb,+CAAiK,CAAjK,2BAAiK,CAAjK,iDAAiK,CAAjK,gEAAiK,CAAjK,4BAAiK,CAAjK,gEAAiK,CAAjK,gEAAiK,CAAjK,+BAAiK,CAAjK,0BAAiK,CAAjK,4GAAiK,CAAjK,sBAAiK,CAAjK,qBAAiK,CAAjK,uBAAiK,CAAjK,oBAAiK,CAAjK,0DAAiK,CAAjK,2BAAiK,CAAjK,6DAAiK,CAAjK,6DAAiK,CAIjK,wDAAuE,CAAvE,gEAAuE,CAAvE,0BAAuE,CAAvE,mEAAuE,CAAvE,6DAAuE,CAIvE,0CAAqB,CAIrB,0CAA0J,CAA1J,6BAA0J,CAA1J,gEAA0J,CAA1J,8BAA0J,CAA1J,wBAA0J,CAA1J,oDAA0J,CAA1J,wBAA0J,CAA1J,2BAA0J,CAA1J,6BAA0J,CAA1J,yBAA0J,CAA1J,sBAA0J,CAA1J,8BAA0J,CAA1J,qDAA0J,CAA1J,6BAA0J,CAA1J,6DAA0J,CAA1J,uDAA0J,CAI1J,oEAAiC,CAAjC,8BAAiC,CAAjC,2BAAiC,CAIjC,0FAAiH,CAAjH,6BAAiH,CAAjH,gEAAiH,CAAjH,yBAAiH,CAAjH,oDAAiH,CAAjH,yBAAiH,CAAjH,uBAAiH,CAAjH,qGAAiH,CAAjH,6BAAiH,CAAjH,6DAAiH,CAAjH,uDAAiH,CAIjH,gGAAwD,CAAxD,gEAAwD,CAAxD,2GAAwD,CAAxD,8DAAwD,CAIxD,wEAAmE,CAAnE,2BAAmE,CAAnE,6BAAmE,CAAnE,+DAAmE,CAAnE,+DAAmE,CAAnE,uDAAmE,CAAnE,8BAAmE,CAInE,2FAAgG,CAAhG,6BAAgG,CAAhG,gEAAgG,CAAhG,oDAAgG,CAAhG,yBAAgG,CAAhG,sGAAgG,CAAhG,6BAAgG,CAAhG,6DAAgG,CAAhG,uDAAgG,CAIhG,6DAA8D,CAA9D,2BAA8D,CAA9D,6BAA8D,CAA9D,8DAA8D,CAA9D,8DAA8D,CAA9D,uDAA8D,CAGhE,sCACE,sDAEF,CAGE,+EAA+I,CAA/I,2BAA+I,CAA/I,gEAA+I,CAA/I,iCAA+I,CAA/I,gEAA+I,CAA/I,yBAA+I,CAA/I,0FAA+I,CAA/I,2BAA+I,CAA/I,6BAA+I,CAA/I,8DAA+I,CAA/I,6DAA+I,CAA/I,uDAA+I,CAK/I,oMAA8D,CAA9D,2BAA8D,CAA9D,6BAA8D,CAA9D,8DAA8D,CAA9D,8DAA8D,CAA9D,uDAA8D,CAI9D,iCAA6I,CAA7I,iBAA6I,CAA7I,uCAA6I,CAA7I,sDAA6I,CAA7I,sDAA6I,CAA7I,sDAA6I,CAA7I,qBAA6I,CAA7I,gBAA6I,CAA7I,kGAA6I,CAA7I,YAA6I,CAA7I,4CAA6I,CAA7I,iBAA6I,CAA7I,mBAA6I,CAA7I,mDAA6I,CAA7I,mDAA6I,CAA7I,6CAA6I,CAD/I,YAEE,0BAA4B,CAC5B,SACF,CAGE,qCAAmE,CAAnE,6CAAmE,CAAnE,iBAAmE,CAAnE,gBAAmE,CAAnE,gDAAmE,CAAnE,6CAAmE,CAInE,kCAA2K,CAA3K,iBAA2K,CAA3K,mBAA2K,CAA3K,uCAA2K,CAA3K,sDAA2K,CAA3K,sDAA2K,CAA3K,sDAA2K,CAA3K,qBAA2K,CAA3K,kGAA2K,CAA3K,6CAA2K,CAA3K,iBAA2K,CAA3K,mBAA2K,CAA3K,oBAA2K,CAA3K,iBAA2K,CAA3K,6CAA2K,CAA3K,iBAA2K,CAA3K,mBAA2K,CAA3K,mDAA2K,CAA3K,mDAA2K,CAA3K,6CAA2K,CAI3K,mDAAgE,CAAhE,gEAAgE,CAAhE,8DAAgE,CAAhE,6DAAgE,CAIhE,gDAAmI,CAAnI,6BAAmI,CAAnI,gEAAmI,CAAnI,yBAAmI,CAAnI,oDAAmI,CAAnI,2BAAmI,CAAnI,6BAAmI,CAAnI,yBAAmI,CAAnI,uBAAmI,CAAnI,2DAAmI,CAAnI,6BAAmI,CAAnI,6DAAmI,CAAnI,uDAAmI,CAInI,4CAAgC,CAAhC,mBAAgC,CAAhC,6CAAgC,CAIhC,sEAJA,oDAI8D,CAA9D,4DAA8D,CAA9D,qBAA8D,CAA9D,6BAA8D,CAA9D,qBAA8D,CAA9D,kGAA8D,CAC9D,eAAgB,CADhB,iBAA8D,CAA9D,mBAA8D,CAGhE,kDACE,wBAA6C,CAC7C,0BACF,CAGE,oDAAgG,CAAhG,iBAAgG,CAAhG,qBAAgG,CAAhG,6BAAgG,CAAhG,sDAAgG,CAAhG,sDAAgG,CAAhG,kGAAgG,CAAhG,+DAAgG,CAAhG,iBAAgG,CAAhG,oDAAgG,CAAhG,mDAAgG,CADlG,+BAEE,qBACF,CAGE,kDAAiB,C;ACtGjB,6DAAgB,CAAhB,qDAAgB,CAAhB,wDAAgB,CAIhB,sBAAsB,CAAtB,eAAsB,CAAtB,sBAAsB,CAAtB,kBAAsB,CAItB,qBAAwG,CAAxG,oBAAwG,CAAxG,mBAAwG,CAAxG,iBAAwG,CAAxG,6DAAwG,CAAxG,mDAAwG,CAAxG,sDAAwG,CAAxG,8BAAwG,CAAxG,sDAAwG,CAAxG,qBAAwG,CAAxG,sBAAwG,CAAxG,mBAAwG,CAAxG,yCAAwG,CAAxG,mDAAwG,CAAxG,uFAAwG,CAAxG,oDAAwG,CAAxG,uDAAwG,EAIxG,qCAAY,C;ACZZ,wCAA+D,CAA/D,iBAA+D,CAA/D,mBAA+D,CAA/D,mDAA+D,CAA/D,oDAA+D,CAA/D,6CAA+D,CAI/D,8CAA2B,CAA3B,oDAA2B,CAI3B,qDAAuD,CAAvD,iBAAuD,CAAvD,mDAAuD,CAAvD,mDAAuD,CAAvD,oBAAuD,CACvD,6BADuD,CAKvD,oDAA4C,CAA5C,iBAA4C,CAA5C,mDAA4C,CAA5C,oDAA4C,CAI5C,uEAAoC,CAApC,oDAAoC,CAApC,qBAAoC,CAIpC,2CAAgC,CAAhC,mBAAgC,CAAhC,oDAAgC,CAAhC,6CAAgC,CAGlC,kJAGE,wBAA4B,CAD5B,+BAEF,CAEA,wJAOE,wBAA4B,CAD5B,8BAEF,CAEA,+BAEE,WAAa,CADb,UAEF,CAEA,qCACE,wBAA+C,CAC/C,iBACF,CAEA,2CACE,wBACF,C;AC9CA,+DAA0B,CAA1B,uCAA0B,CAA1B,qBAA0B,CAA1B,8BAA0B,CAA1B,wCAA0B,CAA1B,4BAA0B,CAA1B,uCAA0B,CAA1B,0HAA0B,CAA1B,8BAA0B,CAA1B,eAA0B,CAA1B,eAA0B,CAA1B,aAA0B,CAA1B,UAA0B,CAA1B,wBAA0B,CAA1B,QAA0B,CAA1B,uBAA0B,CAA1B,aAA0B,CAA1B,QAA0B,CAA1B,4DAA0B,CAA1B,gCAA0B,CAA1B,mCAA0B,CAA1B,mBAA0B,CAA1B,eAA0B,CAA1B,uBAA0B,CAA1B,2BAA0B,CAA1B,8CAA0B,CAA1B,mGAA0B,CAA1B,aAA0B,CAA1B,8BAA0B,CAA1B,mBAA0B,CAA1B,qBAA0B,CAA1B,aAA0B,CAA1B,iBAA0B,CAA1B,uBAA0B,CAA1B,iBAA0B,CAA1B,aAA0B,CAA1B,8BAA0B,CAA1B,oBAA0B,CAA1B,aAA0B,CAA1B,mEAA0B,CAA1B,aAA0B,CAA1B,mBAA0B,CAA1B,cAA0B,CAA1B,+BAA0B,CAA1B,mBAA0B,CAA1B,mBAA0B,CAA1B,QAA0B,CAA1B,SAA0B,CAA1B,iCAA0B,CAA1B,yEAA0B,CAA1B,4BAA0B,CAA1B,qBAA0B,CAA1B,4BAA0B,CAA1B,gCAA0B,CAA1B,gCAA0B,CAA1B,mEAA0B,CAA1B,0CAA0B,CAA1B,mBAA0B,CAA1B,mDAA0B,CAA1B,sDAA0B,CAA1B,YAA0B,CAA1B,yBAA0B,CAA1B,2DAA0B,CAA1B,iBAA0B,CAA1B,yBAA0B,CAA1B,0BAA0B,CAA1B,QAA0B,CAA1B,SAA0B,CAA1B,gBAA0B,CAA1B,wBAA0B,CAA1B,gEAA0B,CAA1B,SAA0B,CAA1B,sDAA0B,CAA1B,SAA0B,CAA1B,mCAA0B,CAA1B,wBAA0B,CAA1B,4DAA0B,CAA1B,qBAA0B,CAA1B,qBAA0B,CAA1B,cAA0B,CAA1B,qBAA0B,CAA1B,4OAA0B,CAA1B,uBAA0B,CAA1B,oBAA0B,CAA1B,eAA0B,CAA1B,qBAA0B,CAA1B,oBAA0B,CAA1B,eAA0B,CAA1B,gBAA0B,CAA1B,cAA0B,CAA1B,kBAA0B,CAA1B,oBAA0B,CAA1B,kWAA0B,CAA1B,0BAA0B,CAA1B,2BAA0B,CAA1B,uBAA0B,CAA1B,0GAA0B,CAA1B,wGAA0B,CAA1B,oBAA0B,CAA1B,8EAA0B,CAA1B,6BAA0B,CAA1B,kBAA0B,CAA1B,gEAA0B,CAA1B,SAA0B,CAA1B,sDAA0B,CAA1B,SAA0B,CAA1B,gDAA0B,CAA1B,8CAA0B,CAA1B,kBAA0B,CAA1B,2CAA0B,CAA1B,+UAA0B,CAA1B,aAA0B,CAA1B,uQAA0B,CAA1B,sCAA0B,CAA1B,2BAA0B,CAA1B,2BAA0B,CAA1B,oBAA0B,CAA1B,gCAA0B,CAA1B,wBAA0B,CAA1B,qEAA0B,CAA1B,uBAA0B,CAA1B,uBAA0B,CAA1B,uBAA0B,CAA1B,oBAA0B,CAA1B,gCAA0B,CAA1B,wBAA0B,CAA1B,kDAA0B,CAA1B,uBAA0B,CAA1B,oBAA0B,CAA1B,eAA0B,CAA1B,qBAA0B,CAA1B,4BAA0B,CAA1B,oBAA0B,CAA1B,gBAA0B,CAA1B,aAA0B,CAA1B,oBAA0B,CAA1B,aAA0B,CAA1B,WAA0B,CAA1B,SAA0B,CAA1B,gCAA0B,CAA1B,wBAA0B,CAA1B,wBAA0B,CAA1B,qBAA0B,CAA1B,gBAA0B,CAA1B,qBAA0B,CAA1B,UAA0B,CAA1B,+BAA0B,CAA1B,+BAA0B,CAA1B,oFAA0B,CAA1B,0BAA0B,CAA1B,2BAA0B,CAA1B,uBAA0B,CAA1B,0GAA0B,CAA1B,wGAA0B,CAA1B,8EAA0B,CAA1B,6BAA0B,CAA1B,kBAA0B,CAA1B,0EAA0B,CAA1B,uBAA0B,CAA1B,2BAA0B,CAA1B,yBAA0B,CAA1B,wBAA0B,CAA1B,mTAA0B,CAA1B,8EAA0B,CAA1B,oBAA0B,CAA1B,eAA0B,EAA1B,uMAA0B,CAA1B,2EAA0B,CAA1B,oBAA0B,CAA1B,eAA0B,EAA1B,+IAA0B,CAA1B,wBAA0B,CAA1B,2DAA0B,CAA1B,qPAA0B,CAA1B,uBAA0B,CAA1B,2BAA0B,CAA1B,yBAA0B,CAA1B,wBAA0B,CAA1B,oFAA0B,CAA1B,oBAA0B,CAA1B,eAA0B,EAA1B,qGAA0B,CAA1B,wBAA0B,CAA1B,4BAA0B,CAA1B,oBAA0B,CAA1B,eAA0B,CAA1B,cAA0B,CAA1B,eAA0B,CAA1B,mBAA0B,CAA1B,SAA0B,CAA1B,8CAA0B,CAA1B,yCAA0B,CAA1B,4CAA0B,CAA1B,4BAA0B,CAA1B,gEAA0B,CAA1B,mBAA0B,CAA1B,oBAA0B,CAA1B,wCAA0B,CAA1B,uBAA0B,CAA1B,kBAA0B,CAA1B,kBAA0B,CAA1B,aAA0B,CAA1B,aAA0B,CAA1B,aAA0B,CAA1B,cAA0B,CAA1B,cAA0B,CAA1B,YAA0B,CAA1B,YAA0B,CAA1B,iBAA0B,CAA1B,qCAA0B,CAA1B,6BAA0B,CAA1B,4BAA0B,CAA1B,2BAA0B,CAA1B,cAA0B,CAA1B,mBAA0B,CAA1B,qBAA0B,CAA1B,sBAA0B,CAA1B,uBAA0B,CAA1B,iBAA0B,CAA1B,0BAA0B,CAA1B,2BAA0B,CAA1B,mCAA0B,CAA1B,iCAA0B,CAA1B,0BAA0B,CAA1B,qBAA0B,CAA1B,6BAA0B,CAA1B,WAA0B,CAA1B,iBAA0B,CAA1B,eAA0B,CAA1B,gBAA0B,CAA1B,iBAA0B,CAA1B,aAA0B,CAA1B,eAA0B,CAA1B,YAA0B,CAA1B,kBAA0B,CAA1B,oBAA0B,CAA1B,0BAA0B,CAA1B,wBAA0B,CAA1B,yBAA0B,CAA1B,0BAA0B,CAA1B,sBAA0B,CAA1B,uBAA0B,CAA1B,wBAA0B,CAA1B,qBAA0B,CAA1B,kCAA0B,CAA1B,uBAA0B,CAA1B,kBAA0B,CAA1B,kBAA0B,CAA1B,aAA0B,CAA1B,aAA0B,CAA1B,aAA0B,CAA1B,cAA0B,CAA1B,cAA0B,CAA1B,YAA0B,CAA1B,YAA0B,CAA1B,iBAA0B,CAA1B,qCAA0B,CAA1B,6BAA0B,CAA1B,4BAA0B,CAA1B,2BAA0B,CAA1B,cAA0B,CAA1B,mBAA0B,CAA1B,qBAA0B,CAA1B,sBAA0B,CAA1B,uBAA0B,CAA1B,iBAA0B,CAA1B,0BAA0B,CAA1B,2BAA0B,CAA1B,mCAA0B,CAA1B,iCAA0B,CAA1B,0BAA0B,CAA1B,qBAA0B,CAA1B,6BAA0B,CAA1B,WAA0B,CAA1B,iBAA0B,CAA1B,eAA0B,CAA1B,gBAA0B,CAA1B,iBAA0B,CAA1B,aAA0B,CAA1B,eAA0B,CAA1B,YAA0B,CAA1B,kBAA0B,CAA1B,oBAA0B,CAA1B,0BAA0B,CAA1B,wBAA0B,CAA1B,yBAA0B,CAA1B,0BAA0B,CAA1B,sBAA0B,CAA1B,uBAA0B,CAA1B,wBAA0B,CAA1B,qBAA0B,CAC1B,qBAAgC,CAAhC,mDAAgC,EAAhC,mDAAgC,EAAhC,qDAAgC,EAAhC,qDAAgC,EAAhC,qDAAgC,EAAhC,+EAAgC,CAAhC,uBAAgC,CAAhC,oBAAgC,CAAhC,eAAgC,CAAhC,qBAAgC,CAAhC,oBAAgC,CAAhC,eAAgC,CAAhC,gBAAgC,CAAhC,cAAgC,CAAhC,kBAAgC,CAAhC,oBAAgC,CAAhC,6HAAgC,CAAhC,0BAAgC,CAAhC,2BAAgC,CAAhC,uBAAgC,CAAhC,0GAAgC,CAAhC,wGAAgC,CAAhC,oBAAgC,CAAhC,8EAAgC,CAAhC,6BAAgC,CAAhC,kBAAgC,CAAhC,4EAAgC,CAAhC,SAAgC,CAAhC,kEAAgC,CAAhC,SAAgC,CAAhC,2DAAgC,CAAhC,yDAAgC,CAAhC,kBAAgC,CAAhC,sDAAgC,CAAhC,kbAAgC,CAAhC,aAAgC,CAAhC,6QAAgC,CAAhC,sCAAgC,CAAhC,2BAAgC,CAAhC,2BAAgC,CAAhC,oBAAgC,CAAhC,gCAAgC,CAAhC,wBAAgC,CAAhC,gEAAgC,CAAhC,uBAAgC,CAAhC,uBAAgC,CAAhC,uBAAgC,CAAhC,oBAAgC,CAAhC,gCAAgC,CAAhC,wBAAgC,CAChC,2BAA+B,CAA/B,cAA+B,CAA/B,UAA+B,CAA/B,WAA+B,CAA/B,eAA+B,CAA/B,SAA+B,CAA/B,iBAA+B,CAA/B,kBAA+B,CAA/B,SAA+B,CAA/B,wCAA+B,CAA/B,wCAA+B,CAA/B,2BAA+B,CAA/B,4BAA+B,CAA/B,uBAA+B,CAA/B,qBAA+B,CAA/B,2BAA+B,CAA/B,2BAA+B,CAA/B,uBAA+B,CAA/B,gBAA+B,CAA/B,iBAA+B,CAA/B,OAA+B,CAA/B,mBAA+B,CAA/B,KAA+B,CAA/B,yBAA+B,CAA/B,mBAA+B,CAA/B,uBAA+B,CAA/B,mBAA+B,CAA/B,kBAA+B,CAA/B,wBAA+B,CAA/B,sBAA+B,CAA/B,cAA+B,CAA/B,gBAA+B,CAA/B,oBAA+B,CAA/B,qBAA+B,CAA/B,YAA+B,CAA/B,kBAA+B,CAA/B,kBAA+B,CAA/B,gBAA+B,CAA/B,gBAA+B,CAA/B,iBAA+B,CAA/B,kBAA+B,CAA/B,0BAA+B,CAA/B,kBAA+B,CAA/B,cAA+B,CAA/B,gBAA+B,CAA/B,gBAA+B,CAA/B,gBAA+B,CAA/B,gBAA+B,CAA/B,gBAA+B,CAA/B,qCAA+B,CAA/B,qCAA+B,CAA/B,qCAA+B,CAA/B,qCAA+B,CAA/B,kCAA+B,CAA/B,0BAA+B,CAA/B,oBAA+B,CAA/B,8BAA+B,CAA/B,qBAA+B,CAA/B,yBAA+B,CAA/B,mBAA+B,CAA/B,4BAA+B,CAA/B,kBAA+B,CAA/B,gCAA+B,CAA/B,mBAA+B,CAA/B,2BAA+B,CAA/B,iBAA+B,CAA/B,yBAA+B,CAA/B,iBAA+B,CAA/B,2BAA+B,CAA/B,iBAA+B,CAA/B,yBAA+B,CAA/B,gBAA+B,CAA/B,0BAA+B,CAA/B,iBAA+B,CAA/B,wBAA+B,CAA/B,eAA+B,CAA/B,0BAA+B,CAA/B,oBAA+B,CAA/B,8BAA+B,CAA/B,0BAA+B,CAA/B,wBAA+B,CAA/B,2BAA+B,CAA/B,4BAA+B,CAA/B,0BAA+B,CAA/B,uBAA+B,CAA/B,yBAA+B,CAA/B,0BAA+B,CAA/B,wBAA+B,CAA/B,4BAA+B,CAA/B,uBAA+B,CAA/B,4BAA+B,CAA/B,wBAA+B,CAA/B,sBAA+B,CAA/B,yBAA+B,CAA/B,wBAA+B,CAA/B,sBAA+B,CAA/B,yBAA+B,CAA/B,yBAA+B,CAA/B,6BAA+B,CAA/B,wBAA+B,CAA/B,yBAA+B,CAA/B,uBAA+B,CAA/B,0BAA+B,CAA/B,yBAA+B,CAA/B,kBAA+B,CAA/B,2BAA+B,CAA/B,uBAA+B,CAA/B,2BAA+B,CAA/B,wBAA+B,CAA/B,sBAA+B,CAA/B,2BAA+B,CAA/B,uBAA+B,CAA/B,qBAA+B,CAA/B,wBAA+B,CAA/B,uBAA+B,CAA/B,qBAA+B,CAA/B,oBAA+B,CAA/B,kCAA+B,CAA/B,kBAA+B,CAA/B,gCAA+B,CAA/B,oBAA+B,CAA/B,8BAA+B,CAA/B,kBAA+B,CAA/B,oBAA+B,CAA/B,2CAA+B,CAA/B,aAA+B,CAA/B,sBAA+B,CAA/B,kBAA+B,CAA/B,sBAA+B,CAA/B,mBAA+B,CAA/B,iBAA+B,CAA/B,iBAA+B,CAA/B,iBAA+B,CAA/B,sBAA+B,CAA/B,iBAA+B,CAA/B,iBAA+B,CAA/B,kBAA+B,CAA/B,iBAA+B,CAA/B,gBAA+B,CAA/B,kBAA+B,CAA/B,kBAA+B,CAA/B,mBAA+B,CAA/B,kBAA+B,CAA/B,kBAA+B,CAA/B,gBAA+B,CAA/B,kBAA+B,CAA/B,mBAA+B,CAA/B,qBAA+B,CAA/B,kBAA+B,CAA/B,mBAA+B,CAA/B,mBAA+B,CAA/B,sBAA+B,CAA/B,0BAA+B,CAA/B,0BAA+B,CAA/B,2DAA+B,CAA/B,8BAA+B,CAA/B,4BAA+B,CAA/B,YAA+B,CAA/B,iBAA+B,CAA/B,qBAA+B,CAA/B,wBAA+B,CAA/B,kBAA+B,CAA/B,mBAA+B,CAA/B,gBAA+B,CAA/B,kBAA+B,CAA/B,gBAA+B,CAA/B,qBAA+B,CAA/B,gBAA+B,CAA/B,gBAA+B,CAA/B,iBAA+B,CAA/B,gBAA+B,CAA/B,eAA+B,CAA/B,iBAA+B,CAA/B,kBAA+B,CAA/B,iBAA+B,CAA/B,iBAA+B,CAA/B,mBAA+B,CAA/B,eAA+B,CAA/B,iBAA+B,CAA/B,kBAA+B,CAA/B,+BAA+B,CAA/B,kBAA+B,CAA/B,kBAA+B,CAA/B,oBAA+B,CAA/B,0BAA+B,CAA/B,0BAA+B,CAA/B,0BAA+B,CAA/B,0BAA+B,CAA/B,0BAA+B,CAA/B,yBAA+B,CAA/B,yBAA+B,CAA/B,0BAA+B,CAA/B,yBAA+B,CAA/B,yBAA+B,CAA/B,yBAA+B,CAA/B,mBAA+B,CAA/B,wBAA+B,CAA/B,oBAA+B,CAA/B,sCAA+B,CAA/B,4BAA+B,CAA/B,gDAA+B,CAA/B,gCAA+B,CAA/B,0CAA+B,CAA/B,4CAA+B,CAA/B,wCAA+B,CAA/B,gOAA+B,CAA/B,yCAA+B,CAA/B,wCAA+B,CAA/B,4NAA+B,CAA/B,mCAA+B,CAA/B,sCAA+B,CAA/B,2NAA+B,CAA/B,uCAA+B,CAA/B,mCAA+B,CAA/B,2NAA+B,CAA/B,sCAA+B,CAA/B,yBAA+B,CAA/B,cAA+B,CAA/B,kNAA+B,CAA/B,yBAA+B,CAA/B,eAA+B,CAA/B,0BAA+B,CAA/B,gBAA+B,CAA/B,kNAA+B,CAA/B,gNAA+B,CAA/B,0DAA+B,CAA/B,sCAA+B,CAA/B,oCAA+B,EAA/B,4DAA+B,CAA/B,0CAA+B,EAA/B,+CAA+B,CAA/B,wBAA+B,CAA/B,sCAA+B,CAA/B,8BAA+B,CAA/B,qCAA+B,CAA/B,qBAA+B,CAA/B,gBAA+B,CAA/B,uCAA+B,CAA/B,+BAA+B,CAA/B,wCAA+B,CAA/B,oBAA+B,CAA/B,eAA+B,CAA/B,0DAA+B,CAA/B,0DAA+B,CAA/B,0DAA+B,CAA/B,0DAA+B,CAA/B,0DAA+B,CAA/B,uDAA+B,CAA/B,4BAA+B,CAA/B,+BAA+B,CAA/B,yBAA+B,CAA/B,mCAA+B,CAA/B,+BAA+B,CAA/B,gCAA+B,CAA/B,oCAA+B,CAA/B,kCAA+B,CAA/B,qCAA+B,CAA/B,sCAA+B,CAA/B,8CAA+B,CAA/B,iBAA+B,CAA/B,eAA+B,CAA/B,iBAA+B,CAA/B,0BAA+B,CAA/B,YAA+B,CAA/B,mCAA+B,CAA/B,kBAA+B,CAA/B,+BAA+B,CAA/B,iBAA+B,CAA/B,mCAA+B,CAA/B,kBAA+B,CAA/B,8BAA+B,CAA/B,gBAA+B,CAA/B,+BAA+B,CAA/B,iBAA+B,CAA/B,6BAA+B,CAA/B,eAA+B,CAA/B,sBAA+B,CAA/B,qBAA+B,CAA/B,wBAA+B,CAA/B,uBAA+B,CAA/B,gEAA+B,CAA/B,yDAA+B,CAA/B,oDAA+B,CAA/B,+DAA+B,CAA/B,wDAA+B,CAA/B,mDAA+B,CAA/B,+DAA+B,CAA/B,uDAA+B,CAA/B,kDAA+B,CAA/B,+DAA+B,CAA/B,wDAA+B,CAA/B,mDAA+B,CAA/B,+DAA+B,CAA/B,sDAA+B,CAA/B,iDAA+B,CAA/B,+DAA+B,CAA/B,wDAA+B,CAA/B,mDAA+B,CAA/B,+DAA+B,CAA/B,sDAA+B,CAA/B,iDAA+B,CAA/B,+DAA+B,CAA/B,oDAA+B,CAA/B,uDAA+B,CAA/B,gEAA+B,CAA/B,oDAA+B,CAA/B,uDAA+B,CAA/B,gEAA+B,CAA/B,kDAA+B,CAA/B,qDAA+B,CAA/B,+DAA+B,CAA/B,mDAA+B,CAA/B,sDAA+B,CAA/B,+DAA+B,CAA/B,oDAA+B,CAA/B,uDAA+B,CAA/B,+DAA+B,CAA/B,kDAA+B,CAA/B,qDAA+B,CAA/B,+DAA+B,CAA/B,qDAA+B,CAA/B,wDAA+B,CAA/B,+DAA+B,CAA/B,oDAA+B,CAA/B,uDAA+B,CAA/B,+DAA+B,CAA/B,qDAA+B,CAA/B,wDAA+B,CAA/B,+DAA+B,CAA/B,kDAA+B,CAA/B,qDAA+B,CAA/B,+DAA+B,CAA/B,4DAA+B,CAA/B,uDAA+B,CAA/B,iEAA+B,CAA/B,4DAA+B,CAA/B,uDAA+B,CAA/B,+DAA+B,CAA/B,wDAA+B,CAA/B,2DAA+B,CAA/B,uEAA+B,CAA/B,qDAA+B,CAA/B,yEAA+B,CAA/B,sDAA+B,CAA/B,yEAA+B,CAA/B,sDAA+B,CAA/B,4BAA+B,CAA/B,gCAA+B,CAA/B,kCAA+B,CAA/B,gCAA+B,CAA/B,gCAA+B,CAA/B,gCAA+B,CAA/B,oCAA+B,CAA/B,qCAA+B,CAA/B,yBAA+B,CAA/B,sBAA+B,CAA/B,+CAA+B,CAA/B,6BAA+B,CAA/B,kCAA+B,CAA/B,+BAA+B,CAA/B,iCAA+B,CAA/B,6BAA+B,CAA/B,iCAA+B,CAA/B,gCAA+B,CAA/B,+CAA+B,CAA/B,kCAA+B,CAA/B,6CAA+B,CAA/B,4BAA+B,CAA/B,+CAA+B,CAA/B,8BAA+B,CAA/B,2CAA+B,CAA/B,wBAA+B,CAA/B,8CAA+B,CAA/B,6BAA+B,CAA/B,gDAA+B,CAA/B,+BAA+B,CAA/B,4CAA+B,CAA/B,yBAA+B,CAA/B,0CAA+B,CAA/B,6BAA+B,CAA/B,4CAA+B,CAA/B,+BAA+B,CAA/B,4CAA+B,CAA/B,wBAA+B,CAA/B,0BAA+B,CAA/B,0BAA+B,CAA/B,iCAA+B,CAA/B,iCAA+B,CAA/B,mCAA+B,CAA/B,+BAA+B,CAA/B,+BAA+B,CAA/B,iCAA+B,CAA/B,iCAA+B,CAA/B,gCAA+B,CAA/B,gCAA+B,CAA/B,8BAA+B,CAA/B,8BAA+B,CAA/B,kCAA+B,CAA/B,uCAA+B,CAA/B,qDAA+B,CAA/B,yCAA+B,CAA/B,sDAA+B,CAA/B,yCAA+B,CAA/B,sDAA+B,CAA/B,yCAA+B,CAA/B,qDAA+B,CAA/B,yCAA+B,CAA/B,qDAA+B,CAA/B,yCAA+B,CAA/B,oDAA+B,CAA/B,qCAA+B,CAA/B,sDAA+B,CAA/B,qCAA+B,CAA/B,sDAA+B,CAA/B,2CAA+B,CAA/B,sDAA+B,CAA/B,2CAA+B,CAA/B,sDAA+B,CAA/B,2CAA+B,CAA/B,sDAA+B,CAA/B,2CAA+B,CAA/B,mDAA+B,CAA/B,4CAA+B,CAA/B,mCAA+B,CAA/B,sDAA+B,CAA/B,wCAA+B,CAA/B,qDAA+B,CAA/B,6CAA+B,CAA/B,6DAA+B,CAA/B,0DAA+B,CAA/B,2CAA+B,CAA/B,gCAA+B,CAA/B,sDAA+B,CAA/B,+BAA+B,CAA/B,sDAA+B,CAA/B,gCAA+B,CAA/B,oDAA+B,CAA/B,+BAA+B,CAA/B,sDAA+B,CAA/B,+BAA+B,CAA/B,sDAA+B,CAA/B,+BAA+B,CAA/B,qDAA+B,CAA/B,8BAA+B,CAA/B,sDAA+B,CAA/B,+BAA+B,CAA/B,oDAA+B,CAA/B,8BAA+B,CAA/B,qDAA+B,CAA/B,gCAA+B,CAA/B,sDAA+B,CAA/B,iCAA+B,CAA/B,sDAA+B,CAA/B,gCAA+B,CAA/B,sDAA+B,CAA/B,iCAA+B,CAA/B,qDAA+B,CAA/B,iCAA+B,CAA/B,oDAA+B,CAA/B,iCAA+B,CAA/B,oDAA+B,CAA/B,gCAA+B,CAA/B,sDAA+B,CAA/B,6BAA+B,CAA/B,sDAA+B,CAA/B,6BAA+B,CAA/B,sDAA+B,CAA/B,4BAA+B,CAA/B,sDAA+B,CAA/B,mCAA+B,CAA/B,sDAA+B,CAA/B,2DAA+B,CAA/B,mCAA+B,CAA/B,sDAA+B,CAA/B,mCAA+B,CAA/B,sDAA+B,CAA/B,kCAA+B,CAA/B,sDAA+B,CAA/B,0DAA+B,CAA/B,0DAA+B,CAA/B,mCAA+B,CAA/B,oDAA+B,CAA/B,mCAA+B,CAA/B,mDAA+B,CAA/B,mCAA+B,CAA/B,mDAA+B,CAA/B,mCAA+B,CAA/B,mDAA+B,CAA/B,4CAA+B,CAA/B,2BAA+B,CAA/B,sDAA+B,CAA/B,iDAA+B,CAA/B,kDAA+B,CAA/B,iDAA+B,CAA/B,iDAA+B,CAA/B,gCAA+B,CAA/B,sDAA+B,CAA/B,gCAA+B,CAA/B,qDAA+B,CAA/B,+BAA+B,CAA/B,sDAA+B,CAA/B,kCAA+B,CAA/B,kCAA+B,CAA/B,mCAA+B,CAA/B,sFAA+B,CAA/B,6FAA+B,CAA/B,oFAA+B,CAA/B,qFAA+B,CAA/B,6EAA+B,CAA/B,kEAA+B,CAA/B,iEAA+B,CAA/B,6EAA+B,CAA/B,kEAA+B,CAA/B,iEAA+B,CAA/B,6EAA+B,CAA/B,iEAA+B,CAA/B,iEAA+B,CAA/B,8EAA+B,CAA/B,mEAA+B,CAA/B,iEAA+B,CAA/B,+FAA+B,CAA/B,mEAA+B,CAA/B,iEAA+B,CAA/B,oEAA+B,CAA/B,iEAA+B,CAA/B,iEAA+B,CAA/B,uEAA+B,CAA/B,uEAA+B,CAA/B,yEAA+B,CAA/B,+BAA+B,CAA/B,kCAA+B,CAA/B,yCAA+B,CAA/B,6BAA+B,CAA/B,+BAA+B,CAA/B,oCAA+B,CAA/B,iCAA+B,CAA/B,gBAA+B,CAA/B,wCAA+B,CAA/B,sBAA+B,CAA/B,mBAA+B,CAA/B,uBAA+B,CAA/B,kBAA+B,CAA/B,mBAA+B,CAA/B,iBAA+B,CAA/B,oBAA+B,CAA/B,mBAA+B,CAA/B,yBAA+B,CAA/B,oBAA+B,CAA/B,6BAA+B,CAA/B,qBAA+B,CAA/B,0BAA+B,CAA/B,oBAA+B,CAA/B,wBAA+B,CAA/B,mBAA+B,CAA/B,6BAA+B,CAA/B,qBAA+B,CAA/B,yBAA+B,CAA/B,oBAA+B,CAA/B,uBAA+B,CAA/B,kBAA+B,CAA/B,yBAA+B,CAA/B,oBAA+B,CAA/B,sBAA+B,CAA/B,aAA+B,CAA/B,+BAA+B,CAA/B,mBAA+B,CAA/B,2BAA+B,CAA/B,kBAA+B,CAA/B,+BAA+B,CAA/B,mBAA+B,CAA/B,4BAA+B,CAA/B,kBAA+B,CAA/B,0BAA+B,CAA/B,gBAA+B,CAA/B,0BAA+B,CAA/B,iBAA+B,CAA/B,+BAA+B,CAA/B,mBAA+B,CAA/B,2BAA+B,CAA/B,kBAA+B,CAA/B,yBAA+B,CAA/B,gBAA+B,CAA/B,4BAA+B,CAA/B,mBAA+B,CAA/B,2BAA+B,CAA/B,kBAA+B,CAA/B,yBAA+B,CAA/B,gBAA+B,CAA/B,sBAA+B,CAA/B,4BAA+B,CAA/B,0BAA+B,CAA/B,2BAA+B,CAA/B,yBAA+B,CAA/B,4BAA+B,CAA/B,2BAA+B,CAA/B,0BAA+B,CAA/B,wBAA+B,CAA/B,0BAA+B,CAA/B,wBAA+B,CAA/B,yBAA+B,CAA/B,uBAA+B,CAA/B,0BAA+B,CAA/B,yBAA+B,CAA/B,0BAA+B,CAA/B,2BAA+B,CAA/B,yBAA+B,CAA/B,yBAA+B,CAA/B,0BAA+B,CAA/B,wBAA+B,CAA/B,0BAA+B,CAA/B,2BAA+B,CAA/B,2BAA+B,CAA/B,wBAA+B,CAA/B,wBAA+B,CAA/B,sBAA+B,CAA/B,yBAA+B,CAA/B,wBAA+B,CAA/B,sBAA+B,CAA/B,0BAA+B,CAA/B,8BAA+B,CAA/B,4BAA+B,CAA/B,mCAA+B,CAA/B,uHAA+B,CAA/B,qIAA+B,CAA/B,0BAA+B,CAA/B,gBAA+B,CAA/B,4BAA+B,CAA/B,mBAA+B,CAA/B,yBAA+B,CAA/B,kBAA+B,CAA/B,2BAA+B,CAA/B,mBAA+B,CAA/B,0BAA+B,CAA/B,mBAA+B,CAA/B,0BAA+B,CAA/B,mBAA+B,CAA/B,yBAA+B,CAA/B,gBAA+B,CAA/B,2BAA+B,CAA/B,gBAA+B,CAA/B,0BAA+B,CAA/B,4BAA+B,CAA/B,4BAA+B,CAA/B,8BAA+B,CAA/B,mCAA+B,CAA/B,qCAA+B,CAA/B,2BAA+B,CAA/B,8BAA+B,CAA/B,6BAA+B,CAA/B,8BAA+B,CAA/B,2BAA+B,CAA/B,8BAA+B,CAA/B,+BAA+B,CAA/B,oCAA+B,CAA/B,oCAA+B,CAA/B,oCAA+B,CAA/B,6CAA+B,CAA/B,oCAA+B,CAA/B,2CAA+B,CAA/B,oCAA+B,CAA/B,2CAA+B,CAA/B,oCAA+B,CAA/B,2CAA+B,CAA/B,oCAA+B,CAA/B,2CAA+B,CAA/B,kCAA+B,CAA/B,0CAA+B,CAA/B,mCAA+B,CAA/B,4CAA+B,CAA/B,mCAA+B,CAA/B,2CAA+B,CAA/B,mCAA+B,CAA/B,2CAA+B,CAA/B,mCAA+B,CAA/B,2CAA+B,CAA/B,mCAA+B,CAA/B,2CAA+B,CAA/B,kCAA+B,CAA/B,4CAA+B,CAA/B,kCAA+B,CAA/B,2CAA+B,CAA/B,oCAA+B,CAA/B,2CAA+B,CAA/B,qCAA+B,CAA/B,4CAA+B,CAA/B,qCAA+B,CAA/B,4CAA+B,CAA/B,qCAA+B,CAA/B,2CAA+B,CAA/B,qCAA+B,CAA/B,2CAA+B,CAA/B,qCAA+B,CAA/B,2CAA+B,CAA/B,qCAA+B,CAA/B,2CAA+B,CAA/B,oCAA+B,CAA/B,6CAA+B,CAA/B,oCAA+B,CAA/B,4CAA+B,CAA/B,iCAA+B,CAA/B,6CAA+B,CAA/B,iCAA+B,CAA/B,2CAA+B,CAA/B,iCAA+B,CAA/B,2CAA+B,CAA/B,iCAA+B,CAA/B,2CAA+B,CAA/B,iCAA+B,CAA/B,2CAA+B,CAA/B,uCAA+B,CAA/B,6CAA+B,CAA/B,uCAA+B,CAA/B,6CAA+B,CAA/B,uCAA+B,CAA/B,6CAA+B,CAA/B,uCAA+B,CAA/B,2CAA+B,CAA/B,uCAA+B,CAA/B,0CAA+B,CAA/B,uCAA+B,CAA/B,0CAA+B,CAA/B,uCAA+B,CAA/B,0CAA+B,CAA/B,+BAA+B,CAA/B,6CAA+B,CAA/B,oCAA+B,CAA/B,4CAA+B,CAA/B,oCAA+B,CAA/B,4CAA+B,CAA/B,oCAA+B,CAA/B,0CAA+B,CAA/B,oCAA+B,CAA/B,2CAA+B,CAA/B,yCAA+B,CAA/B,+CAA+B,CAA/B,iCAA+B,CAA/B,uEAA+B,CAA/B,oDAA+B,CAA/B,kEAA+B,CAA/B,oDAA+B,CAA/B,oBAA+B,CAA/B,sBAA+B,CAA/B,sBAA+B,CAA/B,uBAA+B,CAA/B,sBAA+B,CAA/B,uBAA+B,CAA/B,4EAA+B,CAA/B,4FAA+B,CAA/B,qHAA+B,CAA/B,oFAA+B,CAA/B,iGAA+B,CAA/B,kFAA+B,CAA/B,+FAA+B,CAA/B,wHAA+B,CAA/B,kDAA+B,CAA/B,sDAA+B,CAA/B,2CAA+B,CAA/B,kBAA+B,CAA/B,kHAA+B,CAA/B,kGAA+B,CAA/B,wGAA+B,CAA/B,kHAA+B,CAA/B,wGAA+B,CAA/B,kHAA+B,CAA/B,wGAA+B,CAA/B,wGAA+B,CAA/B,kHAA+B,CAA/B,wGAA+B,CAA/B,iCAA+B,CAA/B,+BAA+B,CAA/B,iDAA+B,CAA/B,uDAA+B,CAA/B,sDAA+B,CAA/B,qCAA+B,CAA/B,sDAA+B,CAA/B,uCAA+B,CAA/B,uDAA+B,CAA/B,uCAA+B,CAA/B,uDAA+B,CAA/B,yDAA+B,CAA/B,+BAA+B,CAA/B,uDAA+B,CAA/B,uDAA+B,CAA/B,sCAA+B,CAA/B,8BAA+B,CAA/B,kMAA+B,CAA/B,+CAA+B,CAA/B,kTAA+B,CAA/B,sQAA+B,CAA/B,8CAA+B,CAA/B,+RAA+B,CAA/B,sQAA+B,CAA/B,oCAA+B,CAA/B,qJAA+B,CAA/B,6IAA+B,CAA/B,qKAA+B,CAA/B,kDAA+B,CAA/B,wCAA+B,CAA/B,uBAA+B,CAA/B,kDAA+B,CAA/B,2CAA+B,CAA/B,yFAA+B,CAA/B,kDAA+B,CAA/B,4CAA+B,CAA/B,2BAA+B,CAA/B,kDAA+B,CAA/B,8CAA+B,CAA/B,6BAA+B,CAA/B,kDAA+B,CAA/B,qCAA+B,CAA/B,sCAA+B,CAA/B,qCAA+B,CAA/B,qCAA+B,CAA/B,qCAA+B,CAA/B,0DAA+B,CAA/B,+DAA+B,CAA/B,8CAA+B,CAA/B,2DAA+B,CAA/B,sJAA+B,CAA/B,+DAA+B,CAT/B,2CAgCA,CAhCA,iDAgCA,CAhCA,sDAgCA,CAhCA,sDAgCA,CAhCA,sDAgCA,CAhCA,sDAgCA,CAhCA,wDAgCA,CAhCA,sDAgCA,CAhCA,6CAgCA,CAhCA,sDAgCA,CAhCA,4CAgCA,CAhCA,sDAgCA,CAhCA,6CAgCA,CAhCA,oDAgCA,CAhCA,6CAgCA,CAhCA,sDAgCA,CAhCA,8CAgCA,CAhCA,oDAgCA,CAhCA,yCAgCA,CAhCA,sDAgCA,CAhCA,gDAgCA,CAhCA,sDAgCA,CAhCA,wEAgCA,CAhCA,+CAgCA,CAhCA,sDAgCA,CAhCA,wCAgCA,CAhCA,sDAgCA,CAhCA,+DAgCA,CAhCA,+CAgCA,CAhCA,2CAgCA,CAhCA,kDAgCA,CAhCA,4CAgCA,CAhCA,kDAgCA,CAhCA,4CAgCA,CAhCA,kDAgCA,CAhCA,2CAgCA,CAhCA,kDAgCA,CAhCA,2CAgCA,CAhCA,kDAgCA,CAhCA,2CAgCA,CAhCA,8CAgCA,CAhCA,2CAgCA,CAhCA,8CAgCA,CAhCA,2CAgCA,CAhCA,oDAgCA,CAhCA,6CAgCA,CAhCA,oDAgCA,CAhCA,6CAgCA,CAhCA,oDAgCA,CAhCA,6CAgCA,CAhCA,oDAgCA,CAhCA,2CAgCA,CAhCA,oDAgCA,CAhCA,0CAgCA,CAhCA,oDAgCA,CAhCA,0CAgCA,CAhCA,oDAgCA,CAhCA,0CAgCA,CAhCA,iDAgCA,CAhCA,2CAgCA,CAhCA,sDAgCA,CAhCA,mCAgCA,CAhCA,+DAgCA,CAhCA,sDAgCA,CAhCA,kGAgCA,CAhCA,6BAgCA,CAhCA,qDAgCA,CAhCA,sDAgCA,CAhCA,qDAgCA,CAhCA,oDAgCA,CAhCA,sDAgCA,CAhCA,sDAgCA,CAhCA,sDAgCA,CAhCA,qDAgCA,CAhCA,kDAgCA,CAhCA,sDAgCA,CAhCA,wDAgCA,CAhCA,sDAgCA,CAhCA,8CAgCA,CAhCA,oDAgCA,CAhCA,gDAgCA,CAhCA,sDAgCA,CAhCA,+CAgCA,CAhCA,sDAgCA,CAhCA,gDAgCA,CAhCA,sDAgCA,CAhCA,gDAgCA,CAhCA,oDAgCA,CAhCA,8CAgCA,CAhCA,2CAgCA,CAhCA,oDAgCA,CAhCA,6CAgCA,CAhCA,oDAgCA,CAhCA,6CAgCA,CAhCA,oDAgCA,CAhCA,2CAgCA,CAhCA,oDAgCA,CAhCA,0CAgCA,CAhCA,oDAgCA,CAhCA,0CAgCA,CAhCA,4CAgCA,CAhCA,6CAgCA,CAhCA,sDAgCA,CAhCA,+CAgCA,CAhCA,6BAgCA,CAhCA,kGAgCA,CAhCA,wDAgCA,CAhCA,kBAgCA,CAhCA,6HAgCA,CAhCA,wGAgCA,CAhCA,gIAgCA,CAhCA,+HAgCA,CAhCA,kGAgCA,CAhCA,+HAgCA,CAhCA,wGAgCA,CAhCA,kIAgCA,CAhCA,+HAgCA,CAhCA,wGAgCA,CAhCA,kDAgCA,CAhCA,uDAgCA,CAhCA,kDAgCA,CAhCA,sDAgCA,CAhCA,kDAgCA,CAhCA,qDAgCA,CAhCA,oDAgCA,CAhCA,uDAgCA,CAhCA,mDAgCA,CAhCA,sDAgCA,CAhCA,mEAgCA,CAhCA,oEAgCA,CAhCA,+CAgCA,CAhCA,sDAgCA,CAhCA,gDAgCA,CAhCA,sDAgCA,CAhCA,4CAgCA,CAhCA,sDAgCA,CAhCA,kDAgCA,CAhCA,sDAgCA,CAhCA,sDAgCA,CAhCA,6CAgCA,CAhCA,sDAgCA,CAhCA,0CAgCA,CAhCA,yCAgCA,CAhCA,iEAgCA,CAhCA,6LAgCA,CAhCA,6DAgCA,CAhCA,sDAgCA,CAhCA,+DAgCA,CAhCA,4CAgCA,CAhCA,+DAgCA,CAhCA,4CAgCA,CAhCA,iEAgCA,CAhCA,6CAgCA,CAhCA,iEAgCA,CAhCA,6CAgCA,CAhCA,iEAgCA,CAhCA,0CAgCA,CAhCA,mEAgCA,CAhCA,sDAgCA,CAhCA,6DAgCA,CAhCA,sDAgCA,CAhCA,mCAgCA,CAhCA,qCAgCA,CAhCA,wDAgCA,CAhCA,6LAgCA,CAhCA,0FAgCA,CAhCA,oDAgCA,CAhCA,0FAgCA,CAhCA,mDAgCA,CAhCA,uDAgCA,CAhCA,mDAgCA,CAhCA,uDAgCA,CAhCA,mDAgCA,CAhCA,4DAgCA,CAhCA,oDAgCA,CAhCA,4DAgCA,CAhCA,mDAgCA,CAhCA,yEAgCA,CAhCA,4DAgCA,CAhCA,mDAgCA,CAhCA,6DAgCA,CAhCA,uEAgCA,CAhCA,uEAgCA,CAhCA,oEAgCA,CAhCA,+CAgCA,CAhCA,iDAgCA,CAhCA,sEAgCA,CAhCA,wEAgCA,CAhCA,wEAgCA,CAhCA,oDAgCA,CAhCA,sDAgCA,CAhCA,oDAgCA,CAhCA,oDAgCA,CAhCA,oDAgCA,CAhCA,mDAgCA,CAhCA,yEAgCA,CAhCA,yEAgCA,CAhCA,oDAgCA,CAhCA,mDAgCA,CAhCA,yEAgCA,CAhCA,yEAgCA,CAhCA,oDAgCA,CAhCA,mDAgCA,CAhCA,yEAgCA,CAhCA,mDAgCA,CAhCA,8FAgCA,CAhCA,mEAgCA,CAhCA,iEAgCA,CAhCA,gGAgCA,CAhCA,iEAgCA,CAhCA,iEAgCA,CAhCA,8GAgCA,CAhCA,gEAgCA,CAhCA,iEAgCA,CAhCA,gGAgCA,CAhCA,gEAgCA,CAhCA,iEAgCA,CAhCA,wFAgCA,CAhCA,uGAgCA,CAhCA,0FAgCA,CAhCA,iDAgCA,CAhCA,qDAgCA,CAhCA,qDAgCA,CAhCA,6CAgCA,CAhCA,qDAgCA,CAhCA,2CAgCA,CAhCA,oDAgCA,CAhCA,4CAgCA,CAhCA,6DAgCA,CAhCA,sDAgCA,CAhCA,4CAgCA,CAhCA,gEAgCA,CAhCA,kDAgCA,CAhCA,6CAgCA,CAhCA,kDAgCA,CAhCA,2CAgCA,CAhCA,wDAgCA,CAhCA,6CAgCA,CAhCA,wDAgCA,CAhCA,6CAgCA,CAhCA,wDAgCA,CAhCA,6CAgCA,CAhCA,wDAgCA,CAhCA,6CAgCA,CAhCA,wDAgCA,CAhCA,2CAgCA,CAhCA,wDAgCA,CAhCA,0CAgCA,CAhCA,gDAgCA,CAhCA,6CAgCA,CAhCA,wFAgCA,CAhCA,oDAgCA,CAhCA,mFAgCA,CAhCA,oDAgCA,CAhCA,qGAgCA,CAhCA,iGAgCA,CAhCA,kGAgCA,CAhCA,+DAgCA,CAhCA,mDAgCA,CAhCA,oDAgCA,CAhCA,uEAgCA,CAhCA,wDAgCA,CAhCA,qDAgCA,CAhCA,wDAgCA,CAhCA,oDAgCA,CAhCA,0EAgCA,CAhCA,wDAgCA,CAhCA,oDAgCA,CAhCA,wDAgCA,CAhCA,oDAgCA,CAhCA,oEAgCA,CAhCA,mDAgCA,CAhCA,yEAgCA,CAhCA,sDAgCA,CAhCA,yEAgCA,CAhCA,oDAgCA,CAhCA,yEAgCA,CAhCA,mDAgCA,CAhCA,oFAgCA,CAhCA,4DAgCA,CAhCA,mDAgCA,CAhCA,4DAgCA,CAhCA,mDAgCA,CAhCA,iEAgCA,CAhCA,oDAgCA,CAhCA,iEAgCA,CAhCA,mDAgCA,CAhCA,sFAgCA,CAhCA,iEAgCA,CAhCA,mDAgCA,CAhCA,uFAgCA,CAhCA,iEAgCA,CAhCA,mDAgCA,CAhCA,mEAgCA,CAhCA,4CAgCA,CAhCA,+DAgCA,CAhCA,2CAgCA,CAhCA,qEAgCA,CAhCA,6CAgCA,CAhCA,qEAgCA,CAhCA,6CAgCA,CAhCA,qEAgCA,CAhCA,6CAgCA,CAhCA,qEAgCA,CAhCA,6CAgCA,CAhCA,6DAgCA,CAhCA,6CAgCA,CAhCA,uEAgCA,CAhCA,qDAgCA,CAhCA,yEAgCA,CAhCA,mDAgCA,CAhCA,iEAgCA,CAhCA,mDAgCA,CAhCA,iEAgCA,CAhCA,mDAgCA,CAhCA,iEAgCA,CAhCA,mDAgCA,CAhCA,qEAgCA,CAhCA,6CAgCA,CAhCA,6DAgCA,CAhCA,6CAgCA,CAhCA,uFAgCA,CAhCA,uFAgCA,CAhCA,8EAgCA,CAhCA,mDAgCA,CAhCA,6EAgCA,CAhCA,6CAgCA,CAhCA,gFAgCA,CAhCA,4CAgCA,CAhCA,kFAgCA,CAhCA,6CAgCA,CAhCA,kFAgCA,CAhCA,6CAgCA,CAhCA,8EAgCA,CAhCA,mDAgCA,CAhCA,kEAgCA,CAhCA,yCAgCA,CAhCA,yCAgCA,CAhCA,yCAgCA,CAhCA,yCAgCA,CAhCA,8BAgCA,CAhCA,oBAgCA,CAhCA,uBAgCA,CAhCA,cAgCA,CAhCA,4BAgCA,CAhCA,0BAgCA,CAhCA,4BAgCA,CAhCA,6BAgCA,CAhCA,sBAgCA,CAhCA,4BAgCA,CAhCA,yBAgCA,CAhCA,wBAgCA,CAhCA,sBAgCA,CAhCA,sBAgCA,CAhCA,wBAgCA,CAhCA,uBAgCA,CAhCA,qBAgCA,CAhCA,sBAgCA,CAhCA,oBAgCA,CAhCA,qBAgCA,CAhCA,sBAgCA,CAhCA,8BAgCA,CAhCA,8BAgCA,CAhCA,8BAgCA,CAhCA,6BAgCA,CAhCA,6BAgCA,CAhCA,6BAgCA,CAhCA,6BAgCA,CAhCA,6BAgCA,CAhCA,uBAgCA,CAhCA,uCAgCA,CAhCA,mOAgCA,CAhCA,0CAgCA,CAhCA,uCAgCA,CAhCA,6LAgCA,CAhCA,8DAgCA,CAhCA,8DAgCA,CAhCA,8DAgCA,CAhCA,8DAgCA,CAhCA,gCAgCA,CAhCA,gDAgCA,CAhCA,uCAgCA,CAhCA,oCAgCA,CAhCA,yCAgCA,CAhCA,kDAgCA,CAhCA,mBAgCA,CAhCA,sBAgCA,CAhCA,qBAgCA,CAhCA,mCAgCA,CAhCA,iBAgCA,CAhCA,yBAgCA,CAhCA,mEAgCA,CAhCA,sDAgCA,CAhCA,iDAgCA,CAhCA,mEAgCA,CAhCA,iDAgCA,CAhCA,oDAgCA,CAhCA,6BAgCA,CAhCA,sBAgCA,CAhCA,kBAgCA,CAhCA,mCAgCA,CAhCA,qCAgCA,CAhCA,qCAgCA,CAhCA,mCAgCA,CAhCA,kCAgCA,CAhCA,kCAgCA,CAhCA,+CAgCA,CAhCA,sDAgCA,CAhCA,wBAgCA,CAhCA,uBAgCA,CAhCA,wBAgCA,CAhCA,eAgCA,CAhCA,2BAgCA,CAhCA,kBAgCA,CAhCA,8BAgCA,CAhCA,qBAgCA,CAhCA,6BAgCA,CAhCA,oBAgCA,CAhCA,gCAgCA,CAhCA,kBAgCA,CAhCA,8BAgCA,CAhCA,gBAgCA,CAhCA,6BAgCA,CAhCA,gBAgCA,CAhCA,gCAgCA,CAhCA,mBAgCA,CAhCA,+BAgCA,CAhCA,kBAgCA,CAhCA,2BAgCA,CAhCA,4BAgCA,CAhCA,2BAgCA,CAhCA,6BAgCA,CAhCA,8BAgCA,CAhCA,gCAgCA,CAhCA,mBAgCA,CAhCA,+BAgCA,CAhCA,mBAgCA,CAhCA,8BAgCA,CAhCA,+CAgCA,CAhCA,kCAgCA,CAhCA,kCAgCA,CAhCA,gEAgCA,CAhCA,mDAgCA,EAhCA,kEAgCA,CAhCA,yCAgCA,CAhCA,sBAgCA,CAhCA,kCAgCA,CAhCA,8BAgCA,CAhCA,8BAgCA,CAhCA,8BAgCA,CAhCA,6BAgCA,CAhCA,8DAgCA,CAhCA,8DAgCA,CAhCA,oCAgCA,CAhCA,kDAgCA,CAhCA,qBAgCA,CAhCA,mEAgCA,CAhCA,sDAgCA,CAhCA,iDAgCA,CAhCA,mEAgCA,CAhCA,iDAgCA,CAhCA,oDAgCA,EAhCA,gDAgCA,CAhCA,+BAgCA,CAhCA,sBAgCA,CAhCA,yCAgCA,CAhCA,yCAgCA,CAhCA,yCAgCA,CAhCA,yCAgCA,CAhCA,yCAgCA,CAhCA,4BAgCA,CAhCA,kBAgCA,CAhCA,uBAgCA,CAhCA,0BAgCA,CAhCA,4BAgCA,CAhCA,sBAgCA,CAhCA,4BAgCA,CAhCA,0BAgCA,CAhCA,yBAgCA,CAhCA,wBAgCA,CAhCA,sBAgCA,CAhCA,oCAgCA,CAhCA,kCAgCA,CAhCA,sBAgCA,CAhCA,wBAgCA,CAhCA,sBAgCA,CAhCA,0BAgCA,CAhCA,uBAgCA,CAhCA,qBAgCA,CAhCA,sBAgCA,CAhCA,8BAgCA,CAhCA,8BAgCA,CAhCA,8BAgCA,CAhCA,6BAgCA,CAhCA,6BAgCA,CAhCA,6BAgCA,CAhCA,uBAgCA,CAhCA,2BAgCA,CAhCA,8DAgCA,CAhCA,8DAgCA,CAhCA,8DAgCA,CAhCA,8DAgCA,CAhCA,8DAgCA,CAhCA,mCAgCA,CAhCA,uCAgCA,CAhCA,oCAgCA,CAhCA,kDAgCA,CAhCA,mBAgCA,CAhCA,sBAgCA,CAhCA,qBAgCA,CAhCA,oCAgCA,CAhCA,iBAgCA,CAhCA,kCAgCA,CAhCA,eAgCA,CAhCA,mCAgCA,CAhCA,iBAgCA,CAhCA,iCAgCA,CAhCA,eAgCA,CAhCA,4BAgCA,CAhCA,2BAgCA,CAhCA,mEAgCA,CAhCA,iDAgCA,CAhCA,oDAgCA,CAhCA,gEAgCA,CAhCA,sCAgCA,CAhCA,4BAgCA,CAhCA,kCAgCA,CAhCA,mDAgCA,CAhCA,kCAgCA,CAhCA,kCAgCA,CAhCA,+CAgCA,CAhCA,sDAgCA,CAhCA,gDAgCA,CAhCA,uBAgCA,CAhCA,wBAgCA,CAhCA,eAgCA,CAhCA,6BAgCA,CAhCA,oBAgCA,CAhCA,2BAgCA,CAhCA,kBAgCA,CAhCA,0BAgCA,CAhCA,aAgCA,CAhCA,8BAgCA,CAhCA,gBAgCA,CAhCA,8BAgCA,CAhCA,gBAgCA,CAhCA,8BAgCA,CAhCA,gBAgCA,CAhCA,6BAgCA,CAhCA,gBAgCA,CAhCA,+BAgCA,CAhCA,kBAgCA,CAhCA,0BAgCA,CAhCA,4BAgCA,CAhCA,8BAgCA,CAhCA,4BAgCA,CAhCA,6BAgCA,CAhCA,6BAgCA,CAhCA,8BAgCA,CAhCA,8BAgCA,CAhCA,gBAgCA,CAhCA,gCAgCA,CAhCA,mBAgCA,CAhCA,+BAgCA,CAhCA,mBAgCA,CAhCA,sCAgCA,CAhCA,6BAgCA,CAhCA,kGAgCA,CAhCA,2DAgCA,CAhCA,mDAgCA,CAhCA,gEAgCA,CAhCA,mDAgCA,CAhCA,iEAgCA,EAhCA,mEAgCA,CAhCA,yCAgCA,CAhCA,8BAgCA,CAhCA,8BAgCA,CAhCA,8BAgCA,CAhCA,6BAgCA,CAhCA,8DAgCA,EAhCA,2DAgCA,CAhCA,gCAgCA,CAhCA,oBAgCA,E","sources":["webpack://shopper/./node_modules/choices.js/public/assets/styles/choices.css","webpack://shopper/./node_modules/tom-select/dist/css/tom-select.default.css","webpack://shopper/./node_modules/flatpickr/dist/themes/light.css","webpack://shopper/./node_modules/intl-tel-input/build/css/intlTelInput.css","webpack://shopper/./node_modules/filepond/dist/filepond.min.css","webpack://shopper/./node_modules/trix/dist/trix.css","webpack://shopper/./packages/admin/resources/css/base.css","webpack://shopper/./packages/admin/resources/css/components/filepond.css","webpack://shopper/./packages/admin/resources/css/components/select.css","webpack://shopper/./packages/admin/resources/css/components/sidebar.css","webpack://shopper/./packages/admin/resources/css/components/trix-editor.css","webpack://shopper/./packages/admin/resources/css/shopper.css"],"sourcesContent":["/* ===============================\n= Choices =\n=============================== */\n.choices {\n position: relative;\n overflow: hidden;\n margin-bottom: 24px;\n font-size: 16px;\n}\n.choices:focus {\n outline: none;\n}\n.choices:last-child {\n margin-bottom: 0;\n}\n.choices.is-open {\n overflow: initial;\n}\n.choices.is-disabled .choices__inner,\n.choices.is-disabled .choices__input {\n background-color: #eaeaea;\n cursor: not-allowed;\n -webkit-user-select: none;\n user-select: none;\n}\n.choices.is-disabled .choices__item {\n cursor: not-allowed;\n}\n.choices [hidden] {\n display: none !important;\n}\n\n.choices[data-type*=select-one] {\n cursor: pointer;\n}\n.choices[data-type*=select-one] .choices__inner {\n padding-bottom: 7.5px;\n}\n.choices[data-type*=select-one] .choices__input {\n display: block;\n width: 100%;\n padding: 10px;\n border-bottom: 1px solid #ddd;\n background-color: #fff;\n margin: 0;\n}\n.choices[data-type*=select-one] .choices__button {\n background-image: url(\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==\");\n padding: 0;\n background-size: 8px;\n position: absolute;\n top: 50%;\n right: 0;\n margin-top: -10px;\n margin-right: 25px;\n height: 20px;\n width: 20px;\n border-radius: 10em;\n opacity: 0.25;\n}\n.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {\n opacity: 1;\n}\n.choices[data-type*=select-one] .choices__button:focus {\n box-shadow: 0 0 0 2px #00bcd4;\n}\n.choices[data-type*=select-one] .choices__item[data-value=\"\"] .choices__button {\n display: none;\n}\n.choices[data-type*=select-one]::after {\n content: \"\";\n height: 0;\n width: 0;\n border-style: solid;\n border-color: #333 transparent transparent transparent;\n border-width: 5px;\n position: absolute;\n right: 11.5px;\n top: 50%;\n margin-top: -2.5px;\n pointer-events: none;\n}\n.choices[data-type*=select-one].is-open::after {\n border-color: transparent transparent #333 transparent;\n margin-top: -7.5px;\n}\n.choices[data-type*=select-one][dir=rtl]::after {\n left: 11.5px;\n right: auto;\n}\n.choices[data-type*=select-one][dir=rtl] .choices__button {\n right: auto;\n left: 0;\n margin-left: 25px;\n margin-right: 0;\n}\n\n.choices[data-type*=select-multiple] .choices__inner,\n.choices[data-type*=text] .choices__inner {\n cursor: text;\n}\n.choices[data-type*=select-multiple] .choices__button,\n.choices[data-type*=text] .choices__button {\n position: relative;\n display: inline-block;\n margin-top: 0;\n margin-right: -4px;\n margin-bottom: 0;\n margin-left: 8px;\n padding-left: 16px;\n border-left: 1px solid #008fa1;\n background-image: url(\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==\");\n background-size: 8px;\n width: 8px;\n line-height: 1;\n opacity: 0.75;\n border-radius: 0;\n}\n.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,\n.choices[data-type*=text] .choices__button:hover,\n.choices[data-type*=text] .choices__button:focus {\n opacity: 1;\n}\n\n.choices__inner {\n display: inline-block;\n vertical-align: top;\n width: 100%;\n background-color: #f9f9f9;\n padding: 7.5px 7.5px 3.75px;\n border: 1px solid #ddd;\n border-radius: 2.5px;\n font-size: 14px;\n min-height: 44px;\n overflow: hidden;\n}\n.is-focused .choices__inner, .is-open .choices__inner {\n border-color: #b7b7b7;\n}\n.is-open .choices__inner {\n border-radius: 2.5px 2.5px 0 0;\n}\n.is-flipped.is-open .choices__inner {\n border-radius: 0 0 2.5px 2.5px;\n}\n\n.choices__list {\n margin: 0;\n padding-left: 0;\n list-style: none;\n}\n\n.choices__list--single {\n display: inline-block;\n padding: 4px 16px 4px 4px;\n width: 100%;\n}\n[dir=rtl] .choices__list--single {\n padding-right: 4px;\n padding-left: 16px;\n}\n.choices__list--single .choices__item {\n width: 100%;\n}\n\n.choices__list--multiple {\n display: inline;\n}\n.choices__list--multiple .choices__item {\n display: inline-block;\n vertical-align: middle;\n border-radius: 20px;\n padding: 4px 10px;\n font-size: 12px;\n font-weight: 500;\n margin-right: 3.75px;\n margin-bottom: 3.75px;\n background-color: #00bcd4;\n border: 1px solid #00a5bb;\n color: #fff;\n word-break: break-all;\n box-sizing: border-box;\n}\n.choices__list--multiple .choices__item[data-deletable] {\n padding-right: 5px;\n}\n[dir=rtl] .choices__list--multiple .choices__item {\n margin-right: 0;\n margin-left: 3.75px;\n}\n.choices__list--multiple .choices__item.is-highlighted {\n background-color: #00a5bb;\n border: 1px solid #008fa1;\n}\n.is-disabled .choices__list--multiple .choices__item {\n background-color: #aaaaaa;\n border: 1px solid #919191;\n}\n\n.choices__list--dropdown {\n visibility: hidden;\n z-index: 1;\n position: absolute;\n width: 100%;\n background-color: #fff;\n border: 1px solid #ddd;\n top: 100%;\n margin-top: -1px;\n border-bottom-left-radius: 2.5px;\n border-bottom-right-radius: 2.5px;\n overflow: hidden;\n word-break: break-all;\n will-change: visibility;\n}\n.choices__list--dropdown.is-active {\n visibility: visible;\n}\n.is-open .choices__list--dropdown {\n border-color: #b7b7b7;\n}\n.is-flipped .choices__list--dropdown {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: -1px;\n border-radius: 0.25rem 0.25rem 0 0;\n}\n.choices__list--dropdown .choices__list {\n position: relative;\n max-height: 300px;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n will-change: scroll-position;\n}\n.choices__list--dropdown .choices__item {\n position: relative;\n padding: 10px;\n font-size: 14px;\n}\n[dir=rtl] .choices__list--dropdown .choices__item {\n text-align: right;\n}\n@media (min-width: 640px) {\n .choices__list--dropdown .choices__item--selectable {\n padding-right: 100px;\n }\n .choices__list--dropdown .choices__item--selectable::after {\n content: attr(data-select-text);\n font-size: 12px;\n opacity: 0;\n position: absolute;\n right: 10px;\n top: 50%;\n transform: translateY(-50%);\n }\n [dir=rtl] .choices__list--dropdown .choices__item--selectable {\n text-align: right;\n padding-left: 100px;\n padding-right: 10px;\n }\n [dir=rtl] .choices__list--dropdown .choices__item--selectable::after {\n right: auto;\n left: 10px;\n }\n}\n.choices__list--dropdown .choices__item--selectable.is-highlighted {\n background-color: #f2f2f2;\n}\n.choices__list--dropdown .choices__item--selectable.is-highlighted::after {\n opacity: 0.5;\n}\n\n.choices__item {\n cursor: default;\n}\n\n.choices__item--selectable {\n cursor: pointer;\n}\n\n.choices__item--disabled {\n cursor: not-allowed;\n -webkit-user-select: none;\n user-select: none;\n opacity: 0.5;\n}\n\n.choices__heading {\n font-weight: 600;\n font-size: 12px;\n padding: 10px;\n border-bottom: 1px solid #f7f7f7;\n color: gray;\n}\n\n.choices__button {\n text-indent: -9999px;\n -webkit-appearance: none;\n appearance: none;\n border: 0;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center;\n cursor: pointer;\n}\n.choices__button:focus {\n outline: none;\n}\n\n.choices__input {\n display: inline-block;\n vertical-align: baseline;\n background-color: #f9f9f9;\n font-size: 14px;\n margin-bottom: 5px;\n border: 0;\n border-radius: 0;\n max-width: 100%;\n padding: 4px 0 4px 2px;\n}\n.choices__input:focus {\n outline: 0;\n}\n[dir=rtl] .choices__input {\n padding-right: 2px;\n padding-left: 0;\n}\n\n.choices__placeholder {\n opacity: 0.5;\n}\n\n/* ===== End of Choices ====== */\n","/**\n * tom-select.css (v//@@version)\n * Copyright (c) contributors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this\n * file except in compliance with the License. You may obtain a copy of the License at:\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF\n * ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n *\n */\n.ts-control {\n border: 1px solid #d0d0d0;\n padding: 8px 8px;\n width: 100%;\n overflow: hidden;\n position: relative;\n z-index: 1;\n box-sizing: border-box;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);\n border-radius: 3px;\n display: flex;\n flex-wrap: wrap;\n}\n.ts-wrapper.multi.has-items .ts-control {\n padding: calc(8px - 2px - 1px) 8px calc(8px - 2px - 3px - 1px);\n}\n.full .ts-control {\n background-color: #fff;\n}\n.disabled .ts-control, .disabled .ts-control * {\n cursor: default !important;\n}\n.focus .ts-control {\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);\n}\n.ts-control > * {\n vertical-align: baseline;\n display: inline-block;\n}\n.ts-wrapper.multi .ts-control > div {\n cursor: pointer;\n margin: 0 3px 3px 0;\n padding: 2px 6px;\n background: #1da7ee;\n color: #fff;\n border: 1px solid #0073bb;\n}\n.ts-wrapper.multi .ts-control > div.active {\n background: #92c836;\n color: #fff;\n border: 1px solid #00578d;\n}\n.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {\n color: white;\n background: #d2d2d2;\n border: 1px solid #aaaaaa;\n}\n.ts-control > input {\n flex: 1 1 auto;\n min-width: 7rem;\n display: inline-block !important;\n padding: 0 !important;\n min-height: 0 !important;\n max-height: none !important;\n max-width: 100% !important;\n margin: 0 !important;\n text-indent: 0 !important;\n border: 0 none !important;\n background: none !important;\n line-height: inherit !important;\n user-select: auto !important;\n box-shadow: none !important;\n}\n.ts-control > input::-ms-clear {\n display: none;\n}\n.ts-control > input:focus {\n outline: none !important;\n}\n.has-items .ts-control > input {\n margin: 0 4px !important;\n}\n.ts-control.rtl {\n text-align: right;\n}\n.ts-control.rtl.single .ts-control:after {\n left: 15px;\n right: auto;\n}\n.ts-control.rtl .ts-control > input {\n margin: 0 4px 0 -2px !important;\n}\n.disabled .ts-control {\n opacity: 0.5;\n background-color: #fafafa;\n}\n.input-hidden .ts-control > input {\n opacity: 0;\n position: absolute;\n left: -10000px;\n}\n\n.ts-dropdown {\n position: absolute;\n top: 100%;\n left: 0;\n width: 100%;\n z-index: 10;\n border: 1px solid #d0d0d0;\n background: #fff;\n margin: 0.25rem 0 0;\n border-top: 0 none;\n box-sizing: border-box;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);\n border-radius: 0 0 3px 3px;\n}\n.ts-dropdown [data-selectable] {\n cursor: pointer;\n overflow: hidden;\n}\n.ts-dropdown [data-selectable] .highlight {\n background: rgba(125, 168, 208, 0.2);\n border-radius: 1px;\n}\n.ts-dropdown .option,\n.ts-dropdown .optgroup-header,\n.ts-dropdown .no-results,\n.ts-dropdown .create {\n padding: 5px 8px;\n}\n.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {\n cursor: inherit;\n opacity: 0.5;\n}\n.ts-dropdown [data-selectable].option {\n opacity: 1;\n cursor: pointer;\n}\n.ts-dropdown .optgroup:first-child .optgroup-header {\n border-top: 0 none;\n}\n.ts-dropdown .optgroup-header {\n color: #303030;\n background: #fff;\n cursor: default;\n}\n.ts-dropdown .active {\n background-color: #f5fafd;\n color: #495c68;\n}\n.ts-dropdown .active.create {\n color: #495c68;\n}\n.ts-dropdown .create {\n color: rgba(48, 48, 48, 0.5);\n}\n.ts-dropdown .spinner {\n display: inline-block;\n width: 30px;\n height: 30px;\n margin: 5px 8px;\n}\n.ts-dropdown .spinner::after {\n content: \" \";\n display: block;\n width: 24px;\n height: 24px;\n margin: 3px;\n border-radius: 50%;\n border: 5px solid #d0d0d0;\n border-color: #d0d0d0 transparent #d0d0d0 transparent;\n animation: lds-dual-ring 1.2s linear infinite;\n}\n@keyframes lds-dual-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.ts-dropdown-content {\n overflow: hidden auto;\n max-height: 200px;\n scroll-behavior: smooth;\n}\n\n.ts-wrapper.plugin-drag_drop .ts-dragging {\n color: transparent !important;\n}\n.ts-wrapper.plugin-drag_drop .ts-dragging > * {\n visibility: hidden !important;\n}\n\n.plugin-checkbox_options:not(.rtl) .option input {\n margin-right: 0.5rem;\n}\n\n.plugin-checkbox_options.rtl .option input {\n margin-left: 0.5rem;\n}\n\n/* stylelint-disable function-name-case */\n.plugin-clear_button {\n --ts-pr-clear-button: 1em;\n}\n.plugin-clear_button .clear-button {\n opacity: 0;\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n right: calc(8px - 6px);\n margin-right: 0 !important;\n background: transparent !important;\n transition: opacity 0.5s;\n cursor: pointer;\n}\n.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {\n right: max(var(--ts-pr-caret), 8px);\n}\n.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {\n opacity: 1;\n}\n\n.ts-wrapper .dropdown-header {\n position: relative;\n padding: 10px 8px;\n border-bottom: 1px solid #d0d0d0;\n background: color-mix(#fff, #d0d0d0, 85%);\n border-radius: 3px 3px 0 0;\n}\n.ts-wrapper .dropdown-header-close {\n position: absolute;\n right: 8px;\n top: 50%;\n color: #303030;\n opacity: 0.4;\n margin-top: -12px;\n line-height: 20px;\n font-size: 20px !important;\n}\n.ts-wrapper .dropdown-header-close:hover {\n color: black;\n}\n\n.plugin-dropdown_input.focus.dropdown-active .ts-control {\n box-shadow: none;\n border: 1px solid #d0d0d0;\n}\n.plugin-dropdown_input .dropdown-input {\n border: 1px solid #d0d0d0;\n border-width: 0 0 1px;\n display: block;\n padding: 8px 8px;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);\n width: 100%;\n background: transparent;\n}\n.plugin-dropdown_input .items-placeholder {\n border: 0 none !important;\n box-shadow: none !important;\n width: 100%;\n}\n.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {\n display: none !important;\n}\n\n.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {\n min-width: 0;\n}\n.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {\n flex: none;\n min-width: 4px;\n}\n.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {\n color: transparent;\n}\n\n.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {\n display: flex;\n}\n.ts-dropdown.plugin-optgroup_columns .optgroup {\n border-right: 1px solid #f2f2f2;\n border-top: 0 none;\n flex-grow: 1;\n flex-basis: 0;\n min-width: 0;\n}\n.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {\n border-right: 0 none;\n}\n.ts-dropdown.plugin-optgroup_columns .optgroup::before {\n display: none;\n}\n.ts-dropdown.plugin-optgroup_columns .optgroup-header {\n border-top: 0 none;\n}\n\n.ts-wrapper.plugin-remove_button .item {\n display: inline-flex;\n align-items: center;\n}\n.ts-wrapper.plugin-remove_button .item .remove {\n color: inherit;\n text-decoration: none;\n vertical-align: middle;\n display: inline-block;\n padding: 0 6px;\n border-radius: 0 2px 2px 0;\n box-sizing: border-box;\n}\n.ts-wrapper.plugin-remove_button .item .remove:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {\n background: none;\n}\n.ts-wrapper.plugin-remove_button .remove-single {\n position: absolute;\n right: 0;\n top: 0;\n font-size: 23px;\n}\n\n.ts-wrapper.plugin-remove_button:not(.rtl) .item {\n padding-right: 0 !important;\n}\n.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {\n border-left: 1px solid #0073bb;\n margin-left: 6px;\n}\n.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {\n border-left-color: #00578d;\n}\n.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {\n border-left-color: #aaaaaa;\n}\n\n.ts-wrapper.plugin-remove_button.rtl .item {\n padding-left: 0 !important;\n}\n.ts-wrapper.plugin-remove_button.rtl .item .remove {\n border-right: 1px solid #0073bb;\n margin-right: 6px;\n}\n.ts-wrapper.plugin-remove_button.rtl .item.active .remove {\n border-right-color: #00578d;\n}\n.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {\n border-right-color: #aaaaaa;\n}\n\n:root {\n --ts-pr-clear-button: 0;\n --ts-pr-caret: 0;\n --ts-pr-min: .75rem;\n}\n\n.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {\n cursor: pointer;\n}\n\n.ts-control:not(.rtl) {\n padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;\n}\n\n.ts-control.rtl {\n padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;\n}\n\n.ts-wrapper {\n position: relative;\n}\n\n.ts-dropdown,\n.ts-control,\n.ts-control input {\n color: #303030;\n font-family: inherit;\n font-size: 13px;\n line-height: 18px;\n}\n\n.ts-control,\n.ts-wrapper.single.input-active .ts-control {\n background: #fff;\n cursor: text;\n}\n\n.ts-hidden-accessible {\n border: 0 !important;\n clip: rect(0 0 0 0) !important;\n clip-path: inset(50%) !important;\n overflow: hidden !important;\n padding: 0 !important;\n position: absolute !important;\n width: 1px !important;\n white-space: nowrap !important;\n}\n\n.ts-wrapper.single .ts-control {\n --ts-pr-caret: 2rem;\n}\n.ts-wrapper.single .ts-control::after {\n content: \" \";\n display: block;\n position: absolute;\n top: 50%;\n margin-top: -3px;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 5px 5px 0 5px;\n border-color: #808080 transparent transparent transparent;\n}\n.ts-wrapper.single .ts-control:not(.rtl)::after {\n right: 15px;\n}\n.ts-wrapper.single .ts-control.rtl::after {\n left: 15px;\n}\n.ts-wrapper.single.dropdown-active .ts-control::after {\n margin-top: -4px;\n border-width: 0 5px 5px 5px;\n border-color: transparent transparent #808080 transparent;\n}\n.ts-wrapper.single.input-active .ts-control, .ts-wrapper.single.input-active .ts-control input {\n cursor: text;\n}\n\n.ts-wrapper {\n display: flex;\n min-height: 36px;\n}\n.ts-wrapper.multi.has-items .ts-control {\n padding-left: 5px;\n --ts-pr-min: $padding-x;\n}\n.ts-wrapper.multi .ts-control [data-value] {\n text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);\n border-radius: 3px;\n background-color: color-mix(#1da7ee, #178ee9, 60%);\n background-image: linear-gradient(to bottom, #1da7ee, #178ee9);\n background-repeat: repeat-x;\n box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);\n}\n.ts-wrapper.multi .ts-control [data-value].active {\n background-color: color-mix(#008fd8, #0075cf, 60%);\n background-image: linear-gradient(to bottom, #008fd8, #0075cf);\n background-repeat: repeat-x;\n}\n.ts-wrapper.multi.disabled .ts-control [data-value] {\n color: #999;\n text-shadow: none;\n background: none;\n box-shadow: none;\n}\n.ts-wrapper.multi.disabled .ts-control [data-value], .ts-wrapper.multi.disabled .ts-control [data-value] .remove {\n border-color: #e6e6e6;\n}\n.ts-wrapper.multi.disabled .ts-control [data-value] .remove {\n background: none;\n}\n.ts-wrapper.single .ts-control {\n box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);\n background-color: color-mix(#fefefe, #f2f2f2, 60%);\n background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);\n background-repeat: repeat-x;\n}\n\n.ts-wrapper.single .ts-control, .ts-dropdown.single {\n border-color: #b8b8b8;\n}\n\n.dropdown-active .ts-control {\n border-radius: 3px 3px 0 0;\n}\n\n.ts-dropdown .optgroup-header {\n padding-top: 7px;\n font-weight: bold;\n font-size: 0.85em;\n}\n.ts-dropdown .optgroup {\n border-top: 1px solid #f0f0f0;\n}\n.ts-dropdown .optgroup:first-child {\n border-top: 0 none;\n}",".flatpickr-calendar {\n background: transparent;\n opacity: 0;\n display: none;\n text-align: center;\n visibility: hidden;\n padding: 0;\n -webkit-animation: none;\n animation: none;\n direction: ltr;\n border: 0;\n font-size: 14px;\n line-height: 24px;\n border-radius: 5px;\n position: absolute;\n width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n -webkit-box-shadow: 0 3px 13px rgba(0,0,0,0.08);\n box-shadow: 0 3px 13px rgba(0,0,0,0.08);\n}\n.flatpickr-calendar.open,\n.flatpickr-calendar.inline {\n opacity: 1;\n max-height: 640px;\n visibility: visible;\n}\n.flatpickr-calendar.open {\n display: inline-block;\n z-index: 99999;\n}\n.flatpickr-calendar.animate.open {\n -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n}\n.flatpickr-calendar.inline {\n display: block;\n position: relative;\n top: 2px;\n}\n.flatpickr-calendar.static {\n position: absolute;\n top: calc(100% + 2px);\n}\n.flatpickr-calendar.static.open {\n z-index: 999;\n display: block;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {\n -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-calendar .hasWeeks .dayContainer,\n.flatpickr-calendar .hasTime .dayContainer {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.flatpickr-calendar .hasWeeks .dayContainer {\n border-left: 0;\n}\n.flatpickr-calendar.hasTime .flatpickr-time {\n height: 40px;\n border-top: 1px solid #eceef1;\n}\n.flatpickr-calendar.hasTime .flatpickr-innerContainer {\n border-bottom: 0;\n}\n.flatpickr-calendar.hasTime .flatpickr-time {\n border: 1px solid #eceef1;\n}\n.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {\n height: auto;\n}\n.flatpickr-calendar:before,\n.flatpickr-calendar:after {\n position: absolute;\n display: block;\n pointer-events: none;\n border: solid transparent;\n content: '';\n height: 0;\n width: 0;\n left: 22px;\n}\n.flatpickr-calendar.rightMost:before,\n.flatpickr-calendar.arrowRight:before,\n.flatpickr-calendar.rightMost:after,\n.flatpickr-calendar.arrowRight:after {\n left: auto;\n right: 22px;\n}\n.flatpickr-calendar.arrowCenter:before,\n.flatpickr-calendar.arrowCenter:after {\n left: 50%;\n right: 50%;\n}\n.flatpickr-calendar:before {\n border-width: 5px;\n margin: 0 -5px;\n}\n.flatpickr-calendar:after {\n border-width: 4px;\n margin: 0 -4px;\n}\n.flatpickr-calendar.arrowTop:before,\n.flatpickr-calendar.arrowTop:after {\n bottom: 100%;\n}\n.flatpickr-calendar.arrowTop:before {\n border-bottom-color: #eceef1;\n}\n.flatpickr-calendar.arrowTop:after {\n border-bottom-color: #eceef1;\n}\n.flatpickr-calendar.arrowBottom:before,\n.flatpickr-calendar.arrowBottom:after {\n top: 100%;\n}\n.flatpickr-calendar.arrowBottom:before {\n border-top-color: #eceef1;\n}\n.flatpickr-calendar.arrowBottom:after {\n border-top-color: #eceef1;\n}\n.flatpickr-calendar:focus {\n outline: 0;\n}\n.flatpickr-wrapper {\n position: relative;\n display: inline-block;\n}\n.flatpickr-months {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-months .flatpickr-month {\n border-radius: 5px 5px 0 0;\n background: #eceef1;\n color: #5a6171;\n fill: #5a6171;\n height: 34px;\n line-height: 1;\n text-align: center;\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n overflow: hidden;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n.flatpickr-months .flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n text-decoration: none;\n cursor: pointer;\n position: absolute;\n top: 0;\n height: 34px;\n padding: 10px;\n z-index: 3;\n color: #5a6171;\n fill: #5a6171;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,\n.flatpickr-months .flatpickr-next-month.flatpickr-disabled {\n display: none;\n}\n.flatpickr-months .flatpickr-prev-month i,\n.flatpickr-months .flatpickr-next-month i {\n position: relative;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {\n/*\n /*rtl:begin:ignore*/\n/*\n */\n left: 0;\n/*\n /*rtl:end:ignore*/\n/*\n */\n}\n/*\n /*rtl:begin:ignore*/\n/*\n /*rtl:end:ignore*/\n.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-next-month {\n/*\n /*rtl:begin:ignore*/\n/*\n */\n right: 0;\n/*\n /*rtl:end:ignore*/\n/*\n */\n}\n/*\n /*rtl:begin:ignore*/\n/*\n /*rtl:end:ignore*/\n.flatpickr-months .flatpickr-prev-month:hover,\n.flatpickr-months .flatpickr-next-month:hover {\n color: #bbb;\n}\n.flatpickr-months .flatpickr-prev-month:hover svg,\n.flatpickr-months .flatpickr-next-month:hover svg {\n fill: #f64747;\n}\n.flatpickr-months .flatpickr-prev-month svg,\n.flatpickr-months .flatpickr-next-month svg {\n width: 14px;\n height: 14px;\n}\n.flatpickr-months .flatpickr-prev-month svg path,\n.flatpickr-months .flatpickr-next-month svg path {\n -webkit-transition: fill 0.1s;\n transition: fill 0.1s;\n fill: inherit;\n}\n.numInputWrapper {\n position: relative;\n height: auto;\n}\n.numInputWrapper input,\n.numInputWrapper span {\n display: inline-block;\n}\n.numInputWrapper input {\n width: 100%;\n}\n.numInputWrapper input::-ms-clear {\n display: none;\n}\n.numInputWrapper input::-webkit-outer-spin-button,\n.numInputWrapper input::-webkit-inner-spin-button {\n margin: 0;\n -webkit-appearance: none;\n}\n.numInputWrapper span {\n position: absolute;\n right: 0;\n width: 14px;\n padding: 0 4px 0 2px;\n height: 50%;\n line-height: 50%;\n opacity: 0;\n cursor: pointer;\n border: 1px solid rgba(72,72,72,0.15);\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.numInputWrapper span:hover {\n background: rgba(0,0,0,0.1);\n}\n.numInputWrapper span:active {\n background: rgba(0,0,0,0.2);\n}\n.numInputWrapper span:after {\n display: block;\n content: \"\";\n position: absolute;\n}\n.numInputWrapper span.arrowUp {\n top: 0;\n border-bottom: 0;\n}\n.numInputWrapper span.arrowUp:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-bottom: 4px solid rgba(72,72,72,0.6);\n top: 26%;\n}\n.numInputWrapper span.arrowDown {\n top: 50%;\n}\n.numInputWrapper span.arrowDown:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-top: 4px solid rgba(72,72,72,0.6);\n top: 40%;\n}\n.numInputWrapper span svg {\n width: inherit;\n height: auto;\n}\n.numInputWrapper span svg path {\n fill: rgba(90,97,113,0.5);\n}\n.numInputWrapper:hover {\n background: rgba(0,0,0,0.05);\n}\n.numInputWrapper:hover span {\n opacity: 1;\n}\n.flatpickr-current-month {\n font-size: 135%;\n line-height: inherit;\n font-weight: 300;\n color: inherit;\n position: absolute;\n width: 75%;\n left: 12.5%;\n padding: 7.48px 0 0 0;\n line-height: 1;\n height: 34px;\n display: inline-block;\n text-align: center;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n}\n.flatpickr-current-month span.cur-month {\n font-family: inherit;\n font-weight: 700;\n color: inherit;\n display: inline-block;\n margin-left: 0.5ch;\n padding: 0;\n}\n.flatpickr-current-month span.cur-month:hover {\n background: rgba(0,0,0,0.05);\n}\n.flatpickr-current-month .numInputWrapper {\n width: 6ch;\n width: 7ch\\0;\n display: inline-block;\n}\n.flatpickr-current-month .numInputWrapper span.arrowUp:after {\n border-bottom-color: #5a6171;\n}\n.flatpickr-current-month .numInputWrapper span.arrowDown:after {\n border-top-color: #5a6171;\n}\n.flatpickr-current-month input.cur-year {\n background: transparent;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: inherit;\n cursor: text;\n padding: 0 0 0 0.5ch;\n margin: 0;\n display: inline-block;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n line-height: inherit;\n height: auto;\n border: 0;\n border-radius: 0;\n vertical-align: initial;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-current-month input.cur-year:focus {\n outline: 0;\n}\n.flatpickr-current-month input.cur-year[disabled],\n.flatpickr-current-month input.cur-year[disabled]:hover {\n font-size: 100%;\n color: rgba(90,97,113,0.5);\n background: transparent;\n pointer-events: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months {\n appearance: menulist;\n background: #eceef1;\n border: none;\n border-radius: 0;\n box-sizing: border-box;\n color: inherit;\n cursor: pointer;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n height: auto;\n line-height: inherit;\n margin: -1px 0 0 0;\n outline: none;\n padding: 0 0 0 0.5ch;\n position: relative;\n vertical-align: initial;\n -webkit-box-sizing: border-box;\n -webkit-appearance: menulist;\n -moz-appearance: menulist;\n width: auto;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:focus,\n.flatpickr-current-month .flatpickr-monthDropdown-months:active {\n outline: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:hover {\n background: rgba(0,0,0,0.05);\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {\n background-color: #eceef1;\n outline: none;\n padding: 0;\n}\n.flatpickr-weekdays {\n background: #eceef1;\n text-align: center;\n overflow: hidden;\n width: 100%;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -webkit-align-items: center;\n -ms-flex-align: center;\n align-items: center;\n height: 28px;\n}\n.flatpickr-weekdays .flatpickr-weekdaycontainer {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\nspan.flatpickr-weekday {\n cursor: default;\n font-size: 90%;\n background: #eceef1;\n color: #5a6171;\n line-height: 1;\n margin: 0;\n text-align: center;\n display: block;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n font-weight: bolder;\n}\n.dayContainer,\n.flatpickr-weeks {\n padding: 1px 0 0 0;\n}\n.flatpickr-days {\n position: relative;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: start;\n -webkit-align-items: flex-start;\n -ms-flex-align: start;\n align-items: flex-start;\n width: 307.875px;\n border-left: 1px solid #eceef1;\n border-right: 1px solid #eceef1;\n}\n.flatpickr-days:focus {\n outline: 0;\n}\n.dayContainer {\n padding: 0;\n outline: 0;\n text-align: left;\n width: 307.875px;\n min-width: 307.875px;\n max-width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: inline-block;\n display: -ms-flexbox;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n -webkit-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-wrap: wrap;\n -ms-flex-pack: justify;\n -webkit-justify-content: space-around;\n justify-content: space-around;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n opacity: 1;\n}\n.dayContainer + .dayContainer {\n -webkit-box-shadow: -1px 0 0 #eceef1;\n box-shadow: -1px 0 0 #eceef1;\n}\n.flatpickr-day {\n background: none;\n border: 1px solid transparent;\n border-radius: 150px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #484848;\n cursor: pointer;\n font-weight: 400;\n width: 14.2857143%;\n -webkit-flex-basis: 14.2857143%;\n -ms-flex-preferred-size: 14.2857143%;\n flex-basis: 14.2857143%;\n max-width: 39px;\n height: 39px;\n line-height: 39px;\n margin: 0;\n display: inline-block;\n position: relative;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n -ms-flex-pack: center;\n justify-content: center;\n text-align: center;\n}\n.flatpickr-day.inRange,\n.flatpickr-day.prevMonthDay.inRange,\n.flatpickr-day.nextMonthDay.inRange,\n.flatpickr-day.today.inRange,\n.flatpickr-day.prevMonthDay.today.inRange,\n.flatpickr-day.nextMonthDay.today.inRange,\n.flatpickr-day:hover,\n.flatpickr-day.prevMonthDay:hover,\n.flatpickr-day.nextMonthDay:hover,\n.flatpickr-day:focus,\n.flatpickr-day.prevMonthDay:focus,\n.flatpickr-day.nextMonthDay:focus {\n cursor: pointer;\n outline: 0;\n background: #e2e2e2;\n border-color: #e2e2e2;\n}\n.flatpickr-day.today {\n border-color: #bbb;\n}\n.flatpickr-day.today:hover,\n.flatpickr-day.today:focus {\n border-color: #bbb;\n background: #bbb;\n color: #fff;\n}\n.flatpickr-day.selected,\n.flatpickr-day.startRange,\n.flatpickr-day.endRange,\n.flatpickr-day.selected.inRange,\n.flatpickr-day.startRange.inRange,\n.flatpickr-day.endRange.inRange,\n.flatpickr-day.selected:focus,\n.flatpickr-day.startRange:focus,\n.flatpickr-day.endRange:focus,\n.flatpickr-day.selected:hover,\n.flatpickr-day.startRange:hover,\n.flatpickr-day.endRange:hover,\n.flatpickr-day.selected.prevMonthDay,\n.flatpickr-day.startRange.prevMonthDay,\n.flatpickr-day.endRange.prevMonthDay,\n.flatpickr-day.selected.nextMonthDay,\n.flatpickr-day.startRange.nextMonthDay,\n.flatpickr-day.endRange.nextMonthDay {\n background: #ff5a5f;\n -webkit-box-shadow: none;\n box-shadow: none;\n color: #fff;\n border-color: #ff5a5f;\n}\n.flatpickr-day.selected.startRange,\n.flatpickr-day.startRange.startRange,\n.flatpickr-day.endRange.startRange {\n border-radius: 50px 0 0 50px;\n}\n.flatpickr-day.selected.endRange,\n.flatpickr-day.startRange.endRange,\n.flatpickr-day.endRange.endRange {\n border-radius: 0 50px 50px 0;\n}\n.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {\n -webkit-box-shadow: -10px 0 0 #ff5a5f;\n box-shadow: -10px 0 0 #ff5a5f;\n}\n.flatpickr-day.selected.startRange.endRange,\n.flatpickr-day.startRange.startRange.endRange,\n.flatpickr-day.endRange.startRange.endRange {\n border-radius: 50px;\n}\n.flatpickr-day.inRange {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;\n box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover,\n.flatpickr-day.prevMonthDay,\n.flatpickr-day.nextMonthDay,\n.flatpickr-day.notAllowed,\n.flatpickr-day.notAllowed.prevMonthDay,\n.flatpickr-day.notAllowed.nextMonthDay {\n color: rgba(72,72,72,0.3);\n background: transparent;\n border-color: transparent;\n cursor: default;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover {\n cursor: not-allowed;\n color: rgba(72,72,72,0.1);\n}\n.flatpickr-day.week.selected {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;\n box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;\n}\n.flatpickr-day.hidden {\n visibility: hidden;\n}\n.rangeMode .flatpickr-day {\n margin-top: 1px;\n}\n.flatpickr-weekwrapper {\n float: left;\n}\n.flatpickr-weekwrapper .flatpickr-weeks {\n padding: 0 12px;\n border-left: 1px solid #eceef1;\n}\n.flatpickr-weekwrapper .flatpickr-weekday {\n float: none;\n width: 100%;\n line-height: 28px;\n}\n.flatpickr-weekwrapper span.flatpickr-day,\n.flatpickr-weekwrapper span.flatpickr-day:hover {\n display: block;\n width: 100%;\n max-width: none;\n color: rgba(72,72,72,0.3);\n background: transparent;\n cursor: default;\n border: none;\n}\n.flatpickr-innerContainer {\n display: block;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n background: #fff;\n border-bottom: 1px solid #eceef1;\n}\n.flatpickr-rContainer {\n display: inline-block;\n padding: 0;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.flatpickr-time {\n text-align: center;\n outline: 0;\n display: block;\n height: 0;\n line-height: 40px;\n max-height: 40px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n background: #fff;\n border-radius: 0 0 5px 5px;\n}\n.flatpickr-time:after {\n content: \"\";\n display: table;\n clear: both;\n}\n.flatpickr-time .numInputWrapper {\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n width: 40%;\n height: 40px;\n float: left;\n}\n.flatpickr-time .numInputWrapper span.arrowUp:after {\n border-bottom-color: #484848;\n}\n.flatpickr-time .numInputWrapper span.arrowDown:after {\n border-top-color: #484848;\n}\n.flatpickr-time.hasSeconds .numInputWrapper {\n width: 26%;\n}\n.flatpickr-time.time24hr .numInputWrapper {\n width: 49%;\n}\n.flatpickr-time input {\n background: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n border: 0;\n border-radius: 0;\n text-align: center;\n margin: 0;\n padding: 0;\n height: inherit;\n line-height: inherit;\n color: #484848;\n font-size: 14px;\n position: relative;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-time input.flatpickr-hour {\n font-weight: bold;\n}\n.flatpickr-time input.flatpickr-minute,\n.flatpickr-time input.flatpickr-second {\n font-weight: 400;\n}\n.flatpickr-time input:focus {\n outline: 0;\n border: 0;\n}\n.flatpickr-time .flatpickr-time-separator,\n.flatpickr-time .flatpickr-am-pm {\n height: inherit;\n float: left;\n line-height: inherit;\n color: #484848;\n font-weight: bold;\n width: 2%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n -webkit-align-self: center;\n -ms-flex-item-align: center;\n align-self: center;\n}\n.flatpickr-time .flatpickr-am-pm {\n outline: 0;\n width: 18%;\n cursor: pointer;\n text-align: center;\n font-weight: 400;\n}\n.flatpickr-time input:hover,\n.flatpickr-time .flatpickr-am-pm:hover,\n.flatpickr-time input:focus,\n.flatpickr-time .flatpickr-am-pm:focus {\n background: #eaeaea;\n}\n.flatpickr-input[readonly] {\n cursor: pointer;\n}\n@-webkit-keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n@keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\nspan.flatpickr-day.selected {\n font-weight: bold;\n}\n",".iti {\n position: relative;\n display: inline-block; }\n .iti * {\n box-sizing: border-box;\n -moz-box-sizing: border-box; }\n .iti__hide {\n display: none; }\n .iti__v-hide {\n visibility: hidden; }\n .iti input, .iti input[type=text], .iti input[type=tel] {\n position: relative;\n z-index: 0;\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n padding-right: 36px;\n margin-right: 0; }\n .iti__flag-container {\n position: absolute;\n top: 0;\n bottom: 0;\n right: 0;\n padding: 1px; }\n .iti__selected-flag {\n z-index: 1;\n position: relative;\n display: flex;\n align-items: center;\n height: 100%;\n padding: 0 6px 0 8px; }\n .iti__arrow {\n margin-left: 6px;\n width: 0;\n height: 0;\n border-left: 3px solid transparent;\n border-right: 3px solid transparent;\n border-top: 4px solid #555; }\n .iti__arrow--up {\n border-top: none;\n border-bottom: 4px solid #555; }\n .iti__country-list {\n position: absolute;\n z-index: 2;\n list-style: none;\n text-align: left;\n padding: 0;\n margin: 0 0 0 -1px;\n box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);\n background-color: white;\n border: 1px solid #CCC;\n white-space: nowrap;\n max-height: 200px;\n overflow-y: scroll;\n -webkit-overflow-scrolling: touch; }\n .iti__country-list--dropup {\n bottom: 100%;\n margin-bottom: -1px; }\n @media (max-width: 500px) {\n .iti__country-list {\n white-space: normal; } }\n .iti__flag-box {\n display: inline-block;\n width: 20px; }\n .iti__divider {\n padding-bottom: 5px;\n margin-bottom: 5px;\n border-bottom: 1px solid #CCC; }\n .iti__country {\n padding: 5px 10px;\n outline: none; }\n .iti__dial-code {\n color: #999; }\n .iti__country.iti__highlight {\n background-color: rgba(0, 0, 0, 0.05); }\n .iti__flag-box, .iti__country-name, .iti__dial-code {\n vertical-align: middle; }\n .iti__flag-box, .iti__country-name {\n margin-right: 6px; }\n .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {\n padding-right: 6px;\n padding-left: 52px;\n margin-left: 0; }\n .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {\n right: auto;\n left: 0; }\n .iti--allow-dropdown .iti__flag-container:hover {\n cursor: pointer; }\n .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {\n background-color: rgba(0, 0, 0, 0.05); }\n .iti--allow-dropdown input[disabled] + .iti__flag-container:hover,\n .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {\n cursor: default; }\n .iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,\n .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {\n background-color: transparent; }\n .iti--separate-dial-code .iti__selected-flag {\n background-color: rgba(0, 0, 0, 0.05); }\n .iti--separate-dial-code .iti__selected-dial-code {\n margin-left: 6px; }\n .iti--container {\n position: absolute;\n top: -1000px;\n left: -1000px;\n z-index: 1060;\n padding: 1px; }\n .iti--container:hover {\n cursor: pointer; }\n\n.iti-mobile .iti--container {\n top: 30px;\n bottom: 30px;\n left: 30px;\n right: 30px;\n position: fixed; }\n\n.iti-mobile .iti__country-list {\n max-height: 100%;\n width: 100%; }\n\n.iti-mobile .iti__country {\n padding: 10px 10px;\n line-height: 1.5em; }\n\n.iti__flag {\n width: 20px; }\n .iti__flag.iti__be {\n width: 18px; }\n .iti__flag.iti__ch {\n width: 15px; }\n .iti__flag.iti__mc {\n width: 19px; }\n .iti__flag.iti__ne {\n width: 18px; }\n .iti__flag.iti__np {\n width: 13px; }\n .iti__flag.iti__va {\n width: 15px; }\n @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {\n .iti__flag {\n background-size: 5652px 15px; } }\n .iti__flag.iti__ac {\n height: 10px;\n background-position: 0px 0px; }\n .iti__flag.iti__ad {\n height: 14px;\n background-position: -22px 0px; }\n .iti__flag.iti__ae {\n height: 10px;\n background-position: -44px 0px; }\n .iti__flag.iti__af {\n height: 14px;\n background-position: -66px 0px; }\n .iti__flag.iti__ag {\n height: 14px;\n background-position: -88px 0px; }\n .iti__flag.iti__ai {\n height: 10px;\n background-position: -110px 0px; }\n .iti__flag.iti__al {\n height: 15px;\n background-position: -132px 0px; }\n .iti__flag.iti__am {\n height: 10px;\n background-position: -154px 0px; }\n .iti__flag.iti__ao {\n height: 14px;\n background-position: -176px 0px; }\n .iti__flag.iti__aq {\n height: 14px;\n background-position: -198px 0px; }\n .iti__flag.iti__ar {\n height: 13px;\n background-position: -220px 0px; }\n .iti__flag.iti__as {\n height: 10px;\n background-position: -242px 0px; }\n .iti__flag.iti__at {\n height: 14px;\n background-position: -264px 0px; }\n .iti__flag.iti__au {\n height: 10px;\n background-position: -286px 0px; }\n .iti__flag.iti__aw {\n height: 14px;\n background-position: -308px 0px; }\n .iti__flag.iti__ax {\n height: 13px;\n background-position: -330px 0px; }\n .iti__flag.iti__az {\n height: 10px;\n background-position: -352px 0px; }\n .iti__flag.iti__ba {\n height: 10px;\n background-position: -374px 0px; }\n .iti__flag.iti__bb {\n height: 14px;\n background-position: -396px 0px; }\n .iti__flag.iti__bd {\n height: 12px;\n background-position: -418px 0px; }\n .iti__flag.iti__be {\n height: 15px;\n background-position: -440px 0px; }\n .iti__flag.iti__bf {\n height: 14px;\n background-position: -460px 0px; }\n .iti__flag.iti__bg {\n height: 12px;\n background-position: -482px 0px; }\n .iti__flag.iti__bh {\n height: 12px;\n background-position: -504px 0px; }\n .iti__flag.iti__bi {\n height: 12px;\n background-position: -526px 0px; }\n .iti__flag.iti__bj {\n height: 14px;\n background-position: -548px 0px; }\n .iti__flag.iti__bl {\n height: 14px;\n background-position: -570px 0px; }\n .iti__flag.iti__bm {\n height: 10px;\n background-position: -592px 0px; }\n .iti__flag.iti__bn {\n height: 10px;\n background-position: -614px 0px; }\n .iti__flag.iti__bo {\n height: 14px;\n background-position: -636px 0px; }\n .iti__flag.iti__bq {\n height: 14px;\n background-position: -658px 0px; }\n .iti__flag.iti__br {\n height: 14px;\n background-position: -680px 0px; }\n .iti__flag.iti__bs {\n height: 10px;\n background-position: -702px 0px; }\n .iti__flag.iti__bt {\n height: 14px;\n background-position: -724px 0px; }\n .iti__flag.iti__bv {\n height: 15px;\n background-position: -746px 0px; }\n .iti__flag.iti__bw {\n height: 14px;\n background-position: -768px 0px; }\n .iti__flag.iti__by {\n height: 10px;\n background-position: -790px 0px; }\n .iti__flag.iti__bz {\n height: 14px;\n background-position: -812px 0px; }\n .iti__flag.iti__ca {\n height: 10px;\n background-position: -834px 0px; }\n .iti__flag.iti__cc {\n height: 10px;\n background-position: -856px 0px; }\n .iti__flag.iti__cd {\n height: 15px;\n background-position: -878px 0px; }\n .iti__flag.iti__cf {\n height: 14px;\n background-position: -900px 0px; }\n .iti__flag.iti__cg {\n height: 14px;\n background-position: -922px 0px; }\n .iti__flag.iti__ch {\n height: 15px;\n background-position: -944px 0px; }\n .iti__flag.iti__ci {\n height: 14px;\n background-position: -961px 0px; }\n .iti__flag.iti__ck {\n height: 10px;\n background-position: -983px 0px; }\n .iti__flag.iti__cl {\n height: 14px;\n background-position: -1005px 0px; }\n .iti__flag.iti__cm {\n height: 14px;\n background-position: -1027px 0px; }\n .iti__flag.iti__cn {\n height: 14px;\n background-position: -1049px 0px; }\n .iti__flag.iti__co {\n height: 14px;\n background-position: -1071px 0px; }\n .iti__flag.iti__cp {\n height: 14px;\n background-position: -1093px 0px; }\n .iti__flag.iti__cr {\n height: 12px;\n background-position: -1115px 0px; }\n .iti__flag.iti__cu {\n height: 10px;\n background-position: -1137px 0px; }\n .iti__flag.iti__cv {\n height: 12px;\n background-position: -1159px 0px; }\n .iti__flag.iti__cw {\n height: 14px;\n background-position: -1181px 0px; }\n .iti__flag.iti__cx {\n height: 10px;\n background-position: -1203px 0px; }\n .iti__flag.iti__cy {\n height: 14px;\n background-position: -1225px 0px; }\n .iti__flag.iti__cz {\n height: 14px;\n background-position: -1247px 0px; }\n .iti__flag.iti__de {\n height: 12px;\n background-position: -1269px 0px; }\n .iti__flag.iti__dg {\n height: 10px;\n background-position: -1291px 0px; }\n .iti__flag.iti__dj {\n height: 14px;\n background-position: -1313px 0px; }\n .iti__flag.iti__dk {\n height: 15px;\n background-position: -1335px 0px; }\n .iti__flag.iti__dm {\n height: 10px;\n background-position: -1357px 0px; }\n .iti__flag.iti__do {\n height: 14px;\n background-position: -1379px 0px; }\n .iti__flag.iti__dz {\n height: 14px;\n background-position: -1401px 0px; }\n .iti__flag.iti__ea {\n height: 14px;\n background-position: -1423px 0px; }\n .iti__flag.iti__ec {\n height: 14px;\n background-position: -1445px 0px; }\n .iti__flag.iti__ee {\n height: 13px;\n background-position: -1467px 0px; }\n .iti__flag.iti__eg {\n height: 14px;\n background-position: -1489px 0px; }\n .iti__flag.iti__eh {\n height: 10px;\n background-position: -1511px 0px; }\n .iti__flag.iti__er {\n height: 10px;\n background-position: -1533px 0px; }\n .iti__flag.iti__es {\n height: 14px;\n background-position: -1555px 0px; }\n .iti__flag.iti__et {\n height: 10px;\n background-position: -1577px 0px; }\n .iti__flag.iti__eu {\n height: 14px;\n background-position: -1599px 0px; }\n .iti__flag.iti__fi {\n height: 12px;\n background-position: -1621px 0px; }\n .iti__flag.iti__fj {\n height: 10px;\n background-position: -1643px 0px; }\n .iti__flag.iti__fk {\n height: 10px;\n background-position: -1665px 0px; }\n .iti__flag.iti__fm {\n height: 11px;\n background-position: -1687px 0px; }\n .iti__flag.iti__fo {\n height: 15px;\n background-position: -1709px 0px; }\n .iti__flag.iti__fr {\n height: 14px;\n background-position: -1731px 0px; }\n .iti__flag.iti__ga {\n height: 15px;\n background-position: -1753px 0px; }\n .iti__flag.iti__gb {\n height: 10px;\n background-position: -1775px 0px; }\n .iti__flag.iti__gd {\n height: 12px;\n background-position: -1797px 0px; }\n .iti__flag.iti__ge {\n height: 14px;\n background-position: -1819px 0px; }\n .iti__flag.iti__gf {\n height: 14px;\n background-position: -1841px 0px; }\n .iti__flag.iti__gg {\n height: 14px;\n background-position: -1863px 0px; }\n .iti__flag.iti__gh {\n height: 14px;\n background-position: -1885px 0px; }\n .iti__flag.iti__gi {\n height: 10px;\n background-position: -1907px 0px; }\n .iti__flag.iti__gl {\n height: 14px;\n background-position: -1929px 0px; }\n .iti__flag.iti__gm {\n height: 14px;\n background-position: -1951px 0px; }\n .iti__flag.iti__gn {\n height: 14px;\n background-position: -1973px 0px; }\n .iti__flag.iti__gp {\n height: 14px;\n background-position: -1995px 0px; }\n .iti__flag.iti__gq {\n height: 14px;\n background-position: -2017px 0px; }\n .iti__flag.iti__gr {\n height: 14px;\n background-position: -2039px 0px; }\n .iti__flag.iti__gs {\n height: 10px;\n background-position: -2061px 0px; }\n .iti__flag.iti__gt {\n height: 13px;\n background-position: -2083px 0px; }\n .iti__flag.iti__gu {\n height: 11px;\n background-position: -2105px 0px; }\n .iti__flag.iti__gw {\n height: 10px;\n background-position: -2127px 0px; }\n .iti__flag.iti__gy {\n height: 12px;\n background-position: -2149px 0px; }\n .iti__flag.iti__hk {\n height: 14px;\n background-position: -2171px 0px; }\n .iti__flag.iti__hm {\n height: 10px;\n background-position: -2193px 0px; }\n .iti__flag.iti__hn {\n height: 10px;\n background-position: -2215px 0px; }\n .iti__flag.iti__hr {\n height: 10px;\n background-position: -2237px 0px; }\n .iti__flag.iti__ht {\n height: 12px;\n background-position: -2259px 0px; }\n .iti__flag.iti__hu {\n height: 10px;\n background-position: -2281px 0px; }\n .iti__flag.iti__ic {\n height: 14px;\n background-position: -2303px 0px; }\n .iti__flag.iti__id {\n height: 14px;\n background-position: -2325px 0px; }\n .iti__flag.iti__ie {\n height: 10px;\n background-position: -2347px 0px; }\n .iti__flag.iti__il {\n height: 15px;\n background-position: -2369px 0px; }\n .iti__flag.iti__im {\n height: 10px;\n background-position: -2391px 0px; }\n .iti__flag.iti__in {\n height: 14px;\n background-position: -2413px 0px; }\n .iti__flag.iti__io {\n height: 10px;\n background-position: -2435px 0px; }\n .iti__flag.iti__iq {\n height: 14px;\n background-position: -2457px 0px; }\n .iti__flag.iti__ir {\n height: 12px;\n background-position: -2479px 0px; }\n .iti__flag.iti__is {\n height: 15px;\n background-position: -2501px 0px; }\n .iti__flag.iti__it {\n height: 14px;\n background-position: -2523px 0px; }\n .iti__flag.iti__je {\n height: 12px;\n background-position: -2545px 0px; }\n .iti__flag.iti__jm {\n height: 10px;\n background-position: -2567px 0px; }\n .iti__flag.iti__jo {\n height: 10px;\n background-position: -2589px 0px; }\n .iti__flag.iti__jp {\n height: 14px;\n background-position: -2611px 0px; }\n .iti__flag.iti__ke {\n height: 14px;\n background-position: -2633px 0px; }\n .iti__flag.iti__kg {\n height: 12px;\n background-position: -2655px 0px; }\n .iti__flag.iti__kh {\n height: 13px;\n background-position: -2677px 0px; }\n .iti__flag.iti__ki {\n height: 10px;\n background-position: -2699px 0px; }\n .iti__flag.iti__km {\n height: 12px;\n background-position: -2721px 0px; }\n .iti__flag.iti__kn {\n height: 14px;\n background-position: -2743px 0px; }\n .iti__flag.iti__kp {\n height: 10px;\n background-position: -2765px 0px; }\n .iti__flag.iti__kr {\n height: 14px;\n background-position: -2787px 0px; }\n .iti__flag.iti__kw {\n height: 10px;\n background-position: -2809px 0px; }\n .iti__flag.iti__ky {\n height: 10px;\n background-position: -2831px 0px; }\n .iti__flag.iti__kz {\n height: 10px;\n background-position: -2853px 0px; }\n .iti__flag.iti__la {\n height: 14px;\n background-position: -2875px 0px; }\n .iti__flag.iti__lb {\n height: 14px;\n background-position: -2897px 0px; }\n .iti__flag.iti__lc {\n height: 10px;\n background-position: -2919px 0px; }\n .iti__flag.iti__li {\n height: 12px;\n background-position: -2941px 0px; }\n .iti__flag.iti__lk {\n height: 10px;\n background-position: -2963px 0px; }\n .iti__flag.iti__lr {\n height: 11px;\n background-position: -2985px 0px; }\n .iti__flag.iti__ls {\n height: 14px;\n background-position: -3007px 0px; }\n .iti__flag.iti__lt {\n height: 12px;\n background-position: -3029px 0px; }\n .iti__flag.iti__lu {\n height: 12px;\n background-position: -3051px 0px; }\n .iti__flag.iti__lv {\n height: 10px;\n background-position: -3073px 0px; }\n .iti__flag.iti__ly {\n height: 10px;\n background-position: -3095px 0px; }\n .iti__flag.iti__ma {\n height: 14px;\n background-position: -3117px 0px; }\n .iti__flag.iti__mc {\n height: 15px;\n background-position: -3139px 0px; }\n .iti__flag.iti__md {\n height: 10px;\n background-position: -3160px 0px; }\n .iti__flag.iti__me {\n height: 10px;\n background-position: -3182px 0px; }\n .iti__flag.iti__mf {\n height: 14px;\n background-position: -3204px 0px; }\n .iti__flag.iti__mg {\n height: 14px;\n background-position: -3226px 0px; }\n .iti__flag.iti__mh {\n height: 11px;\n background-position: -3248px 0px; }\n .iti__flag.iti__mk {\n height: 10px;\n background-position: -3270px 0px; }\n .iti__flag.iti__ml {\n height: 14px;\n background-position: -3292px 0px; }\n .iti__flag.iti__mm {\n height: 14px;\n background-position: -3314px 0px; }\n .iti__flag.iti__mn {\n height: 10px;\n background-position: -3336px 0px; }\n .iti__flag.iti__mo {\n height: 14px;\n background-position: -3358px 0px; }\n .iti__flag.iti__mp {\n height: 10px;\n background-position: -3380px 0px; }\n .iti__flag.iti__mq {\n height: 14px;\n background-position: -3402px 0px; }\n .iti__flag.iti__mr {\n height: 14px;\n background-position: -3424px 0px; }\n .iti__flag.iti__ms {\n height: 10px;\n background-position: -3446px 0px; }\n .iti__flag.iti__mt {\n height: 14px;\n background-position: -3468px 0px; }\n .iti__flag.iti__mu {\n height: 14px;\n background-position: -3490px 0px; }\n .iti__flag.iti__mv {\n height: 14px;\n background-position: -3512px 0px; }\n .iti__flag.iti__mw {\n height: 14px;\n background-position: -3534px 0px; }\n .iti__flag.iti__mx {\n height: 12px;\n background-position: -3556px 0px; }\n .iti__flag.iti__my {\n height: 10px;\n background-position: -3578px 0px; }\n .iti__flag.iti__mz {\n height: 14px;\n background-position: -3600px 0px; }\n .iti__flag.iti__na {\n height: 14px;\n background-position: -3622px 0px; }\n .iti__flag.iti__nc {\n height: 10px;\n background-position: -3644px 0px; }\n .iti__flag.iti__ne {\n height: 15px;\n background-position: -3666px 0px; }\n .iti__flag.iti__nf {\n height: 10px;\n background-position: -3686px 0px; }\n .iti__flag.iti__ng {\n height: 10px;\n background-position: -3708px 0px; }\n .iti__flag.iti__ni {\n height: 12px;\n background-position: -3730px 0px; }\n .iti__flag.iti__nl {\n height: 14px;\n background-position: -3752px 0px; }\n .iti__flag.iti__no {\n height: 15px;\n background-position: -3774px 0px; }\n .iti__flag.iti__np {\n height: 15px;\n background-position: -3796px 0px; }\n .iti__flag.iti__nr {\n height: 10px;\n background-position: -3811px 0px; }\n .iti__flag.iti__nu {\n height: 10px;\n background-position: -3833px 0px; }\n .iti__flag.iti__nz {\n height: 10px;\n background-position: -3855px 0px; }\n .iti__flag.iti__om {\n height: 10px;\n background-position: -3877px 0px; }\n .iti__flag.iti__pa {\n height: 14px;\n background-position: -3899px 0px; }\n .iti__flag.iti__pe {\n height: 14px;\n background-position: -3921px 0px; }\n .iti__flag.iti__pf {\n height: 14px;\n background-position: -3943px 0px; }\n .iti__flag.iti__pg {\n height: 15px;\n background-position: -3965px 0px; }\n .iti__flag.iti__ph {\n height: 10px;\n background-position: -3987px 0px; }\n .iti__flag.iti__pk {\n height: 14px;\n background-position: -4009px 0px; }\n .iti__flag.iti__pl {\n height: 13px;\n background-position: -4031px 0px; }\n .iti__flag.iti__pm {\n height: 14px;\n background-position: -4053px 0px; }\n .iti__flag.iti__pn {\n height: 10px;\n background-position: -4075px 0px; }\n .iti__flag.iti__pr {\n height: 14px;\n background-position: -4097px 0px; }\n .iti__flag.iti__ps {\n height: 10px;\n background-position: -4119px 0px; }\n .iti__flag.iti__pt {\n height: 14px;\n background-position: -4141px 0px; }\n .iti__flag.iti__pw {\n height: 13px;\n background-position: -4163px 0px; }\n .iti__flag.iti__py {\n height: 11px;\n background-position: -4185px 0px; }\n .iti__flag.iti__qa {\n height: 8px;\n background-position: -4207px 0px; }\n .iti__flag.iti__re {\n height: 14px;\n background-position: -4229px 0px; }\n .iti__flag.iti__ro {\n height: 14px;\n background-position: -4251px 0px; }\n .iti__flag.iti__rs {\n height: 14px;\n background-position: -4273px 0px; }\n .iti__flag.iti__ru {\n height: 14px;\n background-position: -4295px 0px; }\n .iti__flag.iti__rw {\n height: 14px;\n background-position: -4317px 0px; }\n .iti__flag.iti__sa {\n height: 14px;\n background-position: -4339px 0px; }\n .iti__flag.iti__sb {\n height: 10px;\n background-position: -4361px 0px; }\n .iti__flag.iti__sc {\n height: 10px;\n background-position: -4383px 0px; }\n .iti__flag.iti__sd {\n height: 10px;\n background-position: -4405px 0px; }\n .iti__flag.iti__se {\n height: 13px;\n background-position: -4427px 0px; }\n .iti__flag.iti__sg {\n height: 14px;\n background-position: -4449px 0px; }\n .iti__flag.iti__sh {\n height: 10px;\n background-position: -4471px 0px; }\n .iti__flag.iti__si {\n height: 10px;\n background-position: -4493px 0px; }\n .iti__flag.iti__sj {\n height: 15px;\n background-position: -4515px 0px; }\n .iti__flag.iti__sk {\n height: 14px;\n background-position: -4537px 0px; }\n .iti__flag.iti__sl {\n height: 14px;\n background-position: -4559px 0px; }\n .iti__flag.iti__sm {\n height: 15px;\n background-position: -4581px 0px; }\n .iti__flag.iti__sn {\n height: 14px;\n background-position: -4603px 0px; }\n .iti__flag.iti__so {\n height: 14px;\n background-position: -4625px 0px; }\n .iti__flag.iti__sr {\n height: 14px;\n background-position: -4647px 0px; }\n .iti__flag.iti__ss {\n height: 10px;\n background-position: -4669px 0px; }\n .iti__flag.iti__st {\n height: 10px;\n background-position: -4691px 0px; }\n .iti__flag.iti__sv {\n height: 12px;\n background-position: -4713px 0px; }\n .iti__flag.iti__sx {\n height: 14px;\n background-position: -4735px 0px; }\n .iti__flag.iti__sy {\n height: 14px;\n background-position: -4757px 0px; }\n .iti__flag.iti__sz {\n height: 14px;\n background-position: -4779px 0px; }\n .iti__flag.iti__ta {\n height: 10px;\n background-position: -4801px 0px; }\n .iti__flag.iti__tc {\n height: 10px;\n background-position: -4823px 0px; }\n .iti__flag.iti__td {\n height: 14px;\n background-position: -4845px 0px; }\n .iti__flag.iti__tf {\n height: 14px;\n background-position: -4867px 0px; }\n .iti__flag.iti__tg {\n height: 13px;\n background-position: -4889px 0px; }\n .iti__flag.iti__th {\n height: 14px;\n background-position: -4911px 0px; }\n .iti__flag.iti__tj {\n height: 10px;\n background-position: -4933px 0px; }\n .iti__flag.iti__tk {\n height: 10px;\n background-position: -4955px 0px; }\n .iti__flag.iti__tl {\n height: 10px;\n background-position: -4977px 0px; }\n .iti__flag.iti__tm {\n height: 14px;\n background-position: -4999px 0px; }\n .iti__flag.iti__tn {\n height: 14px;\n background-position: -5021px 0px; }\n .iti__flag.iti__to {\n height: 10px;\n background-position: -5043px 0px; }\n .iti__flag.iti__tr {\n height: 14px;\n background-position: -5065px 0px; }\n .iti__flag.iti__tt {\n height: 12px;\n background-position: -5087px 0px; }\n .iti__flag.iti__tv {\n height: 10px;\n background-position: -5109px 0px; }\n .iti__flag.iti__tw {\n height: 14px;\n background-position: -5131px 0px; }\n .iti__flag.iti__tz {\n height: 14px;\n background-position: -5153px 0px; }\n .iti__flag.iti__ua {\n height: 14px;\n background-position: -5175px 0px; }\n .iti__flag.iti__ug {\n height: 14px;\n background-position: -5197px 0px; }\n .iti__flag.iti__um {\n height: 11px;\n background-position: -5219px 0px; }\n .iti__flag.iti__un {\n height: 14px;\n background-position: -5241px 0px; }\n .iti__flag.iti__us {\n height: 11px;\n background-position: -5263px 0px; }\n .iti__flag.iti__uy {\n height: 14px;\n background-position: -5285px 0px; }\n .iti__flag.iti__uz {\n height: 10px;\n background-position: -5307px 0px; }\n .iti__flag.iti__va {\n height: 15px;\n background-position: -5329px 0px; }\n .iti__flag.iti__vc {\n height: 14px;\n background-position: -5346px 0px; }\n .iti__flag.iti__ve {\n height: 14px;\n background-position: -5368px 0px; }\n .iti__flag.iti__vg {\n height: 10px;\n background-position: -5390px 0px; }\n .iti__flag.iti__vi {\n height: 14px;\n background-position: -5412px 0px; }\n .iti__flag.iti__vn {\n height: 14px;\n background-position: -5434px 0px; }\n .iti__flag.iti__vu {\n height: 12px;\n background-position: -5456px 0px; }\n .iti__flag.iti__wf {\n height: 14px;\n background-position: -5478px 0px; }\n .iti__flag.iti__ws {\n height: 10px;\n background-position: -5500px 0px; }\n .iti__flag.iti__xk {\n height: 15px;\n background-position: -5522px 0px; }\n .iti__flag.iti__ye {\n height: 14px;\n background-position: -5544px 0px; }\n .iti__flag.iti__yt {\n height: 14px;\n background-position: -5566px 0px; }\n .iti__flag.iti__za {\n height: 14px;\n background-position: -5588px 0px; }\n .iti__flag.iti__zm {\n height: 14px;\n background-position: -5610px 0px; }\n .iti__flag.iti__zw {\n height: 10px;\n background-position: -5632px 0px; }\n\n.iti__flag {\n height: 15px;\n box-shadow: 0px 0px 1px 0px #888;\n background-image: url(\"../img/flags.png\");\n background-repeat: no-repeat;\n background-color: #DBDBDB;\n background-position: 20px 0; }\n @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {\n .iti__flag {\n background-image: url(\"../img/flags@2x.png\"); } }\n\n.iti__flag.iti__np {\n background-color: transparent; }\n","/*!\n * FilePond 4.30.6\n * Licensed under MIT, https://opensource.org/licenses/MIT/\n * Please visit https://pqina.nl/filepond/ for details.\n */\n\n/* eslint-disable */\n.filepond--assistant{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--browser.filepond--browser{position:absolute;margin:0;padding:0;left:1em;top:1.75em;width:calc(100% - 2em);opacity:0;font-size:0}.filepond--data{position:absolute;width:0;height:0;padding:0;margin:0;border:none;visibility:hidden;pointer-events:none;contain:strict}.filepond--drip{position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden;opacity:.1;pointer-events:none;border-radius:.5em;background:rgba(0,0,0,.01)}.filepond--drip-blob{-webkit-transform-origin:center center;transform-origin:center center;width:8em;height:8em;margin-left:-4em;margin-top:-4em;background:#292625;border-radius:50%}.filepond--drip-blob,.filepond--drop-label{position:absolute;top:0;left:0;will-change:transform,opacity}.filepond--drop-label{right:0;margin:0;color:#4f4f4f;display:flex;justify-content:center;align-items:center;height:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--drop-label.filepond--drop-label label{display:block;margin:0;padding:.5em}.filepond--drop-label label{cursor:default;font-size:.875em;font-weight:400;text-align:center;line-height:1.5}.filepond--label-action{text-decoration:underline;-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto;-webkit-text-decoration-color:#a7a4a4;text-decoration-color:#a7a4a4;cursor:pointer}.filepond--root[data-disabled] .filepond--drop-label label{opacity:.5}.filepond--file-action-button.filepond--file-action-button{font-size:1em;width:1.625em;height:1.625em;font-family:inherit;line-height:inherit;margin:0;padding:0;border:none;outline:none;will-change:transform,opacity}.filepond--file-action-button.filepond--file-action-button span{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--file-action-button.filepond--file-action-button svg{width:100%;height:100%}.filepond--file-action-button.filepond--file-action-button:after{position:absolute;left:-.75em;right:-.75em;top:-.75em;bottom:-.75em;content:\"\"}.filepond--file-action-button{cursor:auto;color:#fff;border-radius:50%;background-color:rgba(0,0,0,.5);background-image:none;box-shadow:0 0 0 0 hsla(0,0%,100%,0);transition:box-shadow .25s ease-in}.filepond--file-action-button:focus,.filepond--file-action-button:hover{box-shadow:0 0 0 .125em hsla(0,0%,100%,.9)}.filepond--file-action-button[disabled]{color:hsla(0,0%,100%,.5);background-color:rgba(0,0,0,.25)}.filepond--file-action-button[hidden]{display:none}.filepond--action-edit-item.filepond--action-edit-item{width:2em;height:2em;padding:.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=center]{margin-left:-.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom]{margin-bottom:-.1875em}.filepond--action-edit-item-alt{border:none;line-height:inherit;background:transparent;font-family:inherit;color:inherit;outline:none;padding:0;margin:0 0 0 .25em;pointer-events:all;position:absolute}.filepond--action-edit-item-alt svg{width:1.3125em;height:1.3125em}.filepond--action-edit-item-alt span{font-size:0;opacity:0}.filepond--file-info{position:static;display:flex;flex-direction:column;align-items:flex-start;flex:1;margin:0 .5em 0 0;min-width:0;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--file-info *{margin:0}.filepond--file-info .filepond--file-info-main{font-size:.75em;line-height:1.2;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;width:100%}.filepond--file-info .filepond--file-info-sub{font-size:.625em;opacity:.5;transition:opacity .25s ease-in-out;white-space:nowrap}.filepond--file-info .filepond--file-info-sub:empty{display:none}.filepond--file-status{position:static;display:flex;flex-direction:column;align-items:flex-end;flex-grow:0;flex-shrink:0;margin:0;min-width:2.25em;text-align:right;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--file-status *{margin:0;white-space:nowrap}.filepond--file-status .filepond--file-status-main{font-size:.75em;line-height:1.2}.filepond--file-status .filepond--file-status-sub{font-size:.625em;opacity:.5;transition:opacity .25s ease-in-out}.filepond--file-wrapper.filepond--file-wrapper{border:none;margin:0;padding:0;min-width:0;height:100%}.filepond--file-wrapper.filepond--file-wrapper>legend{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--file{position:static;display:flex;height:100%;align-items:flex-start;padding:.5625em;color:#fff;border-radius:.5em}.filepond--file .filepond--file-status{margin-left:auto;margin-right:2.25em}.filepond--file .filepond--processing-complete-indicator{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:3}.filepond--file .filepond--file-action-button,.filepond--file .filepond--processing-complete-indicator,.filepond--file .filepond--progress-indicator{position:absolute}.filepond--file [data-align*=left]{left:.5625em}.filepond--file [data-align*=right]{right:.5625em}.filepond--file [data-align*=center]{left:calc(50% - .8125em)}.filepond--file [data-align*=bottom]{bottom:1.125em}.filepond--file [data-align=center]{top:calc(50% - .8125em)}.filepond--file .filepond--progress-indicator{margin-top:.1875em}.filepond--file .filepond--progress-indicator[data-align*=right]{margin-right:.1875em}.filepond--file .filepond--progress-indicator[data-align*=left]{margin-left:.1875em}[data-filepond-item-state*=error] .filepond--file-info,[data-filepond-item-state*=invalid] .filepond--file-info,[data-filepond-item-state=cancelled] .filepond--file-info{margin-right:2.25em}[data-filepond-item-state~=processing] .filepond--file-status-sub{opacity:0}[data-filepond-item-state~=processing] .filepond--action-abort-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-error] .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-error] .filepond--action-retry-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg{-webkit-animation:fall .5s linear .125s both;animation:fall .5s linear .125s both}[data-filepond-item-state=processing-complete] .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--file-info-sub,[data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden])~.filepond--file-status .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing~.filepond--file-info .filepond--file-info-sub{opacity:.5}[data-filepond-item-state*=error] .filepond--file-wrapper,[data-filepond-item-state*=error] .filepond--panel,[data-filepond-item-state*=invalid] .filepond--file-wrapper,[data-filepond-item-state*=invalid] .filepond--panel{-webkit-animation:shake .65s linear both;animation:shake .65s linear both}[data-filepond-item-state*=busy] .filepond--progress-indicator svg{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@-webkit-keyframes fall{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}70%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}to{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes fall{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}70%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}to{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.filepond--hopper[data-hopper-state=drag-over]>*{pointer-events:none}.filepond--hopper[data-hopper-state=drag-over]:after{content:\"\";position:absolute;left:0;top:0;right:0;bottom:0;z-index:100}.filepond--progress-indicator{z-index:103}.filepond--file-action-button{z-index:102}.filepond--file-status{z-index:101}.filepond--file-info{z-index:100}.filepond--item{position:absolute;top:0;left:0;right:0;z-index:1;padding:0;margin:.25em;will-change:transform,opacity}.filepond--item>.filepond--panel{z-index:-1}.filepond--item>.filepond--panel .filepond--panel-bottom{box-shadow:0 .0625em .125em -.0625em rgba(0,0,0,.25)}.filepond--item>.filepond--file-wrapper,.filepond--item>.filepond--panel{transition:opacity .15s ease-out}.filepond--item[data-drag-state]{cursor:-webkit-grab;cursor:grab}.filepond--item[data-drag-state]>.filepond--panel{transition:box-shadow .125s ease-in-out;box-shadow:0 0 0 transparent}.filepond--item[data-drag-state=drag]{cursor:-webkit-grabbing;cursor:grabbing}.filepond--item[data-drag-state=drag]>.filepond--panel{box-shadow:0 .125em .3125em rgba(0,0,0,.325)}.filepond--item[data-drag-state]:not([data-drag-state=idle]){z-index:2}.filepond--item-panel{background-color:#64605e}[data-filepond-item-state=processing-complete] .filepond--item-panel{background-color:#369763}[data-filepond-item-state*=error] .filepond--item-panel,[data-filepond-item-state*=invalid] .filepond--item-panel{background-color:#c44e47}.filepond--item-panel{border-radius:.5em;transition:background-color .25s}.filepond--list-scroller{position:absolute;top:0;left:0;right:0;margin:0;will-change:transform}.filepond--list-scroller[data-state=overflow] .filepond--list{bottom:0;right:0}.filepond--list-scroller[data-state=overflow]{overflow-y:scroll;overflow-x:hidden;-webkit-overflow-scrolling:touch;-webkit-mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent);mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent)}.filepond--list-scroller::-webkit-scrollbar{background:transparent}.filepond--list-scroller::-webkit-scrollbar:vertical{width:1em}.filepond--list-scroller::-webkit-scrollbar:horizontal{height:0}.filepond--list-scroller::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3);border-radius:99999px;border:.3125em solid transparent;background-clip:content-box}.filepond--list.filepond--list{position:absolute;top:0;margin:0;padding:0;list-style-type:none;will-change:transform}.filepond--list{left:.75em;right:.75em}.filepond--root[data-style-panel-layout~=integrated]{width:100%;height:100%;max-width:none;margin:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root{border-radius:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root>*,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{bottom:0;height:auto;display:flex;justify-content:center;align-items:center;z-index:7}.filepond--root[data-style-panel-layout~=circle] .filepond--item-panel,.filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel{display:none}.filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller,.filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller{overflow:hidden;height:100%;margin-top:0;margin-bottom:0}.filepond--root[data-style-panel-layout~=compact] .filepond--list,.filepond--root[data-style-panel-layout~=integrated] .filepond--list{left:0;right:0;height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--item,.filepond--root[data-style-panel-layout~=integrated] .filepond--item{margin:0}.filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper,.filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper{height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{z-index:7}.filepond--root[data-style-panel-layout~=circle]{border-radius:99999rem;overflow:hidden}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel{border-radius:inherit}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--file-info,.filepond--root[data-style-panel-layout~=circle] .filepond--file-status{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item{opacity:1!important;visibility:visible!important}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none) and (stroke-color:transparent){.filepond--root[data-style-panel-layout~=circle]{will-change:transform}}}.filepond--panel-root{border-radius:.5em;background-color:#f1f0ef}.filepond--panel{position:absolute;left:0;top:0;right:0;margin:0;height:100%!important;pointer-events:none}.filepond-panel:not([data-scalable=false]){height:auto!important}.filepond--panel[data-scalable=false]>div{display:none}.filepond--panel[data-scalable=true]{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;background-color:transparent!important;border:none!important}.filepond--panel-bottom,.filepond--panel-center,.filepond--panel-top{position:absolute;left:0;top:0;right:0;margin:0;padding:0}.filepond--panel-bottom,.filepond--panel-top{height:.5em}.filepond--panel-top{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important;border-bottom:none!important}.filepond--panel-top:after{content:\"\";position:absolute;height:2px;left:0;right:0;bottom:-1px;background-color:inherit}.filepond--panel-bottom,.filepond--panel-center{will-change:transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:translate3d(0,.5em,0);transform:translate3d(0,.5em,0)}.filepond--panel-bottom{border-top-left-radius:0!important;border-top-right-radius:0!important;border-top:none!important}.filepond--panel-bottom:before{content:\"\";position:absolute;height:2px;left:0;right:0;top:-1px;background-color:inherit}.filepond--panel-center{height:100px!important;border-top:none!important;border-bottom:none!important;border-radius:0!important}.filepond--panel-center:not([style]){visibility:hidden}.filepond--progress-indicator{position:static;width:1.25em;height:1.25em;color:#fff;margin:0;pointer-events:none;will-change:transform,opacity}.filepond--progress-indicator svg{width:100%;height:100%;vertical-align:top;transform-box:fill-box}.filepond--progress-indicator path{fill:none;stroke:currentColor}.filepond--list-scroller{z-index:6}.filepond--drop-label{z-index:5}.filepond--drip{z-index:3}.filepond--root>.filepond--panel{z-index:2}.filepond--browser{z-index:1}.filepond--root{box-sizing:border-box;position:relative;margin-bottom:1em;font-size:1rem;line-height:normal;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-weight:450;text-align:left;text-rendering:optimizeLegibility;direction:ltr;contain:layout style size}.filepond--root *{box-sizing:inherit;line-height:inherit}.filepond--root :not(text){font-size:inherit}.filepond--root[data-disabled]{pointer-events:none}.filepond--root[data-disabled] .filepond--list-scroller{pointer-events:all}.filepond--root[data-disabled] .filepond--list{pointer-events:none}.filepond--root .filepond--drop-label{min-height:4.75em}.filepond--root .filepond--list-scroller{margin-top:1em;margin-bottom:1em}.filepond--root .filepond--credits{position:absolute;right:0;opacity:.175;line-height:.85;font-size:11px;color:inherit;text-decoration:none;z-index:3;bottom:-14px}.filepond--root .filepond--credits[style]{top:0;bottom:auto;margin-top:14px}","trix-editor {\n border: 1px solid #bbb;\n border-radius: 3px;\n margin: 0;\n padding: 0.4em 0.6em;\n min-height: 5em;\n outline: none; }\n\ntrix-toolbar * {\n box-sizing: border-box; }\n\ntrix-toolbar .trix-button-row {\n display: flex;\n flex-wrap: nowrap;\n justify-content: space-between;\n overflow-x: auto; }\n\ntrix-toolbar .trix-button-group {\n display: flex;\n margin-bottom: 10px;\n border: 1px solid #bbb;\n border-top-color: #ccc;\n border-bottom-color: #888;\n border-radius: 3px; }\n trix-toolbar .trix-button-group:not(:first-child) {\n margin-left: 1.5vw; }\n @media (max-width: 768px) {\n trix-toolbar .trix-button-group:not(:first-child) {\n margin-left: 0; } }\n\ntrix-toolbar .trix-button-group-spacer {\n flex-grow: 1; }\n @media (max-width: 768px) {\n trix-toolbar .trix-button-group-spacer {\n display: none; } }\n\ntrix-toolbar .trix-button {\n position: relative;\n float: left;\n color: rgba(0, 0, 0, 0.6);\n font-size: 0.75em;\n font-weight: 600;\n white-space: nowrap;\n padding: 0 0.5em;\n margin: 0;\n outline: none;\n border: none;\n border-bottom: 1px solid #ddd;\n border-radius: 0;\n background: transparent; }\n trix-toolbar .trix-button:not(:first-child) {\n border-left: 1px solid #ccc; }\n trix-toolbar .trix-button.trix-active {\n background: #cbeefa;\n color: black; }\n trix-toolbar .trix-button:not(:disabled) {\n cursor: pointer; }\n trix-toolbar .trix-button:disabled {\n color: rgba(0, 0, 0, 0.125); }\n @media (max-width: 768px) {\n trix-toolbar .trix-button {\n letter-spacing: -0.01em;\n padding: 0 0.3em; } }\n\ntrix-toolbar .trix-button--icon {\n font-size: inherit;\n width: 2.6em;\n height: 1.6em;\n max-width: calc(0.8em + 4vw);\n text-indent: -9999px; }\n @media (max-width: 768px) {\n trix-toolbar .trix-button--icon {\n height: 2em;\n max-width: calc(0.8em + 3.5vw); } }\n trix-toolbar .trix-button--icon::before {\n display: inline-block;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n opacity: 0.6;\n content: \"\";\n background-position: center;\n background-repeat: no-repeat;\n background-size: contain; }\n @media (max-width: 768px) {\n trix-toolbar .trix-button--icon::before {\n right: 6%;\n left: 6%; } }\n trix-toolbar .trix-button--icon.trix-active::before {\n opacity: 1; }\n trix-toolbar .trix-button--icon:disabled::before {\n opacity: 0.125; }\n\ntrix-toolbar .trix-button--icon-attach::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.5%2018V7.5c0-2.25%203-2.25%203%200V18c0%204.125-6%204.125-6%200V7.5c0-6.375%209-6.375%209%200V18%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E\");\n top: 8%;\n bottom: 4%; }\n\ntrix-toolbar .trix-button--icon-bold::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.522%2019.242a.5.5%200%200%201-.5-.5V5.35a.5.5%200%200%201%20.5-.5h5.783c1.347%200%202.46.345%203.24.982.783.64%201.216%201.562%201.216%202.683%200%201.13-.587%202.129-1.476%202.71a.35.35%200%200%200%20.049.613c1.259.56%202.101%201.742%202.101%203.22%200%201.282-.483%202.334-1.363%203.063-.876.726-2.132%201.12-3.66%201.12h-5.89ZM9.27%207.347v3.362h1.97c.766%200%201.347-.17%201.733-.464.38-.291.587-.716.587-1.27%200-.53-.183-.928-.513-1.198-.334-.273-.838-.43-1.505-.43H9.27Zm0%205.606v3.791h2.389c.832%200%201.448-.177%201.853-.497.399-.315.614-.786.614-1.423%200-.62-.22-1.077-.63-1.385-.418-.313-1.053-.486-1.905-.486H9.27Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-italic::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9%205h6.5v2h-2.23l-2.31%2010H13v2H6v-2h2.461l2.306-10H9V5Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-link::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.948%205.258a4.337%204.337%200%200%200-6.108%200L11.217%206.87a.993.993%200%200%200%200%201.41c.392.39%201.027.39%201.418%200l1.623-1.613a2.323%202.323%200%200%201%203.271%200%202.29%202.29%200%200%201%200%203.251l-2.393%202.38a3.021%203.021%200%200%201-4.255%200l-.05-.049a1.007%201.007%200%200%200-1.418%200%20.993.993%200%200%200%200%201.41l.05.049a5.036%205.036%200%200%200%207.091%200l2.394-2.38a4.275%204.275%200%200%200%200-6.072Zm-13.683%2013.6a4.337%204.337%200%200%200%206.108%200l1.262-1.255a.993.993%200%200%200%200-1.41%201.007%201.007%200%200%200-1.418%200L9.954%2017.45a2.323%202.323%200%200%201-3.27%200%202.29%202.29%200%200%201%200-3.251l2.344-2.331a2.579%202.579%200%200%201%203.631%200c.392.39%201.027.39%201.419%200a.993.993%200%200%200%200-1.41%204.593%204.593%200%200%200-6.468%200l-2.345%202.33a4.275%204.275%200%200%200%200%206.072Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-strike::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6%2014.986c.088%202.647%202.246%204.258%205.635%204.258%203.496%200%205.713-1.728%205.713-4.463%200-.275-.02-.536-.062-.781h-3.461c.398.293.573.654.573%201.123%200%201.035-1.074%201.787-2.646%201.787-1.563%200-2.773-.762-2.91-1.924H6ZM6.432%2010h3.763c-.632-.314-.914-.715-.914-1.273%200-1.045.977-1.739%202.432-1.739%201.475%200%202.52.723%202.617%201.914h2.764c-.05-2.548-2.11-4.238-5.39-4.238-3.145%200-5.392%201.719-5.392%204.316%200%20.363.04.703.12%201.02ZM4%2011a1%201%200%201%200%200%202h15a1%201%200%201%200%200-2H4Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-quote::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.581%208.471c.44-.5%201.056-.834%201.758-.995C8.074%207.17%209.201%207.822%2010%208.752c1.354%201.578%201.33%203.555.394%205.277-.941%201.731-2.788%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.121-.49.16-.764.294-.286.567-.566.791-.835.222-.266.413-.54.524-.815.113-.28.156-.597.026-.908-.128-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.674-2.7c0-.905.283-1.59.72-2.088Zm9.419%200c.44-.5%201.055-.834%201.758-.995%201.734-.306%202.862.346%203.66%201.276%201.355%201.578%201.33%203.555.395%205.277-.941%201.731-2.789%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.122-.49.16-.764.294-.286.567-.566.791-.835.222-.266.412-.54.523-.815.114-.28.157-.597.026-.908-.127-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.672-2.701c0-.905.283-1.59.72-2.088Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-heading-1::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21.5%207.5v-3h-12v3H14v13h3v-13h4.5ZM9%2013.5h3.5v-3h-10v3H6v7h3v-7Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-code::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.293%2011.293a1%201%200%200%200%200%201.414l4%204a1%201%200%201%200%201.414-1.414L5.414%2012l3.293-3.293a1%201%200%200%200-1.414-1.414l-4%204Zm13.414%205.414%204-4a1%201%200%200%200%200-1.414l-4-4a1%201%200%201%200-1.414%201.414L18.586%2012l-3.293%203.293a1%201%200%200%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-bullet-list::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%207.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203ZM8%206a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-2.5-5a1.5%201.5%200%201%201-3%200%201.5%201.5%200%200%201%203%200ZM5%2019.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-number-list::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%204h2v4H4V5H3V4Zm5%202a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-3.5-7H6v1l-1.5%202H6v1H3v-1l1.667-2H3v-1h2.5ZM3%2017v-1h3v4H3v-1h2v-.5H4v-1h1V17H3Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-undo::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%2014a1%201%200%200%200%201%201h6a1%201%200%201%200%200-2H6.257c2.247-2.764%205.151-3.668%207.579-3.264%202.589.432%204.739%202.356%205.174%205.405a1%201%200%200%200%201.98-.283c-.564-3.95-3.415-6.526-6.825-7.095C11.084%207.25%207.63%208.377%205%2011.39V8a1%201%200%200%200-2%200v6Zm2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-redo::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21%2014a1%201%200%200%201-1%201h-6a1%201%200%201%201%200-2h3.743c-2.247-2.764-5.151-3.668-7.579-3.264-2.589.432-4.739%202.356-5.174%205.405a1%201%200%200%201-1.98-.283c.564-3.95%203.415-6.526%206.826-7.095%203.08-.513%206.534.614%209.164%203.626V8a1%201%200%201%201%202%200v6Zm-2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-decrease-nesting-level::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-3.707-5.707a1%201%200%200%200%200%201.414l2%202a1%201%200%201%200%201.414-1.414L4.414%2012l1.293-1.293a1%201%200%200%200-1.414-1.414l-2%202Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-increase-nesting-level::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-2.293-2.293%202-2a1%201%200%200%200%200-1.414l-2-2a1%201%200%201%200-1.414%201.414L3.586%2012l-1.293%201.293a1%201%200%201%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-dialogs {\n position: relative; }\n\ntrix-toolbar .trix-dialog {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n font-size: 0.75em;\n padding: 15px 10px;\n background: #fff;\n box-shadow: 0 0.3em 1em #ccc;\n border-top: 2px solid #888;\n border-radius: 5px;\n z-index: 5; }\n\ntrix-toolbar .trix-input--dialog {\n font-size: inherit;\n font-weight: normal;\n padding: 0.5em 0.8em;\n margin: 0 10px 0 0;\n border-radius: 3px;\n border: 1px solid #bbb;\n background-color: #fff;\n box-shadow: none;\n outline: none;\n -webkit-appearance: none;\n -moz-appearance: none; }\n trix-toolbar .trix-input--dialog.validate:invalid {\n box-shadow: #F00 0px 0px 1.5px 1px; }\n\ntrix-toolbar .trix-button--dialog {\n font-size: inherit;\n padding: 0.5em;\n border-bottom: none; }\n\ntrix-toolbar .trix-dialog--link {\n max-width: 600px; }\n\ntrix-toolbar .trix-dialog__link-fields {\n display: flex;\n align-items: baseline; }\n trix-toolbar .trix-dialog__link-fields .trix-input {\n flex: 1; }\n trix-toolbar .trix-dialog__link-fields .trix-button-group {\n flex: 0 0 content;\n margin: 0; }\n\ntrix-editor [data-trix-mutable]:not(.attachment__caption-editor) {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n\ntrix-editor [data-trix-mutable]::-moz-selection,\ntrix-editor [data-trix-cursor-target]::-moz-selection, trix-editor [data-trix-mutable] ::-moz-selection {\n background: none; }\n\ntrix-editor [data-trix-mutable]::selection,\ntrix-editor [data-trix-cursor-target]::selection, trix-editor [data-trix-mutable] ::selection {\n background: none; }\n\ntrix-editor .attachment__caption-editor:focus[data-trix-mutable]::-moz-selection {\n background: highlight; }\n\ntrix-editor .attachment__caption-editor:focus[data-trix-mutable]::selection {\n background: highlight; }\n\ntrix-editor [data-trix-mutable].attachment.attachment--file {\n box-shadow: 0 0 0 2px highlight;\n border-color: transparent; }\n\ntrix-editor [data-trix-mutable].attachment img {\n box-shadow: 0 0 0 2px highlight; }\n\ntrix-editor .attachment {\n position: relative; }\n trix-editor .attachment:hover {\n cursor: default; }\n\ntrix-editor .attachment--preview .attachment__caption:hover {\n cursor: text; }\n\ntrix-editor .attachment__progress {\n position: absolute;\n z-index: 1;\n height: 20px;\n top: calc(50% - 10px);\n left: 5%;\n width: 90%;\n opacity: 0.9;\n transition: opacity 200ms ease-in; }\n trix-editor .attachment__progress[value=\"100\"] {\n opacity: 0; }\n\ntrix-editor .attachment__caption-editor {\n display: inline-block;\n width: 100%;\n margin: 0;\n padding: 0;\n font-size: inherit;\n font-family: inherit;\n line-height: inherit;\n color: inherit;\n text-align: center;\n vertical-align: top;\n border: none;\n outline: none;\n -webkit-appearance: none;\n -moz-appearance: none; }\n\ntrix-editor .attachment__toolbar {\n position: absolute;\n z-index: 1;\n top: -0.9em;\n left: 0;\n width: 100%;\n text-align: center; }\n\ntrix-editor .trix-button-group {\n display: inline-flex; }\n\ntrix-editor .trix-button {\n position: relative;\n float: left;\n color: #666;\n white-space: nowrap;\n font-size: 80%;\n padding: 0 0.8em;\n margin: 0;\n outline: none;\n border: none;\n border-radius: 0;\n background: transparent; }\n trix-editor .trix-button:not(:first-child) {\n border-left: 1px solid #ccc; }\n trix-editor .trix-button.trix-active {\n background: #cbeefa; }\n trix-editor .trix-button:not(:disabled) {\n cursor: pointer; }\n\ntrix-editor .trix-button--remove {\n text-indent: -9999px;\n display: inline-block;\n padding: 0;\n outline: none;\n width: 1.8em;\n height: 1.8em;\n line-height: 1.8em;\n border-radius: 50%;\n background-color: #fff;\n border: 2px solid highlight;\n box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25); }\n trix-editor .trix-button--remove::before {\n display: inline-block;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n opacity: 0.7;\n content: \"\";\n background-image: url(\"data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E\");\n background-position: center;\n background-repeat: no-repeat;\n background-size: 90%; }\n trix-editor .trix-button--remove:hover {\n border-color: #333; }\n trix-editor .trix-button--remove:hover::before {\n opacity: 1; }\n\ntrix-editor .attachment__metadata-container {\n position: relative; }\n\ntrix-editor .attachment__metadata {\n position: absolute;\n left: 50%;\n top: 2em;\n transform: translate(-50%, 0);\n max-width: 90%;\n padding: 0.1em 0.6em;\n font-size: 0.8em;\n color: #fff;\n background-color: rgba(0, 0, 0, 0.7);\n border-radius: 3px; }\n trix-editor .attachment__metadata .attachment__name {\n display: inline-block;\n max-width: 100%;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap; }\n trix-editor .attachment__metadata .attachment__size {\n margin-left: 0.2em;\n white-space: nowrap; }\n\n.trix-content {\n line-height: 1.5; }\n .trix-content * {\n box-sizing: border-box;\n margin: 0;\n padding: 0; }\n .trix-content h1 {\n font-size: 1.2em;\n line-height: 1.2; }\n .trix-content blockquote {\n border: 0 solid #ccc;\n border-left-width: 0.3em;\n margin-left: 0.3em;\n padding-left: 0.6em; }\n .trix-content [dir=rtl] blockquote,\n .trix-content blockquote[dir=rtl] {\n border-width: 0;\n border-right-width: 0.3em;\n margin-right: 0.3em;\n padding-right: 0.6em; }\n .trix-content li {\n margin-left: 1em; }\n .trix-content [dir=rtl] li {\n margin-right: 1em; }\n .trix-content pre {\n display: inline-block;\n width: 100%;\n vertical-align: top;\n font-family: monospace;\n font-size: 0.9em;\n padding: 0.5em;\n white-space: pre;\n background-color: #eee;\n overflow-x: auto; }\n .trix-content img {\n max-width: 100%;\n height: auto; }\n .trix-content .attachment {\n display: inline-block;\n position: relative;\n max-width: 100%; }\n .trix-content .attachment a {\n color: inherit;\n text-decoration: none; }\n .trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {\n color: inherit; }\n .trix-content .attachment__caption {\n text-align: center; }\n .trix-content .attachment__caption .attachment__name + .attachment__size::before {\n content: ' \\2022 '; }\n .trix-content .attachment--preview {\n width: 100%;\n text-align: center; }\n .trix-content .attachment--preview .attachment__caption {\n color: #666;\n font-size: 0.9em;\n line-height: 1.2; }\n .trix-content .attachment--file {\n color: #333;\n line-height: 1;\n margin: 0 2px 2px 2px;\n padding: 0.4em 1em;\n border: 1px solid #bbb;\n border-radius: 5px; }\n .trix-content .attachment-gallery {\n display: flex;\n flex-wrap: wrap;\n position: relative; }\n .trix-content .attachment-gallery .attachment {\n flex: 1 0 33%;\n padding: 0 0.5em;\n max-width: 33%; }\n .trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {\n flex-basis: 50%;\n max-width: 50%; }\n","input {\n width: 100%;\n}\n\ninput[type='number']::-webkit-inner-spin-button {\n -webkit-appearance: none;\n}\n\ninput[type='number'] {\n -moz-appearance: textfield;\n appearance: textfield;\n margin: 0;\n}\n\n.hide-scroll::-webkit-scrollbar {\n display: none;\n}\n\n[x-cloak] {\n display: none !important;\n}\n\n.primary-menu .active {\n background-color: theme('colors.primary.900');\n}\n.primary-menu .active:hover,\n.primary-menu .active:focus {\n background-color: theme('colors.primary.900');\n}\n\n.iti {\n display: block;\n}\n\n.iti__selected-flag {\n padding: 0 10px;\n}\n\n.scrolling::-webkit-scrollbar {\n width: 0.5em;\n height: 0.5em;\n}\n\n.dark .scrolling::-webkit-scrollbar-track {\n background: theme('colors.secondary.800');\n}\n\n.scrolling::-webkit-scrollbar-thumb {\n background-color: theme('colors.secondary.200');\n border-radius: 2px;\n}\n\n.scrolling::-webkit-scrollbar-thumb:hover {\n background-color: theme('colors.secondary.300');\n}\n\n.dark .scrolling::-webkit-scrollbar-thumb {\n background-color: theme('colors.secondary.700');\n}\n\n.dark .scrolling::-webkit-scrollbar-thumb:hover {\n background-color: theme('colors.secondary.900');\n}\n\n#ui-modal > div > div.fixed {\n @apply z-40 backdrop-blur-sm;\n}\n",".filepond--root {\n @apply mb-0 overflow-hidden;\n}\n\n.filepond--panel-root {\n @apply rounded-lg border border-dashed border-secondary-300 bg-white shadow-sm;\n}\n\n.filepond--drip-blob {\n @apply bg-secondary-900;\n}\n\n.dark .filepond--drop-label {\n @apply text-secondary-200;\n}\n\n.dark .filepond--panel-root {\n @apply border-secondary-600 bg-secondary-700 text-white;\n}\n\n.dark .filepond--drip-blob {\n @apply bg-secondary-100;\n}\n\n/* Compact-only styles, excluding compact circle layouts */\n\n.filepond--root[data-style-panel-layout='compact'] .filepond--item {\n @apply mb-0.5;\n}\n\n.filepond--root[data-style-panel-layout='compact'] .filepond--drop-label label {\n @apply text-sm;\n}\n\n.filepond--root[data-style-panel-layout='compact'] .filepond--drop-label {\n min-height: 2.625em;\n}\n\n.filepond--root[data-style-panel-layout='compact'] .filepond--file {\n padding-top: 0.5em;\n padding-bottom: 0.5em;\n}\n\n/* Grid styles */\n\n.filepond--root[data-style-panel-layout='grid'] .filepond--item {\n width: calc(50% - 0.5em);\n display: inline;\n}\n\n@media screen(lg) {\n .filepond--root[data-style-panel-layout='grid'] .filepond--item {\n width: calc(33.33% - 0.5em);\n }\n}\n\n/* Download button styles */\n\n.filepond--download-icon {\n @apply pointer-events-auto mr-1 inline-block h-4 w-4 bg-white align-bottom hover:bg-white/70;\n -webkit-mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItZG93bmxvYWQiPjxwYXRoIGQ9Ik0yMSAxNXY0YTIgMiAwIDAgMS0yIDJINWEyIDIgMCAwIDEtMi0ydi00Ij48L3BhdGg+PHBvbHlsaW5lIHBvaW50cz0iNyAxMCAxMiAxNSAxNyAxMCI+PC9wb2x5bGluZT48bGluZSB4MT0iMTIiIHkxPSIxNSIgeDI9IjEyIiB5Mj0iMyI+PC9saW5lPjwvc3ZnPg==');\n mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItZG93bmxvYWQiPjxwYXRoIGQ9Ik0yMSAxNXY0YTIgMiAwIDAgMS0yIDJINWEyIDIgMCAwIDEtMi0ydi00Ij48L3BhdGg+PHBvbHlsaW5lIHBvaW50cz0iNyAxMCAxMiAxNSAxNyAxMCI+PC9wb2x5bGluZT48bGluZSB4MT0iMTIiIHkxPSIxNSIgeDI9IjEyIiB5Mj0iMyI+PC9saW5lPjwvc3ZnPg==');\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-size: 100%;\n mask-size: 100%;\n}\n\n.filepond--open-icon {\n @apply pointer-events-auto mr-1 inline-block h-4 w-4 bg-white align-bottom hover:bg-white/70;\n -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJoLTYgdy02IiBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2Utd2lkdGg9IjIiPgogIDxwYXRoIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZD0iTTEwIDZINmEyIDIgMCAwMC0yIDJ2MTBhMiAyIDAgMDAyIDJoMTBhMiAyIDAgMDAyLTJ2LTRNMTQgNGg2bTAgMHY2bTAtNkwxMCAxNCIgLz4KPC9zdmc+Cg==);\n mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJoLTYgdy02IiBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2Utd2lkdGg9IjIiPgogIDxwYXRoIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZD0iTTEwIDZINmEyIDIgMCAwMC0yIDJ2MTBhMiAyIDAgMDAyIDJoMTBhMiAyIDAgMDAyLTJ2LTRNMTQgNGg2bTAgMHY2bTAtNkwxMCAxNCIgLz4KPC9zdmc+Cg==);\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-size: 100%;\n mask-size: 100%;\n}\n",".choices {\n @apply relative outline-none;\n}\n\n.choices__input.choices__input--cloned {\n @apply hidden;\n}\n\n.choices__inner {\n @apply flex h-[38px] w-full items-center rounded-md border border-secondary-300 bg-white p-2 shadow-sm dark:border-secondary-700 dark:bg-secondary-700 !important;\n}\n\n.choices__list--dropdown {\n @apply border border-secondary-300 dark:border-secondary-700 !important;\n}\n\n.choices__list--single {\n @apply p-0 !important;\n}\n\n.choices__item {\n @apply my-0 cursor-pointer rounded border-0 bg-secondary-200 px-2 py-1 text-sm text-secondary-700 dark:bg-secondary-700 dark:text-secondary-300 !important;\n}\n\n.choices__item.choices__item--choice {\n @apply rounded-md py-2 !important;\n}\n\n.choices__item.choices__item--choice.choices__item--selectable {\n @apply mb-0 rounded-none bg-white p-2 text-secondary-700 dark:bg-secondary-700 dark:text-secondary-300 !important;\n}\n\n.choices__item.choices__item--choice.choices__item--selectable:hover {\n @apply bg-secondary-200 dark:bg-secondary-600 !important;\n}\n\n.choices__item.choices__item--selectable {\n @apply mb-1 border-primary-500 bg-primary-500 text-white !important;\n}\n\n.choices__list--single > .choices__item.choices__item--selectable {\n @apply mb-0 bg-white text-secondary-700 dark:bg-secondary-700 dark:text-secondary-300 !important;\n}\n\n.choices__item.is-highlighted {\n @apply border-primary-600 bg-primary-600 text-white !important;\n}\n\n.choices[data-type*='select-one']:after {\n border-color: theme('colors.secondary.500') transparent transparent\n transparent !important;\n}\n\n.choices[data-type*='select-one'] .choices__input {\n @apply rounded-none border-b-2 border-secondary-300 bg-white dark:border-secondary-700 dark:bg-secondary-600 dark:text-secondary-400 !important;\n}\n\n.choices__item.choices__item--choice.is-selected.choices__item--selectable.is-highlighted,\n.choices__item.choices__item--choice.is-selected.choices__item--selectable {\n @apply border-primary-600 bg-primary-600 text-white !important;\n}\n\n.ts-control {\n @apply flex rounded-md border border-secondary-300 bg-white shadow-sm dark:border-secondary-700 dark:bg-secondary-700 dark:text-secondary-300;\n padding: 9px 12px !important;\n z-index: 0;\n}\n\n.ts-control > input {\n @apply text-sm leading-4 text-secondary-500 dark:text-secondary-400;\n}\n\n.ts-dropdown {\n @apply my-1 rounded-md border-secondary-300 bg-white text-sm leading-5 text-secondary-500 shadow-sm dark:border-secondary-700 dark:bg-secondary-700 dark:text-secondary-400;\n}\n\n.ts-dropdown.single {\n @apply border-secondary-300 dark:border-secondary-700 !important;\n}\n\n.ts-dropdown .active {\n @apply mb-0 rounded-none bg-white p-2 text-sm leading-5 text-secondary-700 dark:bg-secondary-700 dark:text-secondary-300 !important;\n}\n\n.ts-dropdown .option:hover {\n @apply bg-primary-600 text-white;\n}\n\n.ts-wrapper.multi .ts-control [data-value] {\n @apply rounded-md bg-primary-600 text-sm leading-5 shadow-none;\n box-shadow: none;\n}\n.ts-wrapper.multi .ts-control [data-value].active {\n background-color: theme('colors.primary.600');\n background-repeat: repeat-x;\n}\n\n.ts-wrapper.single .ts-control {\n @apply border-secondary-300 bg-white shadow-none dark:border-secondary-700 dark:bg-secondary-600;\n background-image: none;\n}\n\n.dropdown-active .ts-control {\n @apply rounded-md;\n}\n",".sidebar {\n @apply space-y-5;\n}\n\n.item-name {\n @apply flex-1 truncate;\n}\n\n.submenu {\n @apply my-3 ml-5 hidden space-y-2 py-2.5 border-l border-secondary-200 dark:border-gray-800 lg:space-y-3;\n}\n\n.current-group .submenu {\n @apply block;\n}\n",".dark .trix-button {\n @apply border-secondary-600 bg-secondary-700 text-secondary-200;\n}\n\n.dark .trix-button-group {\n @apply border-secondary-600;\n}\n\n.dark trix-toolbar .trix-dialog {\n @apply border-t-2 border-secondary-900 bg-secondary-800;\n box-shadow: 0 0.3em 1em theme('colors.secondary.900');\n}\n\n.dark trix-toolbar .trix-input {\n @apply border-secondary-600 bg-secondary-700;\n}\n\n.dark trix-toolbar .trix-button:not(:first-child) {\n @apply border-l border-secondary-600;\n}\n\ntrix-toolbar .trix-active {\n @apply bg-primary-600 text-white;\n}\n\n[dir='rtl'] trix-editor.prose :where(ul):not(:where([class~='not-prose'] *)),\n[dir='rtl'] trix-editor.prose :where(ol):not(:where([class~='not-prose'] *)) {\n padding-right: 1.625em !important;\n padding-left: 0em !important;\n}\n\n[dir='rtl']\n trix-editor.prose\n :where(ul > li):not(:where([class~='not-prose'] *)),\n[dir='rtl']\n trix-editor.prose\n :where(ol > li):not(:where([class~='not-prose'] *)) {\n padding-right: 0.375em !important;\n padding-left: 0em !important;\n}\n\ntrix-editor::-webkit-scrollbar {\n width: 0.5em;\n height: 0.5em;\n}\n\ntrix-editor::-webkit-scrollbar-thumb {\n background-color: theme('colors.secondary.200');\n border-radius: 4px;\n}\n\n.dark trix-editor::-webkit-scrollbar-thumb {\n background-color: theme('colors.secondary.800');\n}\n","@import 'choices.js/public/assets/styles/choices.css';\n@import 'tom-select/dist/css/tom-select.default.min.css';\n@import 'flatpickr/dist/themes/light.css';\n@import 'intl-tel-input/build/css/intlTelInput.css';\n@import 'filepond/dist/filepond.min.css';\n@import 'trix/dist/trix.css';\n\n@import 'tailwindcss/base';\n@import 'tailwindcss/components';\n@import 'tailwindcss/utilities';\n\n@import 'base.css';\n@import 'components/filepond.css';\n@import 'components/select.css';\n@import 'components/sidebar.css';\n@import 'components/trix-editor.css';\n\n@layer base {\n html {\n -webkit-tap-highlight-color: transparent;\n }\n\n :root.dark {\n color-scheme: dark;\n }\n\n [dir='rtl'] select {\n background-position: left 0.5rem center !important;\n padding-left: 2.5rem;\n padding-right: 0.75rem;\n }\n}\n"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["../node_modules/choices.js/public/assets/styles/choices.css","../node_modules/tom-select/dist/css/tom-select.default.css","../node_modules/flatpickr/dist/themes/light.css","../node_modules/filepond/dist/filepond.min.css","../node_modules/trix/dist/trix.css","../node_modules/tailwindcss/base.css","../node_modules/tailwindcss/components.css","../node_modules/tailwindcss/utilities.css","../resources/css/base.css","../resources/css/components/filepond.css","../resources/css/components/select.css","../resources/css/components/sidebar.css","../resources/css/components/intl-phone.css","../resources/css/components/trix-editor.css","../resources/css/shopper.css"],"names":[],"mappings":"AAAA;;iCAEiC;;AACjC;EACE,kBAAkB;EAClB,gBAAgB;EAChB,mBAAmB;EACnB,eAAe;AACjB;;AACA;EACE,aAAa;AACf;;AACA;EACE,gBAAgB;AAClB;;AACA;EACE,iBAAiB;AACnB;;AACA;;EAEE,yBAAyB;EACzB,mBAAmB;EACnB,yBAAyB;EACjB,sBAAiB;OAAjB,iBAAiB;AAC3B;;AACA;EACE,mBAAmB;AACrB;;AACA;EACE,wBAAwB;AAC1B;;AAEA;EACE,eAAe;AACjB;;AACA;EACE,qBAAqB;AACvB;;AACA;EACE,cAAc;EACd,WAAW;EACX,aAAa;EACb,6BAA6B;EAC7B,sBAAsB;EACtB,SAAS;AACX;;AACA;EACE,2XAA2X;EAC3X,UAAU;EACV,oBAAoB;EACpB,kBAAkB;EAClB,QAAQ;EACR,QAAQ;EACR,iBAAiB;EACjB,kBAAkB;EAClB,YAAY;EACZ,WAAW;EACX,mBAAmB;EACnB,aAAa;AACf;;AACA;EACE,UAAU;AACZ;;AACA;EACE,6BAA6B;AAC/B;;AACA;EACE,aAAa;AACf;;AACA;EACE,WAAW;EACX,SAAS;EACT,QAAQ;EACR,mBAAmB;EACnB,sDAAsD;EACtD,iBAAiB;EACjB,kBAAkB;EAClB,aAAa;EACb,QAAQ;EACR,kBAAkB;EAClB,oBAAoB;AACtB;;AACA;EACE,sDAAsD;EACtD,kBAAkB;AACpB;;AACA;EACE,YAAY;EACZ,WAAW;AACb;;AACA;EACE,WAAW;EACX,OAAO;EACP,iBAAiB;EACjB,eAAe;AACjB;;AAEA;;EAEE,YAAY;AACd;;AACA;;EAEE,kBAAkB;EAClB,qBAAqB;EACrB,aAAa;EACb,kBAAkB;EAClB,gBAAgB;EAChB,gBAAgB;EAChB,kBAAkB;EAClB,8BAA8B;EAC9B,2XAA2X;EAC3X,oBAAoB;EACpB,UAAU;EACV,cAAc;EACd,aAAa;EACb,gBAAgB;AAClB;;AACA;;;EAGE,UAAU;AACZ;;AAEA;EACE,qBAAqB;EACrB,mBAAmB;EACnB,WAAW;EACX,yBAAyB;EACzB,2BAA2B;EAC3B,sBAAsB;EACtB,oBAAoB;EACpB,eAAe;EACf,gBAAgB;EAChB,gBAAgB;AAClB;;AACA;EACE,qBAAqB;AACvB;;AACA;EACE,8BAA8B;AAChC;;AACA;EACE,8BAA8B;AAChC;;AAEA;EACE,SAAS;EACT,eAAe;EACf,gBAAgB;AAClB;;AAEA;EACE,qBAAqB;EACrB,yBAAyB;EACzB,WAAW;AACb;;AACA;EACE,kBAAkB;EAClB,kBAAkB;AACpB;;AACA;EACE,WAAW;AACb;;AAEA;EACE,eAAe;AACjB;;AACA;EACE,qBAAqB;EACrB,sBAAsB;EACtB,mBAAmB;EACnB,iBAAiB;EACjB,eAAe;EACf,gBAAgB;EAChB,oBAAoB;EACpB,qBAAqB;EACrB,yBAAyB;EACzB,yBAAyB;EACzB,WAAW;EACX,qBAAqB;EACrB,sBAAsB;AACxB;;AACA;EACE,kBAAkB;AACpB;;AACA;EACE,eAAe;EACf,mBAAmB;AACrB;;AACA;EACE,yBAAyB;EACzB,yBAAyB;AAC3B;;AACA;EACE,yBAAyB;EACzB,yBAAyB;AAC3B;;AAEA;EACE,kBAAkB;EAClB,UAAU;EACV,kBAAkB;EAClB,WAAW;EACX,sBAAsB;EACtB,sBAAsB;EACtB,SAAS;EACT,gBAAgB;EAChB,gCAAgC;EAChC,iCAAiC;EACjC,gBAAgB;EAChB,qBAAqB;EACrB,uBAAuB;AACzB;;AACA;EACE,mBAAmB;AACrB;;AACA;EACE,qBAAqB;AACvB;;AACA;EACE,SAAS;EACT,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,kCAAkC;AACpC;;AACA;EACE,kBAAkB;EAClB,iBAAiB;EACjB,cAAc;EACd,iCAAiC;EACjC,4BAA4B;AAC9B;;AACA;EACE,kBAAkB;EAClB,aAAa;EACb,eAAe;AACjB;;AACA;EACE,iBAAiB;AACnB;;AACA;EACE;IACE,oBAAoB;EACtB;;EACA;IACE,+BAA+B;IAC/B,eAAe;IACf,UAAU;IACV,kBAAkB;IAClB,WAAW;IACX,QAAQ;IACR,2BAA2B;EAC7B;;EACA;IACE,iBAAiB;IACjB,mBAAmB;IACnB,mBAAmB;EACrB;;EACA;IACE,WAAW;IACX,UA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;EACX,SAAS;EACT,QAAQ;EACR,UAAU;AACZ;;AACA;;;;EAIE,UAAU;EACV,WAAW;AACb;;AACA;;EAEE,SAAS;EACT,UAAU;AACZ;;AACA;EACE,iBAAiB;EACjB,cAAc;AAChB;;AACA;EACE,iBAAiB;EACjB,cAAc;AAChB;;AACA;;EAEE,YAAY;AACd;;AACA;EACE,4BAA4B;AAC9B;;AACA;EACE,4BAA4B;AAC9B;;AACA;;EAEE,SAAS;AACX;;AACA;EACE,yBAAyB;AAC3B;;AACA;EACE,yBAAyB;AAC3B;;AACA;EACE,UAAU;AACZ;;AACA;EACE,kBAAkB;EAClB,qBAAqB;AACvB;;AACA;EAIE,aAAa;AACf;;AACA;EACE,0BAA0B;EAC1B,mBAAmB;EACnB,cAAc;EACd,aAAa;EACb,YAAY;EACZ,cAAc;EACd,kBAAkB;EAClB,kBAAkB;EAClB,yBAAyB;EACtB,sBAAsB;EAEjB,iBAAiB;EACzB,gBAAgB;EAIR,OAAO;AACjB;;AACA;;EAEE,yBAAyB;EACtB,sBAAsB;EAEjB,iBAAiB;EACzB,qBAAqB;EACrB,eAAe;EACf,kBAAkB;EAClB,MAAM;EACN,YAAY;EACZ,aAAa;EACb,UAAU;EACV,cAAc;EACd,aAAa;AACf;;AACA;;EAEE,aAAa;AACf;;AACA;;EAEE,kBAAkB;AACpB;;AACA;;EAEA;yBACyB;EACzB;OACO;EACL,OAAO;EACT;uBACuB;EACvB;OACO;AACP;;AACA;yBACyB;;AACzB;uBACuB;;AACvB;;EAEA;yBACyB;EACzB;OACO;EACL,QAAQ;EACV;uBACuB;EACvB;OACO;AACP;;AACA;yBACyB;;AACzB;uBACuB;;AACvB;;EAEE,WAAW;AACb;;AACA;;EAEE,aAAa;AACf;;AACA;;EAEE,WAAW;EACX,YAAY;AACd;;AACA;;EAGE,qBAAqB;EACrB,aAAa;AACf;;AACA;EACE,kBAAkB;EAClB,YAAY;AACd;;AACA;;EAEE,qBAAqB;AACvB;;AACA;EACE,WAAW;AACb;;AACA;EACE,aAAa;AACf;;AACA;;EAEE,SAAS;EACT,wBAAwB;AAC1B;;AACA;EACE,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AnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,gBAAmB;EAAnB,oBAAmB;EAAnB,4BAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,uBAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,2BAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,2BAAmB;EAAnB;AAAmB;;AA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;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,wBAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB,6DAAmB;EAAnB;AAAmB;;AAAnB;EAAA,sBAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,6BAAmB;EAAnB;AAAmB;;AAAnB;EAAA,6BAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;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EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,iBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,mBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,eAAmB;EAAnB;AAAmB;;AAAnB;EAAA,mBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,mBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,kBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,mBAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AAAmB;;AAAnB;EAAA,oBAAmB;EAAnB;AA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;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,+BAA+B;AAAE;;AACnC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,WAAW;EACX,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AACpC;EACE,YAAY;EACZ,gCAAgC;AAAE;;AAEpC;EACE,YAAY;EACZ,gCAAgC;EAChC,+CAA+C;EAC/C,4BAA4B;EAC5B,yBAAyB;EACzB,2BAA2B;AAAE;;AAC/B;EACE;IACE,kDAAkD;EACpD;AACF;;AAEA;EACE,6BAA6B;AAAE;;ACl6B/B;EAAA,sBAA+D;EAA/D,sDAA+D;EAA/D,kBAA+D;EAA/D,sDAA+D;EAA/D,oBAA+D;EAA/D;AAA+D;;AAI/D;EAAA,sBAA2B;EAA3B;AAA2B;;AAI3B;EAAA,qBAAuD;EAAvD,sBAAuD;EAAvD,sDAAuD;EAAvD,kBAAuD;EAAvD,sDAAuD;EACvD;AADuD;;AAKvD;EAAA,sBAA4C;EAA5C,sDAA4C;EAA5C,kBAA4C;EAA5C;AAA4C;;AAI5C;EAAA,sBAAoC;EAApC,sBAAoC;EAApC;AAAoC;;AAIpC;EAAA,kBAAgC;EAAhC,uDAAgC;EAAhC,oBAAgC;EAAhC;AAAgC;;AAGlC;;EAEE,iCAAiC;EACjC,4BAA4B;AAC9B;;AAEA;;;;;;EAME,iCAAiC;EACjC,4BAA4B;AAC9B;;AAEA;EACE,YAAY;EACZ,aAAa;AACf;;AAEA;EACE,yBAA+C;EAC/C,kBAAkB;AACpB;;AAEA;EACE,yBAA+C;AACjD;;ACrDA;EAAA,4CAgCA;EAhCA,oDAgCA;EAhCA,4CAgCA;EAhCA,8CAgCA;EAhCA,4CAgCA;EAhCA,oDAgCA;EAhCA,kDAgCA;EAhCA,wCAgCA;EAhCA,gDAgCA;EAhCA,8DAgCA;EAhCA,oDAgCA;EAhCA,0CAgCA;EAhCA,0DAgCA;EAhCA,4CAgCA;EAhCA,oDAgCA;EAhCA,gDAgCA;EAhCA,wDAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,0BAgCA;EAhCA;AAgCA;;AAhCA;EAAA,0BAgCA;EAhCA;AAgCA;;AAhCA;EAAA,0BAgCA;EAhCA;AAgCA;;AAhCA;EAAA,0BAgCA;EAhCA;AAgCA;;AAhCA;EAAA,0BAgCA;EAhCA;AAgCA;;AAhCA;EAAA,0BAgCA;EAhCA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,2GAgCA;EAhCA,yGAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,0CAgCA;EAhCA,uDAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA,8BAgCA;EAhCA;AAgCA;;AAhCA;EAAA,8BAgCA;EAhCA;AAgCA;;AAhCA;EAAA,2GAgCA;EAhCA,yGAgCA;EAhCA;AAgCA;;AAhCA;EAAA,2GAgCA;EAhCA,yGAgCA;EAhCA;AAgCA;;AAhCA;EAAA,2GAgCA;EAhCA,yGAgCA;EAhCA;AAgCA;;AAhCA;EAAA,2GAgCA;EAhCA,yGAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,8BAgCA;EAhCA;AAgCA;;AAhCA;EAAA,2GAgCA;EAhCA,yGAgCA;EAhCA;AAgCA;;AAhCA;EAAA,2GAgCA;EAhCA,yGAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,iCAgCA;EAhCA;AAgCA;;AAhCA;EAAA,+BAgCA;EAhCA;AAgCA;;AAhCA;EAAA,yBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,yBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,6BAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,4DAgCA;EAhCA,qEAgCA;EAhCA;AAgCA;;AAhCA;EAAA,4DAgCA;EAhCA,kEAgCA;EAhCA;AAgCA;;AAhCA;EAAA,wEAgCA;EAhCA,kEAgCA;EAhCA;AAgCA;;AAhCA;EAAA,4DAgCA;EAhCA,kEAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,2BAgCA;EAhCA;AAgCA;;AAhCA;EAAA,2BAgCA;EAhCA;AAgCA;;AAhCA;EAAA,+EAgCA;EAhCA,mGAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,0BAgCA;EAhCA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,sBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,kBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;;AAhCA;EAAA,oBAgCA;EAhCA;AAgCA;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","file":"shopper.css","sourcesContent":["/* ===============================\n= Choices =\n=============================== */\n.choices {\n position: relative;\n overflow: hidden;\n margin-bottom: 24px;\n font-size: 16px;\n}\n.choices:focus {\n outline: none;\n}\n.choices:last-child {\n margin-bottom: 0;\n}\n.choices.is-open {\n overflow: initial;\n}\n.choices.is-disabled .choices__inner,\n.choices.is-disabled .choices__input {\n background-color: #eaeaea;\n cursor: not-allowed;\n -webkit-user-select: none;\n user-select: none;\n}\n.choices.is-disabled .choices__item {\n cursor: not-allowed;\n}\n.choices [hidden] {\n display: none !important;\n}\n\n.choices[data-type*=select-one] {\n cursor: pointer;\n}\n.choices[data-type*=select-one] .choices__inner {\n padding-bottom: 7.5px;\n}\n.choices[data-type*=select-one] .choices__input {\n display: block;\n width: 100%;\n padding: 10px;\n border-bottom: 1px solid #ddd;\n background-color: #fff;\n margin: 0;\n}\n.choices[data-type*=select-one] .choices__button {\n background-image: url(\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==\");\n padding: 0;\n background-size: 8px;\n position: absolute;\n top: 50%;\n right: 0;\n margin-top: -10px;\n margin-right: 25px;\n height: 20px;\n width: 20px;\n border-radius: 10em;\n opacity: 0.25;\n}\n.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {\n opacity: 1;\n}\n.choices[data-type*=select-one] .choices__button:focus {\n box-shadow: 0 0 0 2px #00bcd4;\n}\n.choices[data-type*=select-one] .choices__item[data-value=\"\"] .choices__button {\n display: none;\n}\n.choices[data-type*=select-one]::after {\n content: \"\";\n height: 0;\n width: 0;\n border-style: solid;\n border-color: #333 transparent transparent transparent;\n border-width: 5px;\n position: absolute;\n right: 11.5px;\n top: 50%;\n margin-top: -2.5px;\n pointer-events: none;\n}\n.choices[data-type*=select-one].is-open::after {\n border-color: transparent transparent #333 transparent;\n margin-top: -7.5px;\n}\n.choices[data-type*=select-one][dir=rtl]::after {\n left: 11.5px;\n right: auto;\n}\n.choices[data-type*=select-one][dir=rtl] .choices__button {\n right: auto;\n left: 0;\n margin-left: 25px;\n margin-right: 0;\n}\n\n.choices[data-type*=select-multiple] .choices__inner,\n.choices[data-type*=text] .choices__inner {\n cursor: text;\n}\n.choices[data-type*=select-multiple] .choices__button,\n.choices[data-type*=text] .choices__button {\n position: relative;\n display: inline-block;\n margin-top: 0;\n margin-right: -4px;\n margin-bottom: 0;\n margin-left: 8px;\n padding-left: 16px;\n border-left: 1px solid #008fa1;\n background-image: url(\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==\");\n background-size: 8px;\n width: 8px;\n line-height: 1;\n opacity: 0.75;\n border-radius: 0;\n}\n.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,\n.choices[data-type*=text] .choices__button:hover,\n.choices[data-type*=text] .choices__button:focus {\n opacity: 1;\n}\n\n.choices__inner {\n display: inline-block;\n vertical-align: top;\n width: 100%;\n background-color: #f9f9f9;\n padding: 7.5px 7.5px 3.75px;\n border: 1px solid #ddd;\n border-radius: 2.5px;\n font-size: 14px;\n min-height: 44px;\n overflow: hidden;\n}\n.is-focused .choices__inner, .is-open .choices__inner {\n border-color: #b7b7b7;\n}\n.is-open .choices__inner {\n border-radius: 2.5px 2.5px 0 0;\n}\n.is-flipped.is-open .choices__inner {\n border-radius: 0 0 2.5px 2.5px;\n}\n\n.choices__list {\n margin: 0;\n padding-left: 0;\n list-style: none;\n}\n\n.choices__list--single {\n display: inline-block;\n padding: 4px 16px 4px 4px;\n width: 100%;\n}\n[dir=rtl] .choices__list--single {\n padding-right: 4px;\n padding-left: 16px;\n}\n.choices__list--single .choices__item {\n width: 100%;\n}\n\n.choices__list--multiple {\n display: inline;\n}\n.choices__list--multiple .choices__item {\n display: inline-block;\n vertical-align: middle;\n border-radius: 20px;\n padding: 4px 10px;\n font-size: 12px;\n font-weight: 500;\n margin-right: 3.75px;\n margin-bottom: 3.75px;\n background-color: #00bcd4;\n border: 1px solid #00a5bb;\n color: #fff;\n word-break: break-all;\n box-sizing: border-box;\n}\n.choices__list--multiple .choices__item[data-deletable] {\n padding-right: 5px;\n}\n[dir=rtl] .choices__list--multiple .choices__item {\n margin-right: 0;\n margin-left: 3.75px;\n}\n.choices__list--multiple .choices__item.is-highlighted {\n background-color: #00a5bb;\n border: 1px solid #008fa1;\n}\n.is-disabled .choices__list--multiple .choices__item {\n background-color: #aaaaaa;\n border: 1px solid #919191;\n}\n\n.choices__list--dropdown {\n visibility: hidden;\n z-index: 1;\n position: absolute;\n width: 100%;\n background-color: #fff;\n border: 1px solid #ddd;\n top: 100%;\n margin-top: -1px;\n border-bottom-left-radius: 2.5px;\n border-bottom-right-radius: 2.5px;\n overflow: hidden;\n word-break: break-all;\n will-change: visibility;\n}\n.choices__list--dropdown.is-active {\n visibility: visible;\n}\n.is-open .choices__list--dropdown {\n border-color: #b7b7b7;\n}\n.is-flipped .choices__list--dropdown {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: -1px;\n border-radius: 0.25rem 0.25rem 0 0;\n}\n.choices__list--dropdown .choices__list {\n position: relative;\n max-height: 300px;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n will-change: scroll-position;\n}\n.choices__list--dropdown .choices__item {\n position: relative;\n padding: 10px;\n font-size: 14px;\n}\n[dir=rtl] .choices__list--dropdown .choices__item {\n text-align: right;\n}\n@media (min-width: 640px) {\n .choices__list--dropdown .choices__item--selectable {\n padding-right: 100px;\n }\n .choices__list--dropdown .choices__item--selectable::after {\n content: attr(data-select-text);\n font-size: 12px;\n opacity: 0;\n position: absolute;\n right: 10px;\n top: 50%;\n transform: translateY(-50%);\n }\n [dir=rtl] .choices__list--dropdown .choices__item--selectable {\n text-align: right;\n padding-left: 100px;\n padding-right: 10px;\n }\n [dir=rtl] .choices__list--dropdown .choices__item--selectable::after {\n right: auto;\n left: 10px;\n }\n}\n.choices__list--dropdown .choices__item--selectable.is-highlighted {\n background-color: #f2f2f2;\n}\n.choices__list--dropdown .choices__item--selectable.is-highlighted::after {\n opacity: 0.5;\n}\n\n.choices__item {\n cursor: default;\n}\n\n.choices__item--selectable {\n cursor: pointer;\n}\n\n.choices__item--disabled {\n cursor: not-allowed;\n -webkit-user-select: none;\n user-select: none;\n opacity: 0.5;\n}\n\n.choices__heading {\n font-weight: 600;\n font-size: 12px;\n padding: 10px;\n border-bottom: 1px solid #f7f7f7;\n color: gray;\n}\n\n.choices__button {\n text-indent: -9999px;\n -webkit-appearance: none;\n appearance: none;\n border: 0;\n background-color: transparent;\n background-repeat: no-repeat;\n background-position: center;\n cursor: pointer;\n}\n.choices__button:focus {\n outline: none;\n}\n\n.choices__input {\n display: inline-block;\n vertical-align: baseline;\n background-color: #f9f9f9;\n font-size: 14px;\n margin-bottom: 5px;\n border: 0;\n border-radius: 0;\n max-width: 100%;\n padding: 4px 0 4px 2px;\n}\n.choices__input:focus {\n outline: 0;\n}\n[dir=rtl] .choices__input {\n padding-right: 2px;\n padding-left: 0;\n}\n\n.choices__placeholder {\n opacity: 0.5;\n}\n\n/* ===== End of Choices ====== */\n","/**\n * tom-select.css (v//@@version)\n * Copyright (c) contributors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this\n * file except in compliance with the License. You may obtain a copy of the License at:\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF\n * ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n *\n */\n.ts-control {\n border: 1px solid #d0d0d0;\n padding: 8px 8px;\n width: 100%;\n overflow: hidden;\n position: relative;\n z-index: 1;\n box-sizing: border-box;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);\n border-radius: 3px;\n display: flex;\n flex-wrap: wrap;\n}\n.ts-wrapper.multi.has-items .ts-control {\n padding: calc(8px - 2px - 1px) 8px calc(8px - 2px - 3px - 1px);\n}\n.full .ts-control {\n background-color: #fff;\n}\n.disabled .ts-control, .disabled .ts-control * {\n cursor: default !important;\n}\n.focus .ts-control {\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);\n}\n.ts-control > * {\n vertical-align: baseline;\n display: inline-block;\n}\n.ts-wrapper.multi .ts-control > div {\n cursor: pointer;\n margin: 0 3px 3px 0;\n padding: 2px 6px;\n background: #1da7ee;\n color: #fff;\n border: 1px solid #0073bb;\n}\n.ts-wrapper.multi .ts-control > div.active {\n background: #92c836;\n color: #fff;\n border: 1px solid #00578d;\n}\n.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {\n color: white;\n background: #d2d2d2;\n border: 1px solid #aaaaaa;\n}\n.ts-control > input {\n flex: 1 1 auto;\n min-width: 7rem;\n display: inline-block !important;\n padding: 0 !important;\n min-height: 0 !important;\n max-height: none !important;\n max-width: 100% !important;\n margin: 0 !important;\n text-indent: 0 !important;\n border: 0 none !important;\n background: none !important;\n line-height: inherit !important;\n user-select: auto !important;\n box-shadow: none !important;\n}\n.ts-control > input::-ms-clear {\n display: none;\n}\n.ts-control > input:focus {\n outline: none !important;\n}\n.has-items .ts-control > input {\n margin: 0 4px !important;\n}\n.ts-control.rtl {\n text-align: right;\n}\n.ts-control.rtl.single .ts-control:after {\n left: 15px;\n right: auto;\n}\n.ts-control.rtl .ts-control > input {\n margin: 0 4px 0 -2px !important;\n}\n.disabled .ts-control {\n opacity: 0.5;\n background-color: #fafafa;\n}\n.input-hidden .ts-control > input {\n opacity: 0;\n position: absolute;\n left: -10000px;\n}\n\n.ts-dropdown {\n position: absolute;\n top: 100%;\n left: 0;\n width: 100%;\n z-index: 10;\n border: 1px solid #d0d0d0;\n background: #fff;\n margin: 0.25rem 0 0;\n border-top: 0 none;\n box-sizing: border-box;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);\n border-radius: 0 0 3px 3px;\n}\n.ts-dropdown [data-selectable] {\n cursor: pointer;\n overflow: hidden;\n}\n.ts-dropdown [data-selectable] .highlight {\n background: rgba(125, 168, 208, 0.2);\n border-radius: 1px;\n}\n.ts-dropdown .option,\n.ts-dropdown .optgroup-header,\n.ts-dropdown .no-results,\n.ts-dropdown .create {\n padding: 5px 8px;\n}\n.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {\n cursor: inherit;\n opacity: 0.5;\n}\n.ts-dropdown [data-selectable].option {\n opacity: 1;\n cursor: pointer;\n}\n.ts-dropdown .optgroup:first-child .optgroup-header {\n border-top: 0 none;\n}\n.ts-dropdown .optgroup-header {\n color: #303030;\n background: #fff;\n cursor: default;\n}\n.ts-dropdown .active {\n background-color: #f5fafd;\n color: #495c68;\n}\n.ts-dropdown .active.create {\n color: #495c68;\n}\n.ts-dropdown .create {\n color: rgba(48, 48, 48, 0.5);\n}\n.ts-dropdown .spinner {\n display: inline-block;\n width: 30px;\n height: 30px;\n margin: 5px 8px;\n}\n.ts-dropdown .spinner::after {\n content: \" \";\n display: block;\n width: 24px;\n height: 24px;\n margin: 3px;\n border-radius: 50%;\n border: 5px solid #d0d0d0;\n border-color: #d0d0d0 transparent #d0d0d0 transparent;\n animation: lds-dual-ring 1.2s linear infinite;\n}\n@keyframes lds-dual-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.ts-dropdown-content {\n overflow: hidden auto;\n max-height: 200px;\n scroll-behavior: smooth;\n}\n\n.ts-wrapper.plugin-drag_drop .ts-dragging {\n color: transparent !important;\n}\n.ts-wrapper.plugin-drag_drop .ts-dragging > * {\n visibility: hidden !important;\n}\n\n.plugin-checkbox_options:not(.rtl) .option input {\n margin-right: 0.5rem;\n}\n\n.plugin-checkbox_options.rtl .option input {\n margin-left: 0.5rem;\n}\n\n/* stylelint-disable function-name-case */\n.plugin-clear_button {\n --ts-pr-clear-button: 1em;\n}\n.plugin-clear_button .clear-button {\n opacity: 0;\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n right: calc(8px - 6px);\n margin-right: 0 !important;\n background: transparent !important;\n transition: opacity 0.5s;\n cursor: pointer;\n}\n.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {\n right: max(var(--ts-pr-caret), 8px);\n}\n.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {\n opacity: 1;\n}\n\n.ts-wrapper .dropdown-header {\n position: relative;\n padding: 10px 8px;\n border-bottom: 1px solid #d0d0d0;\n background: color-mix(#fff, #d0d0d0, 85%);\n border-radius: 3px 3px 0 0;\n}\n.ts-wrapper .dropdown-header-close {\n position: absolute;\n right: 8px;\n top: 50%;\n color: #303030;\n opacity: 0.4;\n margin-top: -12px;\n line-height: 20px;\n font-size: 20px !important;\n}\n.ts-wrapper .dropdown-header-close:hover {\n color: black;\n}\n\n.plugin-dropdown_input.focus.dropdown-active .ts-control {\n box-shadow: none;\n border: 1px solid #d0d0d0;\n}\n.plugin-dropdown_input .dropdown-input {\n border: 1px solid #d0d0d0;\n border-width: 0 0 1px;\n display: block;\n padding: 8px 8px;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);\n width: 100%;\n background: transparent;\n}\n.plugin-dropdown_input .items-placeholder {\n border: 0 none !important;\n box-shadow: none !important;\n width: 100%;\n}\n.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {\n display: none !important;\n}\n\n.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {\n min-width: 0;\n}\n.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {\n flex: none;\n min-width: 4px;\n}\n.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {\n color: transparent;\n}\n\n.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {\n display: flex;\n}\n.ts-dropdown.plugin-optgroup_columns .optgroup {\n border-right: 1px solid #f2f2f2;\n border-top: 0 none;\n flex-grow: 1;\n flex-basis: 0;\n min-width: 0;\n}\n.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {\n border-right: 0 none;\n}\n.ts-dropdown.plugin-optgroup_columns .optgroup::before {\n display: none;\n}\n.ts-dropdown.plugin-optgroup_columns .optgroup-header {\n border-top: 0 none;\n}\n\n.ts-wrapper.plugin-remove_button .item {\n display: inline-flex;\n align-items: center;\n}\n.ts-wrapper.plugin-remove_button .item .remove {\n color: inherit;\n text-decoration: none;\n vertical-align: middle;\n display: inline-block;\n padding: 0 6px;\n border-radius: 0 2px 2px 0;\n box-sizing: border-box;\n}\n.ts-wrapper.plugin-remove_button .item .remove:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {\n background: none;\n}\n.ts-wrapper.plugin-remove_button .remove-single {\n position: absolute;\n right: 0;\n top: 0;\n font-size: 23px;\n}\n\n.ts-wrapper.plugin-remove_button:not(.rtl) .item {\n padding-right: 0 !important;\n}\n.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {\n border-left: 1px solid #0073bb;\n margin-left: 6px;\n}\n.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {\n border-left-color: #00578d;\n}\n.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {\n border-left-color: #aaaaaa;\n}\n\n.ts-wrapper.plugin-remove_button.rtl .item {\n padding-left: 0 !important;\n}\n.ts-wrapper.plugin-remove_button.rtl .item .remove {\n border-right: 1px solid #0073bb;\n margin-right: 6px;\n}\n.ts-wrapper.plugin-remove_button.rtl .item.active .remove {\n border-right-color: #00578d;\n}\n.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {\n border-right-color: #aaaaaa;\n}\n\n:root {\n --ts-pr-clear-button: 0;\n --ts-pr-caret: 0;\n --ts-pr-min: .75rem;\n}\n\n.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {\n cursor: pointer;\n}\n\n.ts-control:not(.rtl) {\n padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;\n}\n\n.ts-control.rtl {\n padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;\n}\n\n.ts-wrapper {\n position: relative;\n}\n\n.ts-dropdown,\n.ts-control,\n.ts-control input {\n color: #303030;\n font-family: inherit;\n font-size: 13px;\n line-height: 18px;\n}\n\n.ts-control,\n.ts-wrapper.single.input-active .ts-control {\n background: #fff;\n cursor: text;\n}\n\n.ts-hidden-accessible {\n border: 0 !important;\n clip: rect(0 0 0 0) !important;\n clip-path: inset(50%) !important;\n overflow: hidden !important;\n padding: 0 !important;\n position: absolute !important;\n width: 1px !important;\n white-space: nowrap !important;\n}\n\n.ts-wrapper.single .ts-control {\n --ts-pr-caret: 2rem;\n}\n.ts-wrapper.single .ts-control::after {\n content: \" \";\n display: block;\n position: absolute;\n top: 50%;\n margin-top: -3px;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 5px 5px 0 5px;\n border-color: #808080 transparent transparent transparent;\n}\n.ts-wrapper.single .ts-control:not(.rtl)::after {\n right: 15px;\n}\n.ts-wrapper.single .ts-control.rtl::after {\n left: 15px;\n}\n.ts-wrapper.single.dropdown-active .ts-control::after {\n margin-top: -4px;\n border-width: 0 5px 5px 5px;\n border-color: transparent transparent #808080 transparent;\n}\n.ts-wrapper.single.input-active .ts-control, .ts-wrapper.single.input-active .ts-control input {\n cursor: text;\n}\n\n.ts-wrapper {\n display: flex;\n min-height: 36px;\n}\n.ts-wrapper.multi.has-items .ts-control {\n padding-left: 5px;\n --ts-pr-min: $padding-x;\n}\n.ts-wrapper.multi .ts-control [data-value] {\n text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);\n border-radius: 3px;\n background-color: color-mix(#1da7ee, #178ee9, 60%);\n background-image: linear-gradient(to bottom, #1da7ee, #178ee9);\n background-repeat: repeat-x;\n box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);\n}\n.ts-wrapper.multi .ts-control [data-value].active {\n background-color: color-mix(#008fd8, #0075cf, 60%);\n background-image: linear-gradient(to bottom, #008fd8, #0075cf);\n background-repeat: repeat-x;\n}\n.ts-wrapper.multi.disabled .ts-control [data-value] {\n color: #999;\n text-shadow: none;\n background: none;\n box-shadow: none;\n}\n.ts-wrapper.multi.disabled .ts-control [data-value], .ts-wrapper.multi.disabled .ts-control [data-value] .remove {\n border-color: #e6e6e6;\n}\n.ts-wrapper.multi.disabled .ts-control [data-value] .remove {\n background: none;\n}\n.ts-wrapper.single .ts-control {\n box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);\n background-color: color-mix(#fefefe, #f2f2f2, 60%);\n background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);\n background-repeat: repeat-x;\n}\n\n.ts-wrapper.single .ts-control, .ts-dropdown.single {\n border-color: #b8b8b8;\n}\n\n.dropdown-active .ts-control {\n border-radius: 3px 3px 0 0;\n}\n\n.ts-dropdown .optgroup-header {\n padding-top: 7px;\n font-weight: bold;\n font-size: 0.85em;\n}\n.ts-dropdown .optgroup {\n border-top: 1px solid #f0f0f0;\n}\n.ts-dropdown .optgroup:first-child {\n border-top: 0 none;\n}",".flatpickr-calendar {\n background: transparent;\n opacity: 0;\n display: none;\n text-align: center;\n visibility: hidden;\n padding: 0;\n -webkit-animation: none;\n animation: none;\n direction: ltr;\n border: 0;\n font-size: 14px;\n line-height: 24px;\n border-radius: 5px;\n position: absolute;\n width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n -webkit-box-shadow: 0 3px 13px rgba(0,0,0,0.08);\n box-shadow: 0 3px 13px rgba(0,0,0,0.08);\n}\n.flatpickr-calendar.open,\n.flatpickr-calendar.inline {\n opacity: 1;\n max-height: 640px;\n visibility: visible;\n}\n.flatpickr-calendar.open {\n display: inline-block;\n z-index: 99999;\n}\n.flatpickr-calendar.animate.open {\n -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);\n}\n.flatpickr-calendar.inline {\n display: block;\n position: relative;\n top: 2px;\n}\n.flatpickr-calendar.static {\n position: absolute;\n top: calc(100% + 2px);\n}\n.flatpickr-calendar.static.open {\n z-index: 999;\n display: block;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n}\n.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {\n -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;\n}\n.flatpickr-calendar .hasWeeks .dayContainer,\n.flatpickr-calendar .hasTime .dayContainer {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.flatpickr-calendar .hasWeeks .dayContainer {\n border-left: 0;\n}\n.flatpickr-calendar.hasTime .flatpickr-time {\n height: 40px;\n border-top: 1px solid #eceef1;\n}\n.flatpickr-calendar.hasTime .flatpickr-innerContainer {\n border-bottom: 0;\n}\n.flatpickr-calendar.hasTime .flatpickr-time {\n border: 1px solid #eceef1;\n}\n.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {\n height: auto;\n}\n.flatpickr-calendar:before,\n.flatpickr-calendar:after {\n position: absolute;\n display: block;\n pointer-events: none;\n border: solid transparent;\n content: '';\n height: 0;\n width: 0;\n left: 22px;\n}\n.flatpickr-calendar.rightMost:before,\n.flatpickr-calendar.arrowRight:before,\n.flatpickr-calendar.rightMost:after,\n.flatpickr-calendar.arrowRight:after {\n left: auto;\n right: 22px;\n}\n.flatpickr-calendar.arrowCenter:before,\n.flatpickr-calendar.arrowCenter:after {\n left: 50%;\n right: 50%;\n}\n.flatpickr-calendar:before {\n border-width: 5px;\n margin: 0 -5px;\n}\n.flatpickr-calendar:after {\n border-width: 4px;\n margin: 0 -4px;\n}\n.flatpickr-calendar.arrowTop:before,\n.flatpickr-calendar.arrowTop:after {\n bottom: 100%;\n}\n.flatpickr-calendar.arrowTop:before {\n border-bottom-color: #eceef1;\n}\n.flatpickr-calendar.arrowTop:after {\n border-bottom-color: #eceef1;\n}\n.flatpickr-calendar.arrowBottom:before,\n.flatpickr-calendar.arrowBottom:after {\n top: 100%;\n}\n.flatpickr-calendar.arrowBottom:before {\n border-top-color: #eceef1;\n}\n.flatpickr-calendar.arrowBottom:after {\n border-top-color: #eceef1;\n}\n.flatpickr-calendar:focus {\n outline: 0;\n}\n.flatpickr-wrapper {\n position: relative;\n display: inline-block;\n}\n.flatpickr-months {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n}\n.flatpickr-months .flatpickr-month {\n border-radius: 5px 5px 0 0;\n background: #eceef1;\n color: #5a6171;\n fill: #5a6171;\n height: 34px;\n line-height: 1;\n text-align: center;\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n overflow: hidden;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n.flatpickr-months .flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n text-decoration: none;\n cursor: pointer;\n position: absolute;\n top: 0;\n height: 34px;\n padding: 10px;\n z-index: 3;\n color: #5a6171;\n fill: #5a6171;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,\n.flatpickr-months .flatpickr-next-month.flatpickr-disabled {\n display: none;\n}\n.flatpickr-months .flatpickr-prev-month i,\n.flatpickr-months .flatpickr-next-month i {\n position: relative;\n}\n.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {\n/*\n /*rtl:begin:ignore*/\n/*\n */\n left: 0;\n/*\n /*rtl:end:ignore*/\n/*\n */\n}\n/*\n /*rtl:begin:ignore*/\n/*\n /*rtl:end:ignore*/\n.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,\n.flatpickr-months .flatpickr-next-month.flatpickr-next-month {\n/*\n /*rtl:begin:ignore*/\n/*\n */\n right: 0;\n/*\n /*rtl:end:ignore*/\n/*\n */\n}\n/*\n /*rtl:begin:ignore*/\n/*\n /*rtl:end:ignore*/\n.flatpickr-months .flatpickr-prev-month:hover,\n.flatpickr-months .flatpickr-next-month:hover {\n color: #bbb;\n}\n.flatpickr-months .flatpickr-prev-month:hover svg,\n.flatpickr-months .flatpickr-next-month:hover svg {\n fill: #f64747;\n}\n.flatpickr-months .flatpickr-prev-month svg,\n.flatpickr-months .flatpickr-next-month svg {\n width: 14px;\n height: 14px;\n}\n.flatpickr-months .flatpickr-prev-month svg path,\n.flatpickr-months .flatpickr-next-month svg path {\n -webkit-transition: fill 0.1s;\n transition: fill 0.1s;\n fill: inherit;\n}\n.numInputWrapper {\n position: relative;\n height: auto;\n}\n.numInputWrapper input,\n.numInputWrapper span {\n display: inline-block;\n}\n.numInputWrapper input {\n width: 100%;\n}\n.numInputWrapper input::-ms-clear {\n display: none;\n}\n.numInputWrapper input::-webkit-outer-spin-button,\n.numInputWrapper input::-webkit-inner-spin-button {\n margin: 0;\n -webkit-appearance: none;\n}\n.numInputWrapper span {\n position: absolute;\n right: 0;\n width: 14px;\n padding: 0 4px 0 2px;\n height: 50%;\n line-height: 50%;\n opacity: 0;\n cursor: pointer;\n border: 1px solid rgba(72,72,72,0.15);\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.numInputWrapper span:hover {\n background: rgba(0,0,0,0.1);\n}\n.numInputWrapper span:active {\n background: rgba(0,0,0,0.2);\n}\n.numInputWrapper span:after {\n display: block;\n content: \"\";\n position: absolute;\n}\n.numInputWrapper span.arrowUp {\n top: 0;\n border-bottom: 0;\n}\n.numInputWrapper span.arrowUp:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-bottom: 4px solid rgba(72,72,72,0.6);\n top: 26%;\n}\n.numInputWrapper span.arrowDown {\n top: 50%;\n}\n.numInputWrapper span.arrowDown:after {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-top: 4px solid rgba(72,72,72,0.6);\n top: 40%;\n}\n.numInputWrapper span svg {\n width: inherit;\n height: auto;\n}\n.numInputWrapper span svg path {\n fill: rgba(90,97,113,0.5);\n}\n.numInputWrapper:hover {\n background: rgba(0,0,0,0.05);\n}\n.numInputWrapper:hover span {\n opacity: 1;\n}\n.flatpickr-current-month {\n font-size: 135%;\n line-height: inherit;\n font-weight: 300;\n color: inherit;\n position: absolute;\n width: 75%;\n left: 12.5%;\n padding: 7.48px 0 0 0;\n line-height: 1;\n height: 34px;\n display: inline-block;\n text-align: center;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n}\n.flatpickr-current-month span.cur-month {\n font-family: inherit;\n font-weight: 700;\n color: inherit;\n display: inline-block;\n margin-left: 0.5ch;\n padding: 0;\n}\n.flatpickr-current-month span.cur-month:hover {\n background: rgba(0,0,0,0.05);\n}\n.flatpickr-current-month .numInputWrapper {\n width: 6ch;\n width: 7ch\\0;\n display: inline-block;\n}\n.flatpickr-current-month .numInputWrapper span.arrowUp:after {\n border-bottom-color: #5a6171;\n}\n.flatpickr-current-month .numInputWrapper span.arrowDown:after {\n border-top-color: #5a6171;\n}\n.flatpickr-current-month input.cur-year {\n background: transparent;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: inherit;\n cursor: text;\n padding: 0 0 0 0.5ch;\n margin: 0;\n display: inline-block;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n line-height: inherit;\n height: auto;\n border: 0;\n border-radius: 0;\n vertical-align: initial;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-current-month input.cur-year:focus {\n outline: 0;\n}\n.flatpickr-current-month input.cur-year[disabled],\n.flatpickr-current-month input.cur-year[disabled]:hover {\n font-size: 100%;\n color: rgba(90,97,113,0.5);\n background: transparent;\n pointer-events: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months {\n appearance: menulist;\n background: #eceef1;\n border: none;\n border-radius: 0;\n box-sizing: border-box;\n color: inherit;\n cursor: pointer;\n font-size: inherit;\n font-family: inherit;\n font-weight: 300;\n height: auto;\n line-height: inherit;\n margin: -1px 0 0 0;\n outline: none;\n padding: 0 0 0 0.5ch;\n position: relative;\n vertical-align: initial;\n -webkit-box-sizing: border-box;\n -webkit-appearance: menulist;\n -moz-appearance: menulist;\n width: auto;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:focus,\n.flatpickr-current-month .flatpickr-monthDropdown-months:active {\n outline: none;\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months:hover {\n background: rgba(0,0,0,0.05);\n}\n.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {\n background-color: #eceef1;\n outline: none;\n padding: 0;\n}\n.flatpickr-weekdays {\n background: #eceef1;\n text-align: center;\n overflow: hidden;\n width: 100%;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -webkit-align-items: center;\n -ms-flex-align: center;\n align-items: center;\n height: 28px;\n}\n.flatpickr-weekdays .flatpickr-weekdaycontainer {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\nspan.flatpickr-weekday {\n cursor: default;\n font-size: 90%;\n background: #eceef1;\n color: #5a6171;\n line-height: 1;\n margin: 0;\n text-align: center;\n display: block;\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n font-weight: bolder;\n}\n.dayContainer,\n.flatpickr-weeks {\n padding: 1px 0 0 0;\n}\n.flatpickr-days {\n position: relative;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: start;\n -webkit-align-items: flex-start;\n -ms-flex-align: start;\n align-items: flex-start;\n width: 307.875px;\n border-left: 1px solid #eceef1;\n border-right: 1px solid #eceef1;\n}\n.flatpickr-days:focus {\n outline: 0;\n}\n.dayContainer {\n padding: 0;\n outline: 0;\n text-align: left;\n width: 307.875px;\n min-width: 307.875px;\n max-width: 307.875px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: inline-block;\n display: -ms-flexbox;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n -webkit-flex-wrap: wrap;\n flex-wrap: wrap;\n -ms-flex-wrap: wrap;\n -ms-flex-pack: justify;\n -webkit-justify-content: space-around;\n justify-content: space-around;\n -webkit-transform: translate3d(0px, 0px, 0px);\n transform: translate3d(0px, 0px, 0px);\n opacity: 1;\n}\n.dayContainer + .dayContainer {\n -webkit-box-shadow: -1px 0 0 #eceef1;\n box-shadow: -1px 0 0 #eceef1;\n}\n.flatpickr-day {\n background: none;\n border: 1px solid transparent;\n border-radius: 150px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #484848;\n cursor: pointer;\n font-weight: 400;\n width: 14.2857143%;\n -webkit-flex-basis: 14.2857143%;\n -ms-flex-preferred-size: 14.2857143%;\n flex-basis: 14.2857143%;\n max-width: 39px;\n height: 39px;\n line-height: 39px;\n margin: 0;\n display: inline-block;\n position: relative;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n -ms-flex-pack: center;\n justify-content: center;\n text-align: center;\n}\n.flatpickr-day.inRange,\n.flatpickr-day.prevMonthDay.inRange,\n.flatpickr-day.nextMonthDay.inRange,\n.flatpickr-day.today.inRange,\n.flatpickr-day.prevMonthDay.today.inRange,\n.flatpickr-day.nextMonthDay.today.inRange,\n.flatpickr-day:hover,\n.flatpickr-day.prevMonthDay:hover,\n.flatpickr-day.nextMonthDay:hover,\n.flatpickr-day:focus,\n.flatpickr-day.prevMonthDay:focus,\n.flatpickr-day.nextMonthDay:focus {\n cursor: pointer;\n outline: 0;\n background: #e2e2e2;\n border-color: #e2e2e2;\n}\n.flatpickr-day.today {\n border-color: #bbb;\n}\n.flatpickr-day.today:hover,\n.flatpickr-day.today:focus {\n border-color: #bbb;\n background: #bbb;\n color: #fff;\n}\n.flatpickr-day.selected,\n.flatpickr-day.startRange,\n.flatpickr-day.endRange,\n.flatpickr-day.selected.inRange,\n.flatpickr-day.startRange.inRange,\n.flatpickr-day.endRange.inRange,\n.flatpickr-day.selected:focus,\n.flatpickr-day.startRange:focus,\n.flatpickr-day.endRange:focus,\n.flatpickr-day.selected:hover,\n.flatpickr-day.startRange:hover,\n.flatpickr-day.endRange:hover,\n.flatpickr-day.selected.prevMonthDay,\n.flatpickr-day.startRange.prevMonthDay,\n.flatpickr-day.endRange.prevMonthDay,\n.flatpickr-day.selected.nextMonthDay,\n.flatpickr-day.startRange.nextMonthDay,\n.flatpickr-day.endRange.nextMonthDay {\n background: #ff5a5f;\n -webkit-box-shadow: none;\n box-shadow: none;\n color: #fff;\n border-color: #ff5a5f;\n}\n.flatpickr-day.selected.startRange,\n.flatpickr-day.startRange.startRange,\n.flatpickr-day.endRange.startRange {\n border-radius: 50px 0 0 50px;\n}\n.flatpickr-day.selected.endRange,\n.flatpickr-day.startRange.endRange,\n.flatpickr-day.endRange.endRange {\n border-radius: 0 50px 50px 0;\n}\n.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),\n.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {\n -webkit-box-shadow: -10px 0 0 #ff5a5f;\n box-shadow: -10px 0 0 #ff5a5f;\n}\n.flatpickr-day.selected.startRange.endRange,\n.flatpickr-day.startRange.startRange.endRange,\n.flatpickr-day.endRange.startRange.endRange {\n border-radius: 50px;\n}\n.flatpickr-day.inRange {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;\n box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover,\n.flatpickr-day.prevMonthDay,\n.flatpickr-day.nextMonthDay,\n.flatpickr-day.notAllowed,\n.flatpickr-day.notAllowed.prevMonthDay,\n.flatpickr-day.notAllowed.nextMonthDay {\n color: rgba(72,72,72,0.3);\n background: transparent;\n border-color: transparent;\n cursor: default;\n}\n.flatpickr-day.flatpickr-disabled,\n.flatpickr-day.flatpickr-disabled:hover {\n cursor: not-allowed;\n color: rgba(72,72,72,0.1);\n}\n.flatpickr-day.week.selected {\n border-radius: 0;\n -webkit-box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;\n box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;\n}\n.flatpickr-day.hidden {\n visibility: hidden;\n}\n.rangeMode .flatpickr-day {\n margin-top: 1px;\n}\n.flatpickr-weekwrapper {\n float: left;\n}\n.flatpickr-weekwrapper .flatpickr-weeks {\n padding: 0 12px;\n border-left: 1px solid #eceef1;\n}\n.flatpickr-weekwrapper .flatpickr-weekday {\n float: none;\n width: 100%;\n line-height: 28px;\n}\n.flatpickr-weekwrapper span.flatpickr-day,\n.flatpickr-weekwrapper span.flatpickr-day:hover {\n display: block;\n width: 100%;\n max-width: none;\n color: rgba(72,72,72,0.3);\n background: transparent;\n cursor: default;\n border: none;\n}\n.flatpickr-innerContainer {\n display: block;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n background: #fff;\n border-bottom: 1px solid #eceef1;\n}\n.flatpickr-rContainer {\n display: inline-block;\n padding: 0;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.flatpickr-time {\n text-align: center;\n outline: 0;\n display: block;\n height: 0;\n line-height: 40px;\n max-height: 40px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: hidden;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n background: #fff;\n border-radius: 0 0 5px 5px;\n}\n.flatpickr-time:after {\n content: \"\";\n display: table;\n clear: both;\n}\n.flatpickr-time .numInputWrapper {\n -webkit-box-flex: 1;\n -webkit-flex: 1;\n -ms-flex: 1;\n flex: 1;\n width: 40%;\n height: 40px;\n float: left;\n}\n.flatpickr-time .numInputWrapper span.arrowUp:after {\n border-bottom-color: #484848;\n}\n.flatpickr-time .numInputWrapper span.arrowDown:after {\n border-top-color: #484848;\n}\n.flatpickr-time.hasSeconds .numInputWrapper {\n width: 26%;\n}\n.flatpickr-time.time24hr .numInputWrapper {\n width: 49%;\n}\n.flatpickr-time input {\n background: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n border: 0;\n border-radius: 0;\n text-align: center;\n margin: 0;\n padding: 0;\n height: inherit;\n line-height: inherit;\n color: #484848;\n font-size: 14px;\n position: relative;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-appearance: textfield;\n -moz-appearance: textfield;\n appearance: textfield;\n}\n.flatpickr-time input.flatpickr-hour {\n font-weight: bold;\n}\n.flatpickr-time input.flatpickr-minute,\n.flatpickr-time input.flatpickr-second {\n font-weight: 400;\n}\n.flatpickr-time input:focus {\n outline: 0;\n border: 0;\n}\n.flatpickr-time .flatpickr-time-separator,\n.flatpickr-time .flatpickr-am-pm {\n height: inherit;\n float: left;\n line-height: inherit;\n color: #484848;\n font-weight: bold;\n width: 2%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n -webkit-align-self: center;\n -ms-flex-item-align: center;\n align-self: center;\n}\n.flatpickr-time .flatpickr-am-pm {\n outline: 0;\n width: 18%;\n cursor: pointer;\n text-align: center;\n font-weight: 400;\n}\n.flatpickr-time input:hover,\n.flatpickr-time .flatpickr-am-pm:hover,\n.flatpickr-time input:focus,\n.flatpickr-time .flatpickr-am-pm:focus {\n background: #eaeaea;\n}\n.flatpickr-input[readonly] {\n cursor: pointer;\n}\n@-webkit-keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n@keyframes fpFadeInDown {\n from {\n opacity: 0;\n -webkit-transform: translate3d(0, -20px, 0);\n transform: translate3d(0, -20px, 0);\n }\n to {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\nspan.flatpickr-day.selected {\n font-weight: bold;\n}\n","/*!\n * FilePond 4.30.6\n * Licensed under MIT, https://opensource.org/licenses/MIT/\n * Please visit https://pqina.nl/filepond/ for details.\n */\n\n/* eslint-disable */\n.filepond--assistant{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--browser.filepond--browser{position:absolute;margin:0;padding:0;left:1em;top:1.75em;width:calc(100% - 2em);opacity:0;font-size:0}.filepond--data{position:absolute;width:0;height:0;padding:0;margin:0;border:none;visibility:hidden;pointer-events:none;contain:strict}.filepond--drip{position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden;opacity:.1;pointer-events:none;border-radius:.5em;background:rgba(0,0,0,.01)}.filepond--drip-blob{-webkit-transform-origin:center center;transform-origin:center center;width:8em;height:8em;margin-left:-4em;margin-top:-4em;background:#292625;border-radius:50%}.filepond--drip-blob,.filepond--drop-label{position:absolute;top:0;left:0;will-change:transform,opacity}.filepond--drop-label{right:0;margin:0;color:#4f4f4f;display:flex;justify-content:center;align-items:center;height:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--drop-label.filepond--drop-label label{display:block;margin:0;padding:.5em}.filepond--drop-label label{cursor:default;font-size:.875em;font-weight:400;text-align:center;line-height:1.5}.filepond--label-action{text-decoration:underline;-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto;-webkit-text-decoration-color:#a7a4a4;text-decoration-color:#a7a4a4;cursor:pointer}.filepond--root[data-disabled] .filepond--drop-label label{opacity:.5}.filepond--file-action-button.filepond--file-action-button{font-size:1em;width:1.625em;height:1.625em;font-family:inherit;line-height:inherit;margin:0;padding:0;border:none;outline:none;will-change:transform,opacity}.filepond--file-action-button.filepond--file-action-button span{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--file-action-button.filepond--file-action-button svg{width:100%;height:100%}.filepond--file-action-button.filepond--file-action-button:after{position:absolute;left:-.75em;right:-.75em;top:-.75em;bottom:-.75em;content:\"\"}.filepond--file-action-button{cursor:auto;color:#fff;border-radius:50%;background-color:rgba(0,0,0,.5);background-image:none;box-shadow:0 0 0 0 hsla(0,0%,100%,0);transition:box-shadow .25s ease-in}.filepond--file-action-button:focus,.filepond--file-action-button:hover{box-shadow:0 0 0 .125em hsla(0,0%,100%,.9)}.filepond--file-action-button[disabled]{color:hsla(0,0%,100%,.5);background-color:rgba(0,0,0,.25)}.filepond--file-action-button[hidden]{display:none}.filepond--action-edit-item.filepond--action-edit-item{width:2em;height:2em;padding:.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=center]{margin-left:-.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom]{margin-bottom:-.1875em}.filepond--action-edit-item-alt{border:none;line-height:inherit;background:transparent;font-family:inherit;color:inherit;outline:none;padding:0;margin:0 0 0 .25em;pointer-events:all;position:absolute}.filepond--action-edit-item-alt svg{width:1.3125em;height:1.3125em}.filepond--action-edit-item-alt span{font-size:0;opacity:0}.filepond--file-info{position:static;display:flex;flex-direction:column;align-items:flex-start;flex:1;margin:0 .5em 0 0;min-width:0;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--file-info *{margin:0}.filepond--file-info .filepond--file-info-main{font-size:.75em;line-height:1.2;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;width:100%}.filepond--file-info .filepond--file-info-sub{font-size:.625em;opacity:.5;transition:opacity .25s ease-in-out;white-space:nowrap}.filepond--file-info .filepond--file-info-sub:empty{display:none}.filepond--file-status{position:static;display:flex;flex-direction:column;align-items:flex-end;flex-grow:0;flex-shrink:0;margin:0;min-width:2.25em;text-align:right;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--file-status *{margin:0;white-space:nowrap}.filepond--file-status .filepond--file-status-main{font-size:.75em;line-height:1.2}.filepond--file-status .filepond--file-status-sub{font-size:.625em;opacity:.5;transition:opacity .25s ease-in-out}.filepond--file-wrapper.filepond--file-wrapper{border:none;margin:0;padding:0;min-width:0;height:100%}.filepond--file-wrapper.filepond--file-wrapper>legend{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--file{position:static;display:flex;height:100%;align-items:flex-start;padding:.5625em;color:#fff;border-radius:.5em}.filepond--file .filepond--file-status{margin-left:auto;margin-right:2.25em}.filepond--file .filepond--processing-complete-indicator{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:3}.filepond--file .filepond--file-action-button,.filepond--file .filepond--processing-complete-indicator,.filepond--file .filepond--progress-indicator{position:absolute}.filepond--file [data-align*=left]{left:.5625em}.filepond--file [data-align*=right]{right:.5625em}.filepond--file [data-align*=center]{left:calc(50% - .8125em)}.filepond--file [data-align*=bottom]{bottom:1.125em}.filepond--file [data-align=center]{top:calc(50% - .8125em)}.filepond--file .filepond--progress-indicator{margin-top:.1875em}.filepond--file .filepond--progress-indicator[data-align*=right]{margin-right:.1875em}.filepond--file .filepond--progress-indicator[data-align*=left]{margin-left:.1875em}[data-filepond-item-state*=error] .filepond--file-info,[data-filepond-item-state*=invalid] .filepond--file-info,[data-filepond-item-state=cancelled] .filepond--file-info{margin-right:2.25em}[data-filepond-item-state~=processing] .filepond--file-status-sub{opacity:0}[data-filepond-item-state~=processing] .filepond--action-abort-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-error] .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-error] .filepond--action-retry-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg{-webkit-animation:fall .5s linear .125s both;animation:fall .5s linear .125s both}[data-filepond-item-state=processing-complete] .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--file-info-sub,[data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden])~.filepond--file-status .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing~.filepond--file-info .filepond--file-info-sub{opacity:.5}[data-filepond-item-state*=error] .filepond--file-wrapper,[data-filepond-item-state*=error] .filepond--panel,[data-filepond-item-state*=invalid] .filepond--file-wrapper,[data-filepond-item-state*=invalid] .filepond--panel{-webkit-animation:shake .65s linear both;animation:shake .65s linear both}[data-filepond-item-state*=busy] .filepond--progress-indicator svg{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@-webkit-keyframes fall{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}70%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}to{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes fall{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}70%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}to{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.filepond--hopper[data-hopper-state=drag-over]>*{pointer-events:none}.filepond--hopper[data-hopper-state=drag-over]:after{content:\"\";position:absolute;left:0;top:0;right:0;bottom:0;z-index:100}.filepond--progress-indicator{z-index:103}.filepond--file-action-button{z-index:102}.filepond--file-status{z-index:101}.filepond--file-info{z-index:100}.filepond--item{position:absolute;top:0;left:0;right:0;z-index:1;padding:0;margin:.25em;will-change:transform,opacity}.filepond--item>.filepond--panel{z-index:-1}.filepond--item>.filepond--panel .filepond--panel-bottom{box-shadow:0 .0625em .125em -.0625em rgba(0,0,0,.25)}.filepond--item>.filepond--file-wrapper,.filepond--item>.filepond--panel{transition:opacity .15s ease-out}.filepond--item[data-drag-state]{cursor:-webkit-grab;cursor:grab}.filepond--item[data-drag-state]>.filepond--panel{transition:box-shadow .125s ease-in-out;box-shadow:0 0 0 transparent}.filepond--item[data-drag-state=drag]{cursor:-webkit-grabbing;cursor:grabbing}.filepond--item[data-drag-state=drag]>.filepond--panel{box-shadow:0 .125em .3125em rgba(0,0,0,.325)}.filepond--item[data-drag-state]:not([data-drag-state=idle]){z-index:2}.filepond--item-panel{background-color:#64605e}[data-filepond-item-state=processing-complete] .filepond--item-panel{background-color:#369763}[data-filepond-item-state*=error] .filepond--item-panel,[data-filepond-item-state*=invalid] .filepond--item-panel{background-color:#c44e47}.filepond--item-panel{border-radius:.5em;transition:background-color .25s}.filepond--list-scroller{position:absolute;top:0;left:0;right:0;margin:0;will-change:transform}.filepond--list-scroller[data-state=overflow] .filepond--list{bottom:0;right:0}.filepond--list-scroller[data-state=overflow]{overflow-y:scroll;overflow-x:hidden;-webkit-overflow-scrolling:touch;-webkit-mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent);mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent)}.filepond--list-scroller::-webkit-scrollbar{background:transparent}.filepond--list-scroller::-webkit-scrollbar:vertical{width:1em}.filepond--list-scroller::-webkit-scrollbar:horizontal{height:0}.filepond--list-scroller::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3);border-radius:99999px;border:.3125em solid transparent;background-clip:content-box}.filepond--list.filepond--list{position:absolute;top:0;margin:0;padding:0;list-style-type:none;will-change:transform}.filepond--list{left:.75em;right:.75em}.filepond--root[data-style-panel-layout~=integrated]{width:100%;height:100%;max-width:none;margin:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root{border-radius:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root>*,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{bottom:0;height:auto;display:flex;justify-content:center;align-items:center;z-index:7}.filepond--root[data-style-panel-layout~=circle] .filepond--item-panel,.filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel{display:none}.filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller,.filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller{overflow:hidden;height:100%;margin-top:0;margin-bottom:0}.filepond--root[data-style-panel-layout~=compact] .filepond--list,.filepond--root[data-style-panel-layout~=integrated] .filepond--list{left:0;right:0;height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--item,.filepond--root[data-style-panel-layout~=integrated] .filepond--item{margin:0}.filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper,.filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper{height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{z-index:7}.filepond--root[data-style-panel-layout~=circle]{border-radius:99999rem;overflow:hidden}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel{border-radius:inherit}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--file-info,.filepond--root[data-style-panel-layout~=circle] .filepond--file-status{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item{opacity:1!important;visibility:visible!important}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none) and (stroke-color:transparent){.filepond--root[data-style-panel-layout~=circle]{will-change:transform}}}.filepond--panel-root{border-radius:.5em;background-color:#f1f0ef}.filepond--panel{position:absolute;left:0;top:0;right:0;margin:0;height:100%!important;pointer-events:none}.filepond-panel:not([data-scalable=false]){height:auto!important}.filepond--panel[data-scalable=false]>div{display:none}.filepond--panel[data-scalable=true]{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;background-color:transparent!important;border:none!important}.filepond--panel-bottom,.filepond--panel-center,.filepond--panel-top{position:absolute;left:0;top:0;right:0;margin:0;padding:0}.filepond--panel-bottom,.filepond--panel-top{height:.5em}.filepond--panel-top{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important;border-bottom:none!important}.filepond--panel-top:after{content:\"\";position:absolute;height:2px;left:0;right:0;bottom:-1px;background-color:inherit}.filepond--panel-bottom,.filepond--panel-center{will-change:transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:translate3d(0,.5em,0);transform:translate3d(0,.5em,0)}.filepond--panel-bottom{border-top-left-radius:0!important;border-top-right-radius:0!important;border-top:none!important}.filepond--panel-bottom:before{content:\"\";position:absolute;height:2px;left:0;right:0;top:-1px;background-color:inherit}.filepond--panel-center{height:100px!important;border-top:none!important;border-bottom:none!important;border-radius:0!important}.filepond--panel-center:not([style]){visibility:hidden}.filepond--progress-indicator{position:static;width:1.25em;height:1.25em;color:#fff;margin:0;pointer-events:none;will-change:transform,opacity}.filepond--progress-indicator svg{width:100%;height:100%;vertical-align:top;transform-box:fill-box}.filepond--progress-indicator path{fill:none;stroke:currentColor}.filepond--list-scroller{z-index:6}.filepond--drop-label{z-index:5}.filepond--drip{z-index:3}.filepond--root>.filepond--panel{z-index:2}.filepond--browser{z-index:1}.filepond--root{box-sizing:border-box;position:relative;margin-bottom:1em;font-size:1rem;line-height:normal;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-weight:450;text-align:left;text-rendering:optimizeLegibility;direction:ltr;contain:layout style size}.filepond--root *{box-sizing:inherit;line-height:inherit}.filepond--root :not(text){font-size:inherit}.filepond--root[data-disabled]{pointer-events:none}.filepond--root[data-disabled] .filepond--list-scroller{pointer-events:all}.filepond--root[data-disabled] .filepond--list{pointer-events:none}.filepond--root .filepond--drop-label{min-height:4.75em}.filepond--root .filepond--list-scroller{margin-top:1em;margin-bottom:1em}.filepond--root .filepond--credits{position:absolute;right:0;opacity:.175;line-height:.85;font-size:11px;color:inherit;text-decoration:none;z-index:3;bottom:-14px}.filepond--root .filepond--credits[style]{top:0;bottom:auto;margin-top:14px}","trix-editor {\n border: 1px solid #bbb;\n border-radius: 3px;\n margin: 0;\n padding: 0.4em 0.6em;\n min-height: 5em;\n outline: none; }\n\ntrix-toolbar * {\n box-sizing: border-box; }\n\ntrix-toolbar .trix-button-row {\n display: flex;\n flex-wrap: nowrap;\n justify-content: space-between;\n overflow-x: auto; }\n\ntrix-toolbar .trix-button-group {\n display: flex;\n margin-bottom: 10px;\n border: 1px solid #bbb;\n border-top-color: #ccc;\n border-bottom-color: #888;\n border-radius: 3px; }\n trix-toolbar .trix-button-group:not(:first-child) {\n margin-left: 1.5vw; }\n @media (max-width: 768px) {\n trix-toolbar .trix-button-group:not(:first-child) {\n margin-left: 0; } }\n\ntrix-toolbar .trix-button-group-spacer {\n flex-grow: 1; }\n @media (max-width: 768px) {\n trix-toolbar .trix-button-group-spacer {\n display: none; } }\n\ntrix-toolbar .trix-button {\n position: relative;\n float: left;\n color: rgba(0, 0, 0, 0.6);\n font-size: 0.75em;\n font-weight: 600;\n white-space: nowrap;\n padding: 0 0.5em;\n margin: 0;\n outline: none;\n border: none;\n border-bottom: 1px solid #ddd;\n border-radius: 0;\n background: transparent; }\n trix-toolbar .trix-button:not(:first-child) {\n border-left: 1px solid #ccc; }\n trix-toolbar .trix-button.trix-active {\n background: #cbeefa;\n color: black; }\n trix-toolbar .trix-button:not(:disabled) {\n cursor: pointer; }\n trix-toolbar .trix-button:disabled {\n color: rgba(0, 0, 0, 0.125); }\n @media (max-width: 768px) {\n trix-toolbar .trix-button {\n letter-spacing: -0.01em;\n padding: 0 0.3em; } }\n\ntrix-toolbar .trix-button--icon {\n font-size: inherit;\n width: 2.6em;\n height: 1.6em;\n max-width: calc(0.8em + 4vw);\n text-indent: -9999px; }\n @media (max-width: 768px) {\n trix-toolbar .trix-button--icon {\n height: 2em;\n max-width: calc(0.8em + 3.5vw); } }\n trix-toolbar .trix-button--icon::before {\n display: inline-block;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n opacity: 0.6;\n content: \"\";\n background-position: center;\n background-repeat: no-repeat;\n background-size: contain; }\n @media (max-width: 768px) {\n trix-toolbar .trix-button--icon::before {\n right: 6%;\n left: 6%; } }\n trix-toolbar .trix-button--icon.trix-active::before {\n opacity: 1; }\n trix-toolbar .trix-button--icon:disabled::before {\n opacity: 0.125; }\n\ntrix-toolbar .trix-button--icon-attach::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.5%2018V7.5c0-2.25%203-2.25%203%200V18c0%204.125-6%204.125-6%200V7.5c0-6.375%209-6.375%209%200V18%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E\");\n top: 8%;\n bottom: 4%; }\n\ntrix-toolbar .trix-button--icon-bold::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.522%2019.242a.5.5%200%200%201-.5-.5V5.35a.5.5%200%200%201%20.5-.5h5.783c1.347%200%202.46.345%203.24.982.783.64%201.216%201.562%201.216%202.683%200%201.13-.587%202.129-1.476%202.71a.35.35%200%200%200%20.049.613c1.259.56%202.101%201.742%202.101%203.22%200%201.282-.483%202.334-1.363%203.063-.876.726-2.132%201.12-3.66%201.12h-5.89ZM9.27%207.347v3.362h1.97c.766%200%201.347-.17%201.733-.464.38-.291.587-.716.587-1.27%200-.53-.183-.928-.513-1.198-.334-.273-.838-.43-1.505-.43H9.27Zm0%205.606v3.791h2.389c.832%200%201.448-.177%201.853-.497.399-.315.614-.786.614-1.423%200-.62-.22-1.077-.63-1.385-.418-.313-1.053-.486-1.905-.486H9.27Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-italic::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9%205h6.5v2h-2.23l-2.31%2010H13v2H6v-2h2.461l2.306-10H9V5Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-link::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.948%205.258a4.337%204.337%200%200%200-6.108%200L11.217%206.87a.993.993%200%200%200%200%201.41c.392.39%201.027.39%201.418%200l1.623-1.613a2.323%202.323%200%200%201%203.271%200%202.29%202.29%200%200%201%200%203.251l-2.393%202.38a3.021%203.021%200%200%201-4.255%200l-.05-.049a1.007%201.007%200%200%200-1.418%200%20.993.993%200%200%200%200%201.41l.05.049a5.036%205.036%200%200%200%207.091%200l2.394-2.38a4.275%204.275%200%200%200%200-6.072Zm-13.683%2013.6a4.337%204.337%200%200%200%206.108%200l1.262-1.255a.993.993%200%200%200%200-1.41%201.007%201.007%200%200%200-1.418%200L9.954%2017.45a2.323%202.323%200%200%201-3.27%200%202.29%202.29%200%200%201%200-3.251l2.344-2.331a2.579%202.579%200%200%201%203.631%200c.392.39%201.027.39%201.419%200a.993.993%200%200%200%200-1.41%204.593%204.593%200%200%200-6.468%200l-2.345%202.33a4.275%204.275%200%200%200%200%206.072Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-strike::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6%2014.986c.088%202.647%202.246%204.258%205.635%204.258%203.496%200%205.713-1.728%205.713-4.463%200-.275-.02-.536-.062-.781h-3.461c.398.293.573.654.573%201.123%200%201.035-1.074%201.787-2.646%201.787-1.563%200-2.773-.762-2.91-1.924H6ZM6.432%2010h3.763c-.632-.314-.914-.715-.914-1.273%200-1.045.977-1.739%202.432-1.739%201.475%200%202.52.723%202.617%201.914h2.764c-.05-2.548-2.11-4.238-5.39-4.238-3.145%200-5.392%201.719-5.392%204.316%200%20.363.04.703.12%201.02ZM4%2011a1%201%200%201%200%200%202h15a1%201%200%201%200%200-2H4Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-quote::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.581%208.471c.44-.5%201.056-.834%201.758-.995C8.074%207.17%209.201%207.822%2010%208.752c1.354%201.578%201.33%203.555.394%205.277-.941%201.731-2.788%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.121-.49.16-.764.294-.286.567-.566.791-.835.222-.266.413-.54.524-.815.113-.28.156-.597.026-.908-.128-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.674-2.7c0-.905.283-1.59.72-2.088Zm9.419%200c.44-.5%201.055-.834%201.758-.995%201.734-.306%202.862.346%203.66%201.276%201.355%201.578%201.33%203.555.395%205.277-.941%201.731-2.789%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.122-.49.16-.764.294-.286.567-.566.791-.835.222-.266.412-.54.523-.815.114-.28.157-.597.026-.908-.127-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.672-2.701c0-.905.283-1.59.72-2.088Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-heading-1::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21.5%207.5v-3h-12v3H14v13h3v-13h4.5ZM9%2013.5h3.5v-3h-10v3H6v7h3v-7Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-code::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.293%2011.293a1%201%200%200%200%200%201.414l4%204a1%201%200%201%200%201.414-1.414L5.414%2012l3.293-3.293a1%201%200%200%200-1.414-1.414l-4%204Zm13.414%205.414%204-4a1%201%200%200%200%200-1.414l-4-4a1%201%200%201%200-1.414%201.414L18.586%2012l-3.293%203.293a1%201%200%200%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-bullet-list::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%207.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203ZM8%206a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-2.5-5a1.5%201.5%200%201%201-3%200%201.5%201.5%200%200%201%203%200ZM5%2019.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-number-list::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%204h2v4H4V5H3V4Zm5%202a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-3.5-7H6v1l-1.5%202H6v1H3v-1l1.667-2H3v-1h2.5ZM3%2017v-1h3v4H3v-1h2v-.5H4v-1h1V17H3Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-undo::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%2014a1%201%200%200%200%201%201h6a1%201%200%201%200%200-2H6.257c2.247-2.764%205.151-3.668%207.579-3.264%202.589.432%204.739%202.356%205.174%205.405a1%201%200%200%200%201.98-.283c-.564-3.95-3.415-6.526-6.825-7.095C11.084%207.25%207.63%208.377%205%2011.39V8a1%201%200%200%200-2%200v6Zm2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-redo::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21%2014a1%201%200%200%201-1%201h-6a1%201%200%201%201%200-2h3.743c-2.247-2.764-5.151-3.668-7.579-3.264-2.589.432-4.739%202.356-5.174%205.405a1%201%200%200%201-1.98-.283c.564-3.95%203.415-6.526%206.826-7.095%203.08-.513%206.534.614%209.164%203.626V8a1%201%200%201%201%202%200v6Zm-2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-decrease-nesting-level::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-3.707-5.707a1%201%200%200%200%200%201.414l2%202a1%201%200%201%200%201.414-1.414L4.414%2012l1.293-1.293a1%201%200%200%200-1.414-1.414l-2%202Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-button--icon-increase-nesting-level::before {\n background-image: url(\"data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-2.293-2.293%202-2a1%201%200%200%200%200-1.414l-2-2a1%201%200%201%200-1.414%201.414L3.586%2012l-1.293%201.293a1%201%200%201%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E\"); }\n\ntrix-toolbar .trix-dialogs {\n position: relative; }\n\ntrix-toolbar .trix-dialog {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n font-size: 0.75em;\n padding: 15px 10px;\n background: #fff;\n box-shadow: 0 0.3em 1em #ccc;\n border-top: 2px solid #888;\n border-radius: 5px;\n z-index: 5; }\n\ntrix-toolbar .trix-input--dialog {\n font-size: inherit;\n font-weight: normal;\n padding: 0.5em 0.8em;\n margin: 0 10px 0 0;\n border-radius: 3px;\n border: 1px solid #bbb;\n background-color: #fff;\n box-shadow: none;\n outline: none;\n -webkit-appearance: none;\n -moz-appearance: none; }\n trix-toolbar .trix-input--dialog.validate:invalid {\n box-shadow: #F00 0px 0px 1.5px 1px; }\n\ntrix-toolbar .trix-button--dialog {\n font-size: inherit;\n padding: 0.5em;\n border-bottom: none; }\n\ntrix-toolbar .trix-dialog--link {\n max-width: 600px; }\n\ntrix-toolbar .trix-dialog__link-fields {\n display: flex;\n align-items: baseline; }\n trix-toolbar .trix-dialog__link-fields .trix-input {\n flex: 1; }\n trix-toolbar .trix-dialog__link-fields .trix-button-group {\n flex: 0 0 content;\n margin: 0; }\n\ntrix-editor [data-trix-mutable]:not(.attachment__caption-editor) {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n\ntrix-editor [data-trix-mutable]::-moz-selection,\ntrix-editor [data-trix-cursor-target]::-moz-selection, trix-editor [data-trix-mutable] ::-moz-selection {\n background: none; }\n\ntrix-editor [data-trix-mutable]::selection,\ntrix-editor [data-trix-cursor-target]::selection, trix-editor [data-trix-mutable] ::selection {\n background: none; }\n\ntrix-editor .attachment__caption-editor:focus[data-trix-mutable]::-moz-selection {\n background: highlight; }\n\ntrix-editor .attachment__caption-editor:focus[data-trix-mutable]::selection {\n background: highlight; }\n\ntrix-editor [data-trix-mutable].attachment.attachment--file {\n box-shadow: 0 0 0 2px highlight;\n border-color: transparent; }\n\ntrix-editor [data-trix-mutable].attachment img {\n box-shadow: 0 0 0 2px highlight; }\n\ntrix-editor .attachment {\n position: relative; }\n trix-editor .attachment:hover {\n cursor: default; }\n\ntrix-editor .attachment--preview .attachment__caption:hover {\n cursor: text; }\n\ntrix-editor .attachment__progress {\n position: absolute;\n z-index: 1;\n height: 20px;\n top: calc(50% - 10px);\n left: 5%;\n width: 90%;\n opacity: 0.9;\n transition: opacity 200ms ease-in; }\n trix-editor .attachment__progress[value=\"100\"] {\n opacity: 0; }\n\ntrix-editor .attachment__caption-editor {\n display: inline-block;\n width: 100%;\n margin: 0;\n padding: 0;\n font-size: inherit;\n font-family: inherit;\n line-height: inherit;\n color: inherit;\n text-align: center;\n vertical-align: top;\n border: none;\n outline: none;\n -webkit-appearance: none;\n -moz-appearance: none; }\n\ntrix-editor .attachment__toolbar {\n position: absolute;\n z-index: 1;\n top: -0.9em;\n left: 0;\n width: 100%;\n text-align: center; }\n\ntrix-editor .trix-button-group {\n display: inline-flex; }\n\ntrix-editor .trix-button {\n position: relative;\n float: left;\n color: #666;\n white-space: nowrap;\n font-size: 80%;\n padding: 0 0.8em;\n margin: 0;\n outline: none;\n border: none;\n border-radius: 0;\n background: transparent; }\n trix-editor .trix-button:not(:first-child) {\n border-left: 1px solid #ccc; }\n trix-editor .trix-button.trix-active {\n background: #cbeefa; }\n trix-editor .trix-button:not(:disabled) {\n cursor: pointer; }\n\ntrix-editor .trix-button--remove {\n text-indent: -9999px;\n display: inline-block;\n padding: 0;\n outline: none;\n width: 1.8em;\n height: 1.8em;\n line-height: 1.8em;\n border-radius: 50%;\n background-color: #fff;\n border: 2px solid highlight;\n box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25); }\n trix-editor .trix-button--remove::before {\n display: inline-block;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n opacity: 0.7;\n content: \"\";\n background-image: url(\"data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E\");\n background-position: center;\n background-repeat: no-repeat;\n background-size: 90%; }\n trix-editor .trix-button--remove:hover {\n border-color: #333; }\n trix-editor .trix-button--remove:hover::before {\n opacity: 1; }\n\ntrix-editor .attachment__metadata-container {\n position: relative; }\n\ntrix-editor .attachment__metadata {\n position: absolute;\n left: 50%;\n top: 2em;\n transform: translate(-50%, 0);\n max-width: 90%;\n padding: 0.1em 0.6em;\n font-size: 0.8em;\n color: #fff;\n background-color: rgba(0, 0, 0, 0.7);\n border-radius: 3px; }\n trix-editor .attachment__metadata .attachment__name {\n display: inline-block;\n max-width: 100%;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap; }\n trix-editor .attachment__metadata .attachment__size {\n margin-left: 0.2em;\n white-space: nowrap; }\n\n.trix-content {\n line-height: 1.5; }\n .trix-content * {\n box-sizing: border-box;\n margin: 0;\n padding: 0; }\n .trix-content h1 {\n font-size: 1.2em;\n line-height: 1.2; }\n .trix-content blockquote {\n border: 0 solid #ccc;\n border-left-width: 0.3em;\n margin-left: 0.3em;\n padding-left: 0.6em; }\n .trix-content [dir=rtl] blockquote,\n .trix-content blockquote[dir=rtl] {\n border-width: 0;\n border-right-width: 0.3em;\n margin-right: 0.3em;\n padding-right: 0.6em; }\n .trix-content li {\n margin-left: 1em; }\n .trix-content [dir=rtl] li {\n margin-right: 1em; }\n .trix-content pre {\n display: inline-block;\n width: 100%;\n vertical-align: top;\n font-family: monospace;\n font-size: 0.9em;\n padding: 0.5em;\n white-space: pre;\n background-color: #eee;\n overflow-x: auto; }\n .trix-content img {\n max-width: 100%;\n height: auto; }\n .trix-content .attachment {\n display: inline-block;\n position: relative;\n max-width: 100%; }\n .trix-content .attachment a {\n color: inherit;\n text-decoration: none; }\n .trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {\n color: inherit; }\n .trix-content .attachment__caption {\n text-align: center; }\n .trix-content .attachment__caption .attachment__name + .attachment__size::before {\n content: ' \\2022 '; }\n .trix-content .attachment--preview {\n width: 100%;\n text-align: center; }\n .trix-content .attachment--preview .attachment__caption {\n color: #666;\n font-size: 0.9em;\n line-height: 1.2; }\n .trix-content .attachment--file {\n color: #333;\n line-height: 1;\n margin: 0 2px 2px 2px;\n padding: 0.4em 1em;\n border: 1px solid #bbb;\n border-radius: 5px; }\n .trix-content .attachment-gallery {\n display: flex;\n flex-wrap: wrap;\n position: relative; }\n .trix-content .attachment-gallery .attachment {\n flex: 1 0 33%;\n padding: 0 0.5em;\n max-width: 33%; }\n .trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {\n flex-basis: 50%;\n max-width: 50%; }\n","@tailwind base;\n","@tailwind components;\n","@tailwind utilities;\n","input {\n width: 100%;\n}\n\ninput[type='number']::-webkit-inner-spin-button {\n -webkit-appearance: none;\n}\n\ninput[type='number'] {\n -moz-appearance: textfield;\n appearance: textfield;\n margin: 0;\n}\n\n.hide-scroll::-webkit-scrollbar {\n display: none;\n}\n\n[x-cloak] {\n display: none !important;\n}\n\n.primary-menu .active {\n background-color: theme('colors.primary.900');\n}\n.primary-menu .active:hover,\n.primary-menu .active:focus {\n background-color: theme('colors.primary.900');\n}\n\n.scrolling::-webkit-scrollbar {\n width: 0.5em;\n height: 0.5em;\n}\n\n.dark .scrolling::-webkit-scrollbar-track {\n background: theme('colors.secondary.800');\n}\n\n.scrolling::-webkit-scrollbar-thumb {\n background-color: theme('colors.secondary.200');\n border-radius: 2px;\n}\n\n.scrolling::-webkit-scrollbar-thumb:hover {\n background-color: theme('colors.secondary.300');\n}\n\n.dark .scrolling::-webkit-scrollbar-thumb {\n background-color: theme('colors.secondary.700');\n}\n\n.dark .scrolling::-webkit-scrollbar-thumb:hover {\n background-color: theme('colors.secondary.900');\n}\n\n#ui-modal > div > div.fixed {\n @apply z-40 backdrop-blur-sm;\n}\n",".filepond--root {\n @apply mb-0 overflow-hidden;\n}\n\n.filepond--panel-root {\n @apply rounded-lg border border-dashed border-secondary-300 bg-white shadow-sm;\n}\n\n.filepond--drip-blob {\n @apply bg-secondary-900;\n}\n\n.dark .filepond--drop-label {\n @apply text-secondary-200;\n}\n\n.dark .filepond--panel-root {\n @apply border-secondary-600 bg-secondary-700 text-white;\n}\n\n.dark .filepond--drip-blob {\n @apply bg-secondary-100;\n}\n\n/* Compact-only styles, excluding compact circle layouts */\n\n.filepond--root[data-style-panel-layout='compact'] .filepond--item {\n @apply mb-0.5;\n}\n\n.filepond--root[data-style-panel-layout='compact'] .filepond--drop-label label {\n @apply text-sm;\n}\n\n.filepond--root[data-style-panel-layout='compact'] .filepond--drop-label {\n min-height: 2.625em;\n}\n\n.filepond--root[data-style-panel-layout='compact'] .filepond--file {\n padding-top: 0.5em;\n padding-bottom: 0.5em;\n}\n\n/* Grid styles */\n\n.filepond--root[data-style-panel-layout='grid'] .filepond--item {\n width: calc(50% - 0.5em);\n display: inline;\n}\n\n@media screen(lg) {\n .filepond--root[data-style-panel-layout='grid'] .filepond--item {\n width: calc(33.33% - 0.5em);\n }\n}\n\n/* Download button styles */\n\n.filepond--download-icon {\n @apply pointer-events-auto mr-1 inline-block h-4 w-4 bg-white align-bottom hover:bg-white/70;\n -webkit-mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItZG93bmxvYWQiPjxwYXRoIGQ9Ik0yMSAxNXY0YTIgMiAwIDAgMS0yIDJINWEyIDIgMCAwIDEtMi0ydi00Ij48L3BhdGg+PHBvbHlsaW5lIHBvaW50cz0iNyAxMCAxMiAxNSAxNyAxMCI+PC9wb2x5bGluZT48bGluZSB4MT0iMTIiIHkxPSIxNSIgeDI9IjEyIiB5Mj0iMyI+PC9saW5lPjwvc3ZnPg==');\n mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItZG93bmxvYWQiPjxwYXRoIGQ9Ik0yMSAxNXY0YTIgMiAwIDAgMS0yIDJINWEyIDIgMCAwIDEtMi0ydi00Ij48L3BhdGg+PHBvbHlsaW5lIHBvaW50cz0iNyAxMCAxMiAxNSAxNyAxMCI+PC9wb2x5bGluZT48bGluZSB4MT0iMTIiIHkxPSIxNSIgeDI9IjEyIiB5Mj0iMyI+PC9saW5lPjwvc3ZnPg==');\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-size: 100%;\n mask-size: 100%;\n}\n\n.filepond--open-icon {\n @apply pointer-events-auto mr-1 inline-block h-4 w-4 bg-white align-bottom hover:bg-white/70;\n -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJoLTYgdy02IiBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2Utd2lkdGg9IjIiPgogIDxwYXRoIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZD0iTTEwIDZINmEyIDIgMCAwMC0yIDJ2MTBhMiAyIDAgMDAyIDJoMTBhMiAyIDAgMDAyLTJ2LTRNMTQgNGg2bTAgMHY2bTAtNkwxMCAxNCIgLz4KPC9zdmc+Cg==);\n mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJoLTYgdy02IiBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2Utd2lkdGg9IjIiPgogIDxwYXRoIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZD0iTTEwIDZINmEyIDIgMCAwMC0yIDJ2MTBhMiAyIDAgMDAyIDJoMTBhMiAyIDAgMDAyLTJ2LTRNMTQgNGg2bTAgMHY2bTAtNkwxMCAxNCIgLz4KPC9zdmc+Cg==);\n -webkit-mask-repeat: no-repeat;\n mask-repeat: no-repeat;\n -webkit-mask-size: 100%;\n mask-size: 100%;\n}\n",".choices {\n @apply relative outline-none;\n}\n\n.choices__input.choices__input--cloned {\n @apply hidden;\n}\n\n.choices__inner {\n @apply flex h-[38px] w-full items-center rounded-md border border-secondary-300 bg-white p-2 shadow-sm dark:border-secondary-700 dark:bg-secondary-700 !important;\n}\n\n.choices__list--dropdown {\n @apply border border-secondary-300 dark:border-secondary-700 !important;\n}\n\n.choices__list--single {\n @apply p-0 !important;\n}\n\n.choices__item {\n @apply my-0 cursor-pointer rounded border-0 bg-secondary-200 px-2 py-1 text-sm text-secondary-700 dark:bg-secondary-700 dark:text-secondary-300 !important;\n}\n\n.choices__item.choices__item--choice {\n @apply rounded-md py-2 !important;\n}\n\n.choices__item.choices__item--choice.choices__item--selectable {\n @apply mb-0 rounded-none bg-white p-2 text-secondary-700 dark:bg-secondary-700 dark:text-secondary-300 !important;\n}\n\n.choices__item.choices__item--choice.choices__item--selectable:hover {\n @apply bg-secondary-200 dark:bg-secondary-600 !important;\n}\n\n.choices__item.choices__item--selectable {\n @apply mb-1 border-primary-500 bg-primary-500 text-white !important;\n}\n\n.choices__list--single > .choices__item.choices__item--selectable {\n @apply mb-0 bg-white text-secondary-700 dark:bg-secondary-700 dark:text-secondary-300 !important;\n}\n\n.choices__item.is-highlighted {\n @apply border-primary-600 bg-primary-600 text-white !important;\n}\n\n.choices[data-type*='select-one']:after {\n border-color: theme('colors.secondary.500') transparent transparent\n transparent !important;\n}\n\n.choices[data-type*='select-one'] .choices__input {\n @apply rounded-none border-b-2 border-secondary-300 bg-white dark:border-secondary-700 dark:bg-secondary-600 dark:text-secondary-400 !important;\n}\n\n.choices__item.choices__item--choice.is-selected.choices__item--selectable.is-highlighted,\n.choices__item.choices__item--choice.is-selected.choices__item--selectable {\n @apply border-primary-600 bg-primary-600 text-white !important;\n}\n\n.ts-control {\n @apply flex rounded-md border border-secondary-300 bg-white shadow-sm dark:border-secondary-700 dark:bg-secondary-700 dark:text-secondary-300;\n padding: 9px 12px !important;\n z-index: 0;\n}\n\n.ts-control > input {\n @apply text-sm leading-4 text-secondary-500 dark:text-secondary-400;\n}\n\n.ts-dropdown {\n @apply my-1 rounded-md border-secondary-300 bg-white text-sm leading-5 text-secondary-500 shadow-sm dark:border-secondary-700 dark:bg-secondary-700 dark:text-secondary-400;\n}\n\n.ts-dropdown.single {\n @apply border-secondary-300 dark:border-secondary-700 !important;\n}\n\n.ts-dropdown .active {\n @apply mb-0 rounded-none bg-white p-2 text-sm leading-5 text-secondary-700 dark:bg-secondary-700 dark:text-secondary-300 !important;\n}\n\n.ts-dropdown .option:hover {\n @apply bg-primary-600 text-white;\n}\n\n.ts-wrapper.multi .ts-control [data-value] {\n @apply rounded-md bg-primary-600 text-sm leading-5 shadow-none;\n box-shadow: none;\n}\n.ts-wrapper.multi .ts-control [data-value].active {\n background-color: theme('colors.primary.600');\n background-repeat: repeat-x;\n}\n\n.ts-wrapper.single .ts-control {\n @apply border-secondary-300 bg-white shadow-none dark:border-secondary-700 dark:bg-secondary-600;\n background-image: none;\n}\n\n.dropdown-active .ts-control {\n @apply rounded-md;\n}\n",".sidebar {\n @apply space-y-5;\n}\n\n.item-name {\n @apply flex-1 truncate;\n}\n\n.submenu {\n @apply my-3 ml-5 hidden space-y-2 py-2.5 border-l border-secondary-200 dark:border-gray-800 lg:space-y-3;\n}\n\n.current-group .submenu {\n @apply block;\n}\n",".iti {\n position: relative;\n display: block;\n}\n.iti * {\n box-sizing: border-box;\n -moz-box-sizing: border-box; }\n.iti__hide {\n display: none; }\n.iti__v-hide {\n visibility: hidden; }\n.iti input, .iti input[type=text], .iti input[type=tel] {\n position: relative;\n z-index: 0;\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n padding-right: 36px;\n margin-right: 0; }\n.iti__flag-container {\n position: absolute;\n top: 0;\n bottom: 0;\n right: 0;\n padding: 1px; }\n.iti__selected-flag {\n z-index: 1;\n position: relative;\n display: flex;\n align-items: center;\n height: 100%;\n padding: 0 10px;\n}\n.iti__arrow {\n margin-left: 6px;\n width: 0;\n height: 0;\n border-left: 3px solid transparent;\n border-right: 3px solid transparent;\n border-top: 4px solid #555; }\n.iti__arrow--up {\n border-top: none;\n border-bottom: 4px solid #555; }\n.iti__country-list {\n position: absolute;\n z-index: 2;\n list-style: none;\n text-align: left;\n padding: 0;\n margin: 0 0 0 -1px;\n box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);\n background-color: white;\n border: 1px solid #CCC;\n white-space: nowrap;\n max-height: 200px;\n overflow-y: scroll;\n -webkit-overflow-scrolling: touch; }\n.iti__country-list--dropup {\n bottom: 100%;\n margin-bottom: -1px; }\n@media (max-width: 500px) {\n .iti__country-list {\n white-space: normal; } }\n.iti__flag-box {\n display: inline-block;\n width: 20px; }\n.iti__divider {\n padding-bottom: 5px;\n margin-bottom: 5px;\n border-bottom: 1px solid #CCC; }\n.iti__country {\n padding: 5px 10px;\n outline: none; }\n.iti__dial-code {\n color: #999; }\n.iti__country.iti__highlight {\n background-color: rgba(0, 0, 0, 0.05); }\n.iti__flag-box, .iti__country-name, .iti__dial-code {\n vertical-align: middle; }\n.iti__flag-box, .iti__country-name {\n margin-right: 6px; }\n.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {\n padding-right: 6px;\n padding-left: 52px;\n margin-left: 0; }\n.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {\n right: auto;\n left: 0; }\n.iti--allow-dropdown .iti__flag-container:hover {\n cursor: pointer; }\n.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {\n background-color: rgba(0, 0, 0, 0.05); }\n.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,\n.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {\n cursor: default; }\n.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,\n.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {\n background-color: transparent; }\n.iti--separate-dial-code .iti__selected-flag {\n background-color: rgba(0, 0, 0, 0.05); }\n.iti--separate-dial-code .iti__selected-dial-code {\n margin-left: 6px; }\n.iti--container {\n position: absolute;\n top: -1000px;\n left: -1000px;\n z-index: 1060;\n padding: 1px; }\n.iti--container:hover {\n cursor: pointer; }\n\n.iti-mobile .iti--container {\n top: 30px;\n bottom: 30px;\n left: 30px;\n right: 30px;\n position: fixed; }\n\n.iti-mobile .iti__country-list {\n max-height: 100%;\n width: 100%; }\n\n.iti-mobile .iti__country {\n padding: 10px 10px;\n line-height: 1.5em; }\n\n.iti__flag {\n width: 20px; }\n.iti__flag.iti__be {\n width: 18px; }\n.iti__flag.iti__ch {\n width: 15px; }\n.iti__flag.iti__mc {\n width: 19px; }\n.iti__flag.iti__ne {\n width: 18px; }\n.iti__flag.iti__np {\n width: 13px; }\n.iti__flag.iti__va {\n width: 15px; }\n@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {\n .iti__flag {\n background-size: 5652px 15px; } }\n.iti__flag.iti__ac {\n height: 10px;\n background-position: 0px 0px; }\n.iti__flag.iti__ad {\n height: 14px;\n background-position: -22px 0px; }\n.iti__flag.iti__ae {\n height: 10px;\n background-position: -44px 0px; }\n.iti__flag.iti__af {\n height: 14px;\n background-position: -66px 0px; }\n.iti__flag.iti__ag {\n height: 14px;\n background-position: -88px 0px; }\n.iti__flag.iti__ai {\n height: 10px;\n background-position: -110px 0px; }\n.iti__flag.iti__al {\n height: 15px;\n background-position: -132px 0px; }\n.iti__flag.iti__am {\n height: 10px;\n background-position: -154px 0px; }\n.iti__flag.iti__ao {\n height: 14px;\n background-position: -176px 0px; }\n.iti__flag.iti__aq {\n height: 14px;\n background-position: -198px 0px; }\n.iti__flag.iti__ar {\n height: 13px;\n background-position: -220px 0px; }\n.iti__flag.iti__as {\n height: 10px;\n background-position: -242px 0px; }\n.iti__flag.iti__at {\n height: 14px;\n background-position: -264px 0px; }\n.iti__flag.iti__au {\n height: 10px;\n background-position: -286px 0px; }\n.iti__flag.iti__aw {\n height: 14px;\n background-position: -308px 0px; }\n.iti__flag.iti__ax {\n height: 13px;\n background-position: -330px 0px; }\n.iti__flag.iti__az {\n height: 10px;\n background-position: -352px 0px; }\n.iti__flag.iti__ba {\n height: 10px;\n background-position: -374px 0px; }\n.iti__flag.iti__bb {\n height: 14px;\n background-position: -396px 0px; }\n.iti__flag.iti__bd {\n height: 12px;\n background-position: -418px 0px; }\n.iti__flag.iti__be {\n height: 15px;\n background-position: -440px 0px; }\n.iti__flag.iti__bf {\n height: 14px;\n background-position: -460px 0px; }\n.iti__flag.iti__bg {\n height: 12px;\n background-position: -482px 0px; }\n.iti__flag.iti__bh {\n height: 12px;\n background-position: -504px 0px; }\n.iti__flag.iti__bi {\n height: 12px;\n background-position: -526px 0px; }\n.iti__flag.iti__bj {\n height: 14px;\n background-position: -548px 0px; }\n.iti__flag.iti__bl {\n height: 14px;\n background-position: -570px 0px; }\n.iti__flag.iti__bm {\n height: 10px;\n background-position: -592px 0px; }\n.iti__flag.iti__bn {\n height: 10px;\n background-position: -614px 0px; }\n.iti__flag.iti__bo {\n height: 14px;\n background-position: -636px 0px; }\n.iti__flag.iti__bq {\n height: 14px;\n background-position: -658px 0px; }\n.iti__flag.iti__br {\n height: 14px;\n background-position: -680px 0px; }\n.iti__flag.iti__bs {\n height: 10px;\n background-position: -702px 0px; }\n.iti__flag.iti__bt {\n height: 14px;\n background-position: -724px 0px; }\n.iti__flag.iti__bv {\n height: 15px;\n background-position: -746px 0px; }\n.iti__flag.iti__bw {\n height: 14px;\n background-position: -768px 0px; }\n.iti__flag.iti__by {\n height: 10px;\n background-position: -790px 0px; }\n.iti__flag.iti__bz {\n height: 14px;\n background-position: -812px 0px; }\n.iti__flag.iti__ca {\n height: 10px;\n background-position: -834px 0px; }\n.iti__flag.iti__cc {\n height: 10px;\n background-position: -856px 0px; }\n.iti__flag.iti__cd {\n height: 15px;\n background-position: -878px 0px; }\n.iti__flag.iti__cf {\n height: 14px;\n background-position: -900px 0px; }\n.iti__flag.iti__cg {\n height: 14px;\n background-position: -922px 0px; }\n.iti__flag.iti__ch {\n height: 15px;\n background-position: -944px 0px; }\n.iti__flag.iti__ci {\n height: 14px;\n background-position: -961px 0px; }\n.iti__flag.iti__ck {\n height: 10px;\n background-position: -983px 0px; }\n.iti__flag.iti__cl {\n height: 14px;\n background-position: -1005px 0px; }\n.iti__flag.iti__cm {\n height: 14px;\n background-position: -1027px 0px; }\n.iti__flag.iti__cn {\n height: 14px;\n background-position: -1049px 0px; }\n.iti__flag.iti__co {\n height: 14px;\n background-position: -1071px 0px; }\n.iti__flag.iti__cp {\n height: 14px;\n background-position: -1093px 0px; }\n.iti__flag.iti__cr {\n height: 12px;\n background-position: -1115px 0px; }\n.iti__flag.iti__cu {\n height: 10px;\n background-position: -1137px 0px; }\n.iti__flag.iti__cv {\n height: 12px;\n background-position: -1159px 0px; }\n.iti__flag.iti__cw {\n height: 14px;\n background-position: -1181px 0px; }\n.iti__flag.iti__cx {\n height: 10px;\n background-position: -1203px 0px; }\n.iti__flag.iti__cy {\n height: 14px;\n background-position: -1225px 0px; }\n.iti__flag.iti__cz {\n height: 14px;\n background-position: -1247px 0px; }\n.iti__flag.iti__de {\n height: 12px;\n background-position: -1269px 0px; }\n.iti__flag.iti__dg {\n height: 10px;\n background-position: -1291px 0px; }\n.iti__flag.iti__dj {\n height: 14px;\n background-position: -1313px 0px; }\n.iti__flag.iti__dk {\n height: 15px;\n background-position: -1335px 0px; }\n.iti__flag.iti__dm {\n height: 10px;\n background-position: -1357px 0px; }\n.iti__flag.iti__do {\n height: 14px;\n background-position: -1379px 0px; }\n.iti__flag.iti__dz {\n height: 14px;\n background-position: -1401px 0px; }\n.iti__flag.iti__ea {\n height: 14px;\n background-position: -1423px 0px; }\n.iti__flag.iti__ec {\n height: 14px;\n background-position: -1445px 0px; }\n.iti__flag.iti__ee {\n height: 13px;\n background-position: -1467px 0px; }\n.iti__flag.iti__eg {\n height: 14px;\n background-position: -1489px 0px; }\n.iti__flag.iti__eh {\n height: 10px;\n background-position: -1511px 0px; }\n.iti__flag.iti__er {\n height: 10px;\n background-position: -1533px 0px; }\n.iti__flag.iti__es {\n height: 14px;\n background-position: -1555px 0px; }\n.iti__flag.iti__et {\n height: 10px;\n background-position: -1577px 0px; }\n.iti__flag.iti__eu {\n height: 14px;\n background-position: -1599px 0px; }\n.iti__flag.iti__fi {\n height: 12px;\n background-position: -1621px 0px; }\n.iti__flag.iti__fj {\n height: 10px;\n background-position: -1643px 0px; }\n.iti__flag.iti__fk {\n height: 10px;\n background-position: -1665px 0px; }\n.iti__flag.iti__fm {\n height: 11px;\n background-position: -1687px 0px; }\n.iti__flag.iti__fo {\n height: 15px;\n background-position: -1709px 0px; }\n.iti__flag.iti__fr {\n height: 14px;\n background-position: -1731px 0px; }\n.iti__flag.iti__ga {\n height: 15px;\n background-position: -1753px 0px; }\n.iti__flag.iti__gb {\n height: 10px;\n background-position: -1775px 0px; }\n.iti__flag.iti__gd {\n height: 12px;\n background-position: -1797px 0px; }\n.iti__flag.iti__ge {\n height: 14px;\n background-position: -1819px 0px; }\n.iti__flag.iti__gf {\n height: 14px;\n background-position: -1841px 0px; }\n.iti__flag.iti__gg {\n height: 14px;\n background-position: -1863px 0px; }\n.iti__flag.iti__gh {\n height: 14px;\n background-position: -1885px 0px; }\n.iti__flag.iti__gi {\n height: 10px;\n background-position: -1907px 0px; }\n.iti__flag.iti__gl {\n height: 14px;\n background-position: -1929px 0px; }\n.iti__flag.iti__gm {\n height: 14px;\n background-position: -1951px 0px; }\n.iti__flag.iti__gn {\n height: 14px;\n background-position: -1973px 0px; }\n.iti__flag.iti__gp {\n height: 14px;\n background-position: -1995px 0px; }\n.iti__flag.iti__gq {\n height: 14px;\n background-position: -2017px 0px; }\n.iti__flag.iti__gr {\n height: 14px;\n background-position: -2039px 0px; }\n.iti__flag.iti__gs {\n height: 10px;\n background-position: -2061px 0px; }\n.iti__flag.iti__gt {\n height: 13px;\n background-position: -2083px 0px; }\n.iti__flag.iti__gu {\n height: 11px;\n background-position: -2105px 0px; }\n.iti__flag.iti__gw {\n height: 10px;\n background-position: -2127px 0px; }\n.iti__flag.iti__gy {\n height: 12px;\n background-position: -2149px 0px; }\n.iti__flag.iti__hk {\n height: 14px;\n background-position: -2171px 0px; }\n.iti__flag.iti__hm {\n height: 10px;\n background-position: -2193px 0px; }\n.iti__flag.iti__hn {\n height: 10px;\n background-position: -2215px 0px; }\n.iti__flag.iti__hr {\n height: 10px;\n background-position: -2237px 0px; }\n.iti__flag.iti__ht {\n height: 12px;\n background-position: -2259px 0px; }\n.iti__flag.iti__hu {\n height: 10px;\n background-position: -2281px 0px; }\n.iti__flag.iti__ic {\n height: 14px;\n background-position: -2303px 0px; }\n.iti__flag.iti__id {\n height: 14px;\n background-position: -2325px 0px; }\n.iti__flag.iti__ie {\n height: 10px;\n background-position: -2347px 0px; }\n.iti__flag.iti__il {\n height: 15px;\n background-position: -2369px 0px; }\n.iti__flag.iti__im {\n height: 10px;\n background-position: -2391px 0px; }\n.iti__flag.iti__in {\n height: 14px;\n background-position: -2413px 0px; }\n.iti__flag.iti__io {\n height: 10px;\n background-position: -2435px 0px; }\n.iti__flag.iti__iq {\n height: 14px;\n background-position: -2457px 0px; }\n.iti__flag.iti__ir {\n height: 12px;\n background-position: -2479px 0px; }\n.iti__flag.iti__is {\n height: 15px;\n background-position: -2501px 0px; }\n.iti__flag.iti__it {\n height: 14px;\n background-position: -2523px 0px; }\n.iti__flag.iti__je {\n height: 12px;\n background-position: -2545px 0px; }\n.iti__flag.iti__jm {\n height: 10px;\n background-position: -2567px 0px; }\n.iti__flag.iti__jo {\n height: 10px;\n background-position: -2589px 0px; }\n.iti__flag.iti__jp {\n height: 14px;\n background-position: -2611px 0px; }\n.iti__flag.iti__ke {\n height: 14px;\n background-position: -2633px 0px; }\n.iti__flag.iti__kg {\n height: 12px;\n background-position: -2655px 0px; }\n.iti__flag.iti__kh {\n height: 13px;\n background-position: -2677px 0px; }\n.iti__flag.iti__ki {\n height: 10px;\n background-position: -2699px 0px; }\n.iti__flag.iti__km {\n height: 12px;\n background-position: -2721px 0px; }\n.iti__flag.iti__kn {\n height: 14px;\n background-position: -2743px 0px; }\n.iti__flag.iti__kp {\n height: 10px;\n background-position: -2765px 0px; }\n.iti__flag.iti__kr {\n height: 14px;\n background-position: -2787px 0px; }\n.iti__flag.iti__kw {\n height: 10px;\n background-position: -2809px 0px; }\n.iti__flag.iti__ky {\n height: 10px;\n background-position: -2831px 0px; }\n.iti__flag.iti__kz {\n height: 10px;\n background-position: -2853px 0px; }\n.iti__flag.iti__la {\n height: 14px;\n background-position: -2875px 0px; }\n.iti__flag.iti__lb {\n height: 14px;\n background-position: -2897px 0px; }\n.iti__flag.iti__lc {\n height: 10px;\n background-position: -2919px 0px; }\n.iti__flag.iti__li {\n height: 12px;\n background-position: -2941px 0px; }\n.iti__flag.iti__lk {\n height: 10px;\n background-position: -2963px 0px; }\n.iti__flag.iti__lr {\n height: 11px;\n background-position: -2985px 0px; }\n.iti__flag.iti__ls {\n height: 14px;\n background-position: -3007px 0px; }\n.iti__flag.iti__lt {\n height: 12px;\n background-position: -3029px 0px; }\n.iti__flag.iti__lu {\n height: 12px;\n background-position: -3051px 0px; }\n.iti__flag.iti__lv {\n height: 10px;\n background-position: -3073px 0px; }\n.iti__flag.iti__ly {\n height: 10px;\n background-position: -3095px 0px; }\n.iti__flag.iti__ma {\n height: 14px;\n background-position: -3117px 0px; }\n.iti__flag.iti__mc {\n height: 15px;\n background-position: -3139px 0px; }\n.iti__flag.iti__md {\n height: 10px;\n background-position: -3160px 0px; }\n.iti__flag.iti__me {\n height: 10px;\n background-position: -3182px 0px; }\n.iti__flag.iti__mf {\n height: 14px;\n background-position: -3204px 0px; }\n.iti__flag.iti__mg {\n height: 14px;\n background-position: -3226px 0px; }\n.iti__flag.iti__mh {\n height: 11px;\n background-position: -3248px 0px; }\n.iti__flag.iti__mk {\n height: 10px;\n background-position: -3270px 0px; }\n.iti__flag.iti__ml {\n height: 14px;\n background-position: -3292px 0px; }\n.iti__flag.iti__mm {\n height: 14px;\n background-position: -3314px 0px; }\n.iti__flag.iti__mn {\n height: 10px;\n background-position: -3336px 0px; }\n.iti__flag.iti__mo {\n height: 14px;\n background-position: -3358px 0px; }\n.iti__flag.iti__mp {\n height: 10px;\n background-position: -3380px 0px; }\n.iti__flag.iti__mq {\n height: 14px;\n background-position: -3402px 0px; }\n.iti__flag.iti__mr {\n height: 14px;\n background-position: -3424px 0px; }\n.iti__flag.iti__ms {\n height: 10px;\n background-position: -3446px 0px; }\n.iti__flag.iti__mt {\n height: 14px;\n background-position: -3468px 0px; }\n.iti__flag.iti__mu {\n height: 14px;\n background-position: -3490px 0px; }\n.iti__flag.iti__mv {\n height: 14px;\n background-position: -3512px 0px; }\n.iti__flag.iti__mw {\n height: 14px;\n background-position: -3534px 0px; }\n.iti__flag.iti__mx {\n height: 12px;\n background-position: -3556px 0px; }\n.iti__flag.iti__my {\n height: 10px;\n background-position: -3578px 0px; }\n.iti__flag.iti__mz {\n height: 14px;\n background-position: -3600px 0px; }\n.iti__flag.iti__na {\n height: 14px;\n background-position: -3622px 0px; }\n.iti__flag.iti__nc {\n height: 10px;\n background-position: -3644px 0px; }\n.iti__flag.iti__ne {\n height: 15px;\n background-position: -3666px 0px; }\n.iti__flag.iti__nf {\n height: 10px;\n background-position: -3686px 0px; }\n.iti__flag.iti__ng {\n height: 10px;\n background-position: -3708px 0px; }\n.iti__flag.iti__ni {\n height: 12px;\n background-position: -3730px 0px; }\n.iti__flag.iti__nl {\n height: 14px;\n background-position: -3752px 0px; }\n.iti__flag.iti__no {\n height: 15px;\n background-position: -3774px 0px; }\n.iti__flag.iti__np {\n height: 15px;\n background-position: -3796px 0px; }\n.iti__flag.iti__nr {\n height: 10px;\n background-position: -3811px 0px; }\n.iti__flag.iti__nu {\n height: 10px;\n background-position: -3833px 0px; }\n.iti__flag.iti__nz {\n height: 10px;\n background-position: -3855px 0px; }\n.iti__flag.iti__om {\n height: 10px;\n background-position: -3877px 0px; }\n.iti__flag.iti__pa {\n height: 14px;\n background-position: -3899px 0px; }\n.iti__flag.iti__pe {\n height: 14px;\n background-position: -3921px 0px; }\n.iti__flag.iti__pf {\n height: 14px;\n background-position: -3943px 0px; }\n.iti__flag.iti__pg {\n height: 15px;\n background-position: -3965px 0px; }\n.iti__flag.iti__ph {\n height: 10px;\n background-position: -3987px 0px; }\n.iti__flag.iti__pk {\n height: 14px;\n background-position: -4009px 0px; }\n.iti__flag.iti__pl {\n height: 13px;\n background-position: -4031px 0px; }\n.iti__flag.iti__pm {\n height: 14px;\n background-position: -4053px 0px; }\n.iti__flag.iti__pn {\n height: 10px;\n background-position: -4075px 0px; }\n.iti__flag.iti__pr {\n height: 14px;\n background-position: -4097px 0px; }\n.iti__flag.iti__ps {\n height: 10px;\n background-position: -4119px 0px; }\n.iti__flag.iti__pt {\n height: 14px;\n background-position: -4141px 0px; }\n.iti__flag.iti__pw {\n height: 13px;\n background-position: -4163px 0px; }\n.iti__flag.iti__py {\n height: 11px;\n background-position: -4185px 0px; }\n.iti__flag.iti__qa {\n height: 8px;\n background-position: -4207px 0px; }\n.iti__flag.iti__re {\n height: 14px;\n background-position: -4229px 0px; }\n.iti__flag.iti__ro {\n height: 14px;\n background-position: -4251px 0px; }\n.iti__flag.iti__rs {\n height: 14px;\n background-position: -4273px 0px; }\n.iti__flag.iti__ru {\n height: 14px;\n background-position: -4295px 0px; }\n.iti__flag.iti__rw {\n height: 14px;\n background-position: -4317px 0px; }\n.iti__flag.iti__sa {\n height: 14px;\n background-position: -4339px 0px; }\n.iti__flag.iti__sb {\n height: 10px;\n background-position: -4361px 0px; }\n.iti__flag.iti__sc {\n height: 10px;\n background-position: -4383px 0px; }\n.iti__flag.iti__sd {\n height: 10px;\n background-position: -4405px 0px; }\n.iti__flag.iti__se {\n height: 13px;\n background-position: -4427px 0px; }\n.iti__flag.iti__sg {\n height: 14px;\n background-position: -4449px 0px; }\n.iti__flag.iti__sh {\n height: 10px;\n background-position: -4471px 0px; }\n.iti__flag.iti__si {\n height: 10px;\n background-position: -4493px 0px; }\n.iti__flag.iti__sj {\n height: 15px;\n background-position: -4515px 0px; }\n.iti__flag.iti__sk {\n height: 14px;\n background-position: -4537px 0px; }\n.iti__flag.iti__sl {\n height: 14px;\n background-position: -4559px 0px; }\n.iti__flag.iti__sm {\n height: 15px;\n background-position: -4581px 0px; }\n.iti__flag.iti__sn {\n height: 14px;\n background-position: -4603px 0px; }\n.iti__flag.iti__so {\n height: 14px;\n background-position: -4625px 0px; }\n.iti__flag.iti__sr {\n height: 14px;\n background-position: -4647px 0px; }\n.iti__flag.iti__ss {\n height: 10px;\n background-position: -4669px 0px; }\n.iti__flag.iti__st {\n height: 10px;\n background-position: -4691px 0px; }\n.iti__flag.iti__sv {\n height: 12px;\n background-position: -4713px 0px; }\n.iti__flag.iti__sx {\n height: 14px;\n background-position: -4735px 0px; }\n.iti__flag.iti__sy {\n height: 14px;\n background-position: -4757px 0px; }\n.iti__flag.iti__sz {\n height: 14px;\n background-position: -4779px 0px; }\n.iti__flag.iti__ta {\n height: 10px;\n background-position: -4801px 0px; }\n.iti__flag.iti__tc {\n height: 10px;\n background-position: -4823px 0px; }\n.iti__flag.iti__td {\n height: 14px;\n background-position: -4845px 0px; }\n.iti__flag.iti__tf {\n height: 14px;\n background-position: -4867px 0px; }\n.iti__flag.iti__tg {\n height: 13px;\n background-position: -4889px 0px; }\n.iti__flag.iti__th {\n height: 14px;\n background-position: -4911px 0px; }\n.iti__flag.iti__tj {\n height: 10px;\n background-position: -4933px 0px; }\n.iti__flag.iti__tk {\n height: 10px;\n background-position: -4955px 0px; }\n.iti__flag.iti__tl {\n height: 10px;\n background-position: -4977px 0px; }\n.iti__flag.iti__tm {\n height: 14px;\n background-position: -4999px 0px; }\n.iti__flag.iti__tn {\n height: 14px;\n background-position: -5021px 0px; }\n.iti__flag.iti__to {\n height: 10px;\n background-position: -5043px 0px; }\n.iti__flag.iti__tr {\n height: 14px;\n background-position: -5065px 0px; }\n.iti__flag.iti__tt {\n height: 12px;\n background-position: -5087px 0px; }\n.iti__flag.iti__tv {\n height: 10px;\n background-position: -5109px 0px; }\n.iti__flag.iti__tw {\n height: 14px;\n background-position: -5131px 0px; }\n.iti__flag.iti__tz {\n height: 14px;\n background-position: -5153px 0px; }\n.iti__flag.iti__ua {\n height: 14px;\n background-position: -5175px 0px; }\n.iti__flag.iti__ug {\n height: 14px;\n background-position: -5197px 0px; }\n.iti__flag.iti__um {\n height: 11px;\n background-position: -5219px 0px; }\n.iti__flag.iti__un {\n height: 14px;\n background-position: -5241px 0px; }\n.iti__flag.iti__us {\n height: 11px;\n background-position: -5263px 0px; }\n.iti__flag.iti__uy {\n height: 14px;\n background-position: -5285px 0px; }\n.iti__flag.iti__uz {\n height: 10px;\n background-position: -5307px 0px; }\n.iti__flag.iti__va {\n height: 15px;\n background-position: -5329px 0px; }\n.iti__flag.iti__vc {\n height: 14px;\n background-position: -5346px 0px; }\n.iti__flag.iti__ve {\n height: 14px;\n background-position: -5368px 0px; }\n.iti__flag.iti__vg {\n height: 10px;\n background-position: -5390px 0px; }\n.iti__flag.iti__vi {\n height: 14px;\n background-position: -5412px 0px; }\n.iti__flag.iti__vn {\n height: 14px;\n background-position: -5434px 0px; }\n.iti__flag.iti__vu {\n height: 12px;\n background-position: -5456px 0px; }\n.iti__flag.iti__wf {\n height: 14px;\n background-position: -5478px 0px; }\n.iti__flag.iti__ws {\n height: 10px;\n background-position: -5500px 0px; }\n.iti__flag.iti__xk {\n height: 15px;\n background-position: -5522px 0px; }\n.iti__flag.iti__ye {\n height: 14px;\n background-position: -5544px 0px; }\n.iti__flag.iti__yt {\n height: 14px;\n background-position: -5566px 0px; }\n.iti__flag.iti__za {\n height: 14px;\n background-position: -5588px 0px; }\n.iti__flag.iti__zm {\n height: 14px;\n background-position: -5610px 0px; }\n.iti__flag.iti__zw {\n height: 10px;\n background-position: -5632px 0px; }\n\n.iti__flag {\n height: 15px;\n box-shadow: 0px 0px 1px 0px #888;\n background-image: url(\"/shopper/img/flags.png\");\n background-repeat: no-repeat;\n background-color: #DBDBDB;\n background-position: 20px 0; }\n@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {\n .iti__flag {\n background-image: url(\"/shopper/img/flags@2x.png\");\n }\n}\n\n.iti__flag.iti__np {\n background-color: transparent; }\n",".dark .trix-button {\n @apply border-secondary-600 bg-secondary-700 text-secondary-200;\n}\n\n.dark .trix-button-group {\n @apply border-secondary-600;\n}\n\n.dark trix-toolbar .trix-dialog {\n @apply border-t-2 border-secondary-900 bg-secondary-800;\n box-shadow: 0 0.3em 1em theme('colors.secondary.900');\n}\n\n.dark trix-toolbar .trix-input {\n @apply border-secondary-600 bg-secondary-700;\n}\n\n.dark trix-toolbar .trix-button:not(:first-child) {\n @apply border-l border-secondary-600;\n}\n\ntrix-toolbar .trix-active {\n @apply bg-primary-600 text-white;\n}\n\n[dir='rtl'] trix-editor.prose :where(ul):not(:where([class~='not-prose'] *)),\n[dir='rtl'] trix-editor.prose :where(ol):not(:where([class~='not-prose'] *)) {\n padding-right: 1.625em !important;\n padding-left: 0em !important;\n}\n\n[dir='rtl']\n trix-editor.prose\n :where(ul > li):not(:where([class~='not-prose'] *)),\n[dir='rtl']\n trix-editor.prose\n :where(ol > li):not(:where([class~='not-prose'] *)) {\n padding-right: 0.375em !important;\n padding-left: 0em !important;\n}\n\ntrix-editor::-webkit-scrollbar {\n width: 0.5em;\n height: 0.5em;\n}\n\ntrix-editor::-webkit-scrollbar-thumb {\n background-color: theme('colors.secondary.200');\n border-radius: 4px;\n}\n\n.dark trix-editor::-webkit-scrollbar-thumb {\n background-color: theme('colors.secondary.800');\n}\n","@import 'choices.js/public/assets/styles/choices.css';\n@import 'tom-select/dist/css/tom-select.default.min.css';\n@import 'flatpickr/dist/themes/light.css';\n@import 'filepond/dist/filepond.min.css';\n@import 'trix/dist/trix.css';\n\n@import 'tailwindcss/base';\n@import 'tailwindcss/components';\n@import 'tailwindcss/utilities';\n\n@import 'base.css';\n@import 'components/filepond.css';\n@import 'components/select.css';\n@import 'components/sidebar.css';\n@import 'components/intl-phone.css';\n@import 'components/trix-editor.css';\n\n@layer base {\n html {\n -webkit-tap-highlight-color: transparent;\n }\n\n :root.dark {\n color-scheme: dark;\n }\n\n [dir='rtl'] select {\n background-position: left 0.5rem center !important;\n padding-left: 2.5rem;\n padding-right: 0.75rem;\n }\n}\n"]} \ No newline at end of file diff --git a/packages/admin/public/shopper.js b/packages/admin/public/shopper.js old mode 100644 new mode 100755 index 938d0e1d2..1627bc24c --- a/packages/admin/public/shopper.js +++ b/packages/admin/public/shopper.js @@ -1,46 +1,3 @@ -(()=>{var t,e={604:()=>{shortcut={all_shortcuts:{},add:function(t,e,i){var n={type:"keydown",propagate:!1,disable_in_input:!1,target:document,keycode:!1};if(i)for(var r in n)void 0===i[r]&&(i[r]=n[r]);else i=n;var o=i.target;"string"==typeof i.target&&(o=document.getElementById(i.target));t=t.toLowerCase();var s=function(n){var r;if((n=n||window.event,i.disable_in_input)&&(n.target?r=n.target:n.srcElement&&(r=n.srcElement),3===r.nodeType&&(r=r.parentNode),"INPUT"===r.tagName||"TEXTAREA"===r.tagName))return;n.keyCode?code=n.keyCode:n.which&&(code=n.which);var o=String.fromCharCode(code).toLowerCase();188===code&&(o=","),190===code&&(o=".");var s,a=t.split("+"),l=0,c={"`":"~",1:"!",2:"@",3:"#",4:"$",5:"%",6:"^",7:"&",8:"*",9:"(",0:")","-":"_","=":"+",";":":","'":'"',",":"<",".":">","/":"?","\\":"|"},u={esc:27,escape:27,tab:9,space:32,return:13,enter:13,backspace:8,scrolllock:145,scroll_lock:145,scroll:145,capslock:20,caps_lock:20,caps:20,numlock:144,num_lock:144,num:144,pause:19,break:19,insert:45,home:36,delete:46,end:35,pageup:33,page_up:33,pu:33,pagedown:34,page_down:34,pd:34,left:37,up:38,right:39,down:40,f1:112,f2:113,f3:114,f4:115,f5:116,f6:117,f7:118,f8:119,f9:120,f10:121,f11:122,f12:123},h={shift:{wanted:!1,pressed:!1},ctrl:{wanted:!1,pressed:!1},alt:{wanted:!1,pressed:!1},meta:{wanted:!1,pressed:!1}};n.ctrlKey&&(h.ctrl.pressed=!0),n.shiftKey&&(h.shift.pressed=!0),n.altKey&&(h.alt.pressed=!0),n.metaKey&&(h.meta.pressed=!0);for(var d=0;s=a[d],d1?u[s]===code&&l++:i.keycode?i.keycode===code&&l++:(o===s||c[o]&&n.shiftKey&&(o=c[o])===s)&&l++;if(l===a.length&&h.ctrl.pressed===h.ctrl.wanted&&h.shift.pressed===h.shift.wanted&&h.alt.pressed===h.alt.wanted&&h.meta.pressed===h.meta.wanted&&(e(n),!i.propagate))return n.cancelBubble=!0,n.returnValue=!1,n.stopPropagation&&(n.stopPropagation(),n.preventDefault()),!1};this.all_shortcuts[t]={callback:s,target:o,event:i.type},o.addEventListener?o.addEventListener(i.type,s,!1):o.attachEvent?o.attachEvent("on"+i.type,s):o["on"+i.type]=s},remove:function(t){t=t.toLowerCase();var e=this.all_shortcuts[t];if(delete this.all_shortcuts[t],e){var i=e.event,n=e.target,r=e.callback;n.detachEvent?n.detachEvent("on"+i,r):n.removeEventListener?n.removeEventListener(i,r,!1):n["on"+i]=!1}}}},270:(t,e,i)=>{"use strict";var n,r,o,s,a=!1,l=!1,c=[],u=-1;function h(t){!function(t){c.includes(t)||c.push(t);l||a||(a=!0,queueMicrotask(p))}(t)}function d(t){let e=c.indexOf(t);-1!==e&&e>u&&c.splice(e,1)}function p(){a=!1,l=!0;for(let t=0;t_(t,e)));let i=!1;if(e(t,(()=>i=!0)),i)return;let n=t.firstElementChild;for(;n;)_(n,e),n=n.nextElementSibling}function y(t,...e){console.warn(`Alpine Warning: ${t}`,...e)}var v=!1;var x=[],b=[];function w(){return x.map((t=>t()))}function E(){return x.concat(b).map((t=>t()))}function T(t){x.push(t)}function A(t){b.push(t)}function S(t,e=!1){return I(t,(t=>{if((e?E():w()).some((e=>t.matches(e))))return!0}))}function I(t,e){if(t){if(e(t))return t;if(t._x_teleportBack&&(t=t._x_teleportBack),t.parentElement)return I(t.parentElement,e)}}var C=[];function D(t,e=_,i=(()=>{})){!function(t){wt=!0;let e=Symbol();Tt=e,Et.set(e,[]);let i=()=>{for(;Et.get(e).length;)Et.get(e).shift()();Et.delete(e)},n=()=>{wt=!1,i()};t(i),n()}((()=>{e(t,((t,e)=>{i(t,e),C.forEach((i=>i(t,e))),xt(t,t.attributes).forEach((t=>t())),t._x_ignore&&e()}))}))}function M(t){_(t,(t=>{z(t),function(t){if(t._x_cleanups)for(;t._x_cleanups.length;)t._x_cleanups.pop()()}(t)}))}var L=[],O=[],P=[];function R(t,e){"function"==typeof e?(t._x_cleanups||(t._x_cleanups=[]),t._x_cleanups.push(e)):(e=t,O.push(e))}function k(t){L.push(t)}function B(t,e,i){t._x_attributeCleanups||(t._x_attributeCleanups={}),t._x_attributeCleanups[e]||(t._x_attributeCleanups[e]=[]),t._x_attributeCleanups[e].push(i)}function z(t,e){t._x_attributeCleanups&&Object.entries(t._x_attributeCleanups).forEach((([i,n])=>{(void 0===e||e.includes(i))&&(n.forEach((t=>t())),delete t._x_attributeCleanups[i])}))}var F=new MutationObserver(H),N=!1;function j(){F.observe(document,{subtree:!0,childList:!0,attributes:!0,attributeOldValue:!0}),N=!0}function U(){(V=V.concat(F.takeRecords())).length&&!G&&(G=!0,queueMicrotask((()=>{H(V),V.length=0,G=!1}))),F.disconnect(),N=!1}var V=[],G=!1;function q(t){if(!N)return t();U();let e=t();return j(),e}var W=!1,$=[];function H(t){if(W)return void($=$.concat(t));let e=[],i=[],n=new Map,r=new Map;for(let o=0;o1===t.nodeType&&e.push(t))),t[o].removedNodes.forEach((t=>1===t.nodeType&&i.push(t)))),"attributes"===t[o].type)){let e=t[o].target,i=t[o].attributeName,s=t[o].oldValue,a=()=>{n.has(e)||n.set(e,[]),n.get(e).push({name:i,value:e.getAttribute(i)})},l=()=>{r.has(e)||r.set(e,[]),r.get(e).push(i)};e.hasAttribute(i)&&null===s?a():e.hasAttribute(i)?(l(),a()):l()}r.forEach(((t,e)=>{z(e,t)})),n.forEach(((t,e)=>{L.forEach((i=>i(e,t)))}));for(let t of i)e.includes(t)||(O.forEach((e=>e(t))),M(t));e.forEach((t=>{t._x_ignoreSelf=!0,t._x_ignore=!0}));for(let t of e)i.includes(t)||t.isConnected&&(delete t._x_ignoreSelf,delete t._x_ignore,P.forEach((e=>e(t))),t._x_ignore=!0,t._x_ignoreSelf=!0);e.forEach((t=>{delete t._x_ignoreSelf,delete t._x_ignore})),e=null,i=null,n=null,r=null}function Z(t){return K(Y(t))}function X(t,e,i){return t._x_dataStack=[e,...Y(i||t)],()=>{t._x_dataStack=t._x_dataStack.filter((t=>t!==e))}}function Y(t){return t._x_dataStack?t._x_dataStack:"function"==typeof ShadowRoot&&t instanceof ShadowRoot?Y(t.host):t.parentNode?Y(t.parentNode):[]}function K(t){return new Proxy({objects:t},J)}var J={ownKeys:({objects:t})=>Array.from(new Set(t.flatMap((t=>Object.keys(t))))),has:({objects:t},e)=>e!=Symbol.unscopables&&t.some((t=>Object.prototype.hasOwnProperty.call(t,e))),get:({objects:t},e,i)=>"toJSON"==e?Q:Reflect.get(t.find((t=>Object.prototype.hasOwnProperty.call(t,e)))||{},e,i),set({objects:t},e,i,n){const r=t.find((t=>Object.prototype.hasOwnProperty.call(t,e)))||t[t.length-1],o=Object.getOwnPropertyDescriptor(r,e);return o?.set&&o?.get?Reflect.set(r,e,i,n):Reflect.set(r,e,i)}};function Q(){return Reflect.ownKeys(this).reduce(((t,e)=>(t[e]=Reflect.get(this,e),t)),{})}function tt(t){let e=(i,n="")=>{Object.entries(Object.getOwnPropertyDescriptors(i)).forEach((([r,{value:o,enumerable:s}])=>{if(!1===s||void 0===o)return;let a=""===n?r:`${n}.${r}`;var l;"object"==typeof o&&null!==o&&o._x_interceptor?i[r]=o.initialize(t,a,r):"object"!=typeof(l=o)||Array.isArray(l)||null===l||o===i||o instanceof Element||e(o,a)}))};return e(t)}function et(t,e=(()=>{})){let i={initialValue:void 0,_x_interceptor:!0,initialize(e,i,n){return t(this.initialValue,(()=>function(t,e){return e.split(".").reduce(((t,e)=>t[e]),t)}(e,i)),(t=>it(e,i,t)),i,n)}};return e(i),t=>{if("object"==typeof t&&null!==t&&t._x_interceptor){let e=i.initialize.bind(i);i.initialize=(n,r,o)=>{let s=t.initialize(n,r,o);return i.initialValue=s,e(n,r,o)}}else i.initialValue=t;return i}}function it(t,e,i){if("string"==typeof e&&(e=e.split(".")),1!==e.length){if(0===e.length)throw error;return t[e[0]]||(t[e[0]]={}),it(t[e[0]],e.slice(1),i)}t[e[0]]=i}var nt={};function rt(t,e){nt[t]=e}function ot(t,e){return Object.entries(nt).forEach((([i,n])=>{let r=null;Object.defineProperty(t,`$${i}`,{get:()=>n(e,function(){if(r)return r;{let[t,i]=At(e);return r={interceptor:et,...t},R(e,i),r}}()),enumerable:!1})})),t}function st(t,e,i,...n){try{return i(...n)}catch(i){at(i,t,e)}}function at(t,e,i=void 0){Object.assign(t,{el:e,expression:i}),console.warn(`Alpine Expression Error: ${t.message}\n\n${i?'Expression: "'+i+'"\n\n':""}`,e),setTimeout((()=>{throw t}),0)}var lt=!0;function ct(t){let e=lt;lt=!1;let i=t();return lt=e,i}function ut(t,e,i={}){let n;return ht(t,e)((t=>n=t),i),n}function ht(...t){return dt(...t)}var dt=pt;function pt(t,e){let i={};ot(i,t);let n=[i,...Y(t)],r="function"==typeof e?function(t,e){return(i=(()=>{}),{scope:n={},params:r=[]}={})=>{mt(i,e.apply(K([n,...t]),r))}}(n,e):function(t,e,i){let n=function(t,e){if(ft[t])return ft[t];let i=Object.getPrototypeOf((async function(){})).constructor,n=/^[\n\s]*if.*\(.*\)/.test(t.trim())||/^(let|const)\s/.test(t.trim())?`(async()=>{ ${t} })()`:t;const r=()=>{try{let e=new i(["__self","scope"],`with (scope) { __self.result = ${n} }; __self.finished = true; return __self.result;`);return Object.defineProperty(e,"name",{value:`[Alpine] ${t}`}),e}catch(i){return at(i,e,t),Promise.resolve()}};let o=r();return ft[t]=o,o}(e,i);return(r=(()=>{}),{scope:o={},params:s=[]}={})=>{n.result=void 0,n.finished=!1;let a=K([o,...t]);if("function"==typeof n){let t=n(n,a).catch((t=>at(t,i,e)));n.finished?(mt(r,n.result,a,s,i),n.result=void 0):t.then((t=>{mt(r,t,a,s,i)})).catch((t=>at(t,i,e))).finally((()=>n.result=void 0))}}}(n,e,t);return st.bind(null,t,e,r)}var ft={};function mt(t,e,i,n,r){if(lt&&"function"==typeof e){let o=e.apply(i,n);o instanceof Promise?o.then((e=>mt(t,e,i,n))).catch((t=>at(t,r,e))):t(o)}else"object"==typeof e&&e instanceof Promise?e.then((e=>t(e))):t(e)}var gt="x-";function _t(t=""){return gt+t}var yt={};function vt(t,e){return yt[t]=e,{before(e){if(!yt[e])return void console.warn("Cannot find directive `${directive}`. `${name}` will use the default order of execution");const i=Pt.indexOf(e);Pt.splice(i>=0?i:Pt.indexOf("DEFAULT"),0,t)}}}function xt(t,e,i){if(e=Array.from(e),t._x_virtualDirectives){let i=Object.entries(t._x_virtualDirectives).map((([t,e])=>({name:t,value:e}))),n=bt(i);i=i.map((t=>n.find((e=>e.name===t.name))?{name:`x-bind:${t.name}`,value:`"${t.value}"`}:t)),e=e.concat(i)}let n={},r=e.map(It(((t,e)=>n[t]=e))).filter(Mt).map(function(t,e){return({name:i,value:n})=>{let r=i.match(Lt()),o=i.match(/:([a-zA-Z0-9\-_:]+)/),s=i.match(/\.[^.\]]+(?=[^\]]*$)/g)||[],a=e||t[i]||i;return{type:r?r[1]:null,value:o?o[1]:null,modifiers:s.map((t=>t.replace(".",""))),expression:n,original:a}}}(n,i)).sort(Rt);return r.map((e=>function(t,e){let i=()=>{},n=yt[e.type]||i,[r,o]=At(t);B(t,e.original,o);let s=()=>{t._x_ignore||t._x_ignoreSelf||(n.inline&&n.inline(t,e,r),n=n.bind(n,t,e,r),wt?Et.get(Tt).push(n):n())};return s.runCleanups=o,s}(t,e)))}function bt(t){return Array.from(t).map(It()).filter((t=>!Mt(t)))}var wt=!1,Et=new Map,Tt=Symbol();function At(t){let e=[],[i,n]=function(t){let e=()=>{};return[i=>{let n=r(i);return t._x_effects||(t._x_effects=new Set,t._x_runEffects=()=>{t._x_effects.forEach((t=>t()))}),t._x_effects.add(n),e=()=>{void 0!==n&&(t._x_effects.delete(n),o(n))},n},()=>{e()}]}(t);e.push(n);return[{Alpine:me,effect:i,cleanup:t=>e.push(t),evaluateLater:ht.bind(ht,t),evaluate:ut.bind(ut,t)},()=>e.forEach((t=>t()))]}var St=(t,e)=>({name:i,value:n})=>(i.startsWith(t)&&(i=i.replace(t,e)),{name:i,value:n});function It(t=(()=>{})){return({name:e,value:i})=>{let{name:n,value:r}=Ct.reduce(((t,e)=>e(t)),{name:e,value:i});return n!==e&&t(n,e),{name:n,value:r}}}var Ct=[];function Dt(t){Ct.push(t)}function Mt({name:t}){return Lt().test(t)}var Lt=()=>new RegExp(`^${gt}([^:^.]+)\\b`);var Ot="DEFAULT",Pt=["ignore","ref","data","id","anchor","bind","init","for","model","modelable","transition","show","if",Ot,"teleport"];function Rt(t,e){let i=-1===Pt.indexOf(t.type)?Ot:t.type,n=-1===Pt.indexOf(e.type)?Ot:e.type;return Pt.indexOf(i)-Pt.indexOf(n)}var kt=[],Bt=!1;function zt(t=(()=>{})){return queueMicrotask((()=>{Bt||setTimeout((()=>{Ft()}))})),new Promise((e=>{kt.push((()=>{t(),e()}))}))}function Ft(){for(Bt=!1;kt.length;)kt.shift()()}function Nt(t,e){return Array.isArray(e)?jt(t,e.join(" ")):"object"==typeof e&&null!==e?function(t,e){let i=t=>t.split(" ").filter(Boolean),n=Object.entries(e).flatMap((([t,e])=>!!e&&i(t))).filter(Boolean),r=Object.entries(e).flatMap((([t,e])=>!e&&i(t))).filter(Boolean),o=[],s=[];return r.forEach((e=>{t.classList.contains(e)&&(t.classList.remove(e),s.push(e))})),n.forEach((e=>{t.classList.contains(e)||(t.classList.add(e),o.push(e))})),()=>{s.forEach((e=>t.classList.add(e))),o.forEach((e=>t.classList.remove(e)))}}(t,e):"function"==typeof e?Nt(t,e()):jt(t,e)}function jt(t,e){return e=!0===e?e="":e||"",i=e.split(" ").filter((e=>!t.classList.contains(e))).filter(Boolean),t.classList.add(...i),()=>{t.classList.remove(...i)};var i}function Ut(t,e){return"object"==typeof e&&null!==e?function(t,e){let i={};return Object.entries(e).forEach((([e,n])=>{i[e]=t.style[e],e.startsWith("--")||(e=e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase()),t.style.setProperty(e,n)})),setTimeout((()=>{0===t.style.length&&t.removeAttribute("style")})),()=>{Ut(t,i)}}(t,e):function(t,e){let i=t.getAttribute("style",e);return t.setAttribute("style",e),()=>{t.setAttribute("style",i||"")}}(t,e)}function Vt(t,e=(()=>{})){let i=!1;return function(){i?e.apply(this,arguments):(i=!0,t.apply(this,arguments))}}function Gt(t,e,i={}){t._x_transition||(t._x_transition={enter:{during:i,start:i,end:i},leave:{during:i,start:i,end:i},in(i=(()=>{}),n=(()=>{})){Wt(t,e,{during:this.enter.during,start:this.enter.start,end:this.enter.end},i,n)},out(i=(()=>{}),n=(()=>{})){Wt(t,e,{during:this.leave.during,start:this.leave.start,end:this.leave.end},i,n)}})}function qt(t){let e=t.parentNode;if(e)return e._x_hidePromise?e:qt(e)}function Wt(t,e,{during:i,start:n,end:r}={},o=(()=>{}),s=(()=>{})){if(t._x_transitioning&&t._x_transitioning.cancel(),0===Object.keys(i).length&&0===Object.keys(n).length&&0===Object.keys(r).length)return o(),void s();let a,l,c;!function(t,e){let i,n,r,o=Vt((()=>{q((()=>{i=!0,n||e.before(),r||(e.end(),Ft()),e.after(),t.isConnected&&e.cleanup(),delete t._x_transitioning}))}));t._x_transitioning={beforeCancels:[],beforeCancel(t){this.beforeCancels.push(t)},cancel:Vt((function(){for(;this.beforeCancels.length;)this.beforeCancels.shift()();o()})),finish:o},q((()=>{e.start(),e.during()})),Bt=!0,requestAnimationFrame((()=>{if(i)return;let o=1e3*Number(getComputedStyle(t).transitionDuration.replace(/,.*/,"").replace("s","")),s=1e3*Number(getComputedStyle(t).transitionDelay.replace(/,.*/,"").replace("s",""));0===o&&(o=1e3*Number(getComputedStyle(t).animationDuration.replace("s",""))),q((()=>{e.before()})),n=!0,requestAnimationFrame((()=>{i||(q((()=>{e.end()})),Ft(),setTimeout(t._x_transitioning.finish,o+s),r=!0)}))}))}(t,{start(){a=e(t,n)},during(){l=e(t,i)},before:o,end(){a(),c=e(t,r)},after:s,cleanup(){l(),c()}})}function $t(t,e,i){if(-1===t.indexOf(e))return i;const n=t[t.indexOf(e)+1];if(!n)return i;if("scale"===e&&isNaN(n))return i;if("duration"===e||"delay"===e){let t=n.match(/([0-9]+)ms/);if(t)return t[1]}return"origin"===e&&["top","right","left","center","bottom"].includes(t[t.indexOf(e)+2])?[n,t[t.indexOf(e)+2]].join(" "):n}vt("transition",((t,{value:e,modifiers:i,expression:n},{evaluate:r})=>{"function"==typeof n&&(n=r(n)),!1!==n&&(n&&"boolean"!=typeof n?function(t,e,i){Gt(t,Nt,"");let n={enter:e=>{t._x_transition.enter.during=e},"enter-start":e=>{t._x_transition.enter.start=e},"enter-end":e=>{t._x_transition.enter.end=e},leave:e=>{t._x_transition.leave.during=e},"leave-start":e=>{t._x_transition.leave.start=e},"leave-end":e=>{t._x_transition.leave.end=e}};n[i](e)}(t,n,e):function(t,e,i){Gt(t,Ut);let n=!e.includes("in")&&!e.includes("out")&&!i,r=n||e.includes("in")||["enter"].includes(i),o=n||e.includes("out")||["leave"].includes(i);e.includes("in")&&!n&&(e=e.filter(((t,i)=>ii>e.indexOf("out"))));let s=!e.includes("opacity")&&!e.includes("scale"),a=s||e.includes("opacity"),l=s||e.includes("scale"),c=a?0:1,u=l?$t(e,"scale",95)/100:1,h=$t(e,"delay",0)/1e3,d=$t(e,"origin","center"),p="opacity, transform",f=$t(e,"duration",150)/1e3,m=$t(e,"duration",75)/1e3,g="cubic-bezier(0.4, 0.0, 0.2, 1)";r&&(t._x_transition.enter.during={transformOrigin:d,transitionDelay:`${h}s`,transitionProperty:p,transitionDuration:`${f}s`,transitionTimingFunction:g},t._x_transition.enter.start={opacity:c,transform:`scale(${u})`},t._x_transition.enter.end={opacity:1,transform:"scale(1)"});o&&(t._x_transition.leave.during={transformOrigin:d,transitionDelay:`${h}s`,transitionProperty:p,transitionDuration:`${m}s`,transitionTimingFunction:g},t._x_transition.leave.start={opacity:1,transform:"scale(1)"},t._x_transition.leave.end={opacity:c,transform:`scale(${u})`})}(t,i,e))})),window.Element.prototype._x_toggleAndCascadeWithTransitions=function(t,e,i,n){const r="visible"===document.visibilityState?requestAnimationFrame:setTimeout;let o=()=>r(i);e?t._x_transition&&(t._x_transition.enter||t._x_transition.leave)?t._x_transition.enter&&(Object.entries(t._x_transition.enter.during).length||Object.entries(t._x_transition.enter.start).length||Object.entries(t._x_transition.enter.end).length)?t._x_transition.in(i):o():t._x_transition?t._x_transition.in(i):o():(t._x_hidePromise=t._x_transition?new Promise(((e,i)=>{t._x_transition.out((()=>{}),(()=>e(n))),t._x_transitioning&&t._x_transitioning.beforeCancel((()=>i({isFromCancelledTransition:!0})))})):Promise.resolve(n),queueMicrotask((()=>{let e=qt(t);e?(e._x_hideChildren||(e._x_hideChildren=[]),e._x_hideChildren.push(t)):r((()=>{let e=t=>{let i=Promise.all([t._x_hidePromise,...(t._x_hideChildren||[]).map(e)]).then((([t])=>t()));return delete t._x_hidePromise,delete t._x_hideChildren,i};e(t).catch((t=>{if(!t.isFromCancelledTransition)throw t}))}))})))};var Ht=!1;function Zt(t,e=(()=>{})){return(...i)=>Ht?e(...i):t(...i)}var Xt=[];function Yt(t){Xt.push(t)}var Kt=!1;function Jt(t){let e=r;m(((t,i)=>{let n=e(t);return o(n),()=>{}})),t(),m(e)}function Qt(t,e,i,r=[]){switch(t._x_bindings||(t._x_bindings=n({})),t._x_bindings[e]=i,e=r.includes("camel")?e.toLowerCase().replace(/-(\w)/g,((t,e)=>e.toUpperCase())):e){case"value":!function(t,e){if("radio"===t.type)void 0===t.attributes.value&&(t.value=e),window.fromModel&&(t.checked="boolean"==typeof e?ie(t.value)===e:ee(t.value,e));else if("checkbox"===t.type)Number.isInteger(e)?t.value=e:Array.isArray(e)||"boolean"==typeof e||[null,void 0].includes(e)?Array.isArray(e)?t.checked=e.some((e=>ee(e,t.value))):t.checked=!!e:t.value=String(e);else if("SELECT"===t.tagName)!function(t,e){const i=[].concat(e).map((t=>t+""));Array.from(t.options).forEach((t=>{t.selected=i.includes(t.value)}))}(t,e);else{if(t.value===e)return;t.value=void 0===e?"":e}}(t,i);break;case"style":!function(t,e){t._x_undoAddedStyles&&t._x_undoAddedStyles();t._x_undoAddedStyles=Ut(t,e)}(t,i);break;case"class":!function(t,e){t._x_undoAddedClasses&&t._x_undoAddedClasses();t._x_undoAddedClasses=Nt(t,e)}(t,i);break;case"selected":case"checked":!function(t,e,i){te(t,e,i),function(t,e,i){t[e]!==i&&(t[e]=i)}(t,e,i)}(t,e,i);break;default:te(t,e,i)}}function te(t,e,i){[null,void 0,!1].includes(i)&&function(t){return!["aria-pressed","aria-checked","aria-expanded","aria-selected"].includes(t)}(e)?t.removeAttribute(e):(ne(e)&&(i=e),function(t,e,i){t.getAttribute(e)!=i&&t.setAttribute(e,i)}(t,e,i))}function ee(t,e){return t==e}function ie(t){return!![1,"1","true","on","yes",!0].includes(t)||![0,"0","false","off","no",!1].includes(t)&&(t?Boolean(t):null)}function ne(t){return["disabled","checked","required","readonly","hidden","open","selected","autofocus","itemscope","multiple","novalidate","allowfullscreen","allowpaymentrequest","formnovalidate","autoplay","controls","loop","muted","playsinline","default","ismap","reversed","async","defer","nomodule"].includes(t)}function re(t,e,i){let n=t.getAttribute(e);return null===n?"function"==typeof i?i():i:""===n||(ne(e)?!![e,"true"].includes(n):n)}function oe(t,e){var i;return function(){var n=this,r=arguments;clearTimeout(i),i=setTimeout((function(){i=null,t.apply(n,r)}),e)}}function se(t,e){let i;return function(){let n=this,r=arguments;i||(t.apply(n,r),i=!0,setTimeout((()=>i=!1),e))}}function ae({get:t,set:e},{get:i,set:n}){let s,a=!0,l=r((()=>{const r=t(),o=i();if(a)n(le(r)),a=!1,s=JSON.stringify(r);else{const t=JSON.stringify(r);t!==s?(n(le(r)),s=t):(e(le(o)),s=JSON.stringify(o))}JSON.stringify(i()),JSON.stringify(t())}));return()=>{o(l)}}function le(t){return"object"==typeof t?JSON.parse(JSON.stringify(t)):t}var ce={},ue=!1;var he={};function de(t,e,i){let n=[];for(;n.length;)n.pop()();let r=Object.entries(e).map((([t,e])=>({name:t,value:e}))),o=bt(r);return r=r.map((t=>o.find((e=>e.name===t.name))?{name:`x-bind:${t.name}`,value:`"${t.value}"`}:t)),xt(t,r,i).map((t=>{n.push(t.runCleanups),t()})),()=>{for(;n.length;)n.pop()()}}var pe={};var fe={get reactive(){return n},get release(){return o},get effect(){return r},get raw(){return s},version:"3.13.3",flushAndStopDeferringMutations:function(){W=!1,H($),$=[]},dontAutoEvaluateFunctions:ct,disableEffectScheduling:function(t){f=!1,t(),f=!0},startObservingMutations:j,stopObservingMutations:U,setReactivityEngine:function(t){n=t.reactive,o=t.release,r=e=>t.effect(e,{scheduler:t=>{f?h(t):t()}}),s=t.raw},onAttributeRemoved:B,onAttributesAdded:k,closestDataStack:Y,skipDuringClone:Zt,onlyDuringClone:function(t){return(...e)=>Ht&&t(...e)},addRootSelector:T,addInitSelector:A,interceptClone:Yt,addScopeToNode:X,deferMutations:function(){W=!0},mapAttributes:Dt,evaluateLater:ht,interceptInit:function(t){C.push(t)},setEvaluator:function(t){dt=t},mergeProxies:K,extractProp:function(t,e,i,n=!0){if(t._x_bindings&&void 0!==t._x_bindings[e])return t._x_bindings[e];if(t._x_inlineBindings&&void 0!==t._x_inlineBindings[e]){let i=t._x_inlineBindings[e];return i.extract=n,ct((()=>ut(t,i.expression)))}return re(t,e,i)},findClosest:I,onElRemoved:R,closestRoot:S,destroyTree:M,interceptor:et,transition:Wt,setStyles:Ut,mutateDom:q,directive:vt,entangle:ae,throttle:se,debounce:oe,evaluate:ut,initTree:D,nextTick:zt,prefixed:_t,prefix:function(t){gt=t},plugin:function(t){(Array.isArray(t)?t:[t]).forEach((t=>t(me)))},magic:rt,store:function(t,e){if(ue||(ce=n(ce),ue=!0),void 0===e)return ce[t];ce[t]=e,"object"==typeof e&&null!==e&&e.hasOwnProperty("init")&&"function"==typeof e.init&&ce[t].init(),tt(ce[t])},start:function(){var t;v&&y("Alpine has already been initialized on this page. Calling Alpine.start() more than once can cause problems."),v=!0,document.body||y("Unable to initialize. Trying to load Alpine before `` is available. Did you forget to add `defer` in Alpine's ` @include('shopper::includes._additional-styles') - @stack('scripts') -merge(['class' => 'bg-white font-sans dark:bg-gray-950']) }}> +twMerge(['class' => 'bg-white font-sans dark:bg-gray-950']) }}> {{ $slot }} - + @livewire(\Filament\Notifications\Livewire\Notifications::class) + @livewire(\Shopper\Livewire\Components\SidePanel::class) -
- @livewire('livewire-ui-modal') +
+ @livewire(\LivewireUI\Modal\Modal::class)
- @livewire('notifications') + @filamentScripts - @include('shopper::includes._additional-scripts') diff --git a/packages/admin/resources/views/components/layouts/footer.blade.php b/packages/admin/resources/views/components/layouts/footer.blade.php old mode 100644 new mode 100755 index 82650b3f9..084027441 --- a/packages/admin/resources/views/components/layouts/footer.blade.php +++ b/packages/admin/resources/views/components/layouts/footer.blade.php @@ -1,3 +1,3 @@ -

+

Copyright © {{ date('Y') }} — Shopper Labs.

diff --git a/packages/admin/resources/views/components/layouts/setting.blade.php b/packages/admin/resources/views/components/layouts/setting.blade.php old mode 100644 new mode 100755 index 0126c34f4..76ecb1e66 --- a/packages/admin/resources/views/components/layouts/setting.blade.php +++ b/packages/admin/resources/views/components/layouts/setting.blade.php @@ -1,6 +1,6 @@ -
+
-
diff --git a/packages/admin/resources/views/components/learn-more.blade.php b/packages/admin/resources/views/components/learn-more.blade.php old mode 100644 new mode 100755 index 7a90675a0..1d0568151 --- a/packages/admin/resources/views/components/learn-more.blade.php +++ b/packages/admin/resources/views/components/learn-more.blade.php @@ -1,13 +1,13 @@
-
-
- +
+
+
-
+
{{ __('shopper::components.learn_more') }} {{ $name }} - +
diff --git a/packages/admin/resources/views/components/link.blade.php b/packages/admin/resources/views/components/link.blade.php new file mode 100644 index 000000000..5d7119823 --- /dev/null +++ b/packages/admin/resources/views/components/link.blade.php @@ -0,0 +1,3 @@ + + {{ $slot }} + diff --git a/packages/admin/resources/views/components/loader.blade.php b/packages/admin/resources/views/components/loader.blade.php old mode 100644 new mode 100755 index 46644b822..f1a2ac951 --- a/packages/admin/resources/views/components/loader.blade.php +++ b/packages/admin/resources/views/components/loader.blade.php @@ -1,4 +1,4 @@ -merge(['class' => 'animate-spin -ml-1 mr-3 h-5 w-5']) }} fill="none" viewBox="0 0 24 24"> +twMerge(['class' => 'mr-2 h-5 w-5 animate-spin']) }} fill="none" viewBox="0 0 24 24" aria-hidden="true"> diff --git a/packages/admin/resources/views/components/menu/item.blade.php b/packages/admin/resources/views/components/menu/item.blade.php old mode 100644 new mode 100755 diff --git a/packages/admin/resources/views/components/menu/nav-setting.blade.php b/packages/admin/resources/views/components/menu/nav-setting.blade.php old mode 100644 new mode 100755 index 2ca8fbb2d..ef2a18739 --- a/packages/admin/resources/views/components/menu/nav-setting.blade.php +++ b/packages/admin/resources/views/components/menu/nav-setting.blade.php @@ -4,15 +4,16 @@ @class([ 'whitespace-nowrap border-b-2 py-4 px-1 text-sm font-medium select-none', 'border-primary-500 text-primary-600 current' => $menu['route'] && request()->routeIs($menu['route'] . '*'), - 'border-transparent text-secondary-500 hover:border-secondary-300 hover:text-secondary-700 dark:text-secondary-400 dark:hover:border-secondary-700 dark:hover:text-secondary-300' => ! $menu['route'] || ! request()->routeIs($menu['route'] . '*'), + 'border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 dark:text-gray-400 dark:hover:border-gray-700 dark:hover:text-gray-300' => ! $menu['route'] || ! request()->routeIs($menu['route'] . '*'), ]) + wire:navigate @if($menu['route'] && request()->routeIs($menu['route'] . '*')) aria-current="page" @endif > {{ __($menu['name']) }} @if(! $menu['route']) - - + + {{ __('shopper::layout.soon') }} diff --git a/packages/admin/resources/views/components/menu/setting.blade.php b/packages/admin/resources/views/components/menu/setting.blade.php old mode 100644 new mode 100755 index 6284da224..33bc19f93 --- a/packages/admin/resources/views/components/menu/setting.blade.php +++ b/packages/admin/resources/views/components/menu/setting.blade.php @@ -3,13 +3,14 @@ -
- +
+ {{ $menu['icon'] }}
-

+

{{ __($menu['name']) }} @if(! $menu['route']) @@ -18,7 +19,7 @@ class="p-3 flex items-start space-x-4 rounded-lg hover:bg-secondary-50 dark:hove @endif

-

+

{{ __($menu['description']) }}

diff --git a/packages/admin/resources/views/components/modal.blade.php b/packages/admin/resources/views/components/modal.blade.php old mode 100644 new mode 100755 index 0de58c942..127c580c0 --- a/packages/admin/resources/views/components/modal.blade.php +++ b/packages/admin/resources/views/components/modal.blade.php @@ -1,24 +1,24 @@ @props([ 'formAction' => false, 'headerClasses' => '', - 'contentClasses' => 'px-4 sm:p-6', - 'footerClasses' => 'px-4 pb-5 sm:px-4 sm:flex', + 'contentClasses' => 'p-4 sm:p-6', + 'footerClasses' => 'p-4 sm:p-6 sm:flex', ]) -
+
twMerge(['class' => 'h-full bg-white dark:bg-gray-800']) }}> @if($formAction) -
+ @endif
@if(isset($title)) -

+

{{ $title }}

@endif @if(isset($subtitle))
-

+

{{ $subtitle }}

diff --git a/packages/admin/resources/views/components/section-heading.blade.php b/packages/admin/resources/views/components/section-heading.blade.php new file mode 100644 index 000000000..8d9bb1659 --- /dev/null +++ b/packages/admin/resources/views/components/section-heading.blade.php @@ -0,0 +1,12 @@ +@props(['title', 'description' => null]) + +
+

+ {{ $title }} +

+ @if($description) +

+ {{ $description }} +

+ @endif +
diff --git a/packages/admin/resources/views/components/separator.blade.php b/packages/admin/resources/views/components/separator.blade.php old mode 100644 new mode 100755 index 1fda2f5ed..649eba115 --- a/packages/admin/resources/views/components/separator.blade.php +++ b/packages/admin/resources/views/components/separator.blade.php @@ -1,3 +1,3 @@
-
+
diff --git a/packages/admin/resources/views/components/shortcut.blade.php b/packages/admin/resources/views/components/shortcut.blade.php old mode 100644 new mode 100755 index eee08d75d..e82dd6013 --- a/packages/admin/resources/views/components/shortcut.blade.php +++ b/packages/admin/resources/views/components/shortcut.blade.php @@ -1,14 +1,16 @@ @props(['name', 'command', 'param' => null])
  • - {{ $name }} - - + + {{ $name }} + + + {{ $command }} @if ($param) + - + {{ $param }} @endif diff --git a/packages/admin/resources/views/components/stock-badge.blade.php b/packages/admin/resources/views/components/stock-badge.blade.php old mode 100644 new mode 100755 diff --git a/packages/admin/resources/views/components/tables/table-head.blade.php b/packages/admin/resources/views/components/tables/table-head.blade.php old mode 100644 new mode 100755 index e401379df..607406c58 --- a/packages/admin/resources/views/components/tables/table-head.blade.php +++ b/packages/admin/resources/views/components/tables/table-head.blade.php @@ -1,3 +1,3 @@ -merge(['class' => 'px-6 py-3 text-left text-xs leading-4 whitespace-nowrap font-medium text-secondary-500 uppercase tracking-wider dark:text-secondary-400']) }}> +twMerge(['class' => 'px-6 py-3 text-left text-xs leading-4 whitespace-nowrap font-medium text-gray-500 uppercase tracking-wider dark:text-gray-400']) }}> {{ $slot }} diff --git a/packages/admin/resources/views/components/tables/table-row.blade.php b/packages/admin/resources/views/components/tables/table-row.blade.php new file mode 100644 index 000000000..3b85f234d --- /dev/null +++ b/packages/admin/resources/views/components/tables/table-row.blade.php @@ -0,0 +1,3 @@ +twMerge(['class' => 'border-b border-gray-200 bg-gray-50 dark:border-gray-700 dark:bg-white/5']) }}> + {{ $slot }} + diff --git a/packages/admin/resources/views/components/tables/table-td.blade.php b/packages/admin/resources/views/components/tables/table-td.blade.php old mode 100644 new mode 100755 index 13b57d91e..f7dd185ad --- a/packages/admin/resources/views/components/tables/table-td.blade.php +++ b/packages/admin/resources/views/components/tables/table-td.blade.php @@ -1,3 +1,3 @@ -merge(['class' => 'px-6 py-3 text-sm leading-5 text-secondary-500 dark:text-secondary-400']) }}> +twMerge(['class' => 'px-6 py-3 text-sm leading-5 text-gray-500 dark:text-gray-400']) }}> {{ $slot }} diff --git a/packages/admin/resources/views/components/validation-errors.blade.php b/packages/admin/resources/views/components/validation-errors.blade.php old mode 100644 new mode 100755 diff --git a/packages/admin/resources/views/filament/section.blade.php b/packages/admin/resources/views/filament/section.blade.php new file mode 100644 index 000000000..70c7af7d9 --- /dev/null +++ b/packages/admin/resources/views/filament/section.blade.php @@ -0,0 +1,30 @@ +@php + $isAside = $isAside(); +@endphp + + + {{ $getChildComponentContainer() }} + diff --git a/packages/admin/resources/views/includes/_additional-scripts.blade.php b/packages/admin/resources/views/includes/_additional-scripts.blade.php old mode 100644 new mode 100755 index f02a47862..bd6522a17 --- a/packages/admin/resources/views/includes/_additional-scripts.blade.php +++ b/packages/admin/resources/views/includes/_additional-scripts.blade.php @@ -1,7 +1,7 @@ @if(! empty(config('shopper.admin.resources.scripts'))) @foreach(config('shopper.admin.resources.scripts') as $js) - @if (starts_with($js, ['http://', 'https://'])) + @if (\Illuminate\Support\Str::of($js)->startsWith(['http://', 'https://'])) @else @@ -9,17 +9,4 @@ @endforeach @endif -@foreach (\Shopper\Facades\Shopper::getScripts() as $name => $path) - @if (\Illuminate\Support\Str::of($path)->startsWith(['http://', 'https://'])) - - @elseif (\Illuminate\Support\Str::of($path)->startsWith('<')) - {!! $path !!} - @else - - @endif -@endforeach - @stack('scripts') diff --git a/packages/admin/resources/views/includes/_additional-styles.blade.php b/packages/admin/resources/views/includes/_additional-styles.blade.php old mode 100644 new mode 100755 index 7b72e59c7..ead86e16a --- a/packages/admin/resources/views/includes/_additional-styles.blade.php +++ b/packages/admin/resources/views/includes/_additional-styles.blade.php @@ -1,7 +1,7 @@ @if(! empty(config('shopper.admin.resources.stylesheets'))) @foreach(config('shopper.admin.resources.stylesheets') as $css) - @if (starts_with($css, ['http://', 'https://'])) + @if (\Illuminate\Support\Str::of($css)->startsWith(['http://', 'https://'])) @else @@ -9,15 +9,4 @@ @endforeach @endif -@foreach (\Shopper\Facades\Shopper::getStyles() as $name => $path) - @if (\Illuminate\Support\Str::of($path)->startsWith(['http://', 'https://'])) - - @elseif (\Illuminate\Support\Str::of($path)->startsWith('<')) - {!! $path !!} - @else - - @endif -@endforeach +@stack('styles') diff --git a/packages/admin/resources/views/livewire/account/dropdown.blade.php b/packages/admin/resources/views/livewire/account/dropdown.blade.php deleted file mode 100644 index 2f8fe7ecb..000000000 --- a/packages/admin/resources/views/livewire/account/dropdown.blade.php +++ /dev/null @@ -1,135 +0,0 @@ -
    -
    - - -
    -
    diff --git a/packages/admin/resources/views/livewire/account/password.blade.php b/packages/admin/resources/views/livewire/account/password.blade.php deleted file mode 100644 index 16bb5a382..000000000 --- a/packages/admin/resources/views/livewire/account/password.blade.php +++ /dev/null @@ -1,59 +0,0 @@ -
    -
    -
    -
    -

    - {{ __('shopper::pages/auth.account.password_title') }} -

    -

    - {{ __('shopper::pages/auth.account.password_description') }} -

    -
    -
    -
    -
    - @if (session()->has('error')) -
    -
    -
    - -
    -
    -

    - {{ session('error') }} -

    -
    -
    -
    - @endif -
    - - - - - - - - - - - -
    -
    -
    - - - - {{ __('shopper::layout.forms.actions.update') }} - - -
    -
    -
    -
    diff --git a/packages/admin/resources/views/livewire/account/profile.blade.php b/packages/admin/resources/views/livewire/account/profile.blade.php deleted file mode 100644 index 003762eb3..000000000 --- a/packages/admin/resources/views/livewire/account/profile.blade.php +++ /dev/null @@ -1,102 +0,0 @@ -
    -
    -
    -
    -
    -

    - {{ __('shopper::pages/auth.account.profile_title') }} -

    -

    - {{ __('shopper::pages/auth.account.profile_description') }} -

    -
    -
    -
    -
    - - - - @if($picture) - - @else - {{ $this->getUser()->email }} - @endif - - - -
    - - - - - - - - - -
    -
    - -
    - -
    -
    - -
    -
    - - - {{ __('shopper::layout.forms.label.optional') }} - -
    -
    - -
    -
    -
    -
    -
    - - - - {{ __('shopper::layout.forms.actions.save') }} - - -
    -
    -
    -
    -
    - diff --git a/packages/admin/resources/views/livewire/collections/browse.blade.php b/packages/admin/resources/views/livewire/collections/browse.blade.php old mode 100644 new mode 100755 diff --git a/packages/admin/resources/views/livewire/collections/create.blade.php b/packages/admin/resources/views/livewire/collections/create.blade.php old mode 100644 new mode 100755 index ead2ca35d..b56995bda --- a/packages/admin/resources/views/livewire/collections/create.blade.php +++ b/packages/admin/resources/views/livewire/collections/create.blade.php @@ -1,6 +1,6 @@ - + @@ -24,7 +24,7 @@ -

    +

    {{ __('shopper::pages/collections.filter_type') }}

    -
    +
    -
    +
    -
    +
    @@ -75,18 +75,18 @@ class="p-4 sm:p-5"
    @if($type === 'auto') -
    -

    +
    +

    {{ __('shopper::pages/collections.conditions.title') }}

    -

    +

    {{ __('shopper::pages/collections.conditions.products_match') }}

    @@ -94,7 +94,7 @@ class="p-4 sm:p-5"
    @@ -172,24 +172,24 @@ class="p-4 sm:p-5" parse-format="YYYY-MM-DD HH:mm" display-format="{{ config('shopper.admin.date_time_format') }}" time-format="24" - class="dark:bg-secondary-700" + class="dark:bg-gray-700" /> @if($publishedAt)
    -

    +

    {{ __('shopper::words.published_on') }}
    {{ $publishedAtFormatted }}

    @else -

    +

    {{ __('shopper::pages/collections.availability_description') }}

    @endif -

    +

    {{ __('shopper::layout.forms.label.image_preview') }}

    @@ -200,7 +200,7 @@ class="dark:bg-secondary-700"
    -
    +
    diff --git a/packages/admin/resources/views/livewire/collections/edit.blade.php b/packages/admin/resources/views/livewire/collections/edit.blade.php old mode 100644 new mode 100755 index 744b72c18..8ab184bda --- a/packages/admin/resources/views/livewire/collections/edit.blade.php +++ b/packages/admin/resources/views/livewire/collections/edit.blade.php @@ -1,6 +1,6 @@ - + @@ -43,24 +43,24 @@ parse-format="YYYY-MM-DD HH:mm" display-format="{{ config('shopper.admin.date_time_format') }}" time-format="24" - class="dark:bg-secondary-700" + class="dark:bg-gray-700" /> @if($publishedAt)
    -

    +

    {{ __('shopper::words.published_on') }}
    {{ $publishedAtFormatted }}

    @else -

    +

    {{ __('shopper::pages/collections.availability_description') }}

    @endif -

    +

    {{ __('shopper::layout.forms.label.image_preview') }}

    @@ -71,7 +71,7 @@ class="dark:bg-secondary-700"
    -
    +
    diff --git a/packages/admin/resources/views/livewire/collections/products.blade.php b/packages/admin/resources/views/livewire/collections/products.blade.php old mode 100644 new mode 100755 index db5034571..448def30c --- a/packages/admin/resources/views/livewire/collections/products.blade.php +++ b/packages/admin/resources/views/livewire/collections/products.blade.php @@ -1,7 +1,7 @@ -
    +
    -

    +

    {{ __('shopper::layout.sidebar.products') }}

    @@ -15,7 +15,7 @@
    - + {{ __('shopper::layout.forms.label.sort_by') }}
    @@ -31,20 +31,20 @@
    -
    +
    @if($products->isNotEmpty()) -
    +
    @foreach($products as $product)
    {{ $product->name }} -

    +

    {{ $product->name }}

    -
    @@ -53,9 +53,9 @@ @else
    - + -

    +

    {{ __('shopper::pages/collections.empty_collections') }}

    @if($collection->isAutomatic()) diff --git a/packages/admin/resources/views/livewire/account/devices.blade.php b/packages/admin/resources/views/livewire/components/account/devices.blade.php old mode 100644 new mode 100755 similarity index 81% rename from packages/admin/resources/views/livewire/account/devices.blade.php rename to packages/admin/resources/views/livewire/components/account/devices.blade.php index 3f870b800..8bff2c179 --- a/packages/admin/resources/views/livewire/account/devices.blade.php +++ b/packages/admin/resources/views/livewire/components/account/devices.blade.php @@ -1,35 +1,31 @@
    -
    -

    - {{ __('shopper::pages/auth.account.device_title') }} -

    -

    - {{ __('shopper::pages/auth.account.device_description') }} -

    -
    +
    -
    +
    @if (count($this->sessions) > 0) -

    +

    {{ __('shopper::pages/auth.account.empty_device') }}

    -
    +
    @foreach($this->sessions as $session)
    -
    +
    @if ($session->agent->isDesktop()) - +
    -

    +

    {{ __('shopper::words.browser_platform', [ 'browser' => $session->agent->browser(), @@ -43,12 +39,12 @@ {{ __('shopper::pages/auth.account.current_device') }} @else - + {{ __('shopper::pages/auth.account.device_last_activity') }} {{ $session->last_active }} @endif

    -

    +

    @if($session->location) {{ $session->location->cityName }}, {{ $session->location->regionName }}, {{ $session->location->countryName }} @else @@ -71,10 +67,10 @@

    @else -
    +
    - +
    diff --git a/packages/admin/resources/views/livewire/components/account/dropdown.blade.php b/packages/admin/resources/views/livewire/components/account/dropdown.blade.php new file mode 100755 index 000000000..976de939f --- /dev/null +++ b/packages/admin/resources/views/livewire/components/account/dropdown.blade.php @@ -0,0 +1,130 @@ +
    +
    + + +
    +
    diff --git a/packages/admin/resources/views/livewire/components/account/password.blade.php b/packages/admin/resources/views/livewire/components/account/password.blade.php new file mode 100755 index 000000000..f57b24851 --- /dev/null +++ b/packages/admin/resources/views/livewire/components/account/password.blade.php @@ -0,0 +1,12 @@ +
    + {{ $this->form }} + +
    +
    + + + {{ __('shopper::layout.forms.actions.update') }} + +
    +
    +
    diff --git a/packages/admin/resources/views/livewire/components/account/profile.blade.php b/packages/admin/resources/views/livewire/components/account/profile.blade.php new file mode 100755 index 000000000..a9380f804 --- /dev/null +++ b/packages/admin/resources/views/livewire/components/account/profile.blade.php @@ -0,0 +1,12 @@ +
    + {{ $this->form }} + +
    +
    + + + {{ __('shopper::layout.forms.actions.save') }} + +
    +
    +
    diff --git a/packages/admin/resources/views/livewire/account/two-factor.blade.php b/packages/admin/resources/views/livewire/components/account/two-factor.blade.php old mode 100644 new mode 100755 similarity index 80% rename from packages/admin/resources/views/livewire/account/two-factor.blade.php rename to packages/admin/resources/views/livewire/components/account/two-factor.blade.php index 4c22d5d74..a7f41e790 --- a/packages/admin/resources/views/livewire/account/two-factor.blade.php +++ b/packages/admin/resources/views/livewire/components/account/two-factor.blade.php @@ -1,25 +1,20 @@
    -
    -
    -

    - {{ __('shopper::pages/auth.account.two_factor_title') }} -

    -

    - {{ __('shopper::pages/auth.account.two_factor_description') }} -

    -
    -
    -
    + +
    -
    +
    $this->enabled, - 'bg-secondary-400 dark:bg-secondary-500' => ! $this->enabled, + 'bg-gray-400 dark:bg-gray-500' => ! $this->enabled, ])>
    -

    +

    @if ($this->enabled) {{ __('shopper::pages/auth.account.two_factor_enabled') }} @else @@ -55,11 +50,11 @@

    -

    +

    {{ __('shopper::pages/auth.account.two_factor_secure') }}

    @if($this->enabled) -

    +

    {{ __('shopper::pages/auth.account.two_factor_activation_message') }}

    @endif @@ -67,8 +62,8 @@
    @if ($this->enabled) @if ($showingQrCode) -
    -

    +

    +

    {{ __('shopper::pages/auth.account.two_factor_is_enabled') }}

    @@ -79,14 +74,14 @@ @endif @if ($showingRecoveryCodes) -
    -

    +

    +

    {{ __('shopper::pages/auth.account.two_factor_store_recovery_codes') }}

    -
    +
    @foreach (json_decode(decrypt($this->user->two_factor_recovery_codes), true) as $code) - {{ $code }} + {{ $code }} @endforeach
    diff --git a/packages/admin/resources/views/livewire/components/attributes/_form.blade.php b/packages/admin/resources/views/livewire/components/attributes/_form.blade.php old mode 100644 new mode 100755 index 9bb982f6f..18c3c094f --- a/packages/admin/resources/views/livewire/components/attributes/_form.blade.php +++ b/packages/admin/resources/views/livewire/components/attributes/_form.blade.php @@ -14,7 +14,7 @@
    - + {{ __('shopper::layout.forms.label.optional') }}
    @@ -29,7 +29,7 @@
    -

    +

    {{ __('shopper::pages/attributes.searchable_description') }}

    @@ -40,7 +40,7 @@
    -

    +

    {{ __('shopper::pages/attributes.filtrable_description') }}

    @@ -50,7 +50,7 @@